diff --git a/corpus/ctrl/match.nu b/corpus/ctrl/match.nu index 0717d75..bcd790a 100644 --- a/corpus/ctrl/match.nu +++ b/corpus/ctrl/match.nu @@ -254,3 +254,65 @@ match $xs { (block)) (default_arm (block)))))) + +===== +match-007-unquoted +===== + +match foo { + foo => {} +} + +----- + +(nu_script + (pipeline + (pipe_element + (ctrl_match + (val_string) + (match_arm + (match_pattern + (val_string)) + (block)))))) + +===== +match-008-record +===== + +match $x { + {$y} => {} + {$foo, $bar} => {} + {$a, b: c} => {} +} + +----- + +(nu_script + (pipeline + (pipe_element + (ctrl_match + (val_variable + (identifier)) + (match_arm + (match_pattern + (val_record + (val_variable + (identifier)))) + (block)) + (match_arm + (match_pattern + (val_record + (val_variable + (identifier)) + (val_variable + (identifier)))) + (block)) + (match_arm + (match_pattern + (val_record + (val_variable + (identifier)) + (record_entry + (identifier) + (val_string)))) + (block)))))) diff --git a/grammar.js b/grammar.js index 61883a3..f858022 100644 --- a/grammar.js +++ b/grammar.js @@ -30,6 +30,8 @@ module.exports = grammar({ [$._match_pattern_value, $._value], [$._match_pattern_expression, $._list_item_expression], [$._match_pattern_list, $.val_list], + [$._match_pattern_record, $.val_record], + [$._match_pattern_record_variable, $._value], ], rules: { @@ -375,7 +377,10 @@ module.exports = grammar({ ctrl_match: ($) => seq( KEYWORD().match, - field("scrutinee", $._expression), + field( + "scrutinee", + choice($._expression, alias($.unquoted, $.val_string)), + ), BRACK().open_brace, repeat($.match_arm), optional($.default_arm), @@ -402,13 +407,13 @@ module.exports = grammar({ match_pattern: ($) => choice( - seq($._match_pattern_expression, optional($.match_guard)), - seq( - $._match_pattern_expression, - repeat(seq(PUNC().pipe, $._match_pattern_expression)), - ), + seq($._match_pattern, optional($.match_guard)), + seq($._match_pattern, repeat(seq(PUNC().pipe, $._match_pattern))), ), + _match_pattern: ($) => + choice($._match_pattern_expression, alias($.unquoted, $.val_string)), + match_guard: ($) => seq(KEYWORD().if, $._expression), _match_pattern_expression: ($) => @@ -431,7 +436,7 @@ module.exports = grammar({ $.val_string, $.val_date, alias($._match_pattern_list, $.val_list), - $.val_record, + alias($._match_pattern_record, $.val_record), $.val_table, ), @@ -475,6 +480,22 @@ module.exports = grammar({ _match_pattern_ignore_rest: ($) => seq(PUNC().dot, token.immediate(PUNC().dot)), + _match_pattern_record: ($) => + seq( + BRACK().open_brace, + repeat( + field( + "entry", + choice($.record_entry, $._match_pattern_record_variable), + ), + ), + BRACK().close_brace, + optional($.cell_path), + ), + + _match_pattern_record_variable: ($) => + seq($.val_variable, optional(PUNC().comma)), + ctrl_try: ($) => seq( KEYWORD().try, diff --git a/src/grammar.json b/src/grammar.json index 42dc981..3de12ae 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3062,8 +3062,22 @@ "type": "FIELD", "name": "scrutinee", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } }, { @@ -3194,7 +3208,7 @@ "members": [ { "type": "SYMBOL", - "name": "_match_pattern_expression" + "name": "_match_pattern" }, { "type": "CHOICE", @@ -3215,7 +3229,7 @@ "members": [ { "type": "SYMBOL", - "name": "_match_pattern_expression" + "name": "_match_pattern" }, { "type": "REPEAT", @@ -3228,7 +3242,7 @@ }, { "type": "SYMBOL", - "name": "_match_pattern_expression" + "name": "_match_pattern" } ] } @@ -3237,6 +3251,24 @@ } ] }, + "_match_pattern": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_match_pattern_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] + }, "match_guard": { "type": "SEQ", "members": [ @@ -3325,8 +3357,13 @@ "value": "val_list" }, { - "type": "SYMBOL", - "name": "val_record" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_match_pattern_record" + }, + "named": true, + "value": "val_record" }, { "type": "SYMBOL", @@ -3494,6 +3531,72 @@ } ] }, + "_match_pattern_record": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "entry", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "record_entry" + }, + { + "type": "SYMBOL", + "name": "_match_pattern_record_variable" + } + ] + } + } + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "cell_path" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_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": [ @@ -11259,6 +11362,14 @@ [ "_match_pattern_list", "val_list" + ], + [ + "_match_pattern_record", + "val_record" + ], + [ + "_match_pattern_record_variable", + "_value" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index 0d6dd70..2425dfd 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4730,9 +4730,17 @@ "multiple": true, "required": false, "types": [ + { + "type": ",", + "named": false + }, { "type": "record_entry", "named": true + }, + { + "type": "val_variable", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 06a71ca..566881e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6138 -#define LARGE_STATE_COUNT 1239 -#define SYMBOL_COUNT 462 +#define STATE_COUNT 6209 +#define LARGE_STATE_COUNT 1268 +#define SYMBOL_COUNT 466 #define ALIAS_COUNT 3 #define TOKEN_COUNT 277 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 69 #define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 248 +#define PRODUCTION_ID_COUNT 251 enum { sym_identifier = 1, @@ -384,111 +384,115 @@ enum { sym_default_arm = 357, sym__match_expression = 358, sym_match_pattern = 359, - sym_match_guard = 360, - sym__match_pattern_expression = 361, - sym__match_pattern_value = 362, - sym__match_pattern_list = 363, - sym__match_pattern_rest = 364, - sym__match_pattern_ignore_rest = 365, - sym_ctrl_try = 366, - sym_ctrl_try_parenthesized = 367, - sym_ctrl_return = 368, - sym_pipe_element = 369, - sym_pipe_element_parenthesized = 370, - sym_pipe_element_last = 371, - sym_pipe_element_parenthesized_last = 372, - sym_stmt_source = 373, - sym_stmt_register = 374, - sym__stmt_hide = 375, - sym_hide_mod = 376, - sym_hide_env = 377, - sym__stmt_overlay = 378, - sym_overlay_list = 379, - sym_overlay_hide = 380, - sym_overlay_new = 381, - sym_overlay_use = 382, - sym_scope_pattern = 383, - sym_wild_card = 384, - sym_command_list = 385, - sym_assignment = 386, - sym_block = 387, - sym__blosure = 388, - sym_where_command = 389, - sym__where_predicate = 390, - sym__expression = 391, - sym_expr_unary = 392, - sym__expr_unary_minus = 393, - sym_expr_binary = 394, - sym__expr_binary_expression = 395, - sym_expr_parenthesized = 396, - sym__parenthesized_body = 397, - sym_val_range = 398, - sym__immediate_decimal = 399, - sym__value = 400, - sym_val_nothing = 401, - sym_val_bool = 402, - sym_val_variable = 403, - sym__var = 404, - sym_val_number = 405, - sym__val_number_decimal = 406, - sym__val_number = 407, - sym_val_duration = 408, - sym_val_filesize = 409, - sym_val_binary = 410, - sym_val_string = 411, - sym__str_double_quotes = 412, - sym_val_interpolated = 413, - sym__inter_single_quotes = 414, - sym__inter_double_quotes = 415, - sym_expr_interpolated = 416, - sym_val_list = 417, - sym__list_item_expression = 418, - sym__list_item_starts_with_sign = 419, - sym_val_record = 420, - sym_record_entry = 421, - sym__record_key = 422, - sym_val_table = 423, - sym_val_closure = 424, - sym_cell_path = 425, - sym_path = 426, - sym_command = 427, - sym__command_parenthesized_body = 428, - sym__cmd_arg = 429, - sym_redirection = 430, - sym__flag = 431, - sym_short_flag = 432, - sym_long_flag = 433, - sym_unquoted = 434, - sym__unquoted_in_list = 435, - sym_comment = 436, - aux_sym_pipeline_repeat1 = 437, - aux_sym_pipeline_parenthesized_repeat1 = 438, - aux_sym__block_body_repeat1 = 439, - aux_sym__block_body_repeat2 = 440, - aux_sym_decl_def_repeat1 = 441, - aux_sym__multiple_types_repeat1 = 442, - aux_sym_parameter_parens_repeat1 = 443, - aux_sym_collection_type_repeat1 = 444, - aux_sym_ctrl_match_repeat1 = 445, - aux_sym_match_pattern_repeat1 = 446, - aux_sym__match_pattern_list_repeat1 = 447, - aux_sym_pipe_element_repeat1 = 448, - aux_sym_overlay_use_repeat1 = 449, - aux_sym_command_list_repeat1 = 450, - aux_sym__parenthesized_body_repeat1 = 451, - aux_sym_val_binary_repeat1 = 452, - aux_sym__str_double_quotes_repeat1 = 453, - aux_sym__inter_single_quotes_repeat1 = 454, - aux_sym__inter_double_quotes_repeat1 = 455, - aux_sym_val_list_repeat1 = 456, - aux_sym_val_record_repeat1 = 457, - aux_sym_val_table_repeat1 = 458, - aux_sym_cell_path_repeat1 = 459, - aux_sym_command_repeat1 = 460, - aux_sym__command_parenthesized_body_repeat1 = 461, - anon_alias_sym_DOT_DOT = 462, - anon_alias_sym_DOT_DOT_LT = 463, - anon_alias_sym_DOT_DOT_EQ = 464, + sym__match_pattern = 360, + sym_match_guard = 361, + sym__match_pattern_expression = 362, + sym__match_pattern_value = 363, + sym__match_pattern_list = 364, + sym__match_pattern_rest = 365, + sym__match_pattern_ignore_rest = 366, + sym__match_pattern_record = 367, + sym__match_pattern_record_variable = 368, + sym_ctrl_try = 369, + sym_ctrl_try_parenthesized = 370, + sym_ctrl_return = 371, + sym_pipe_element = 372, + sym_pipe_element_parenthesized = 373, + sym_pipe_element_last = 374, + sym_pipe_element_parenthesized_last = 375, + sym_stmt_source = 376, + sym_stmt_register = 377, + sym__stmt_hide = 378, + sym_hide_mod = 379, + sym_hide_env = 380, + sym__stmt_overlay = 381, + sym_overlay_list = 382, + sym_overlay_hide = 383, + sym_overlay_new = 384, + sym_overlay_use = 385, + sym_scope_pattern = 386, + sym_wild_card = 387, + sym_command_list = 388, + sym_assignment = 389, + sym_block = 390, + sym__blosure = 391, + sym_where_command = 392, + sym__where_predicate = 393, + sym__expression = 394, + sym_expr_unary = 395, + sym__expr_unary_minus = 396, + sym_expr_binary = 397, + sym__expr_binary_expression = 398, + sym_expr_parenthesized = 399, + sym__parenthesized_body = 400, + sym_val_range = 401, + sym__immediate_decimal = 402, + sym__value = 403, + sym_val_nothing = 404, + sym_val_bool = 405, + sym_val_variable = 406, + sym__var = 407, + sym_val_number = 408, + sym__val_number_decimal = 409, + sym__val_number = 410, + sym_val_duration = 411, + sym_val_filesize = 412, + sym_val_binary = 413, + sym_val_string = 414, + sym__str_double_quotes = 415, + sym_val_interpolated = 416, + sym__inter_single_quotes = 417, + sym__inter_double_quotes = 418, + sym_expr_interpolated = 419, + sym_val_list = 420, + sym__list_item_expression = 421, + sym__list_item_starts_with_sign = 422, + sym_val_record = 423, + sym_record_entry = 424, + sym__record_key = 425, + sym_val_table = 426, + sym_val_closure = 427, + sym_cell_path = 428, + sym_path = 429, + sym_command = 430, + sym__command_parenthesized_body = 431, + sym__cmd_arg = 432, + sym_redirection = 433, + sym__flag = 434, + sym_short_flag = 435, + sym_long_flag = 436, + sym_unquoted = 437, + sym__unquoted_in_list = 438, + sym_comment = 439, + aux_sym_pipeline_repeat1 = 440, + aux_sym_pipeline_parenthesized_repeat1 = 441, + aux_sym__block_body_repeat1 = 442, + aux_sym__block_body_repeat2 = 443, + aux_sym_decl_def_repeat1 = 444, + aux_sym__multiple_types_repeat1 = 445, + aux_sym_parameter_parens_repeat1 = 446, + aux_sym_collection_type_repeat1 = 447, + aux_sym_ctrl_match_repeat1 = 448, + aux_sym_match_pattern_repeat1 = 449, + aux_sym__match_pattern_list_repeat1 = 450, + aux_sym__match_pattern_record_repeat1 = 451, + aux_sym_pipe_element_repeat1 = 452, + aux_sym_overlay_use_repeat1 = 453, + aux_sym_command_list_repeat1 = 454, + aux_sym__parenthesized_body_repeat1 = 455, + aux_sym_val_binary_repeat1 = 456, + aux_sym__str_double_quotes_repeat1 = 457, + aux_sym__inter_single_quotes_repeat1 = 458, + aux_sym__inter_double_quotes_repeat1 = 459, + aux_sym_val_list_repeat1 = 460, + aux_sym_val_record_repeat1 = 461, + aux_sym_val_table_repeat1 = 462, + aux_sym_cell_path_repeat1 = 463, + aux_sym_command_repeat1 = 464, + aux_sym__command_parenthesized_body_repeat1 = 465, + anon_alias_sym_DOT_DOT = 466, + anon_alias_sym_DOT_DOT_LT = 467, + anon_alias_sym_DOT_DOT_EQ = 468, }; static const char * const ts_symbol_names[] = { @@ -852,12 +856,15 @@ static const char * const ts_symbol_names[] = { [sym_default_arm] = "default_arm", [sym__match_expression] = "_match_expression", [sym_match_pattern] = "match_pattern", + [sym__match_pattern] = "_match_pattern", [sym_match_guard] = "match_guard", [sym__match_pattern_expression] = "_match_pattern_expression", [sym__match_pattern_value] = "_match_pattern_value", [sym__match_pattern_list] = "val_list", [sym__match_pattern_rest] = "val_variable", [sym__match_pattern_ignore_rest] = "_match_pattern_ignore_rest", + [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", @@ -940,6 +947,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_ctrl_match_repeat1] = "ctrl_match_repeat1", [aux_sym_match_pattern_repeat1] = "match_pattern_repeat1", [aux_sym__match_pattern_list_repeat1] = "_match_pattern_list_repeat1", + [aux_sym__match_pattern_record_repeat1] = "_match_pattern_record_repeat1", [aux_sym_pipe_element_repeat1] = "pipe_element_repeat1", [aux_sym_overlay_use_repeat1] = "overlay_use_repeat1", [aux_sym_command_list_repeat1] = "command_list_repeat1", @@ -1320,12 +1328,15 @@ static const TSSymbol ts_symbol_map[] = { [sym_default_arm] = sym_default_arm, [sym__match_expression] = sym__match_expression, [sym_match_pattern] = sym_match_pattern, + [sym__match_pattern] = sym__match_pattern, [sym_match_guard] = sym_match_guard, [sym__match_pattern_expression] = sym__match_pattern_expression, [sym__match_pattern_value] = sym__match_pattern_value, [sym__match_pattern_list] = sym_val_list, [sym__match_pattern_rest] = sym_val_variable, [sym__match_pattern_ignore_rest] = sym__match_pattern_ignore_rest, + [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, @@ -1408,6 +1419,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_ctrl_match_repeat1] = aux_sym_ctrl_match_repeat1, [aux_sym_match_pattern_repeat1] = aux_sym_match_pattern_repeat1, [aux_sym__match_pattern_list_repeat1] = aux_sym__match_pattern_list_repeat1, + [aux_sym__match_pattern_record_repeat1] = aux_sym__match_pattern_record_repeat1, [aux_sym_pipe_element_repeat1] = aux_sym_pipe_element_repeat1, [aux_sym_overlay_use_repeat1] = aux_sym_overlay_use_repeat1, [aux_sym_command_list_repeat1] = aux_sym_command_list_repeat1, @@ -2868,6 +2880,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__match_pattern] = { + .visible = false, + .named = true, + }, [sym_match_guard] = { .visible = true, .named = true, @@ -2892,6 +2908,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__match_pattern_record] = { + .visible = true, + .named = true, + }, + [sym__match_pattern_record_variable] = { + .visible = false, + .named = true, + }, [sym_ctrl_try] = { .visible = true, .named = true, @@ -3220,6 +3244,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__match_pattern_record_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_pipe_element_repeat1] = { .visible = false, .named = false, @@ -3536,150 +3564,152 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [100] = {.index = 182, .length = 1}, [101] = {.index = 183, .length = 1}, [102] = {.index = 184, .length = 2}, - [103] = {.index = 186, .length = 2}, - [104] = {.index = 186, .length = 2}, - [105] = {.index = 188, .length = 1}, - [106] = {.index = 189, .length = 2}, - [108] = {.index = 191, .length = 2}, - [109] = {.index = 193, .length = 1}, - [110] = {.index = 186, .length = 2}, - [111] = {.index = 186, .length = 2}, + [103] = {.index = 186, .length = 1}, + [105] = {.index = 183, .length = 1}, + [106] = {.index = 187, .length = 2}, + [107] = {.index = 187, .length = 2}, + [108] = {.index = 189, .length = 1}, + [109] = {.index = 190, .length = 2}, + [111] = {.index = 192, .length = 2}, [112] = {.index = 194, .length = 1}, - [113] = {.index = 194, .length = 1}, - [114] = {.index = 194, .length = 1}, - [115] = {.index = 194, .length = 1}, - [116] = {.index = 195, .length = 2}, - [117] = {.index = 197, .length = 1}, - [118] = {.index = 198, .length = 6}, - [119] = {.index = 136, .length = 3}, - [120] = {.index = 204, .length = 3}, - [121] = {.index = 198, .length = 6}, - [122] = {.index = 204, .length = 3}, - [123] = {.index = 207, .length = 2}, - [124] = {.index = 209, .length = 1}, - [125] = {.index = 210, .length = 2}, - [126] = {.index = 139, .length = 1}, - [127] = {.index = 139, .length = 1}, - [128] = {.index = 212, .length = 2}, - [129] = {.index = 212, .length = 2}, - [130] = {.index = 214, .length = 2}, - [131] = {.index = 139, .length = 1}, - [132] = {.index = 139, .length = 1}, - [133] = {.index = 212, .length = 2}, - [134] = {.index = 212, .length = 2}, - [135] = {.index = 216, .length = 4}, - [136] = {.index = 220, .length = 5}, - [137] = {.index = 225, .length = 5}, - [138] = {.index = 230, .length = 2}, - [139] = {.index = 232, .length = 5}, - [140] = {.index = 237, .length = 6}, - [141] = {.index = 243, .length = 3}, - [142] = {.index = 246, .length = 6}, - [143] = {.index = 252, .length = 3}, - [144] = {.index = 255, .length = 2}, - [145] = {.index = 257, .length = 5}, - [146] = {.index = 262, .length = 3}, - [147] = {.index = 265, .length = 3}, - [148] = {.index = 268, .length = 1}, - [149] = {.index = 269, .length = 4}, - [150] = {.index = 273, .length = 7}, - [151] = {.index = 280, .length = 4}, - [152] = {.index = 273, .length = 7}, - [153] = {.index = 280, .length = 4}, - [154] = {.index = 284, .length = 2}, - [155] = {.index = 284, .length = 2}, - [156] = {.index = 284, .length = 2}, - [157] = {.index = 284, .length = 2}, - [158] = {.index = 284, .length = 2}, - [159] = {.index = 284, .length = 2}, - [160] = {.index = 284, .length = 2}, - [161] = {.index = 284, .length = 2}, - [162] = {.index = 286, .length = 6}, - [163] = {.index = 292, .length = 5}, - [164] = {.index = 297, .length = 1}, - [165] = {.index = 297, .length = 1}, - [166] = {.index = 298, .length = 1}, - [167] = {.index = 299, .length = 2}, - [168] = {.index = 301, .length = 5}, - [169] = {.index = 306, .length = 5}, - [170] = {.index = 311, .length = 5}, - [171] = {.index = 316, .length = 1}, - [172] = {.index = 317, .length = 2}, - [173] = {.index = 319, .length = 2}, - [174] = {.index = 321, .length = 2}, - [175] = {.index = 321, .length = 2}, - [176] = {.index = 321, .length = 2}, - [177] = {.index = 321, .length = 2}, - [178] = {.index = 323, .length = 4}, - [179] = {.index = 327, .length = 4}, - [180] = {.index = 331, .length = 8}, - [181] = {.index = 339, .length = 5}, - [182] = {.index = 331, .length = 8}, - [183] = {.index = 339, .length = 5}, - [184] = {.index = 344, .length = 2}, - [185] = {.index = 344, .length = 2}, - [186] = {.index = 344, .length = 2}, - [187] = {.index = 344, .length = 2}, - [188] = {.index = 346, .length = 6}, - [189] = {.index = 352, .length = 2}, - [190] = {.index = 354, .length = 4}, - [191] = {.index = 358, .length = 2}, - [192] = {.index = 360, .length = 2}, - [193] = {.index = 362, .length = 2}, - [194] = {.index = 364, .length = 3}, - [195] = {.index = 367, .length = 3}, - [196] = {.index = 370, .length = 5}, - [197] = {.index = 375, .length = 5}, - [198] = {.index = 380, .length = 5}, - [199] = {.index = 385, .length = 5}, - [200] = {.index = 390, .length = 2}, - [201] = {.index = 392, .length = 2}, - [202] = {.index = 392, .length = 2}, - [203] = {.index = 392, .length = 2}, - [204] = {.index = 392, .length = 2}, - [205] = {.index = 392, .length = 2}, - [206] = {.index = 392, .length = 2}, - [207] = {.index = 392, .length = 2}, - [208] = {.index = 392, .length = 2}, - [209] = {.index = 394, .length = 4}, - [210] = {.index = 344, .length = 2}, - [211] = {.index = 344, .length = 2}, - [212] = {.index = 398, .length = 3}, - [213] = {.index = 398, .length = 3}, - [214] = {.index = 344, .length = 2}, - [215] = {.index = 344, .length = 2}, - [216] = {.index = 398, .length = 3}, - [217] = {.index = 398, .length = 3}, - [218] = {.index = 344, .length = 2}, - [219] = {.index = 344, .length = 2}, - [220] = {.index = 398, .length = 3}, - [221] = {.index = 398, .length = 3}, - [222] = {.index = 344, .length = 2}, - [223] = {.index = 344, .length = 2}, - [224] = {.index = 398, .length = 3}, - [225] = {.index = 398, .length = 3}, - [226] = {.index = 401, .length = 2}, - [227] = {.index = 401, .length = 2}, - [228] = {.index = 403, .length = 5}, - [229] = {.index = 408, .length = 5}, - [230] = {.index = 413, .length = 5}, - [231] = {.index = 418, .length = 3}, - [232] = {.index = 418, .length = 3}, - [233] = {.index = 418, .length = 3}, - [234] = {.index = 418, .length = 3}, - [235] = {.index = 418, .length = 3}, - [236] = {.index = 418, .length = 3}, - [237] = {.index = 418, .length = 3}, - [238] = {.index = 418, .length = 3}, - [239] = {.index = 418, .length = 3}, - [240] = {.index = 418, .length = 3}, - [241] = {.index = 418, .length = 3}, - [242] = {.index = 418, .length = 3}, - [243] = {.index = 418, .length = 3}, - [244] = {.index = 418, .length = 3}, - [245] = {.index = 418, .length = 3}, - [246] = {.index = 418, .length = 3}, - [247] = {.index = 421, .length = 5}, + [113] = {.index = 187, .length = 2}, + [114] = {.index = 187, .length = 2}, + [115] = {.index = 195, .length = 1}, + [116] = {.index = 195, .length = 1}, + [117] = {.index = 195, .length = 1}, + [118] = {.index = 195, .length = 1}, + [119] = {.index = 196, .length = 2}, + [120] = {.index = 198, .length = 1}, + [121] = {.index = 199, .length = 6}, + [122] = {.index = 136, .length = 3}, + [123] = {.index = 205, .length = 3}, + [124] = {.index = 199, .length = 6}, + [125] = {.index = 205, .length = 3}, + [126] = {.index = 208, .length = 2}, + [127] = {.index = 210, .length = 1}, + [128] = {.index = 211, .length = 2}, + [129] = {.index = 139, .length = 1}, + [130] = {.index = 139, .length = 1}, + [131] = {.index = 213, .length = 2}, + [132] = {.index = 213, .length = 2}, + [133] = {.index = 215, .length = 2}, + [134] = {.index = 139, .length = 1}, + [135] = {.index = 139, .length = 1}, + [136] = {.index = 213, .length = 2}, + [137] = {.index = 213, .length = 2}, + [138] = {.index = 217, .length = 4}, + [139] = {.index = 221, .length = 5}, + [140] = {.index = 226, .length = 5}, + [141] = {.index = 231, .length = 2}, + [142] = {.index = 233, .length = 5}, + [143] = {.index = 238, .length = 6}, + [144] = {.index = 244, .length = 3}, + [145] = {.index = 247, .length = 6}, + [146] = {.index = 253, .length = 3}, + [147] = {.index = 256, .length = 2}, + [148] = {.index = 258, .length = 5}, + [149] = {.index = 263, .length = 3}, + [150] = {.index = 266, .length = 3}, + [151] = {.index = 269, .length = 1}, + [152] = {.index = 270, .length = 4}, + [153] = {.index = 274, .length = 7}, + [154] = {.index = 281, .length = 4}, + [155] = {.index = 274, .length = 7}, + [156] = {.index = 281, .length = 4}, + [157] = {.index = 285, .length = 2}, + [158] = {.index = 285, .length = 2}, + [159] = {.index = 285, .length = 2}, + [160] = {.index = 285, .length = 2}, + [161] = {.index = 285, .length = 2}, + [162] = {.index = 285, .length = 2}, + [163] = {.index = 285, .length = 2}, + [164] = {.index = 285, .length = 2}, + [165] = {.index = 287, .length = 6}, + [166] = {.index = 293, .length = 5}, + [167] = {.index = 298, .length = 1}, + [168] = {.index = 298, .length = 1}, + [169] = {.index = 299, .length = 1}, + [170] = {.index = 300, .length = 2}, + [171] = {.index = 302, .length = 5}, + [172] = {.index = 307, .length = 5}, + [173] = {.index = 312, .length = 5}, + [174] = {.index = 317, .length = 1}, + [175] = {.index = 318, .length = 2}, + [176] = {.index = 320, .length = 2}, + [177] = {.index = 322, .length = 2}, + [178] = {.index = 322, .length = 2}, + [179] = {.index = 322, .length = 2}, + [180] = {.index = 322, .length = 2}, + [181] = {.index = 324, .length = 4}, + [182] = {.index = 328, .length = 4}, + [183] = {.index = 332, .length = 8}, + [184] = {.index = 340, .length = 5}, + [185] = {.index = 332, .length = 8}, + [186] = {.index = 340, .length = 5}, + [187] = {.index = 345, .length = 2}, + [188] = {.index = 345, .length = 2}, + [189] = {.index = 345, .length = 2}, + [190] = {.index = 345, .length = 2}, + [191] = {.index = 347, .length = 6}, + [192] = {.index = 353, .length = 2}, + [193] = {.index = 355, .length = 4}, + [194] = {.index = 359, .length = 2}, + [195] = {.index = 361, .length = 2}, + [196] = {.index = 363, .length = 2}, + [197] = {.index = 365, .length = 3}, + [198] = {.index = 368, .length = 3}, + [199] = {.index = 371, .length = 5}, + [200] = {.index = 376, .length = 5}, + [201] = {.index = 381, .length = 5}, + [202] = {.index = 386, .length = 5}, + [203] = {.index = 391, .length = 2}, + [204] = {.index = 393, .length = 2}, + [205] = {.index = 393, .length = 2}, + [206] = {.index = 393, .length = 2}, + [207] = {.index = 393, .length = 2}, + [208] = {.index = 393, .length = 2}, + [209] = {.index = 393, .length = 2}, + [210] = {.index = 393, .length = 2}, + [211] = {.index = 393, .length = 2}, + [212] = {.index = 395, .length = 4}, + [213] = {.index = 345, .length = 2}, + [214] = {.index = 345, .length = 2}, + [215] = {.index = 399, .length = 3}, + [216] = {.index = 399, .length = 3}, + [217] = {.index = 345, .length = 2}, + [218] = {.index = 345, .length = 2}, + [219] = {.index = 399, .length = 3}, + [220] = {.index = 399, .length = 3}, + [221] = {.index = 345, .length = 2}, + [222] = {.index = 345, .length = 2}, + [223] = {.index = 399, .length = 3}, + [224] = {.index = 399, .length = 3}, + [225] = {.index = 345, .length = 2}, + [226] = {.index = 345, .length = 2}, + [227] = {.index = 399, .length = 3}, + [228] = {.index = 399, .length = 3}, + [229] = {.index = 402, .length = 2}, + [230] = {.index = 402, .length = 2}, + [231] = {.index = 404, .length = 5}, + [232] = {.index = 409, .length = 5}, + [233] = {.index = 414, .length = 5}, + [234] = {.index = 419, .length = 3}, + [235] = {.index = 419, .length = 3}, + [236] = {.index = 419, .length = 3}, + [237] = {.index = 419, .length = 3}, + [238] = {.index = 419, .length = 3}, + [239] = {.index = 419, .length = 3}, + [240] = {.index = 419, .length = 3}, + [241] = {.index = 419, .length = 3}, + [242] = {.index = 419, .length = 3}, + [243] = {.index = 419, .length = 3}, + [244] = {.index = 419, .length = 3}, + [245] = {.index = 419, .length = 3}, + [246] = {.index = 419, .length = 3}, + [247] = {.index = 419, .length = 3}, + [248] = {.index = 419, .length = 3}, + [249] = {.index = 419, .length = 3}, + [250] = {.index = 422, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3959,123 +3989,125 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_item, 0, .inherited = true}, {field_rest, 0, .inherited = true}, [186] = + {field_entry, 0, .inherited = true}, + [187] = {field_key, 0}, {field_value, 2}, - [188] = - {field_name, 0}, [189] = + {field_name, 0}, + [190] = {field_param_name, 0}, {field_param_name, 1}, - [191] = + [192] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [193] = - {field_parameters, 1}, [194] = - {field_end, 3}, + {field_parameters, 1}, [195] = + {field_end, 3}, + [196] = {field_catch_branch, 3}, {field_try_branch, 1}, - [197] = - {field_overlay, 3}, [198] = + {field_overlay, 3}, + [199] = {field_lhs, 0}, {field_lhs, 2, .inherited = true}, {field_opr, 1}, {field_opr, 2, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [204] = + [205] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 2}, - [207] = + [208] = {field_digit, 0}, {field_digit, 1}, - [209] = - {field_digit, 2, .inherited = true}, [210] = + {field_digit, 2, .inherited = true}, + [211] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [212] = + [213] = {field_end, 3}, {field_start, 0}, - [214] = + [215] = {field_protected_path, 1}, {field_protected_path, 2}, - [216] = + [217] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [220] = + [221] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [225] = + [226] = {field_body, 4}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [230] = + [231] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [232] = + [233] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [237] = + [238] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [243] = + [244] = {field_cmd, 1, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [246] = + [247] = {field_cmd, 0, .inherited = true}, {field_cmd, 1, .inherited = true}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [252] = + [253] = {field_head, 1}, {field_head, 2}, {field_row, 3, .inherited = true}, - [255] = + [256] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [257] = + [258] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [262] = + [263] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [265] = + [266] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [268] = - {field_param_value, 1}, [269] = + {field_param_value, 1}, + [270] = {field_overlay, 2}, {field_quoted_name, 4, .inherited = true}, {field_rename, 4}, {field_unquoted_name, 4, .inherited = true}, - [273] = + [274] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 3, .inherited = true}, @@ -4083,74 +4115,74 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [280] = + [281] = {field_lhs, 0}, {field_lhs, 1}, {field_opr, 2}, {field_rhs, 3}, - [284] = + [285] = {field_end, 4}, {field_start, 0}, - [286] = + [287] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [292] = + [293] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [297] = - {field_key, 0}, [298] = - {field_type, 0, .inherited = true}, + {field_key, 0}, [299] = + {field_type, 0, .inherited = true}, + [300] = {field_catch_branch, 4}, {field_try_branch, 1}, - [301] = + [302] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [306] = + [307] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [311] = + [312] = {field_body, 5}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [316] = - {field_rest, 1}, [317] = + {field_rest, 1}, + [318] = {field_default_pattern, 0}, {field_expression, 2}, - [319] = + [320] = {field_expression, 2}, {field_pattern, 0}, - [321] = + [322] = {field_end, 5}, {field_step, 2}, - [323] = + [324] = {field_overlay, 2}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [327] = + [328] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [331] = + [332] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 2}, @@ -4159,112 +4191,112 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_opr, 4, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [339] = + [340] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 2}, {field_opr, 3}, {field_rhs, 4}, - [344] = + [345] = {field_start, 0}, {field_step, 3}, - [346] = + [347] = {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}, - [352] = + [353] = {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [354] = + [355] = {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [358] = + [359] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [360] = + [361] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [362] = + [363] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [364] = + [365] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [367] = + [368] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [370] = + [371] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [375] = + [376] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [380] = + [381] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [385] = + [386] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [390] = + [391] = {field_item, 1, .inherited = true}, {field_rest, 2}, - [392] = + [393] = {field_end, 6}, {field_step, 2}, - [394] = + [395] = {field_overlay, 3}, {field_quoted_name, 6, .inherited = true}, {field_rename, 6}, {field_unquoted_name, 6, .inherited = true}, - [398] = + [399] = {field_end, 6}, {field_start, 0}, {field_step, 3}, - [401] = + [402] = {field_key, 0}, {field_type, 2, .inherited = true}, - [403] = + [404] = {field_body, 7}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [408] = + [409] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [413] = + [414] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [418] = + [419] = {field_end, 7}, {field_start, 0}, {field_step, 3}, - [421] = + [422] = {field_body, 8}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, @@ -4329,170 +4361,176 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, }, - [103] = { + [104] = { + [0] = sym_val_string, + }, + [105] = { + [1] = sym_val_string, + }, + [106] = { [0] = sym_identifier, [2] = sym_val_string, }, - [104] = { + [107] = { [0] = sym_identifier, }, - [107] = { + [110] = { [1] = sym_identifier, }, - [110] = { + [113] = { [2] = sym_val_string, }, - [112] = { + [115] = { [0] = anon_alias_sym_DOT_DOT_LT, [1] = anon_alias_sym_DOT_DOT_LT, [2] = anon_alias_sym_DOT_DOT_LT, }, - [113] = { + [116] = { [0] = anon_alias_sym_DOT_DOT_LT, [1] = anon_alias_sym_DOT_DOT_LT, [2] = anon_alias_sym_DOT_DOT_LT, [3] = sym_val_number, }, - [114] = { + [117] = { [0] = anon_alias_sym_DOT_DOT_EQ, [1] = anon_alias_sym_DOT_DOT_EQ, [2] = anon_alias_sym_DOT_DOT_EQ, }, - [115] = { + [118] = { [0] = anon_alias_sym_DOT_DOT_EQ, [1] = anon_alias_sym_DOT_DOT_EQ, [2] = anon_alias_sym_DOT_DOT_EQ, [3] = sym_val_number, }, - [118] = { + [121] = { [0] = sym_val_string, }, - [119] = { + [122] = { [0] = sym_val_string, }, - [120] = { + [123] = { [0] = sym_val_string, }, - [126] = { + [129] = { [1] = anon_alias_sym_DOT_DOT_LT, [2] = anon_alias_sym_DOT_DOT_LT, [3] = anon_alias_sym_DOT_DOT_LT, }, - [127] = { + [130] = { [1] = anon_alias_sym_DOT_DOT_EQ, [2] = anon_alias_sym_DOT_DOT_EQ, [3] = anon_alias_sym_DOT_DOT_EQ, }, - [128] = { + [131] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, }, - [129] = { + [132] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, }, - [131] = { + [134] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT_LT, [2] = anon_alias_sym_DOT_DOT_LT, [3] = anon_alias_sym_DOT_DOT_LT, }, - [132] = { + [135] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT_EQ, [2] = anon_alias_sym_DOT_DOT_EQ, [3] = anon_alias_sym_DOT_DOT_EQ, }, - [133] = { + [136] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, }, - [134] = { + [137] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, }, - [150] = { + [153] = { [0] = sym_val_string, }, - [151] = { + [154] = { [0] = sym_val_string, }, - [154] = { + [157] = { [1] = anon_alias_sym_DOT_DOT_LT, [2] = anon_alias_sym_DOT_DOT_LT, [3] = anon_alias_sym_DOT_DOT_LT, }, - [155] = { + [158] = { [1] = anon_alias_sym_DOT_DOT_LT, [2] = anon_alias_sym_DOT_DOT_LT, [3] = anon_alias_sym_DOT_DOT_LT, [4] = sym_val_number, }, - [156] = { + [159] = { [1] = anon_alias_sym_DOT_DOT_EQ, [2] = anon_alias_sym_DOT_DOT_EQ, [3] = anon_alias_sym_DOT_DOT_EQ, }, - [157] = { + [160] = { [1] = anon_alias_sym_DOT_DOT_EQ, [2] = anon_alias_sym_DOT_DOT_EQ, [3] = anon_alias_sym_DOT_DOT_EQ, [4] = sym_val_number, }, - [158] = { + [161] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT_LT, [2] = anon_alias_sym_DOT_DOT_LT, [3] = anon_alias_sym_DOT_DOT_LT, }, - [159] = { + [162] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT_LT, [2] = anon_alias_sym_DOT_DOT_LT, [3] = anon_alias_sym_DOT_DOT_LT, [4] = sym_val_number, }, - [160] = { + [163] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT_EQ, [2] = anon_alias_sym_DOT_DOT_EQ, [3] = anon_alias_sym_DOT_DOT_EQ, }, - [161] = { + [164] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT_EQ, [2] = anon_alias_sym_DOT_DOT_EQ, [3] = anon_alias_sym_DOT_DOT_EQ, [4] = sym_val_number, }, - [165] = { + [168] = { [0] = sym_identifier, }, - [174] = { + [177] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [3] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT, }, - [175] = { + [178] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [3] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT, [5] = sym_val_number, }, - [176] = { + [179] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [2] = sym_val_number, [3] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT, }, - [177] = { + [180] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [2] = sym_val_number, @@ -4500,33 +4538,33 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [4] = anon_alias_sym_DOT_DOT, [5] = sym_val_number, }, - [180] = { + [183] = { [0] = sym_val_string, }, - [181] = { + [184] = { [0] = sym_val_string, }, - [184] = { + [187] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT, [5] = anon_alias_sym_DOT_DOT, }, - [185] = { + [188] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, [4] = anon_alias_sym_DOT_DOT, [5] = anon_alias_sym_DOT_DOT, }, - [186] = { + [189] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT, [5] = anon_alias_sym_DOT_DOT, }, - [187] = { + [190] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4534,14 +4572,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [4] = anon_alias_sym_DOT_DOT, [5] = anon_alias_sym_DOT_DOT, }, - [201] = { + [204] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [3] = anon_alias_sym_DOT_DOT_LT, [4] = anon_alias_sym_DOT_DOT_LT, [5] = anon_alias_sym_DOT_DOT_LT, }, - [202] = { + [205] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [3] = anon_alias_sym_DOT_DOT_LT, @@ -4549,14 +4587,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_LT, [6] = sym_val_number, }, - [203] = { + [206] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [3] = anon_alias_sym_DOT_DOT_EQ, [4] = anon_alias_sym_DOT_DOT_EQ, [5] = anon_alias_sym_DOT_DOT_EQ, }, - [204] = { + [207] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [3] = anon_alias_sym_DOT_DOT_EQ, @@ -4564,7 +4602,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_EQ, [6] = sym_val_number, }, - [205] = { + [208] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [2] = sym_val_number, @@ -4572,7 +4610,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [4] = anon_alias_sym_DOT_DOT_LT, [5] = anon_alias_sym_DOT_DOT_LT, }, - [206] = { + [209] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [2] = sym_val_number, @@ -4581,7 +4619,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_LT, [6] = sym_val_number, }, - [207] = { + [210] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [2] = sym_val_number, @@ -4589,7 +4627,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [4] = anon_alias_sym_DOT_DOT_EQ, [5] = anon_alias_sym_DOT_DOT_EQ, }, - [208] = { + [211] = { [0] = anon_alias_sym_DOT_DOT, [1] = anon_alias_sym_DOT_DOT, [2] = sym_val_number, @@ -4598,34 +4636,34 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_EQ, [6] = sym_val_number, }, - [210] = { + [213] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT_LT, [5] = anon_alias_sym_DOT_DOT_LT, [6] = anon_alias_sym_DOT_DOT_LT, }, - [211] = { + [214] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT_EQ, [5] = anon_alias_sym_DOT_DOT_EQ, [6] = anon_alias_sym_DOT_DOT_EQ, }, - [212] = { + [215] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT, [5] = anon_alias_sym_DOT_DOT, }, - [213] = { + [216] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT, [5] = anon_alias_sym_DOT_DOT, [6] = sym_val_number, }, - [214] = { + [217] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, @@ -4633,7 +4671,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_LT, [6] = anon_alias_sym_DOT_DOT_LT, }, - [215] = { + [218] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, @@ -4641,14 +4679,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_EQ, [6] = anon_alias_sym_DOT_DOT_EQ, }, - [216] = { + [219] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, [4] = anon_alias_sym_DOT_DOT, [5] = anon_alias_sym_DOT_DOT, }, - [217] = { + [220] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, @@ -4656,7 +4694,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT, [6] = sym_val_number, }, - [218] = { + [221] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4664,7 +4702,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_LT, [6] = anon_alias_sym_DOT_DOT_LT, }, - [219] = { + [222] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4672,14 +4710,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_EQ, [6] = anon_alias_sym_DOT_DOT_EQ, }, - [220] = { + [223] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT, [5] = anon_alias_sym_DOT_DOT, }, - [221] = { + [224] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4687,7 +4725,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT, [6] = sym_val_number, }, - [222] = { + [225] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4696,7 +4734,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_LT, [6] = anon_alias_sym_DOT_DOT_LT, }, - [223] = { + [226] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4705,7 +4743,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_EQ, [6] = anon_alias_sym_DOT_DOT_EQ, }, - [224] = { + [227] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4713,7 +4751,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [4] = anon_alias_sym_DOT_DOT, [5] = anon_alias_sym_DOT_DOT, }, - [225] = { + [228] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4722,17 +4760,17 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT, [6] = sym_val_number, }, - [227] = { + [230] = { [0] = sym_identifier, }, - [231] = { + [234] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT_LT, [5] = anon_alias_sym_DOT_DOT_LT, [6] = anon_alias_sym_DOT_DOT_LT, }, - [232] = { + [235] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT_LT, @@ -4740,14 +4778,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = anon_alias_sym_DOT_DOT_LT, [7] = sym_val_number, }, - [233] = { + [236] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT_EQ, [5] = anon_alias_sym_DOT_DOT_EQ, [6] = anon_alias_sym_DOT_DOT_EQ, }, - [234] = { + [237] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [4] = anon_alias_sym_DOT_DOT_EQ, @@ -4755,7 +4793,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = anon_alias_sym_DOT_DOT_EQ, [7] = sym_val_number, }, - [235] = { + [238] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, @@ -4763,7 +4801,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_LT, [6] = anon_alias_sym_DOT_DOT_LT, }, - [236] = { + [239] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, @@ -4772,7 +4810,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = anon_alias_sym_DOT_DOT_LT, [7] = sym_val_number, }, - [237] = { + [240] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, @@ -4780,7 +4818,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_EQ, [6] = anon_alias_sym_DOT_DOT_EQ, }, - [238] = { + [241] = { [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, [3] = sym_val_number, @@ -4789,7 +4827,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = anon_alias_sym_DOT_DOT_EQ, [7] = sym_val_number, }, - [239] = { + [242] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4797,7 +4835,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_LT, [6] = anon_alias_sym_DOT_DOT_LT, }, - [240] = { + [243] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4806,7 +4844,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = anon_alias_sym_DOT_DOT_LT, [7] = sym_val_number, }, - [241] = { + [244] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4814,7 +4852,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_EQ, [6] = anon_alias_sym_DOT_DOT_EQ, }, - [242] = { + [245] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4823,7 +4861,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = anon_alias_sym_DOT_DOT_EQ, [7] = sym_val_number, }, - [243] = { + [246] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4832,7 +4870,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_LT, [6] = anon_alias_sym_DOT_DOT_LT, }, - [244] = { + [247] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4842,7 +4880,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = anon_alias_sym_DOT_DOT_LT, [7] = sym_val_number, }, - [245] = { + [248] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4851,7 +4889,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = anon_alias_sym_DOT_DOT_EQ, [6] = anon_alias_sym_DOT_DOT_EQ, }, - [246] = { + [249] = { [0] = sym_val_number, [1] = anon_alias_sym_DOT_DOT, [2] = anon_alias_sym_DOT_DOT, @@ -4893,588 +4931,588 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, + [4] = 2, [5] = 5, [6] = 6, [7] = 3, - [8] = 8, - [9] = 2, - [10] = 2, - [11] = 11, + [8] = 2, + [9] = 9, + [10] = 10, + [11] = 3, [12] = 12, - [13] = 2, - [14] = 3, - [15] = 6, - [16] = 16, - [17] = 11, - [18] = 18, - [19] = 19, + [13] = 13, + [14] = 6, + [15] = 15, + [16] = 6, + [17] = 5, + [18] = 10, + [19] = 2, [20] = 20, - [21] = 12, - [22] = 6, - [23] = 23, - [24] = 5, - [25] = 8, + [21] = 3, + [22] = 10, + [23] = 5, + [24] = 24, + [25] = 9, [26] = 12, - [27] = 5, - [28] = 8, - [29] = 11, - [30] = 20, - [31] = 31, - [32] = 16, - [33] = 18, + [27] = 27, + [28] = 9, + [29] = 12, + [30] = 30, + [31] = 10, + [32] = 5, + [33] = 9, [34] = 20, - [35] = 12, - [36] = 18, - [37] = 23, - [38] = 16, - [39] = 39, - [40] = 23, - [41] = 5, - [42] = 11, - [43] = 8, - [44] = 19, - [45] = 6, - [46] = 46, - [47] = 23, + [35] = 13, + [36] = 12, + [37] = 20, + [38] = 6, + [39] = 15, + [40] = 40, + [41] = 13, + [42] = 24, + [43] = 27, + [44] = 24, + [45] = 15, + [46] = 20, + [47] = 47, [48] = 48, - [49] = 31, - [50] = 50, - [51] = 20, - [52] = 16, - [53] = 39, - [54] = 18, - [55] = 50, - [56] = 48, - [57] = 46, + [49] = 49, + [50] = 13, + [51] = 30, + [52] = 15, + [53] = 40, + [54] = 24, + [55] = 49, + [56] = 47, + [57] = 48, [58] = 2, [59] = 3, - [60] = 6, - [61] = 8, - [62] = 3, - [63] = 2, - [64] = 11, - [65] = 5, - [66] = 12, - [67] = 6, - [68] = 16, - [69] = 8, - [70] = 11, - [71] = 5, - [72] = 20, - [73] = 18, - [74] = 23, - [75] = 19, - [76] = 12, - [77] = 20, - [78] = 39, - [79] = 16, - [80] = 23, - [81] = 18, - [82] = 31, + [60] = 12, + [61] = 6, + [62] = 5, + [63] = 10, + [64] = 3, + [65] = 9, + [66] = 2, + [67] = 10, + [68] = 12, + [69] = 13, + [70] = 24, + [71] = 15, + [72] = 6, + [73] = 13, + [74] = 9, + [75] = 24, + [76] = 20, + [77] = 27, + [78] = 15, + [79] = 5, + [80] = 20, + [81] = 40, + [82] = 30, [83] = 48, - [84] = 46, - [85] = 50, + [84] = 49, + [85] = 47, [86] = 86, - [87] = 86, - [88] = 86, - [89] = 86, - [90] = 86, - [91] = 86, - [92] = 92, - [93] = 86, - [94] = 92, - [95] = 86, - [96] = 86, - [97] = 86, - [98] = 86, - [99] = 86, - [100] = 86, - [101] = 2, + [87] = 87, + [88] = 87, + [89] = 87, + [90] = 87, + [91] = 87, + [92] = 87, + [93] = 87, + [94] = 87, + [95] = 87, + [96] = 96, + [97] = 87, + [98] = 87, + [99] = 87, + [100] = 96, + [101] = 87, [102] = 3, - [103] = 6, - [104] = 2, - [105] = 11, + [103] = 2, + [104] = 9, + [105] = 6, [106] = 5, - [107] = 8, - [108] = 12, - [109] = 3, - [110] = 5, - [111] = 23, - [112] = 16, - [113] = 19, - [114] = 8, - [115] = 20, - [116] = 116, - [117] = 11, - [118] = 18, - [119] = 12, - [120] = 6, - [121] = 31, - [122] = 116, - [123] = 31, - [124] = 18, - [125] = 16, - [126] = 23, - [127] = 19, - [128] = 20, - [129] = 31, - [130] = 50, - [131] = 46, - [132] = 31, + [107] = 12, + [108] = 2, + [109] = 10, + [110] = 3, + [111] = 10, + [112] = 6, + [113] = 20, + [114] = 27, + [115] = 13, + [116] = 15, + [117] = 12, + [118] = 24, + [119] = 5, + [120] = 120, + [121] = 9, + [122] = 120, + [123] = 13, + [124] = 20, + [125] = 24, + [126] = 40, + [127] = 27, + [128] = 40, + [129] = 15, + [130] = 40, + [131] = 40, + [132] = 49, [133] = 48, - [134] = 50, + [134] = 47, [135] = 48, - [136] = 46, - [137] = 137, - [138] = 137, - [139] = 137, - [140] = 137, - [141] = 141, - [142] = 141, + [136] = 47, + [137] = 49, + [138] = 138, + [139] = 138, + [140] = 138, + [141] = 138, + [142] = 142, [143] = 143, - [144] = 141, - [145] = 145, + [144] = 143, + [145] = 143, [146] = 143, - [147] = 141, - [148] = 141, - [149] = 141, - [150] = 141, - [151] = 141, - [152] = 141, - [153] = 141, - [154] = 141, - [155] = 141, - [156] = 141, - [157] = 141, - [158] = 141, - [159] = 141, - [160] = 141, - [161] = 141, - [162] = 141, - [163] = 141, - [164] = 141, + [147] = 143, + [148] = 143, + [149] = 143, + [150] = 143, + [151] = 143, + [152] = 143, + [153] = 143, + [154] = 143, + [155] = 142, + [156] = 143, + [157] = 143, + [158] = 142, + [159] = 142, + [160] = 143, + [161] = 143, + [162] = 143, + [163] = 143, + [164] = 143, [165] = 143, - [166] = 141, + [166] = 143, [167] = 143, - [168] = 141, - [169] = 169, - [170] = 169, - [171] = 169, - [172] = 169, - [173] = 169, - [174] = 174, - [175] = 175, - [176] = 169, - [177] = 175, - [178] = 169, - [179] = 174, - [180] = 175, - [181] = 169, - [182] = 169, - [183] = 174, - [184] = 169, - [185] = 169, - [186] = 169, - [187] = 174, - [188] = 169, - [189] = 175, - [190] = 169, - [191] = 175, - [192] = 175, - [193] = 174, - [194] = 169, - [195] = 169, - [196] = 174, - [197] = 197, - [198] = 175, - [199] = 169, - [200] = 169, - [201] = 174, - [202] = 169, - [203] = 175, - [204] = 169, - [205] = 169, - [206] = 169, - [207] = 169, - [208] = 197, - [209] = 169, - [210] = 174, - [211] = 175, - [212] = 169, - [213] = 174, - [214] = 175, - [215] = 169, - [216] = 169, - [217] = 169, - [218] = 174, - [219] = 169, - [220] = 174, - [221] = 169, - [222] = 175, - [223] = 169, - [224] = 174, - [225] = 169, - [226] = 174, - [227] = 169, - [228] = 174, - [229] = 169, - [230] = 174, - [231] = 169, - [232] = 232, - [233] = 2, - [234] = 234, - [235] = 3, - [236] = 234, - [237] = 5, - [238] = 6, - [239] = 11, - [240] = 2, + [168] = 168, + [169] = 143, + [170] = 170, + [171] = 171, + [172] = 171, + [173] = 171, + [174] = 171, + [175] = 170, + [176] = 176, + [177] = 171, + [178] = 176, + [179] = 171, + [180] = 171, + [181] = 181, + [182] = 171, + [183] = 171, + [184] = 170, + [185] = 176, + [186] = 171, + [187] = 171, + [188] = 176, + [189] = 171, + [190] = 171, + [191] = 171, + [192] = 171, + [193] = 171, + [194] = 171, + [195] = 171, + [196] = 171, + [197] = 170, + [198] = 176, + [199] = 170, + [200] = 170, + [201] = 170, + [202] = 176, + [203] = 171, + [204] = 171, + [205] = 181, + [206] = 171, + [207] = 176, + [208] = 170, + [209] = 171, + [210] = 171, + [211] = 176, + [212] = 171, + [213] = 170, + [214] = 3, + [215] = 2, + [216] = 171, + [217] = 171, + [218] = 171, + [219] = 171, + [220] = 170, + [221] = 176, + [222] = 171, + [223] = 171, + [224] = 176, + [225] = 176, + [226] = 171, + [227] = 171, + [228] = 176, + [229] = 170, + [230] = 176, + [231] = 171, + [232] = 176, + [233] = 176, + [234] = 171, + [235] = 235, + [236] = 2, + [237] = 10, + [238] = 235, + [239] = 12, + [240] = 5, [241] = 3, - [242] = 8, - [243] = 12, - [244] = 20, - [245] = 11, - [246] = 6, - [247] = 16, - [248] = 12, - [249] = 5, - [250] = 8, - [251] = 23, - [252] = 19, - [253] = 18, - [254] = 39, - [255] = 31, - [256] = 23, - [257] = 16, - [258] = 20, - [259] = 18, - [260] = 48, - [261] = 46, - [262] = 50, - [263] = 263, + [242] = 6, + [243] = 243, + [244] = 9, + [245] = 6, + [246] = 9, + [247] = 5, + [248] = 27, + [249] = 24, + [250] = 12, + [251] = 15, + [252] = 13, + [253] = 10, + [254] = 20, + [255] = 30, + [256] = 24, + [257] = 15, + [258] = 40, + [259] = 13, + [260] = 20, + [261] = 49, + [262] = 47, + [263] = 48, [264] = 264, - [265] = 3, + [265] = 265, [266] = 2, - [267] = 6, - [268] = 8, - [269] = 2, - [270] = 5, - [271] = 11, - [272] = 3, - [273] = 12, - [274] = 20, - [275] = 11, - [276] = 18, - [277] = 116, - [278] = 8, - [279] = 16, - [280] = 23, - [281] = 12, - [282] = 5, - [283] = 6, - [284] = 31, - [285] = 20, - [286] = 16, - [287] = 23, - [288] = 18, - [289] = 116, - [290] = 50, + [267] = 3, + [268] = 12, + [269] = 6, + [270] = 3, + [271] = 2, + [272] = 9, + [273] = 10, + [274] = 5, + [275] = 24, + [276] = 9, + [277] = 15, + [278] = 6, + [279] = 20, + [280] = 120, + [281] = 13, + [282] = 12, + [283] = 10, + [284] = 5, + [285] = 15, + [286] = 40, + [287] = 13, + [288] = 20, + [289] = 24, + [290] = 120, [291] = 2, - [292] = 3, - [293] = 3, - [294] = 46, - [295] = 48, - [296] = 31, - [297] = 2, + [292] = 2, + [293] = 40, + [294] = 3, + [295] = 49, + [296] = 47, + [297] = 3, [298] = 48, - [299] = 46, - [300] = 11, - [301] = 5, - [302] = 5, - [303] = 12, - [304] = 6, - [305] = 6, - [306] = 3, - [307] = 50, - [308] = 11, - [309] = 12, - [310] = 3, - [311] = 8, + [299] = 2, + [300] = 3, + [301] = 49, + [302] = 6, + [303] = 9, + [304] = 10, + [305] = 3, + [306] = 48, + [307] = 5, + [308] = 10, + [309] = 9, + [310] = 6, + [311] = 12, [312] = 2, - [313] = 2, - [314] = 8, - [315] = 23, - [316] = 8, - [317] = 3, - [318] = 6, - [319] = 20, - [320] = 20, - [321] = 16, - [322] = 6, - [323] = 23, - [324] = 12, - [325] = 19, - [326] = 5, - [327] = 8, - [328] = 16, - [329] = 2, - [330] = 12, - [331] = 5, - [332] = 18, - [333] = 11, - [334] = 11, - [335] = 18, - [336] = 3, - [337] = 39, - [338] = 2, - [339] = 31, - [340] = 5, - [341] = 46, - [342] = 12, - [343] = 6, - [344] = 2, - [345] = 23, - [346] = 48, - [347] = 6, - [348] = 20, - [349] = 8, - [350] = 11, - [351] = 11, - [352] = 16, - [353] = 8, - [354] = 12, - [355] = 16, - [356] = 18, - [357] = 20, - [358] = 358, - [359] = 50, - [360] = 19, - [361] = 19, - [362] = 3, - [363] = 18, - [364] = 5, - [365] = 23, - [366] = 11, - [367] = 31, - [368] = 50, - [369] = 5, - [370] = 12, - [371] = 3, - [372] = 3, - [373] = 358, - [374] = 8, - [375] = 20, - [376] = 31, - [377] = 16, - [378] = 6, - [379] = 46, - [380] = 18, - [381] = 20, - [382] = 18, - [383] = 2, - [384] = 2, - [385] = 19, - [386] = 23, - [387] = 39, - [388] = 2, - [389] = 23, - [390] = 16, - [391] = 3, - [392] = 19, - [393] = 6, - [394] = 20, - [395] = 11, - [396] = 8, - [397] = 6, - [398] = 5, - [399] = 11, - [400] = 18, - [401] = 31, - [402] = 23, - [403] = 12, - [404] = 11, - [405] = 8, - [406] = 6, - [407] = 8, - [408] = 16, - [409] = 12, - [410] = 5, - [411] = 2, - [412] = 23, - [413] = 46, - [414] = 23, - [415] = 20, - [416] = 18, - [417] = 16, - [418] = 20, - [419] = 23, - [420] = 20, - [421] = 3, - [422] = 16, - [423] = 18, - [424] = 39, - [425] = 19, - [426] = 50, - [427] = 31, - [428] = 39, - [429] = 16, - [430] = 18, - [431] = 5, - [432] = 11, - [433] = 433, - [434] = 50, - [435] = 39, - [436] = 3, - [437] = 46, - [438] = 3, + [313] = 47, + [314] = 12, + [315] = 5, + [316] = 10, + [317] = 13, + [318] = 24, + [319] = 15, + [320] = 12, + [321] = 30, + [322] = 9, + [323] = 20, + [324] = 6, + [325] = 5, + [326] = 20, + [327] = 2, + [328] = 10, + [329] = 3, + [330] = 27, + [331] = 2, + [332] = 9, + [333] = 24, + [334] = 12, + [335] = 5, + [336] = 6, + [337] = 13, + [338] = 3, + [339] = 15, + [340] = 20, + [341] = 12, + [342] = 40, + [343] = 9, + [344] = 10, + [345] = 6, + [346] = 5, + [347] = 20, + [348] = 15, + [349] = 10, + [350] = 350, + [351] = 24, + [352] = 12, + [353] = 49, + [354] = 27, + [355] = 27, + [356] = 2, + [357] = 15, + [358] = 47, + [359] = 6, + [360] = 24, + [361] = 13, + [362] = 48, + [363] = 3, + [364] = 13, + [365] = 9, + [366] = 5, + [367] = 40, + [368] = 10, + [369] = 48, + [370] = 5, + [371] = 6, + [372] = 9, + [373] = 40, + [374] = 30, + [375] = 13, + [376] = 20, + [377] = 24, + [378] = 20, + [379] = 3, + [380] = 2, + [381] = 350, + [382] = 13, + [383] = 15, + [384] = 15, + [385] = 27, + [386] = 3, + [387] = 24, + [388] = 12, + [389] = 49, + [390] = 2, + [391] = 6, + [392] = 12, + [393] = 27, + [394] = 12, + [395] = 6, + [396] = 20, + [397] = 13, + [398] = 10, + [399] = 5, + [400] = 9, + [401] = 15, + [402] = 24, + [403] = 9, + [404] = 5, + [405] = 10, + [406] = 40, + [407] = 20, + [408] = 30, + [409] = 48, + [410] = 3, + [411] = 15, + [412] = 27, + [413] = 2, + [414] = 20, + [415] = 2, + [416] = 15, + [417] = 13, + [418] = 3, + [419] = 30, + [420] = 24, + [421] = 24, + [422] = 49, + [423] = 13, + [424] = 40, + [425] = 3, + [426] = 10, + [427] = 48, + [428] = 40, + [429] = 3, + [430] = 47, + [431] = 30, + [432] = 6, + [433] = 5, + [434] = 10, + [435] = 12, + [436] = 49, + [437] = 2, + [438] = 9, [439] = 2, - [440] = 2, - [441] = 3, - [442] = 48, - [443] = 12, - [444] = 12, - [445] = 6, - [446] = 8, - [447] = 5, - [448] = 2, - [449] = 31, - [450] = 8, - [451] = 19, - [452] = 11, - [453] = 6, - [454] = 12, - [455] = 5, - [456] = 23, - [457] = 12, + [440] = 6, + [441] = 441, + [442] = 12, + [443] = 2, + [444] = 3, + [445] = 5, + [446] = 9, + [447] = 12, + [448] = 30, + [449] = 10, + [450] = 5, + [451] = 47, + [452] = 10, + [453] = 9, + [454] = 9, + [455] = 20, + [456] = 12, + [457] = 15, [458] = 6, [459] = 5, - [460] = 12, - [461] = 11, - [462] = 20, - [463] = 11, - [464] = 48, - [465] = 48, - [466] = 18, - [467] = 5, - [468] = 16, - [469] = 39, - [470] = 6, - [471] = 8, - [472] = 8, - [473] = 23, - [474] = 16, - [475] = 31, - [476] = 20, - [477] = 12, - [478] = 20, - [479] = 18, - [480] = 3, - [481] = 481, - [482] = 18, - [483] = 19, - [484] = 18, - [485] = 16, - [486] = 2, - [487] = 16, - [488] = 5, - [489] = 20, - [490] = 19, - [491] = 23, - [492] = 23, - [493] = 39, - [494] = 6, - [495] = 11, - [496] = 31, - [497] = 8, - [498] = 39, + [460] = 6, + [461] = 13, + [462] = 24, + [463] = 24, + [464] = 13, + [465] = 15, + [466] = 27, + [467] = 10, + [468] = 6, + [469] = 5, + [470] = 20, + [471] = 47, + [472] = 9, + [473] = 12, + [474] = 15, + [475] = 15, + [476] = 120, + [477] = 13, + [478] = 2, + [479] = 27, + [480] = 40, + [481] = 24, + [482] = 20, + [483] = 13, + [484] = 484, + [485] = 27, + [486] = 15, + [487] = 20, + [488] = 24, + [489] = 3, + [490] = 20, + [491] = 13, + [492] = 24, + [493] = 493, + [494] = 30, + [495] = 9, + [496] = 10, + [497] = 6, + [498] = 40, [499] = 5, - [500] = 31, - [501] = 501, - [502] = 12, - [503] = 46, - [504] = 20, - [505] = 505, - [506] = 23, - [507] = 18, - [508] = 50, - [509] = 16, - [510] = 481, - [511] = 48, - [512] = 501, + [500] = 40, + [501] = 12, + [502] = 30, + [503] = 503, + [504] = 15, + [505] = 20, + [506] = 484, + [507] = 47, + [508] = 48, + [509] = 13, + [510] = 24, + [511] = 49, + [512] = 493, [513] = 513, [514] = 514, - [515] = 514, + [515] = 515, [516] = 516, [517] = 517, [518] = 518, - [519] = 519, + [519] = 514, [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, + [521] = 517, + [522] = 515, + [523] = 518, [524] = 524, [525] = 525, [526] = 526, - [527] = 517, - [528] = 526, + [527] = 527, + [528] = 528, [529] = 529, - [530] = 525, - [531] = 518, + [530] = 530, + [531] = 531, [532] = 532, - [533] = 518, - [534] = 521, - [535] = 535, + [533] = 517, + [534] = 516, + [535] = 532, [536] = 518, - [537] = 517, - [538] = 516, - [539] = 522, - [540] = 540, - [541] = 517, - [542] = 523, - [543] = 543, - [544] = 526, - [545] = 526, - [546] = 520, - [547] = 524, - [548] = 525, - [549] = 519, - [550] = 529, - [551] = 525, + [537] = 537, + [538] = 538, + [539] = 516, + [540] = 518, + [541] = 527, + [542] = 516, + [543] = 531, + [544] = 544, + [545] = 517, + [546] = 515, + [547] = 526, + [548] = 530, + [549] = 516, + [550] = 528, + [551] = 524, [552] = 552, - [553] = 543, + [553] = 525, [554] = 554, - [555] = 555, - [556] = 535, - [557] = 540, - [558] = 558, - [559] = 559, - [560] = 532, - [561] = 561, - [562] = 562, + [555] = 517, + [556] = 538, + [557] = 520, + [558] = 532, + [559] = 532, + [560] = 560, + [561] = 529, + [562] = 537, [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, + [564] = 518, + [565] = 563, + [566] = 520, + [567] = 552, [568] = 568, [569] = 569, - [570] = 570, - [571] = 571, - [572] = 532, + [570] = 525, + [571] = 531, + [572] = 526, [573] = 573, - [574] = 574, + [574] = 560, [575] = 575, - [576] = 576, + [576] = 554, [577] = 577, [578] = 578, - [579] = 579, + [579] = 526, [580] = 580, [581] = 581, [582] = 582, [583] = 583, - [584] = 584, - [585] = 564, + [584] = 554, + [585] = 585, [586] = 586, [587] = 587, [588] = 588, @@ -5482,24 +5520,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [590] = 590, [591] = 591, [592] = 592, - [593] = 593, - [594] = 555, + [593] = 568, + [594] = 594, [595] = 595, [596] = 596, [597] = 597, [598] = 598, - [599] = 599, + [599] = 575, [600] = 600, - [601] = 561, + [601] = 601, [602] = 602, [603] = 603, - [604] = 604, + [604] = 525, [605] = 605, - [606] = 606, - [607] = 540, + [606] = 569, + [607] = 607, [608] = 608, [609] = 609, - [610] = 554, + [610] = 552, [611] = 611, [612] = 612, [613] = 613, @@ -5509,235 +5547,235 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [617] = 617, [618] = 618, [619] = 619, - [620] = 561, - [621] = 621, + [620] = 620, + [621] = 577, [622] = 622, [623] = 623, [624] = 624, - [625] = 562, + [625] = 573, [626] = 626, [627] = 627, - [628] = 558, + [628] = 628, [629] = 629, - [630] = 563, - [631] = 559, - [632] = 554, + [630] = 630, + [631] = 631, + [632] = 632, [633] = 633, [634] = 634, [635] = 635, - [636] = 552, - [637] = 566, - [638] = 614, - [639] = 605, - [640] = 561, - [641] = 584, - [642] = 622, - [643] = 606, - [644] = 616, - [645] = 609, - [646] = 602, - [647] = 591, - [648] = 593, - [649] = 598, - [650] = 587, - [651] = 588, - [652] = 623, - [653] = 579, - [654] = 592, - [655] = 578, - [656] = 604, - [657] = 596, - [658] = 582, - [659] = 627, - [660] = 583, - [661] = 532, - [662] = 577, - [663] = 576, - [664] = 575, - [665] = 573, - [666] = 624, - [667] = 568, - [668] = 629, - [669] = 567, - [670] = 612, - [671] = 618, - [672] = 600, - [673] = 586, - [674] = 581, - [675] = 574, - [676] = 613, - [677] = 617, - [678] = 580, - [679] = 571, - [680] = 569, - [681] = 540, - [682] = 570, - [683] = 635, - [684] = 608, - [685] = 611, - [686] = 599, - [687] = 595, - [688] = 597, - [689] = 603, - [690] = 634, - [691] = 615, - [692] = 554, - [693] = 590, - [694] = 626, - [695] = 633, - [696] = 621, - [697] = 565, - [698] = 619, - [699] = 589, - [700] = 514, - [701] = 3, - [702] = 2, - [703] = 516, - [704] = 524, - [705] = 520, - [706] = 518, - [707] = 523, - [708] = 525, - [709] = 526, - [710] = 6, - [711] = 522, - [712] = 11, - [713] = 12, - [714] = 521, - [715] = 517, - [716] = 526, - [717] = 5, - [718] = 525, - [719] = 529, - [720] = 519, - [721] = 518, - [722] = 517, - [723] = 8, - [724] = 18, - [725] = 16, - [726] = 535, - [727] = 39, - [728] = 543, - [729] = 20, - [730] = 23, - [731] = 532, - [732] = 540, - [733] = 563, - [734] = 555, - [735] = 559, - [736] = 562, - [737] = 564, - [738] = 561, - [739] = 558, - [740] = 513, - [741] = 554, - [742] = 39, - [743] = 50, - [744] = 46, - [745] = 552, - [746] = 586, - [747] = 617, - [748] = 622, - [749] = 629, - [750] = 582, - [751] = 576, - [752] = 605, - [753] = 606, - [754] = 616, - [755] = 598, - [756] = 623, - [757] = 583, - [758] = 590, - [759] = 614, - [760] = 584, - [761] = 627, - [762] = 591, - [763] = 554, - [764] = 573, - [765] = 592, - [766] = 577, - [767] = 596, - [768] = 608, - [769] = 561, - [770] = 568, - [771] = 635, - [772] = 567, - [773] = 619, - [774] = 532, - [775] = 587, - [776] = 580, - [777] = 615, - [778] = 581, - [779] = 565, - [780] = 574, - [781] = 588, - [782] = 600, - [783] = 571, - [784] = 613, - [785] = 569, - [786] = 570, - [787] = 621, - [788] = 589, - [789] = 604, - [790] = 579, - [791] = 618, - [792] = 578, - [793] = 566, - [794] = 633, - [795] = 595, - [796] = 597, - [797] = 609, - [798] = 575, - [799] = 603, - [800] = 634, - [801] = 611, - [802] = 599, - [803] = 540, - [804] = 626, - [805] = 602, - [806] = 624, - [807] = 612, - [808] = 593, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 814, - [817] = 810, - [818] = 812, - [819] = 819, - [820] = 809, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 830, - [832] = 832, - [833] = 833, - [834] = 834, + [636] = 554, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 573, + [642] = 642, + [643] = 560, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 648, + [649] = 563, + [650] = 622, + [651] = 586, + [652] = 585, + [653] = 629, + [654] = 637, + [655] = 631, + [656] = 608, + [657] = 582, + [658] = 601, + [659] = 587, + [660] = 647, + [661] = 583, + [662] = 588, + [663] = 607, + [664] = 603, + [665] = 615, + [666] = 648, + [667] = 646, + [668] = 525, + [669] = 623, + [670] = 600, + [671] = 613, + [672] = 626, + [673] = 644, + [674] = 526, + [675] = 634, + [676] = 645, + [677] = 596, + [678] = 628, + [679] = 598, + [680] = 581, + [681] = 597, + [682] = 620, + [683] = 591, + [684] = 595, + [685] = 589, + [686] = 590, + [687] = 618, + [688] = 627, + [689] = 624, + [690] = 554, + [691] = 578, + [692] = 638, + [693] = 605, + [694] = 609, + [695] = 580, + [696] = 611, + [697] = 635, + [698] = 614, + [699] = 617, + [700] = 619, + [701] = 594, + [702] = 592, + [703] = 632, + [704] = 630, + [705] = 633, + [706] = 640, + [707] = 639, + [708] = 642, + [709] = 573, + [710] = 616, + [711] = 612, + [712] = 602, + [713] = 2, + [714] = 3, + [715] = 514, + [716] = 3, + [717] = 2, + [718] = 5, + [719] = 6, + [720] = 9, + [721] = 12, + [722] = 10, + [723] = 24, + [724] = 12, + [725] = 529, + [726] = 20, + [727] = 528, + [728] = 6, + [729] = 515, + [730] = 15, + [731] = 527, + [732] = 518, + [733] = 532, + [734] = 9, + [735] = 120, + [736] = 530, + [737] = 5, + [738] = 516, + [739] = 518, + [740] = 516, + [741] = 517, + [742] = 524, + [743] = 532, + [744] = 538, + [745] = 10, + [746] = 517, + [747] = 537, + [748] = 13, + [749] = 531, + [750] = 120, + [751] = 520, + [752] = 525, + [753] = 20, + [754] = 15, + [755] = 24, + [756] = 526, + [757] = 13, + [758] = 40, + [759] = 563, + [760] = 569, + [761] = 552, + [762] = 40, + [763] = 49, + [764] = 568, + [765] = 513, + [766] = 573, + [767] = 575, + [768] = 577, + [769] = 48, + [770] = 554, + [771] = 560, + [772] = 600, + [773] = 618, + [774] = 626, + [775] = 624, + [776] = 587, + [777] = 578, + [778] = 595, + [779] = 597, + [780] = 622, + [781] = 598, + [782] = 581, + [783] = 580, + [784] = 590, + [785] = 602, + [786] = 616, + [787] = 634, + [788] = 639, + [789] = 586, + [790] = 648, + [791] = 605, + [792] = 628, + [793] = 608, + [794] = 601, + [795] = 623, + [796] = 582, + [797] = 588, + [798] = 594, + [799] = 617, + [800] = 609, + [801] = 596, + [802] = 638, + [803] = 614, + [804] = 630, + [805] = 629, + [806] = 526, + [807] = 637, + [808] = 635, + [809] = 647, + [810] = 615, + [811] = 644, + [812] = 619, + [813] = 585, + [814] = 612, + [815] = 611, + [816] = 554, + [817] = 627, + [818] = 631, + [819] = 646, + [820] = 525, + [821] = 632, + [822] = 613, + [823] = 583, + [824] = 645, + [825] = 573, + [826] = 633, + [827] = 591, + [828] = 642, + [829] = 640, + [830] = 589, + [831] = 607, + [832] = 603, + [833] = 620, + [834] = 592, [835] = 835, [836] = 836, [837] = 837, - [838] = 838, + [838] = 836, [839] = 839, - [840] = 840, - [841] = 841, - [842] = 837, - [843] = 514, - [844] = 840, - [845] = 836, - [846] = 841, - [847] = 838, - [848] = 839, + [840] = 835, + [841] = 839, + [842] = 842, + [843] = 837, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, [849] = 849, [850] = 850, [851] = 851, @@ -5745,474 +5783,474 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [853] = 853, [854] = 854, [855] = 855, - [856] = 514, + [856] = 856, [857] = 857, - [858] = 858, + [858] = 855, [859] = 859, [860] = 860, [861] = 861, - [862] = 858, - [863] = 852, - [864] = 524, - [865] = 855, - [866] = 529, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, [867] = 867, - [868] = 518, - [869] = 520, - [870] = 870, - [871] = 519, - [872] = 872, - [873] = 873, - [874] = 853, - [875] = 859, + [868] = 514, + [869] = 864, + [870] = 866, + [871] = 867, + [872] = 862, + [873] = 863, + [874] = 865, + [875] = 875, [876] = 876, [877] = 877, [878] = 878, - [879] = 526, - [880] = 850, - [881] = 854, + [879] = 879, + [880] = 880, + [881] = 881, [882] = 882, - [883] = 522, - [884] = 861, - [885] = 860, - [886] = 525, - [887] = 517, - [888] = 516, - [889] = 889, - [890] = 518, - [891] = 521, - [892] = 892, - [893] = 851, - [894] = 517, - [895] = 523, - [896] = 849, - [897] = 526, - [898] = 525, - [899] = 857, - [900] = 529, - [901] = 518, - [902] = 872, - [903] = 520, - [904] = 526, - [905] = 523, - [906] = 521, - [907] = 877, - [908] = 535, - [909] = 870, - [910] = 910, + [883] = 883, + [884] = 514, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 524, + [889] = 877, + [890] = 516, + [891] = 883, + [892] = 885, + [893] = 893, + [894] = 875, + [895] = 895, + [896] = 527, + [897] = 878, + [898] = 898, + [899] = 532, + [900] = 537, + [901] = 886, + [902] = 882, + [903] = 903, + [904] = 518, + [905] = 905, + [906] = 876, + [907] = 907, + [908] = 518, + [909] = 530, + [910] = 532, [911] = 911, [912] = 517, - [913] = 543, - [914] = 876, - [915] = 516, - [916] = 525, - [917] = 867, - [918] = 514, - [919] = 892, + [913] = 529, + [914] = 516, + [915] = 915, + [916] = 879, + [917] = 881, + [918] = 528, + [919] = 880, [920] = 920, - [921] = 889, - [922] = 922, - [923] = 923, - [924] = 525, - [925] = 517, - [926] = 518, - [927] = 526, - [928] = 878, - [929] = 524, - [930] = 519, - [931] = 532, - [932] = 522, - [933] = 873, - [934] = 540, - [935] = 561, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 535, - [940] = 940, - [941] = 514, - [942] = 555, - [943] = 543, - [944] = 563, - [945] = 532, - [946] = 946, - [947] = 947, + [921] = 515, + [922] = 538, + [923] = 517, + [924] = 924, + [925] = 887, + [926] = 530, + [927] = 524, + [928] = 893, + [929] = 515, + [930] = 930, + [931] = 898, + [932] = 903, + [933] = 920, + [934] = 518, + [935] = 531, + [936] = 895, + [937] = 518, + [938] = 911, + [939] = 532, + [940] = 517, + [941] = 527, + [942] = 942, + [943] = 520, + [944] = 907, + [945] = 516, + [946] = 514, + [947] = 529, [948] = 948, - [949] = 949, - [950] = 554, - [951] = 564, - [952] = 559, - [953] = 562, - [954] = 954, - [955] = 514, - [956] = 552, - [957] = 957, - [958] = 540, - [959] = 558, - [960] = 960, - [961] = 575, - [962] = 627, - [963] = 948, - [964] = 564, - [965] = 559, - [966] = 579, - [967] = 619, - [968] = 593, - [969] = 578, - [970] = 617, - [971] = 938, - [972] = 954, - [973] = 940, - [974] = 622, - [975] = 615, - [976] = 561, - [977] = 552, - [978] = 612, - [979] = 587, - [980] = 624, - [981] = 554, - [982] = 602, - [983] = 524, - [984] = 562, - [985] = 599, - [986] = 621, - [987] = 558, - [988] = 626, - [989] = 611, - [990] = 633, - [991] = 613, - [992] = 600, - [993] = 589, - [994] = 614, - [995] = 629, - [996] = 588, - [997] = 609, - [998] = 580, - [999] = 565, - [1000] = 634, - [1001] = 590, - [1002] = 555, - [1003] = 604, - [1004] = 554, - [1005] = 532, - [1006] = 635, - [1007] = 623, - [1008] = 937, + [949] = 905, + [950] = 950, + [951] = 528, + [952] = 952, + [953] = 516, + [954] = 532, + [955] = 525, + [956] = 517, + [957] = 915, + [958] = 538, + [959] = 526, + [960] = 537, + [961] = 514, + [962] = 962, + [963] = 526, + [964] = 560, + [965] = 525, + [966] = 568, + [967] = 575, + [968] = 573, + [969] = 969, + [970] = 514, + [971] = 577, + [972] = 972, + [973] = 569, + [974] = 554, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 531, + [980] = 980, + [981] = 981, + [982] = 520, + [983] = 552, + [984] = 984, + [985] = 985, + [986] = 563, + [987] = 597, + [988] = 635, + [989] = 514, + [990] = 617, + [991] = 627, + [992] = 568, + [993] = 969, + [994] = 588, + [995] = 586, + [996] = 647, + [997] = 984, + [998] = 560, + [999] = 972, + [1000] = 590, + [1001] = 591, + [1002] = 526, + [1003] = 619, + [1004] = 626, + [1005] = 573, + [1006] = 634, + [1007] = 554, + [1008] = 563, [1009] = 598, - [1010] = 616, - [1011] = 608, - [1012] = 514, - [1013] = 606, - [1014] = 605, - [1015] = 618, - [1016] = 596, - [1017] = 563, - [1018] = 592, - [1019] = 947, - [1020] = 591, - [1021] = 584, - [1022] = 583, - [1023] = 582, - [1024] = 577, - [1025] = 540, - [1026] = 576, - [1027] = 573, - [1028] = 568, - [1029] = 561, - [1030] = 567, - [1031] = 586, - [1032] = 581, - [1033] = 574, - [1034] = 571, - [1035] = 569, - [1036] = 570, - [1037] = 566, - [1038] = 595, - [1039] = 603, - [1040] = 597, - [1041] = 523, - [1042] = 588, - [1043] = 519, - [1044] = 581, - [1045] = 590, - [1046] = 569, - [1047] = 579, - [1048] = 621, - [1049] = 593, - [1050] = 565, - [1051] = 586, - [1052] = 566, - [1053] = 567, - [1054] = 568, - [1055] = 1055, - [1056] = 573, - [1057] = 561, - [1058] = 589, - [1059] = 608, - [1060] = 532, - [1061] = 540, - [1062] = 605, - [1063] = 525, - [1064] = 595, - [1065] = 575, - [1066] = 576, - [1067] = 577, - [1068] = 616, - [1069] = 580, - [1070] = 606, - [1071] = 597, - [1072] = 582, - [1073] = 609, - [1074] = 603, - [1075] = 624, - [1076] = 517, - [1077] = 526, - [1078] = 626, - [1079] = 524, - [1080] = 571, - [1081] = 570, - [1082] = 526, - [1083] = 518, - [1084] = 518, - [1085] = 578, - [1086] = 617, - [1087] = 587, - [1088] = 622, - [1089] = 615, - [1090] = 525, - [1091] = 612, - [1092] = 602, - [1093] = 584, - [1094] = 604, - [1095] = 598, - [1096] = 619, - [1097] = 524, - [1098] = 591, - [1099] = 599, - [1100] = 634, - [1101] = 611, - [1102] = 554, - [1103] = 623, - [1104] = 618, - [1105] = 592, - [1106] = 574, - [1107] = 633, - [1108] = 635, - [1109] = 583, - [1110] = 517, - [1111] = 613, - [1112] = 600, - [1113] = 596, - [1114] = 614, - [1115] = 629, - [1116] = 627, - [1117] = 1117, - [1118] = 521, - [1119] = 1119, - [1120] = 1120, + [1010] = 622, + [1011] = 573, + [1012] = 569, + [1013] = 596, + [1014] = 615, + [1015] = 980, + [1016] = 595, + [1017] = 603, + [1018] = 578, + [1019] = 592, + [1020] = 577, + [1021] = 612, + [1022] = 623, + [1023] = 554, + [1024] = 977, + [1025] = 607, + [1026] = 594, + [1027] = 638, + [1028] = 646, + [1029] = 631, + [1030] = 630, + [1031] = 645, + [1032] = 589, + [1033] = 585, + [1034] = 620, + [1035] = 605, + [1036] = 609, + [1037] = 628, + [1038] = 637, + [1039] = 629, + [1040] = 527, + [1041] = 582, + [1042] = 587, + [1043] = 581, + [1044] = 580, + [1045] = 602, + [1046] = 613, + [1047] = 525, + [1048] = 616, + [1049] = 639, + [1050] = 618, + [1051] = 575, + [1052] = 608, + [1053] = 552, + [1054] = 611, + [1055] = 614, + [1056] = 648, + [1057] = 601, + [1058] = 600, + [1059] = 644, + [1060] = 642, + [1061] = 640, + [1062] = 633, + [1063] = 583, + [1064] = 981, + [1065] = 624, + [1066] = 632, + [1067] = 586, + [1068] = 554, + [1069] = 613, + [1070] = 618, + [1071] = 515, + [1072] = 608, + [1073] = 601, + [1074] = 623, + [1075] = 600, + [1076] = 642, + [1077] = 525, + [1078] = 530, + [1079] = 616, + [1080] = 646, + [1081] = 626, + [1082] = 612, + [1083] = 639, + [1084] = 602, + [1085] = 640, + [1086] = 580, + [1087] = 591, + [1088] = 583, + [1089] = 581, + [1090] = 527, + [1091] = 516, + [1092] = 590, + [1093] = 587, + [1094] = 1094, + [1095] = 633, + [1096] = 629, + [1097] = 632, + [1098] = 627, + [1099] = 582, + [1100] = 589, + [1101] = 592, + [1102] = 578, + [1103] = 637, + [1104] = 595, + [1105] = 1105, + [1106] = 1106, + [1107] = 597, + [1108] = 532, + [1109] = 619, + [1110] = 1110, + [1111] = 614, + [1112] = 631, + [1113] = 1106, + [1114] = 611, + [1115] = 573, + [1116] = 598, + [1117] = 527, + [1118] = 628, + [1119] = 607, + [1120] = 609, [1121] = 1121, - [1122] = 837, - [1123] = 1123, - [1124] = 1121, - [1125] = 1121, - [1126] = 555, - [1127] = 1127, - [1128] = 1128, - [1129] = 517, - [1130] = 1130, - [1131] = 841, - [1132] = 535, - [1133] = 543, - [1134] = 525, - [1135] = 1055, - [1136] = 839, - [1137] = 1137, - [1138] = 1121, - [1139] = 840, - [1140] = 1121, - [1141] = 1120, - [1142] = 1121, - [1143] = 517, - [1144] = 523, - [1145] = 518, - [1146] = 1121, - [1147] = 836, - [1148] = 1137, - [1149] = 838, - [1150] = 1117, - [1151] = 525, - [1152] = 1127, - [1153] = 1055, - [1154] = 526, - [1155] = 1121, - [1156] = 1120, - [1157] = 1121, - [1158] = 524, - [1159] = 1159, - [1160] = 540, - [1161] = 1121, - [1162] = 1121, - [1163] = 1117, - [1164] = 1121, - [1165] = 1121, - [1166] = 1120, + [1122] = 588, + [1123] = 622, + [1124] = 605, + [1125] = 624, + [1126] = 634, + [1127] = 517, + [1128] = 518, + [1129] = 648, + [1130] = 526, + [1131] = 1121, + [1132] = 617, + [1133] = 585, + [1134] = 524, + [1135] = 603, + [1136] = 620, + [1137] = 638, + [1138] = 644, + [1139] = 630, + [1140] = 517, + [1141] = 645, + [1142] = 594, + [1143] = 596, + [1144] = 615, + [1145] = 516, + [1146] = 518, + [1147] = 532, + [1148] = 635, + [1149] = 647, + [1150] = 1150, + [1151] = 1151, + [1152] = 518, + [1153] = 568, + [1154] = 530, + [1155] = 515, + [1156] = 525, + [1157] = 526, + [1158] = 865, + [1159] = 577, + [1160] = 527, + [1161] = 1161, + [1162] = 863, + [1163] = 1161, + [1164] = 1161, + [1165] = 1165, + [1166] = 862, [1167] = 518, - [1168] = 564, - [1169] = 526, - [1170] = 532, - [1171] = 1171, - [1172] = 1121, - [1173] = 519, - [1174] = 521, - [1175] = 1121, - [1176] = 1123, - [1177] = 1177, - [1178] = 590, - [1179] = 1159, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1137, - [1184] = 1184, - [1185] = 635, - [1186] = 558, - [1187] = 1127, - [1188] = 1188, + [1168] = 1168, + [1169] = 1150, + [1170] = 1161, + [1171] = 1110, + [1172] = 1161, + [1173] = 517, + [1174] = 1161, + [1175] = 1175, + [1176] = 1176, + [1177] = 516, + [1178] = 1161, + [1179] = 1161, + [1180] = 864, + [1181] = 1176, + [1182] = 1161, + [1183] = 866, + [1184] = 532, + [1185] = 531, + [1186] = 1161, + [1187] = 520, + [1188] = 1094, [1189] = 1189, - [1190] = 621, - [1191] = 552, - [1192] = 1192, - [1193] = 543, - [1194] = 535, - [1195] = 532, + [1190] = 867, + [1191] = 1110, + [1192] = 524, + [1193] = 1161, + [1194] = 1161, + [1195] = 1195, [1196] = 1196, - [1197] = 562, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1130, - [1203] = 561, + [1197] = 1161, + [1198] = 1094, + [1199] = 1161, + [1200] = 1175, + [1201] = 516, + [1202] = 1161, + [1203] = 517, [1204] = 1204, - [1205] = 1205, - [1206] = 1119, - [1207] = 1119, - [1208] = 1137, - [1209] = 1130, - [1210] = 1210, + [1205] = 1151, + [1206] = 532, + [1207] = 568, + [1208] = 634, + [1209] = 1209, + [1210] = 531, [1211] = 1211, - [1212] = 564, - [1213] = 1123, - [1214] = 1214, - [1215] = 1215, - [1216] = 532, - [1217] = 1196, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, + [1212] = 1212, + [1213] = 1213, + [1214] = 520, + [1215] = 577, + [1216] = 1216, + [1217] = 1217, + [1218] = 1150, + [1219] = 1150, + [1220] = 1151, [1221] = 1221, - [1222] = 540, - [1223] = 1223, + [1222] = 577, + [1223] = 525, [1224] = 1224, - [1225] = 564, - [1226] = 633, - [1227] = 555, - [1228] = 1055, - [1229] = 1117, - [1230] = 1230, - [1231] = 1127, + [1225] = 1225, + [1226] = 1226, + [1227] = 1168, + [1228] = 1228, + [1229] = 1165, + [1230] = 526, + [1231] = 1231, [1232] = 1232, - [1233] = 618, - [1234] = 540, - [1235] = 1235, - [1236] = 555, - [1237] = 609, - [1238] = 554, - [1239] = 1239, - [1240] = 1180, - [1241] = 1241, + [1233] = 563, + [1234] = 1234, + [1235] = 1204, + [1236] = 647, + [1237] = 1237, + [1238] = 526, + [1239] = 573, + [1240] = 1240, + [1241] = 552, [1242] = 1242, [1243] = 1243, - [1244] = 860, + [1244] = 1196, [1245] = 1245, - [1246] = 1246, - [1247] = 855, + [1246] = 612, + [1247] = 1247, [1248] = 1248, - [1249] = 564, - [1250] = 1235, - [1251] = 850, - [1252] = 1201, - [1253] = 609, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1151, + [1253] = 1094, + [1254] = 568, + [1255] = 560, + [1256] = 1110, + [1257] = 620, [1258] = 1258, - [1259] = 1200, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1264, + [1259] = 525, + [1260] = 1165, + [1261] = 1196, + [1262] = 583, + [1263] = 554, + [1264] = 613, [1265] = 1265, - [1266] = 1266, + [1266] = 1168, [1267] = 1267, - [1268] = 859, - [1269] = 858, - [1270] = 1199, - [1271] = 1198, - [1272] = 558, - [1273] = 1223, + [1268] = 1268, + [1269] = 1247, + [1270] = 1211, + [1271] = 1245, + [1272] = 1272, + [1273] = 1216, [1274] = 1274, - [1275] = 1123, - [1276] = 1276, - [1277] = 1277, - [1278] = 1188, - [1279] = 1189, + [1275] = 1231, + [1276] = 1217, + [1277] = 1232, + [1278] = 1278, + [1279] = 1279, [1280] = 1280, - [1281] = 1281, + [1281] = 635, [1282] = 1282, [1283] = 1283, - [1284] = 1119, + [1284] = 1251, [1285] = 1285, [1286] = 1286, - [1287] = 1130, - [1288] = 1288, + [1287] = 1287, + [1288] = 1258, [1289] = 1289, [1290] = 1290, [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, + [1292] = 1242, + [1293] = 1240, + [1294] = 647, [1295] = 1295, - [1296] = 1184, + [1296] = 1296, [1297] = 1297, [1298] = 1298, [1299] = 1299, [1300] = 1300, - [1301] = 1301, - [1302] = 1302, + [1301] = 577, + [1302] = 1234, [1303] = 1303, [1304] = 1304, [1305] = 1305, - [1306] = 561, + [1306] = 1306, [1307] = 1307, [1308] = 1308, [1309] = 1309, [1310] = 1310, - [1311] = 1311, - [1312] = 1182, + [1311] = 613, + [1312] = 1237, [1313] = 1313, - [1314] = 1314, + [1314] = 1209, [1315] = 1315, [1316] = 1316, [1317] = 1317, - [1318] = 1181, + [1318] = 1318, [1319] = 1319, [1320] = 1320, [1321] = 1321, - [1322] = 1322, - [1323] = 540, + [1322] = 554, + [1323] = 560, [1324] = 1324, [1325] = 1325, [1326] = 1326, @@ -6224,430 +6262,430 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1332] = 1332, [1333] = 1333, [1334] = 1334, - [1335] = 1180, - [1336] = 590, + [1335] = 1335, + [1336] = 1336, [1337] = 1337, [1338] = 1338, [1339] = 1339, - [1340] = 1220, + [1340] = 1340, [1341] = 1341, [1342] = 1342, - [1343] = 1232, - [1344] = 1230, - [1345] = 1219, - [1346] = 554, + [1343] = 1343, + [1344] = 1344, + [1345] = 1345, + [1346] = 1346, [1347] = 1347, [1348] = 1348, [1349] = 1349, [1350] = 1350, - [1351] = 554, - [1352] = 1352, - [1353] = 621, + [1351] = 1351, + [1352] = 1211, + [1353] = 1353, [1354] = 1354, [1355] = 1355, - [1356] = 555, + [1356] = 876, [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 857, + [1358] = 883, + [1359] = 887, + [1360] = 583, [1361] = 1361, [1362] = 1362, [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 633, - [1367] = 1367, - [1368] = 1368, - [1369] = 851, - [1370] = 1370, + [1366] = 1231, + [1367] = 1267, + [1368] = 885, + [1369] = 1228, + [1370] = 1226, [1371] = 1371, - [1372] = 1372, - [1373] = 1373, + [1372] = 1225, + [1373] = 1224, [1374] = 1374, [1375] = 1375, - [1376] = 1376, - [1377] = 1377, + [1376] = 1245, + [1377] = 879, [1378] = 1378, - [1379] = 861, + [1379] = 634, [1380] = 1380, [1381] = 1381, - [1382] = 1382, - [1383] = 1383, + [1382] = 612, + [1383] = 875, [1384] = 1384, - [1385] = 1385, + [1385] = 1243, [1386] = 1386, [1387] = 1387, - [1388] = 1388, - [1389] = 1389, + [1388] = 878, + [1389] = 1221, [1390] = 1390, - [1391] = 1391, + [1391] = 1212, [1392] = 1392, [1393] = 1393, - [1394] = 1394, + [1394] = 1168, [1395] = 1395, [1396] = 1396, - [1397] = 1397, - [1398] = 1184, + [1397] = 1165, + [1398] = 1398, [1399] = 1399, [1400] = 1400, [1401] = 1401, - [1402] = 1402, - [1403] = 1218, - [1404] = 854, + [1402] = 1247, + [1403] = 877, + [1404] = 1404, [1405] = 1405, [1406] = 1406, [1407] = 1407, [1408] = 1408, - [1409] = 853, + [1409] = 1409, [1410] = 1410, - [1411] = 1214, - [1412] = 532, - [1413] = 552, - [1414] = 561, - [1415] = 1415, - [1416] = 1416, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, + [1414] = 1196, + [1415] = 880, + [1416] = 624, [1417] = 1417, [1418] = 1418, - [1419] = 589, - [1420] = 849, - [1421] = 1421, - [1422] = 1422, + [1419] = 881, + [1420] = 573, + [1421] = 563, + [1422] = 1250, [1423] = 1423, [1424] = 1424, - [1425] = 852, - [1426] = 1177, - [1427] = 1211, - [1428] = 1210, - [1429] = 1182, - [1430] = 1192, - [1431] = 1204, - [1432] = 618, - [1433] = 587, - [1434] = 1205, - [1435] = 1435, + [1425] = 1425, + [1426] = 1426, + [1427] = 552, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 882, + [1432] = 1432, + [1433] = 886, + [1434] = 1434, + [1435] = 573, [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 1221, + [1439] = 1439, [1440] = 1440, - [1441] = 1215, + [1441] = 1441, [1442] = 1442, [1443] = 1443, [1444] = 1444, - [1445] = 1445, + [1445] = 526, [1446] = 1446, [1447] = 1447, [1448] = 1448, [1449] = 1449, [1450] = 1450, [1451] = 1451, - [1452] = 1181, + [1452] = 568, [1453] = 1453, [1454] = 1454, [1455] = 1455, - [1456] = 562, - [1457] = 1457, - [1458] = 635, + [1456] = 1249, + [1457] = 554, + [1458] = 1458, [1459] = 1459, [1460] = 1460, - [1461] = 1261, - [1462] = 1319, - [1463] = 1352, - [1464] = 1357, - [1465] = 1359, - [1466] = 1280, - [1467] = 1315, - [1468] = 1239, - [1469] = 1415, - [1470] = 1329, - [1471] = 1362, - [1472] = 1424, - [1473] = 1184, - [1474] = 1381, - [1475] = 1393, - [1476] = 1331, - [1477] = 1422, - [1478] = 1382, + [1461] = 1461, + [1462] = 1462, + [1463] = 1248, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 620, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1213, + [1478] = 1478, [1479] = 1479, - [1480] = 1332, - [1481] = 589, - [1482] = 1266, - [1483] = 1421, - [1484] = 1438, - [1485] = 1449, - [1486] = 1448, - [1487] = 1447, - [1488] = 1446, - [1489] = 1455, - [1490] = 1445, - [1491] = 1443, - [1492] = 1303, - [1493] = 1376, - [1494] = 1440, - [1495] = 1342, - [1496] = 1348, - [1497] = 1450, - [1498] = 1372, - [1499] = 1301, - [1500] = 1363, - [1501] = 1459, - [1502] = 1460, - [1503] = 1358, - [1504] = 1355, - [1505] = 1354, - [1506] = 1451, - [1507] = 1321, - [1508] = 1453, - [1509] = 1454, - [1510] = 1322, - [1511] = 1333, - [1512] = 1304, - [1513] = 1324, - [1514] = 1327, - [1515] = 1307, - [1516] = 1384, - [1517] = 1328, - [1518] = 1182, - [1519] = 1300, - [1520] = 1313, - [1521] = 1405, - [1522] = 1408, - [1523] = 1297, - [1524] = 1383, - [1525] = 1295, - [1526] = 1294, - [1527] = 1180, - [1528] = 1326, - [1529] = 1396, - [1530] = 1325, - [1531] = 1308, - [1532] = 1293, - [1533] = 1364, - [1534] = 1349, - [1535] = 1350, - [1536] = 1365, - [1537] = 1314, - [1538] = 1265, - [1539] = 1367, - [1540] = 1320, - [1541] = 1309, - [1542] = 554, - [1543] = 1264, - [1544] = 1337, - [1545] = 1338, - [1546] = 1391, - [1547] = 1339, - [1548] = 1292, - [1549] = 1310, - [1550] = 1550, - [1551] = 587, - [1552] = 1375, - [1553] = 1553, - [1554] = 1378, - [1555] = 1181, - [1556] = 1377, - [1557] = 1262, - [1558] = 1370, - [1559] = 1371, - [1560] = 1401, - [1561] = 1373, - [1562] = 1392, - [1563] = 1243, - [1564] = 1380, - [1565] = 1361, - [1566] = 1374, - [1567] = 1385, - [1568] = 1302, - [1569] = 1305, - [1570] = 1311, - [1571] = 1399, - [1572] = 1436, - [1573] = 1291, - [1574] = 1435, - [1575] = 1347, - [1576] = 1576, - [1577] = 1290, - [1578] = 1289, - [1579] = 1288, - [1580] = 1286, - [1581] = 1397, - [1582] = 1260, - [1583] = 1395, - [1584] = 1267, - [1585] = 1330, - [1586] = 1299, - [1587] = 1334, - [1588] = 1298, - [1589] = 1263, - [1590] = 1387, - [1591] = 1386, - [1592] = 1394, - [1593] = 1316, - [1594] = 1444, - [1595] = 1283, - [1596] = 1282, - [1597] = 1389, - [1598] = 561, - [1599] = 1258, - [1600] = 1257, - [1601] = 1256, - [1602] = 1277, - [1603] = 1442, - [1604] = 1418, - [1605] = 1276, - [1606] = 1255, - [1607] = 1390, - [1608] = 1388, - [1609] = 1254, - [1610] = 1281, - [1611] = 1417, - [1612] = 1341, - [1613] = 1368, - [1614] = 1410, - [1615] = 1416, - [1616] = 1457, - [1617] = 1317, - [1618] = 1285, - [1619] = 1246, - [1620] = 1245, - [1621] = 1423, - [1622] = 1242, - [1623] = 1241, - [1624] = 1406, - [1625] = 1407, - [1626] = 1626, - [1627] = 1627, - [1628] = 1628, - [1629] = 1629, - [1630] = 1630, - [1631] = 1631, - [1632] = 1632, - [1633] = 1633, - [1634] = 1634, - [1635] = 1635, - [1636] = 1636, - [1637] = 1637, - [1638] = 1638, - [1639] = 1639, - [1640] = 1640, - [1641] = 1641, - [1642] = 1642, - [1643] = 1643, - [1644] = 1644, - [1645] = 1645, - [1646] = 1646, - [1647] = 1647, - [1648] = 1648, - [1649] = 1649, - [1650] = 1650, - [1651] = 1651, - [1652] = 1652, - [1653] = 1653, - [1654] = 514, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 525, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1487, + [1491] = 1320, + [1492] = 1328, + [1493] = 1475, + [1494] = 1474, + [1495] = 1473, + [1496] = 1472, + [1497] = 1471, + [1498] = 1469, + [1499] = 1245, + [1500] = 1337, + [1501] = 1338, + [1502] = 635, + [1503] = 1453, + [1504] = 1339, + [1505] = 1505, + [1506] = 1274, + [1507] = 1327, + [1508] = 1481, + [1509] = 1459, + [1510] = 1480, + [1511] = 1485, + [1512] = 1488, + [1513] = 1489, + [1514] = 1341, + [1515] = 1346, + [1516] = 1296, + [1517] = 1297, + [1518] = 1344, + [1519] = 1483, + [1520] = 1482, + [1521] = 1345, + [1522] = 1455, + [1523] = 1461, + [1524] = 1326, + [1525] = 1454, + [1526] = 1325, + [1527] = 1357, + [1528] = 1365, + [1529] = 1321, + [1530] = 1380, + [1531] = 1381, + [1532] = 1479, + [1533] = 1347, + [1534] = 1398, + [1535] = 1348, + [1536] = 1434, + [1537] = 1247, + [1538] = 1441, + [1539] = 1442, + [1540] = 1443, + [1541] = 1350, + [1542] = 624, + [1543] = 1449, + [1544] = 1450, + [1545] = 1353, + [1546] = 1354, + [1547] = 1361, + [1548] = 1451, + [1549] = 1460, + [1550] = 1374, + [1551] = 1285, + [1552] = 1378, + [1553] = 1384, + [1554] = 1486, + [1555] = 1290, + [1556] = 1291, + [1557] = 1268, + [1558] = 1386, + [1559] = 1286, + [1560] = 1478, + [1561] = 1476, + [1562] = 1470, + [1563] = 1468, + [1564] = 1387, + [1565] = 1392, + [1566] = 1295, + [1567] = 1298, + [1568] = 1408, + [1569] = 1407, + [1570] = 1393, + [1571] = 1418, + [1572] = 1375, + [1573] = 1336, + [1574] = 1417, + [1575] = 1299, + [1576] = 1300, + [1577] = 1303, + [1578] = 1340, + [1579] = 1335, + [1580] = 1333, + [1581] = 1332, + [1582] = 1324, + [1583] = 1317, + [1584] = 1309, + [1585] = 1395, + [1586] = 1413, + [1587] = 1412, + [1588] = 1371, + [1589] = 1589, + [1590] = 554, + [1591] = 1364, + [1592] = 1306, + [1593] = 1304, + [1594] = 1313, + [1595] = 1316, + [1596] = 1363, + [1597] = 1390, + [1598] = 1308, + [1599] = 1310, + [1600] = 1307, + [1601] = 1315, + [1602] = 1318, + [1603] = 1362, + [1604] = 1319, + [1605] = 1396, + [1606] = 1283, + [1607] = 1399, + [1608] = 1466, + [1609] = 1465, + [1610] = 1464, + [1611] = 1462, + [1612] = 1400, + [1613] = 1289, + [1614] = 1355, + [1615] = 1231, + [1616] = 1351, + [1617] = 1448, + [1618] = 1349, + [1619] = 1343, + [1620] = 573, + [1621] = 1447, + [1622] = 1622, + [1623] = 1446, + [1624] = 1624, + [1625] = 1405, + [1626] = 1409, + [1627] = 1342, + [1628] = 1305, + [1629] = 1444, + [1630] = 1440, + [1631] = 1439, + [1632] = 1437, + [1633] = 1436, + [1634] = 1432, + [1635] = 1430, + [1636] = 1429, + [1637] = 1280, + [1638] = 1272, + [1639] = 1428, + [1640] = 1406, + [1641] = 1404, + [1642] = 1426, + [1643] = 1278, + [1644] = 1287, + [1645] = 1425, + [1646] = 1424, + [1647] = 1423, + [1648] = 1411, + [1649] = 1211, + [1650] = 1410, + [1651] = 1329, + [1652] = 1330, + [1653] = 1331, + [1654] = 1334, [1655] = 1655, [1656] = 1656, - [1657] = 525, - [1658] = 518, - [1659] = 517, - [1660] = 526, + [1657] = 1657, + [1658] = 1658, + [1659] = 1659, + [1660] = 1660, [1661] = 1661, - [1662] = 1661, - [1663] = 1656, - [1664] = 1656, + [1662] = 1662, + [1663] = 1663, + [1664] = 1664, [1665] = 1665, - [1666] = 1656, - [1667] = 517, - [1668] = 525, - [1669] = 1661, + [1666] = 1666, + [1667] = 1667, + [1668] = 1668, + [1669] = 1669, [1670] = 1670, - [1671] = 1661, - [1672] = 1670, - [1673] = 1656, - [1674] = 1117, - [1675] = 1656, - [1676] = 1656, - [1677] = 1661, - [1678] = 1661, + [1671] = 1671, + [1672] = 1672, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, + [1676] = 1676, + [1677] = 1677, + [1678] = 1678, [1679] = 1679, - [1680] = 1661, - [1681] = 1661, - [1682] = 1656, - [1683] = 1661, - [1684] = 1661, - [1685] = 1679, - [1686] = 1656, - [1687] = 1661, - [1688] = 1656, - [1689] = 1656, - [1690] = 521, - [1691] = 1691, - [1692] = 1656, + [1680] = 1680, + [1681] = 1681, + [1682] = 514, + [1683] = 518, + [1684] = 517, + [1685] = 516, + [1686] = 1686, + [1687] = 515, + [1688] = 1688, + [1689] = 515, + [1690] = 1690, + [1691] = 532, + [1692] = 1690, [1693] = 518, [1694] = 1694, - [1695] = 1695, - [1696] = 1656, - [1697] = 1661, - [1698] = 526, - [1699] = 1661, - [1700] = 1656, - [1701] = 1691, - [1702] = 1055, - [1703] = 1665, - [1704] = 1704, + [1695] = 528, + [1696] = 1690, + [1697] = 1110, + [1698] = 1690, + [1699] = 1694, + [1700] = 1700, + [1701] = 1701, + [1702] = 1690, + [1703] = 1694, + [1704] = 1701, [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1705, - [1710] = 1710, - [1711] = 518, - [1712] = 1712, - [1713] = 1713, - [1714] = 1714, - [1715] = 1715, + [1706] = 525, + [1707] = 516, + [1708] = 516, + [1709] = 1694, + [1710] = 1690, + [1711] = 527, + [1712] = 529, + [1713] = 518, + [1714] = 1694, + [1715] = 1694, [1716] = 1716, - [1717] = 1717, - [1718] = 1718, - [1719] = 1719, - [1720] = 1720, - [1721] = 1718, - [1722] = 1722, - [1723] = 1723, - [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1727, - [1728] = 1728, - [1729] = 1707, - [1730] = 1712, - [1731] = 1723, - [1732] = 1726, - [1733] = 1727, - [1734] = 1728, - [1735] = 1735, - [1736] = 1736, - [1737] = 1720, - [1738] = 1738, - [1739] = 1735, + [1717] = 517, + [1718] = 1690, + [1719] = 516, + [1720] = 518, + [1721] = 517, + [1722] = 517, + [1723] = 1694, + [1724] = 538, + [1725] = 1694, + [1726] = 1690, + [1727] = 1694, + [1728] = 530, + [1729] = 532, + [1730] = 1690, + [1731] = 1731, + [1732] = 532, + [1733] = 532, + [1734] = 520, + [1735] = 1690, + [1736] = 531, + [1737] = 1690, + [1738] = 524, + [1739] = 1094, [1740] = 1740, - [1741] = 1741, - [1742] = 1742, - [1743] = 1743, - [1744] = 1736, - [1745] = 540, - [1746] = 1746, - [1747] = 532, - [1748] = 1724, - [1749] = 518, - [1750] = 521, - [1751] = 1751, - [1752] = 517, + [1741] = 1690, + [1742] = 1694, + [1743] = 1694, + [1744] = 1690, + [1745] = 1716, + [1746] = 526, + [1747] = 1694, + [1748] = 1690, + [1749] = 1749, + [1750] = 1740, + [1751] = 537, + [1752] = 1694, [1753] = 1753, - [1754] = 1754, + [1754] = 1700, [1755] = 1755, [1756] = 1756, [1757] = 1757, - [1758] = 1758, + [1758] = 1757, [1759] = 1759, [1760] = 1760, [1761] = 1761, @@ -6655,7 +6693,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1763] = 1763, [1764] = 1764, [1765] = 1765, - [1766] = 525, + [1766] = 1761, [1767] = 1767, [1768] = 1768, [1769] = 1769, @@ -6665,2990 +6703,2990 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1773] = 1773, [1774] = 1774, [1775] = 1775, - [1776] = 1776, + [1776] = 1755, [1777] = 1777, [1778] = 1778, [1779] = 1779, [1780] = 1780, [1781] = 1781, - [1782] = 517, - [1783] = 525, + [1782] = 1782, + [1783] = 1783, [1784] = 1784, [1785] = 1785, - [1786] = 1753, - [1787] = 1754, - [1788] = 1755, - [1789] = 1756, - [1790] = 1757, - [1791] = 1758, - [1792] = 1781, - [1793] = 1793, - [1794] = 1759, - [1795] = 1760, - [1796] = 526, + [1786] = 1786, + [1787] = 1787, + [1788] = 1788, + [1789] = 1762, + [1790] = 1790, + [1791] = 1791, + [1792] = 1763, + [1793] = 1764, + [1794] = 1794, + [1795] = 1795, + [1796] = 1796, [1797] = 1797, - [1798] = 1761, - [1799] = 1762, - [1800] = 535, - [1801] = 1127, - [1802] = 1763, - [1803] = 1764, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, [1804] = 1804, - [1805] = 1117, - [1806] = 1765, - [1807] = 1055, - [1808] = 1797, - [1809] = 1793, + [1805] = 1805, + [1806] = 1806, + [1807] = 1807, + [1808] = 1808, + [1809] = 1809, [1810] = 1810, - [1811] = 1706, - [1812] = 1708, - [1813] = 526, - [1814] = 1710, - [1815] = 1713, - [1816] = 1714, - [1817] = 1715, - [1818] = 1716, - [1819] = 1717, - [1820] = 1722, - [1821] = 1740, - [1822] = 1822, - [1823] = 1823, - [1824] = 1719, - [1825] = 1137, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 1765, + [1815] = 1815, + [1816] = 1816, + [1817] = 1815, + [1818] = 1816, + [1819] = 1767, + [1820] = 1768, + [1821] = 1760, + [1822] = 1769, + [1823] = 1770, + [1824] = 1824, + [1825] = 1825, [1826] = 1826, - [1827] = 1742, - [1828] = 1769, - [1829] = 1725, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, [1830] = 1830, [1831] = 1831, - [1832] = 1780, - [1833] = 1770, - [1834] = 1771, - [1835] = 522, - [1836] = 524, - [1837] = 1127, - [1838] = 1137, - [1839] = 523, + [1832] = 1832, + [1833] = 1833, + [1834] = 1834, + [1835] = 1835, + [1836] = 1756, + [1837] = 525, + [1838] = 1838, + [1839] = 1839, [1840] = 1840, - [1841] = 1772, - [1842] = 1773, + [1841] = 1841, + [1842] = 1842, [1843] = 1843, [1844] = 1844, - [1845] = 1774, - [1846] = 1130, + [1845] = 1845, + [1846] = 1846, [1847] = 1847, - [1848] = 1775, + [1848] = 1848, [1849] = 1849, [1850] = 1850, - [1851] = 1851, - [1852] = 1852, - [1853] = 516, - [1854] = 1854, - [1855] = 1704, - [1856] = 1856, - [1857] = 1857, - [1858] = 1776, - [1859] = 1777, - [1860] = 1860, - [1861] = 1831, - [1862] = 1860, - [1863] = 1830, - [1864] = 1119, - [1865] = 1857, - [1866] = 1778, - [1867] = 1856, - [1868] = 520, - [1869] = 1823, - [1870] = 1822, - [1871] = 1779, - [1872] = 1804, - [1873] = 1785, - [1874] = 1784, - [1875] = 1768, - [1876] = 1767, - [1877] = 1751, - [1878] = 1746, - [1879] = 543, - [1880] = 1810, - [1881] = 1854, - [1882] = 1840, - [1883] = 519, - [1884] = 1843, - [1885] = 1844, - [1886] = 1123, - [1887] = 1847, - [1888] = 1849, - [1889] = 1850, - [1890] = 1851, - [1891] = 1852, - [1892] = 529, - [1893] = 1893, - [1894] = 1123, - [1895] = 1119, - [1896] = 1130, - [1897] = 1184, - [1898] = 1182, - [1899] = 1181, - [1900] = 1180, - [1901] = 1198, - [1902] = 1199, - [1903] = 1200, - [1904] = 1904, - [1905] = 1201, - [1906] = 558, - [1907] = 561, - [1908] = 552, - [1909] = 1204, - [1910] = 1205, - [1911] = 532, - [1912] = 540, - [1913] = 535, - [1914] = 562, - [1915] = 554, - [1916] = 1916, - [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1918, - [1921] = 543, - [1922] = 1922, - [1923] = 1923, - [1924] = 1924, - [1925] = 1925, - [1926] = 1926, - [1927] = 1923, - [1928] = 1928, - [1929] = 1929, - [1930] = 1930, - [1931] = 1931, - [1932] = 561, - [1933] = 1933, - [1934] = 1934, - [1935] = 1929, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 1934, - [1940] = 1940, - [1941] = 1941, - [1942] = 1384, - [1943] = 1924, - [1944] = 1925, - [1945] = 1926, - [1946] = 1923, - [1947] = 1928, - [1948] = 1923, - [1949] = 1933, - [1950] = 1934, - [1951] = 1936, - [1952] = 1937, - [1953] = 1938, - [1954] = 1954, - [1955] = 1940, - [1956] = 1941, - [1957] = 1928, + [1851] = 1771, + [1852] = 526, + [1853] = 1772, + [1854] = 1813, + [1855] = 1812, + [1856] = 1798, + [1857] = 1797, + [1858] = 1773, + [1859] = 1796, + [1860] = 1787, + [1861] = 1835, + [1862] = 1834, + [1863] = 1833, + [1864] = 1795, + [1865] = 1832, + [1866] = 1831, + [1867] = 1794, + [1868] = 1830, + [1869] = 1829, + [1870] = 1791, + [1871] = 1828, + [1872] = 1827, + [1873] = 1826, + [1874] = 1825, + [1875] = 1824, + [1876] = 1790, + [1877] = 1774, + [1878] = 1788, + [1879] = 1784, + [1880] = 1783, + [1881] = 1780, + [1882] = 1775, + [1883] = 1777, + [1884] = 1168, + [1885] = 1885, + [1886] = 1886, + [1887] = 1778, + [1888] = 1779, + [1889] = 1799, + [1890] = 1800, + [1891] = 1801, + [1892] = 1802, + [1893] = 1803, + [1894] = 1804, + [1895] = 1805, + [1896] = 1806, + [1897] = 1165, + [1898] = 1807, + [1899] = 1808, + [1900] = 1809, + [1901] = 1810, + [1902] = 1811, + [1903] = 1781, + [1904] = 1838, + [1905] = 1839, + [1906] = 1840, + [1907] = 1841, + [1908] = 1842, + [1909] = 1843, + [1910] = 1844, + [1911] = 1845, + [1912] = 1846, + [1913] = 1847, + [1914] = 1848, + [1915] = 1849, + [1916] = 1850, + [1917] = 1782, + [1918] = 1150, + [1919] = 1196, + [1920] = 531, + [1921] = 520, + [1922] = 1151, + [1923] = 1785, + [1924] = 1110, + [1925] = 1094, + [1926] = 1786, + [1927] = 560, + [1928] = 563, + [1929] = 552, + [1930] = 1151, + [1931] = 1150, + [1932] = 1211, + [1933] = 577, + [1934] = 1247, + [1935] = 1231, + [1936] = 1245, + [1937] = 1168, + [1938] = 1165, + [1939] = 1196, + [1940] = 563, + [1941] = 552, + [1942] = 560, + [1943] = 568, + [1944] = 573, + [1945] = 554, + [1946] = 1946, + [1947] = 573, + [1948] = 575, + [1949] = 569, + [1950] = 554, + [1951] = 554, + [1952] = 1237, + [1953] = 1209, + [1954] = 1225, + [1955] = 1224, + [1956] = 1221, + [1957] = 1212, [1958] = 1958, - [1959] = 1925, - [1960] = 1926, - [1961] = 1923, - [1962] = 1958, - [1963] = 1928, - [1964] = 1933, - [1965] = 1934, - [1966] = 1936, - [1967] = 1954, - [1968] = 1937, - [1969] = 1938, - [1970] = 1934, - [1971] = 1971, - [1972] = 1936, - [1973] = 1937, - [1974] = 1938, - [1975] = 1954, - [1976] = 1940, - [1977] = 1941, - [1978] = 1924, - [1979] = 1925, - [1980] = 1926, - [1981] = 1184, - [1982] = 1923, - [1983] = 1928, - [1984] = 1933, - [1985] = 1954, - [1986] = 1934, - [1987] = 1936, - [1988] = 1937, - [1989] = 1938, - [1990] = 1941, - [1991] = 1940, - [1992] = 1397, - [1993] = 1954, - [1994] = 1940, - [1995] = 1958, - [1996] = 1938, - [1997] = 1937, - [1998] = 1936, - [1999] = 1934, - [2000] = 1933, - [2001] = 1928, - [2002] = 1923, - [2003] = 2003, - [2004] = 2004, - [2005] = 1941, - [2006] = 1930, - [2007] = 1182, - [2008] = 2004, - [2009] = 1958, - [2010] = 2010, - [2011] = 1931, - [2012] = 1923, - [2013] = 1940, - [2014] = 1928, - [2015] = 1924, - [2016] = 1926, - [2017] = 1933, - [2018] = 1925, - [2019] = 1924, - [2020] = 561, - [2021] = 1941, - [2022] = 554, - [2023] = 1924, - [2024] = 554, - [2025] = 1181, - [2026] = 1925, - [2027] = 1940, - [2028] = 1936, - [2029] = 562, - [2030] = 1937, - [2031] = 1938, - [2032] = 1954, - [2033] = 1940, - [2034] = 1941, - [2035] = 1941, - [2036] = 1924, - [2037] = 1925, - [2038] = 1926, - [2039] = 1924, - [2040] = 1925, - [2041] = 1926, - [2042] = 1923, - [2043] = 1926, - [2044] = 1925, - [2045] = 1928, - [2046] = 1933, - [2047] = 1934, - [2048] = 1936, - [2049] = 1924, - [2050] = 1937, - [2051] = 1941, - [2052] = 1954, - [2053] = 1938, - [2054] = 1940, - [2055] = 1954, - [2056] = 1938, - [2057] = 1954, - [2058] = 1937, - [2059] = 1936, - [2060] = 1934, - [2061] = 1933, - [2062] = 2062, - [2063] = 2063, - [2064] = 1940, - [2065] = 2065, - [2066] = 1954, - [2067] = 1926, - [2068] = 1925, - [2069] = 1924, - [2070] = 1941, - [2071] = 1940, - [2072] = 1954, - [2073] = 1938, - [2074] = 1937, - [2075] = 1936, - [2076] = 1934, - [2077] = 1933, - [2078] = 1928, - [2079] = 1923, - [2080] = 1941, - [2081] = 1924, - [2082] = 1922, - [2083] = 2083, - [2084] = 2084, - [2085] = 1925, - [2086] = 1926, - [2087] = 1923, - [2088] = 1276, - [2089] = 1926, - [2090] = 1925, - [2091] = 1277, - [2092] = 1282, - [2093] = 1283, - [2094] = 1285, - [2095] = 1286, - [2096] = 1288, - [2097] = 1289, - [2098] = 1290, - [2099] = 555, - [2100] = 1291, - [2101] = 1292, - [2102] = 1293, - [2103] = 1294, - [2104] = 1295, - [2105] = 1297, - [2106] = 1300, - [2107] = 1301, - [2108] = 1924, - [2109] = 1941, - [2110] = 1940, - [2111] = 1303, - [2112] = 1926, - [2113] = 1928, - [2114] = 1938, - [2115] = 1933, - [2116] = 1304, - [2117] = 1307, - [2118] = 1934, - [2119] = 1940, - [2120] = 1936, - [2121] = 1308, - [2122] = 1309, - [2123] = 1937, - [2124] = 1938, - [2125] = 1310, - [2126] = 1313, - [2127] = 1954, - [2128] = 1938, - [2129] = 1314, - [2130] = 1315, - [2131] = 1316, - [2132] = 1937, - [2133] = 1937, - [2134] = 1317, - [2135] = 1319, - [2136] = 1320, - [2137] = 1325, - [2138] = 1326, - [2139] = 1933, - [2140] = 1941, - [2141] = 1333, - [2142] = 1334, - [2143] = 1928, - [2144] = 1341, - [2145] = 558, - [2146] = 559, - [2147] = 1936, - [2148] = 1368, - [2149] = 1924, - [2150] = 1925, - [2151] = 1926, - [2152] = 1388, - [2153] = 1389, - [2154] = 1394, - [2155] = 1395, - [2156] = 1954, - [2157] = 564, - [2158] = 1399, - [2159] = 1401, - [2160] = 1405, - [2161] = 1923, - [2162] = 1928, - [2163] = 1933, - [2164] = 1934, - [2165] = 1936, - [2166] = 1180, - [2167] = 1936, - [2168] = 1937, - [2169] = 1938, - [2170] = 1954, - [2171] = 1934, - [2172] = 1940, - [2173] = 552, - [2174] = 563, - [2175] = 1941, - [2176] = 1924, - [2177] = 1925, - [2178] = 1926, - [2179] = 1415, - [2180] = 1416, - [2181] = 1417, - [2182] = 1934, - [2183] = 2003, - [2184] = 1418, - [2185] = 1933, - [2186] = 1928, - [2187] = 1923, - [2188] = 1933, - [2189] = 1928, - [2190] = 2010, - [2191] = 2065, - [2192] = 1923, - [2193] = 1928, - [2194] = 1933, - [2195] = 1934, - [2196] = 1936, - [2197] = 1937, - [2198] = 1938, - [2199] = 1954, - [2200] = 1940, - [2201] = 1923, - [2202] = 1941, - [2203] = 1924, - [2204] = 1925, - [2205] = 1926, - [2206] = 587, - [2207] = 595, - [2208] = 614, - [2209] = 608, - [2210] = 626, - [2211] = 600, - [2212] = 2212, - [2213] = 580, - [2214] = 627, - [2215] = 613, - [2216] = 619, - [2217] = 604, - [2218] = 599, - [2219] = 589, - [2220] = 565, - [2221] = 623, - [2222] = 598, - [2223] = 2223, - [2224] = 616, - [2225] = 606, - [2226] = 605, - [2227] = 596, - [2228] = 592, - [2229] = 591, - [2230] = 584, - [2231] = 583, - [2232] = 582, - [2233] = 577, - [2234] = 576, - [2235] = 575, - [2236] = 532, - [2237] = 554, - [2238] = 540, - [2239] = 573, - [2240] = 586, - [2241] = 568, - [2242] = 618, - [2243] = 629, - [2244] = 602, - [2245] = 581, - [2246] = 574, - [2247] = 571, - [2248] = 569, - [2249] = 570, - [2250] = 617, - [2251] = 566, - [2252] = 567, - [2253] = 597, - [2254] = 603, - [2255] = 611, - [2256] = 2256, - [2257] = 615, - [2258] = 622, - [2259] = 2259, - [2260] = 588, - [2261] = 579, - [2262] = 2262, - [2263] = 2223, - [2264] = 635, - [2265] = 578, - [2266] = 590, - [2267] = 609, - [2268] = 593, - [2269] = 624, - [2270] = 633, - [2271] = 612, - [2272] = 621, - [2273] = 2273, - [2274] = 2274, - [2275] = 634, - [2276] = 561, - [2277] = 2277, - [2278] = 2277, - [2279] = 2279, - [2280] = 836, - [2281] = 839, - [2282] = 2282, - [2283] = 2282, - [2284] = 2284, - [2285] = 838, - [2286] = 840, - [2287] = 2287, - [2288] = 841, - [2289] = 2284, - [2290] = 2290, - [2291] = 2291, - [2292] = 839, - [2293] = 2287, - [2294] = 2294, - [2295] = 841, - [2296] = 840, - [2297] = 836, - [2298] = 838, - [2299] = 854, - [2300] = 2290, - [2301] = 852, - [2302] = 849, - [2303] = 853, - [2304] = 851, - [2305] = 861, - [2306] = 855, - [2307] = 857, - [2308] = 2291, - [2309] = 858, - [2310] = 859, - [2311] = 860, - [2312] = 850, - [2313] = 851, - [2314] = 859, - [2315] = 858, - [2316] = 849, - [2317] = 853, - [2318] = 854, - [2319] = 861, - [2320] = 860, - [2321] = 850, - [2322] = 857, - [2323] = 852, - [2324] = 855, - [2325] = 2325, - [2326] = 525, - [2327] = 517, - [2328] = 526, - [2329] = 526, - [2330] = 517, + [1959] = 1959, + [1960] = 1960, + [1961] = 1961, + [1962] = 1962, + [1963] = 1961, + [1964] = 1964, + [1965] = 1965, + [1966] = 580, + [1967] = 616, + [1968] = 618, + [1969] = 601, + [1970] = 644, + [1971] = 640, + [1972] = 632, + [1973] = 614, + [1974] = 554, + [1975] = 609, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, + [1982] = 637, + [1983] = 1983, + [1984] = 612, + [1985] = 1983, + [1986] = 1986, + [1987] = 1987, + [1988] = 1283, + [1989] = 1978, + [1990] = 1990, + [1991] = 1991, + [1992] = 634, + [1993] = 1991, + [1994] = 1994, + [1995] = 1995, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, + [2001] = 2001, + [2002] = 2002, + [2003] = 1965, + [2004] = 1978, + [2005] = 2005, + [2006] = 629, + [2007] = 631, + [2008] = 1247, + [2009] = 646, + [2010] = 607, + [2011] = 2011, + [2012] = 2005, + [2013] = 1965, + [2014] = 2002, + [2015] = 1999, + [2016] = 1998, + [2017] = 1997, + [2018] = 1996, + [2019] = 1995, + [2020] = 1994, + [2021] = 1991, + [2022] = 1990, + [2023] = 1987, + [2024] = 1986, + [2025] = 2025, + [2026] = 2026, + [2027] = 1986, + [2028] = 603, + [2029] = 1987, + [2030] = 1978, + [2031] = 1990, + [2032] = 2000, + [2033] = 1981, + [2034] = 1991, + [2035] = 1994, + [2036] = 1995, + [2037] = 573, + [2038] = 2005, + [2039] = 1965, + [2040] = 2002, + [2041] = 1998, + [2042] = 525, + [2043] = 1996, + [2044] = 647, + [2045] = 1997, + [2046] = 1996, + [2047] = 1995, + [2048] = 1999, + [2049] = 1991, + [2050] = 1990, + [2051] = 1987, + [2052] = 2052, + [2053] = 526, + [2054] = 1986, + [2055] = 2005, + [2056] = 1997, + [2057] = 1965, + [2058] = 620, + [2059] = 2002, + [2060] = 1999, + [2061] = 1998, + [2062] = 1997, + [2063] = 1986, + [2064] = 589, + [2065] = 583, + [2066] = 578, + [2067] = 613, + [2068] = 1987, + [2069] = 1998, + [2070] = 1999, + [2071] = 2002, + [2072] = 1965, + [2073] = 2005, + [2074] = 624, + [2075] = 597, + [2076] = 1990, + [2077] = 2026, + [2078] = 1991, + [2079] = 2025, + [2080] = 623, + [2081] = 1994, + [2082] = 1995, + [2083] = 1245, + [2084] = 573, + [2085] = 1986, + [2086] = 598, + [2087] = 1996, + [2088] = 1997, + [2089] = 1987, + [2090] = 595, + [2091] = 592, + [2092] = 615, + [2093] = 582, + [2094] = 581, + [2095] = 602, + [2096] = 639, + [2097] = 608, + [2098] = 600, + [2099] = 1998, + [2100] = 642, + [2101] = 633, + [2102] = 1986, + [2103] = 1987, + [2104] = 1990, + [2105] = 1991, + [2106] = 1994, + [2107] = 1995, + [2108] = 1996, + [2109] = 1997, + [2110] = 1998, + [2111] = 1999, + [2112] = 2002, + [2113] = 1965, + [2114] = 2005, + [2115] = 1999, + [2116] = 1990, + [2117] = 619, + [2118] = 611, + [2119] = 2002, + [2120] = 605, + [2121] = 1991, + [2122] = 1965, + [2123] = 2005, + [2124] = 1996, + [2125] = 1979, + [2126] = 1995, + [2127] = 1994, + [2128] = 1995, + [2129] = 1996, + [2130] = 585, + [2131] = 635, + [2132] = 1997, + [2133] = 1280, + [2134] = 1994, + [2135] = 1991, + [2136] = 1990, + [2137] = 1987, + [2138] = 1986, + [2139] = 2005, + [2140] = 648, + [2141] = 630, + [2142] = 1965, + [2143] = 638, + [2144] = 2002, + [2145] = 596, + [2146] = 1999, + [2147] = 594, + [2148] = 1998, + [2149] = 1997, + [2150] = 1996, + [2151] = 588, + [2152] = 1995, + [2153] = 1994, + [2154] = 1991, + [2155] = 1272, + [2156] = 1990, + [2157] = 617, + [2158] = 1998, + [2159] = 1231, + [2160] = 1278, + [2161] = 1287, + [2162] = 1999, + [2163] = 2002, + [2164] = 627, + [2165] = 1987, + [2166] = 1986, + [2167] = 628, + [2168] = 1965, + [2169] = 586, + [2170] = 590, + [2171] = 2005, + [2172] = 1986, + [2173] = 2005, + [2174] = 1987, + [2175] = 1965, + [2176] = 1990, + [2177] = 2002, + [2178] = 1999, + [2179] = 1998, + [2180] = 1995, + [2181] = 591, + [2182] = 1997, + [2183] = 1994, + [2184] = 1996, + [2185] = 2005, + [2186] = 1965, + [2187] = 1995, + [2188] = 1994, + [2189] = 1991, + [2190] = 1990, + [2191] = 1987, + [2192] = 2002, + [2193] = 1999, + [2194] = 1998, + [2195] = 1997, + [2196] = 1996, + [2197] = 1995, + [2198] = 1986, + [2199] = 1994, + [2200] = 1994, + [2201] = 1965, + [2202] = 2002, + [2203] = 1991, + [2204] = 1999, + [2205] = 1990, + [2206] = 1998, + [2207] = 1997, + [2208] = 1987, + [2209] = 1986, + [2210] = 2005, + [2211] = 1996, + [2212] = 1308, + [2213] = 1995, + [2214] = 1994, + [2215] = 1991, + [2216] = 1309, + [2217] = 1990, + [2218] = 1320, + [2219] = 1211, + [2220] = 1987, + [2221] = 1986, + [2222] = 2005, + [2223] = 1321, + [2224] = 1325, + [2225] = 1326, + [2226] = 2002, + [2227] = 1999, + [2228] = 1327, + [2229] = 1998, + [2230] = 1997, + [2231] = 1996, + [2232] = 587, + [2233] = 1995, + [2234] = 1994, + [2235] = 1991, + [2236] = 1990, + [2237] = 1987, + [2238] = 1328, + [2239] = 1986, + [2240] = 1996, + [2241] = 1997, + [2242] = 1337, + [2243] = 1338, + [2244] = 1339, + [2245] = 1341, + [2246] = 1998, + [2247] = 1999, + [2248] = 622, + [2249] = 2002, + [2250] = 1965, + [2251] = 2005, + [2252] = 1361, + [2253] = 1374, + [2254] = 645, + [2255] = 2005, + [2256] = 1965, + [2257] = 2002, + [2258] = 1999, + [2259] = 1998, + [2260] = 1997, + [2261] = 1996, + [2262] = 1995, + [2263] = 1448, + [2264] = 1447, + [2265] = 1446, + [2266] = 1444, + [2267] = 1440, + [2268] = 1439, + [2269] = 1437, + [2270] = 1436, + [2271] = 1432, + [2272] = 1430, + [2273] = 1429, + [2274] = 1428, + [2275] = 1426, + [2276] = 1425, + [2277] = 1424, + [2278] = 1423, + [2279] = 1411, + [2280] = 1410, + [2281] = 1994, + [2282] = 1991, + [2283] = 1409, + [2284] = 1405, + [2285] = 626, + [2286] = 1400, + [2287] = 1399, + [2288] = 1990, + [2289] = 1987, + [2290] = 1396, + [2291] = 1395, + [2292] = 1986, + [2293] = 1392, + [2294] = 1378, + [2295] = 1387, + [2296] = 1386, + [2297] = 2011, + [2298] = 1268, + [2299] = 1384, + [2300] = 2300, + [2301] = 2301, + [2302] = 2302, + [2303] = 2303, + [2304] = 2303, + [2305] = 2305, + [2306] = 2306, + [2307] = 2300, + [2308] = 2308, + [2309] = 2309, + [2310] = 2309, + [2311] = 2311, + [2312] = 2312, + [2313] = 2313, + [2314] = 2305, + [2315] = 2306, + [2316] = 2316, + [2317] = 2317, + [2318] = 2318, + [2319] = 2319, + [2320] = 2318, + [2321] = 2321, + [2322] = 865, + [2323] = 866, + [2324] = 863, + [2325] = 867, + [2326] = 2326, + [2327] = 862, + [2328] = 2328, + [2329] = 866, + [2330] = 862, [2331] = 2331, - [2332] = 517, - [2333] = 525, - [2334] = 1117, - [2335] = 1055, - [2336] = 2331, - [2337] = 521, - [2338] = 522, - [2339] = 519, - [2340] = 518, - [2341] = 516, - [2342] = 526, - [2343] = 523, - [2344] = 520, - [2345] = 518, - [2346] = 529, - [2347] = 521, - [2348] = 525, - [2349] = 543, - [2350] = 543, - [2351] = 1130, - [2352] = 521, - [2353] = 517, - [2354] = 526, - [2355] = 2331, - [2356] = 1137, - [2357] = 1127, - [2358] = 1119, - [2359] = 2359, - [2360] = 521, - [2361] = 1123, - [2362] = 529, - [2363] = 525, - [2364] = 518, - [2365] = 532, - [2366] = 1055, - [2367] = 540, - [2368] = 1137, - [2369] = 519, - [2370] = 520, - [2371] = 1117, - [2372] = 1127, - [2373] = 526, - [2374] = 1055, - [2375] = 517, - [2376] = 532, - [2377] = 1117, - [2378] = 535, - [2379] = 525, - [2380] = 2380, - [2381] = 522, - [2382] = 540, - [2383] = 532, - [2384] = 540, - [2385] = 2331, - [2386] = 535, - [2387] = 526, - [2388] = 525, - [2389] = 523, - [2390] = 516, - [2391] = 518, - [2392] = 562, - [2393] = 1117, - [2394] = 1119, - [2395] = 552, - [2396] = 1055, - [2397] = 2397, - [2398] = 543, - [2399] = 514, - [2400] = 535, - [2401] = 2401, - [2402] = 562, - [2403] = 1159, - [2404] = 552, - [2405] = 564, - [2406] = 526, - [2407] = 559, - [2408] = 1119, - [2409] = 521, - [2410] = 2410, - [2411] = 532, - [2412] = 554, - [2413] = 2359, - [2414] = 2414, - [2415] = 558, - [2416] = 540, - [2417] = 1130, - [2418] = 1123, - [2419] = 543, - [2420] = 535, + [2332] = 863, + [2333] = 865, + [2334] = 867, + [2335] = 2326, + [2336] = 2328, + [2337] = 877, + [2338] = 876, + [2339] = 883, + [2340] = 879, + [2341] = 880, + [2342] = 2331, + [2343] = 881, + [2344] = 882, + [2345] = 885, + [2346] = 887, + [2347] = 875, + [2348] = 886, + [2349] = 878, + [2350] = 879, + [2351] = 875, + [2352] = 881, + [2353] = 882, + [2354] = 878, + [2355] = 876, + [2356] = 886, + [2357] = 880, + [2358] = 2358, + [2359] = 885, + [2360] = 883, + [2361] = 877, + [2362] = 887, + [2363] = 530, + [2364] = 516, + [2365] = 517, + [2366] = 517, + [2367] = 516, + [2368] = 538, + [2369] = 517, + [2370] = 529, + [2371] = 2371, + [2372] = 528, + [2373] = 524, + [2374] = 518, + [2375] = 537, + [2376] = 515, + [2377] = 2371, + [2378] = 518, + [2379] = 1094, + [2380] = 1110, + [2381] = 518, + [2382] = 532, + [2383] = 515, + [2384] = 516, + [2385] = 532, + [2386] = 537, + [2387] = 516, + [2388] = 2371, + [2389] = 525, + [2390] = 526, + [2391] = 538, + [2392] = 1151, + [2393] = 515, + [2394] = 1110, + [2395] = 517, + [2396] = 530, + [2397] = 516, + [2398] = 2398, + [2399] = 532, + [2400] = 518, + [2401] = 518, + [2402] = 525, + [2403] = 1094, + [2404] = 1168, + [2405] = 531, + [2406] = 1110, + [2407] = 520, + [2408] = 1196, + [2409] = 520, + [2410] = 517, + [2411] = 2371, + [2412] = 532, + [2413] = 528, + [2414] = 531, + [2415] = 1165, + [2416] = 526, + [2417] = 515, + [2418] = 1150, + [2419] = 1094, + [2420] = 529, [2421] = 2421, - [2422] = 525, - [2423] = 1130, - [2424] = 1201, - [2425] = 1184, - [2426] = 1200, - [2427] = 1127, - [2428] = 1199, - [2429] = 1182, - [2430] = 1198, - [2431] = 2431, - [2432] = 1204, - [2433] = 561, - [2434] = 517, - [2435] = 2435, - [2436] = 1181, - [2437] = 1205, - [2438] = 1180, - [2439] = 1137, - [2440] = 554, - [2441] = 1127, - [2442] = 558, - [2443] = 1137, - [2444] = 1123, - [2445] = 2445, - [2446] = 1417, - [2447] = 1204, - [2448] = 1205, - [2449] = 518, - [2450] = 519, - [2451] = 518, - [2452] = 634, - [2453] = 618, - [2454] = 626, - [2455] = 1119, - [2456] = 2401, + [2422] = 1151, + [2423] = 1150, + [2424] = 518, + [2425] = 516, + [2426] = 524, + [2427] = 526, + [2428] = 525, + [2429] = 554, + [2430] = 1247, + [2431] = 515, + [2432] = 1225, + [2433] = 1094, + [2434] = 2434, + [2435] = 560, + [2436] = 1165, + [2437] = 1224, + [2438] = 1221, + [2439] = 1212, + [2440] = 531, + [2441] = 1151, + [2442] = 560, + [2443] = 1168, + [2444] = 573, + [2445] = 1231, + [2446] = 563, + [2447] = 2421, + [2448] = 568, + [2449] = 1196, + [2450] = 1245, + [2451] = 526, + [2452] = 2452, + [2453] = 1150, + [2454] = 1211, + [2455] = 2455, + [2456] = 514, [2457] = 2457, - [2458] = 624, - [2459] = 559, - [2460] = 2460, - [2461] = 2461, - [2462] = 2462, - [2463] = 540, - [2464] = 525, - [2465] = 2465, - [2466] = 589, - [2467] = 561, - [2468] = 593, - [2469] = 1303, - [2470] = 2470, - [2471] = 1184, - [2472] = 1384, - [2473] = 523, - [2474] = 1182, - [2475] = 2475, - [2476] = 540, - [2477] = 1304, - [2478] = 1307, - [2479] = 516, - [2480] = 2480, - [2481] = 1319, - [2482] = 2482, - [2483] = 1308, - [2484] = 1309, - [2485] = 1181, - [2486] = 554, - [2487] = 1198, - [2488] = 1288, - [2489] = 1199, - [2490] = 1200, - [2491] = 1201, - [2492] = 517, - [2493] = 578, - [2494] = 1310, - [2495] = 1313, - [2496] = 579, - [2497] = 588, - [2498] = 617, - [2499] = 1314, - [2500] = 587, - [2501] = 2501, - [2502] = 1315, - [2503] = 522, - [2504] = 1316, - [2505] = 622, - [2506] = 1317, - [2507] = 2507, - [2508] = 615, - [2509] = 612, - [2510] = 1320, - [2511] = 1325, - [2512] = 2512, - [2513] = 1326, - [2514] = 602, - [2515] = 599, - [2516] = 1182, - [2517] = 635, - [2518] = 611, - [2519] = 562, - [2520] = 520, - [2521] = 525, - [2522] = 1180, - [2523] = 2435, - [2524] = 621, - [2525] = 613, - [2526] = 1333, - [2527] = 1334, - [2528] = 1341, - [2529] = 1368, - [2530] = 600, - [2531] = 1215, - [2532] = 517, - [2533] = 590, + [2458] = 563, + [2459] = 2459, + [2460] = 1165, + [2461] = 516, + [2462] = 1150, + [2463] = 520, + [2464] = 552, + [2465] = 554, + [2466] = 517, + [2467] = 1151, + [2468] = 1204, + [2469] = 520, + [2470] = 518, + [2471] = 1110, + [2472] = 552, + [2473] = 2473, + [2474] = 531, + [2475] = 569, + [2476] = 2476, + [2477] = 1168, + [2478] = 525, + [2479] = 1237, + [2480] = 1196, + [2481] = 1209, + [2482] = 1326, + [2483] = 629, + [2484] = 623, + [2485] = 1209, + [2486] = 1237, + [2487] = 525, + [2488] = 648, + [2489] = 612, + [2490] = 645, + [2491] = 526, + [2492] = 635, + [2493] = 622, + [2494] = 2434, + [2495] = 569, + [2496] = 2496, + [2497] = 591, + [2498] = 590, + [2499] = 586, + [2500] = 2500, + [2501] = 524, + [2502] = 627, + [2503] = 517, + [2504] = 624, + [2505] = 1211, + [2506] = 518, + [2507] = 617, + [2508] = 1212, + [2509] = 1221, + [2510] = 1224, + [2511] = 594, + [2512] = 596, + [2513] = 1225, + [2514] = 638, + [2515] = 630, + [2516] = 530, + [2517] = 526, + [2518] = 615, + [2519] = 2519, + [2520] = 2520, + [2521] = 2521, + [2522] = 2522, + [2523] = 573, + [2524] = 603, + [2525] = 607, + [2526] = 2526, + [2527] = 631, + [2528] = 637, + [2529] = 613, + [2530] = 2530, + [2531] = 1283, + [2532] = 2532, + [2533] = 525, [2534] = 2534, - [2535] = 614, - [2536] = 1388, - [2537] = 1389, - [2538] = 1394, - [2539] = 558, - [2540] = 1395, - [2541] = 554, - [2542] = 532, - [2543] = 1301, - [2544] = 1300, - [2545] = 2545, - [2546] = 1184, - [2547] = 629, - [2548] = 1397, - [2549] = 627, - [2550] = 532, - [2551] = 1180, - [2552] = 1130, - [2553] = 526, - [2554] = 1399, - [2555] = 1297, - [2556] = 1192, - [2557] = 1401, - [2558] = 565, - [2559] = 529, - [2560] = 1276, - [2561] = 1277, - [2562] = 1405, - [2563] = 1295, - [2564] = 543, - [2565] = 2565, - [2566] = 1123, - [2567] = 1294, - [2568] = 514, - [2569] = 1282, - [2570] = 564, - [2571] = 1293, - [2572] = 609, - [2573] = 2380, - [2574] = 1292, - [2575] = 1283, - [2576] = 521, - [2577] = 1285, - [2578] = 552, - [2579] = 1291, - [2580] = 562, - [2581] = 1286, - [2582] = 535, - [2583] = 1159, - [2584] = 561, - [2585] = 552, - [2586] = 633, - [2587] = 1218, - [2588] = 514, - [2589] = 1290, - [2590] = 526, - [2591] = 1415, - [2592] = 1416, - [2593] = 1289, - [2594] = 1181, - [2595] = 1418, - [2596] = 1300, - [2597] = 1319, - [2598] = 1180, - [2599] = 543, - [2600] = 1368, - [2601] = 1341, - [2602] = 2287, - [2603] = 1334, - [2604] = 1333, - [2605] = 1384, - [2606] = 593, - [2607] = 535, - [2608] = 1307, - [2609] = 599, - [2610] = 2610, - [2611] = 634, - [2612] = 1388, - [2613] = 552, - [2614] = 2470, - [2615] = 1218, - [2616] = 602, - [2617] = 565, - [2618] = 589, - [2619] = 524, - [2620] = 839, - [2621] = 611, - [2622] = 2610, - [2623] = 1192, - [2624] = 1184, - [2625] = 578, - [2626] = 579, - [2627] = 554, - [2628] = 1182, - [2629] = 562, - [2630] = 621, - [2631] = 2475, - [2632] = 635, - [2633] = 2480, - [2634] = 588, - [2635] = 633, - [2636] = 2465, - [2637] = 1181, - [2638] = 1405, - [2639] = 2462, - [2640] = 1326, - [2641] = 1325, - [2642] = 1320, - [2643] = 532, - [2644] = 2461, - [2645] = 2460, - [2646] = 1317, - [2647] = 1315, - [2648] = 1314, - [2649] = 1313, - [2650] = 1310, - [2651] = 1401, - [2652] = 1309, - [2653] = 1308, - [2654] = 1215, - [2655] = 1304, - [2656] = 2656, - [2657] = 1303, - [2658] = 1301, - [2659] = 2457, - [2660] = 514, - [2661] = 1394, - [2662] = 540, - [2663] = 612, - [2664] = 2664, - [2665] = 2665, - [2666] = 841, - [2667] = 1399, - [2668] = 613, - [2669] = 1297, - [2670] = 1389, - [2671] = 840, - [2672] = 836, - [2673] = 532, - [2674] = 600, - [2675] = 617, - [2676] = 2676, - [2677] = 1295, - [2678] = 587, - [2679] = 1294, - [2680] = 1293, - [2681] = 1292, - [2682] = 517, - [2683] = 1397, - [2684] = 618, - [2685] = 1395, - [2686] = 1291, - [2687] = 1290, - [2688] = 540, - [2689] = 590, - [2690] = 1289, - [2691] = 1288, - [2692] = 838, - [2693] = 1286, - [2694] = 1285, - [2695] = 624, - [2696] = 1283, - [2697] = 1282, - [2698] = 2397, - [2699] = 1277, - [2700] = 1415, - [2701] = 1276, - [2702] = 609, - [2703] = 1316, - [2704] = 2610, - [2705] = 554, - [2706] = 558, - [2707] = 626, - [2708] = 622, - [2709] = 615, - [2710] = 627, - [2711] = 629, - [2712] = 614, - [2713] = 1416, - [2714] = 1418, - [2715] = 561, - [2716] = 1417, - [2717] = 563, - [2718] = 518, - [2719] = 559, - [2720] = 514, - [2721] = 554, - [2722] = 2722, - [2723] = 2723, - [2724] = 2724, - [2725] = 2725, - [2726] = 2726, - [2727] = 561, - [2728] = 618, - [2729] = 2729, - [2730] = 2730, - [2731] = 2731, - [2732] = 2732, - [2733] = 2733, - [2734] = 2734, - [2735] = 2726, - [2736] = 524, - [2737] = 562, - [2738] = 524, - [2739] = 552, - [2740] = 2729, - [2741] = 558, - [2742] = 860, - [2743] = 851, - [2744] = 618, - [2745] = 2745, - [2746] = 2746, - [2747] = 558, - [2748] = 854, - [2749] = 554, - [2750] = 578, - [2751] = 582, - [2752] = 587, - [2753] = 622, - [2754] = 584, - [2755] = 592, - [2756] = 555, - [2757] = 605, - [2758] = 635, - [2759] = 616, - [2760] = 565, - [2761] = 623, - [2762] = 589, - [2763] = 567, - [2764] = 852, - [2765] = 619, - [2766] = 849, - [2767] = 853, - [2768] = 590, - [2769] = 525, - [2770] = 571, - [2771] = 615, + [2535] = 1232, + [2536] = 552, + [2537] = 2537, + [2538] = 1204, + [2539] = 568, + [2540] = 1247, + [2541] = 563, + [2542] = 585, + [2543] = 1168, + [2544] = 1211, + [2545] = 538, + [2546] = 583, + [2547] = 2547, + [2548] = 1280, + [2549] = 1272, + [2550] = 518, + [2551] = 2551, + [2552] = 2552, + [2553] = 1278, + [2554] = 1287, + [2555] = 1245, + [2556] = 554, + [2557] = 516, + [2558] = 514, + [2559] = 517, + [2560] = 1165, + [2561] = 2398, + [2562] = 1308, + [2563] = 1309, + [2564] = 1320, + [2565] = 560, + [2566] = 1325, + [2567] = 1327, + [2568] = 1328, + [2569] = 1337, + [2570] = 620, + [2571] = 528, + [2572] = 1338, + [2573] = 1339, + [2574] = 1341, + [2575] = 560, + [2576] = 537, + [2577] = 1361, + [2578] = 1374, + [2579] = 1378, + [2580] = 1384, + [2581] = 532, + [2582] = 1268, + [2583] = 1196, + [2584] = 1386, + [2585] = 554, + [2586] = 1387, + [2587] = 1392, + [2588] = 2588, + [2589] = 1395, + [2590] = 1396, + [2591] = 1399, + [2592] = 1400, + [2593] = 1405, + [2594] = 647, + [2595] = 1409, + [2596] = 1410, + [2597] = 1411, + [2598] = 516, + [2599] = 1423, + [2600] = 1424, + [2601] = 1425, + [2602] = 1426, + [2603] = 1428, + [2604] = 1234, + [2605] = 2605, + [2606] = 1429, + [2607] = 1430, + [2608] = 1432, + [2609] = 1231, + [2610] = 1436, + [2611] = 1231, + [2612] = 1437, + [2613] = 1439, + [2614] = 1440, + [2615] = 532, + [2616] = 1444, + [2617] = 1446, + [2618] = 1447, + [2619] = 1245, + [2620] = 514, + [2621] = 573, + [2622] = 1448, + [2623] = 515, + [2624] = 2452, + [2625] = 634, + [2626] = 1247, + [2627] = 1321, + [2628] = 563, + [2629] = 529, + [2630] = 1251, + [2631] = 520, + [2632] = 531, + [2633] = 862, + [2634] = 863, + [2635] = 2530, + [2636] = 627, + [2637] = 624, + [2638] = 527, + [2639] = 634, + [2640] = 2640, + [2641] = 617, + [2642] = 2537, + [2643] = 2526, + [2644] = 2522, + [2645] = 2521, + [2646] = 1232, + [2647] = 2519, + [2648] = 1308, + [2649] = 1309, + [2650] = 648, + [2651] = 552, + [2652] = 526, + [2653] = 594, + [2654] = 1321, + [2655] = 1325, + [2656] = 596, + [2657] = 1326, + [2658] = 1327, + [2659] = 1328, + [2660] = 525, + [2661] = 1320, + [2662] = 590, + [2663] = 638, + [2664] = 583, + [2665] = 630, + [2666] = 1423, + [2667] = 2667, + [2668] = 554, + [2669] = 2326, + [2670] = 591, + [2671] = 1287, + [2672] = 514, + [2673] = 1278, + [2674] = 622, + [2675] = 585, + [2676] = 635, + [2677] = 1272, + [2678] = 1280, + [2679] = 615, + [2680] = 1341, + [2681] = 586, + [2682] = 573, + [2683] = 603, + [2684] = 607, + [2685] = 1245, + [2686] = 2686, + [2687] = 1234, + [2688] = 517, + [2689] = 1247, + [2690] = 647, + [2691] = 1339, + [2692] = 631, + [2693] = 637, + [2694] = 629, + [2695] = 2695, + [2696] = 1338, + [2697] = 1337, + [2698] = 612, + [2699] = 1231, + [2700] = 520, + [2701] = 1448, + [2702] = 1447, + [2703] = 1446, + [2704] = 1444, + [2705] = 620, + [2706] = 867, + [2707] = 613, + [2708] = 1425, + [2709] = 2459, + [2710] = 1439, + [2711] = 1437, + [2712] = 1436, + [2713] = 2686, + [2714] = 526, + [2715] = 2715, + [2716] = 1432, + [2717] = 560, + [2718] = 1430, + [2719] = 1361, + [2720] = 1440, + [2721] = 1429, + [2722] = 1211, + [2723] = 1428, + [2724] = 1374, + [2725] = 1426, + [2726] = 1378, + [2727] = 1424, + [2728] = 554, + [2729] = 1399, + [2730] = 1411, + [2731] = 1384, + [2732] = 1268, + [2733] = 1410, + [2734] = 563, + [2735] = 1409, + [2736] = 645, + [2737] = 1405, + [2738] = 1386, + [2739] = 1400, + [2740] = 525, + [2741] = 866, + [2742] = 531, + [2743] = 1396, + [2744] = 865, + [2745] = 1283, + [2746] = 1251, + [2747] = 1387, + [2748] = 1392, + [2749] = 1395, + [2750] = 2686, + [2751] = 2500, + [2752] = 623, + [2753] = 2496, + [2754] = 864, + [2755] = 2755, + [2756] = 514, + [2757] = 2757, + [2758] = 569, + [2759] = 575, + [2760] = 532, + [2761] = 867, + [2762] = 866, + [2763] = 865, + [2764] = 2764, + [2765] = 2765, + [2766] = 2766, + [2767] = 2767, + [2768] = 2768, + [2769] = 2769, + [2770] = 862, + [2771] = 863, [2772] = 2772, - [2773] = 602, - [2774] = 599, - [2775] = 517, - [2776] = 861, - [2777] = 519, - [2778] = 855, - [2779] = 857, - [2780] = 612, - [2781] = 839, - [2782] = 518, - [2783] = 837, - [2784] = 609, - [2785] = 570, - [2786] = 617, - [2787] = 611, - [2788] = 588, - [2789] = 514, - [2790] = 2790, - [2791] = 518, - [2792] = 521, - [2793] = 2793, - [2794] = 523, - [2795] = 595, - [2796] = 579, - [2797] = 613, - [2798] = 600, - [2799] = 564, - [2800] = 581, - [2801] = 608, - [2802] = 633, - [2803] = 526, - [2804] = 2804, - [2805] = 603, - [2806] = 525, - [2807] = 614, - [2808] = 593, - [2809] = 2809, - [2810] = 629, - [2811] = 580, - [2812] = 524, - [2813] = 627, - [2814] = 529, - [2815] = 573, - [2816] = 624, - [2817] = 526, - [2818] = 850, - [2819] = 859, - [2820] = 858, - [2821] = 621, - [2822] = 520, - [2823] = 626, - [2824] = 604, - [2825] = 634, - [2826] = 841, - [2827] = 840, - [2828] = 836, - [2829] = 576, - [2830] = 838, - [2831] = 519, - [2832] = 526, - [2833] = 517, - [2834] = 532, - [2835] = 564, - [2836] = 523, - [2837] = 540, - [2838] = 597, - [2839] = 566, - [2840] = 561, - [2841] = 569, - [2842] = 574, - [2843] = 2843, - [2844] = 586, - [2845] = 568, - [2846] = 575, - [2847] = 524, - [2848] = 577, - [2849] = 583, - [2850] = 2850, - [2851] = 2851, - [2852] = 516, - [2853] = 591, - [2854] = 564, - [2855] = 596, - [2856] = 606, - [2857] = 2857, - [2858] = 598, - [2859] = 2859, - [2860] = 543, - [2861] = 555, - [2862] = 555, - [2863] = 535, + [2773] = 552, + [2774] = 527, + [2775] = 2775, + [2776] = 2776, + [2777] = 612, + [2778] = 527, + [2779] = 2757, + [2780] = 573, + [2781] = 560, + [2782] = 2767, + [2783] = 563, + [2784] = 554, + [2785] = 607, + [2786] = 626, + [2787] = 588, + [2788] = 514, + [2789] = 623, + [2790] = 613, + [2791] = 624, + [2792] = 552, + [2793] = 638, + [2794] = 568, + [2795] = 554, + [2796] = 878, + [2797] = 608, + [2798] = 875, + [2799] = 532, + [2800] = 600, + [2801] = 594, + [2802] = 581, + [2803] = 583, + [2804] = 885, + [2805] = 527, + [2806] = 883, + [2807] = 582, + [2808] = 518, + [2809] = 592, + [2810] = 2810, + [2811] = 591, + [2812] = 2812, + [2813] = 595, + [2814] = 2814, + [2815] = 628, + [2816] = 529, + [2817] = 620, + [2818] = 642, + [2819] = 2819, + [2820] = 590, + [2821] = 633, + [2822] = 619, + [2823] = 538, + [2824] = 2824, + [2825] = 577, + [2826] = 596, + [2827] = 648, + [2828] = 515, + [2829] = 611, + [2830] = 622, + [2831] = 518, + [2832] = 598, + [2833] = 2833, + [2834] = 645, + [2835] = 647, + [2836] = 516, + [2837] = 617, + [2838] = 585, + [2839] = 612, + [2840] = 635, + [2841] = 639, + [2842] = 532, + [2843] = 602, + [2844] = 516, + [2845] = 876, + [2846] = 615, + [2847] = 634, + [2848] = 887, + [2849] = 879, + [2850] = 603, + [2851] = 605, + [2852] = 646, + [2853] = 877, + [2854] = 630, + [2855] = 631, + [2856] = 637, + [2857] = 629, + [2858] = 880, + [2859] = 627, + [2860] = 881, + [2861] = 586, + [2862] = 882, + [2863] = 886, [2864] = 2864, - [2865] = 525, - [2866] = 517, - [2867] = 520, - [2868] = 529, - [2869] = 518, - [2870] = 522, - [2871] = 2871, - [2872] = 2746, - [2873] = 2745, - [2874] = 2874, - [2875] = 526, - [2876] = 520, - [2877] = 858, - [2878] = 859, - [2879] = 562, - [2880] = 519, - [2881] = 516, - [2882] = 561, - [2883] = 853, + [2865] = 517, + [2866] = 885, + [2867] = 2867, + [2868] = 877, + [2869] = 616, + [2870] = 644, + [2871] = 640, + [2872] = 580, + [2873] = 632, + [2874] = 529, + [2875] = 587, + [2876] = 527, + [2877] = 614, + [2878] = 518, + [2879] = 609, + [2880] = 520, + [2881] = 2881, + [2882] = 887, + [2883] = 876, [2884] = 526, [2885] = 2885, - [2886] = 568, - [2887] = 850, - [2888] = 860, - [2889] = 525, - [2890] = 577, - [2891] = 552, - [2892] = 586, - [2893] = 517, - [2894] = 569, - [2895] = 516, - [2896] = 574, - [2897] = 514, - [2898] = 597, - [2899] = 525, - [2900] = 529, - [2901] = 854, - [2902] = 517, - [2903] = 522, - [2904] = 569, - [2905] = 566, - [2906] = 568, - [2907] = 525, - [2908] = 526, - [2909] = 555, - [2910] = 566, - [2911] = 574, - [2912] = 521, - [2913] = 517, - [2914] = 575, - [2915] = 857, - [2916] = 524, - [2917] = 521, - [2918] = 2874, - [2919] = 522, - [2920] = 855, - [2921] = 851, - [2922] = 518, - [2923] = 597, - [2924] = 518, - [2925] = 598, - [2926] = 861, - [2927] = 606, - [2928] = 2859, - [2929] = 596, - [2930] = 586, - [2931] = 591, - [2932] = 852, - [2933] = 583, - [2934] = 849, - [2935] = 598, - [2936] = 606, - [2937] = 596, - [2938] = 564, - [2939] = 523, - [2940] = 591, - [2941] = 583, - [2942] = 577, - [2943] = 575, - [2944] = 583, - [2945] = 586, - [2946] = 627, - [2947] = 574, - [2948] = 569, - [2949] = 535, - [2950] = 543, - [2951] = 559, - [2952] = 615, - [2953] = 612, - [2954] = 2954, - [2955] = 558, - [2956] = 598, - [2957] = 606, - [2958] = 596, - [2959] = 540, - [2960] = 566, - [2961] = 521, - [2962] = 597, - [2963] = 526, - [2964] = 591, - [2965] = 564, - [2966] = 587, - [2967] = 611, - [2968] = 514, - [2969] = 588, - [2970] = 629, - [2971] = 577, - [2972] = 575, - [2973] = 568, - [2974] = 554, - [2975] = 563, - [2976] = 555, - [2977] = 543, - [2978] = 535, - [2979] = 540, - [2980] = 559, - [2981] = 619, - [2982] = 517, - [2983] = 589, - [2984] = 1177, - [2985] = 2985, - [2986] = 626, - [2987] = 634, - [2988] = 514, - [2989] = 525, - [2990] = 618, - [2991] = 532, - [2992] = 532, - [2993] = 624, - [2994] = 563, - [2995] = 574, - [2996] = 588, - [2997] = 555, - [2998] = 2998, - [2999] = 521, - [3000] = 562, - [3001] = 1159, - [3002] = 563, - [3003] = 2985, - [3004] = 608, - [3005] = 552, - [3006] = 566, - [3007] = 580, - [3008] = 3008, - [3009] = 612, - [3010] = 634, - [3011] = 626, - [3012] = 562, - [3013] = 624, - [3014] = 589, - [3015] = 565, - [3016] = 593, - [3017] = 561, - [3018] = 559, - [3019] = 526, - [3020] = 552, - [3021] = 3021, - [3022] = 621, - [3023] = 3023, - [3024] = 578, - [3025] = 579, - [3026] = 524, - [3027] = 617, - [3028] = 587, - [3029] = 563, - [3030] = 622, - [3031] = 615, - [3032] = 602, - [3033] = 599, - [3034] = 603, - [3035] = 597, - [3036] = 595, - [3037] = 611, - [3038] = 3038, - [3039] = 570, - [3040] = 559, - [3041] = 608, - [3042] = 3042, - [3043] = 604, - [3044] = 633, - [3045] = 613, - [3046] = 600, - [3047] = 614, - [3048] = 629, - [3049] = 627, - [3050] = 619, - [3051] = 569, - [3052] = 571, - [3053] = 609, - [3054] = 1826, - [3055] = 581, - [3056] = 586, - [3057] = 1177, - [3058] = 516, - [3059] = 590, - [3060] = 558, - [3061] = 567, - [3062] = 540, - [3063] = 568, - [3064] = 532, - [3065] = 573, - [3066] = 522, - [3067] = 635, - [3068] = 525, - [3069] = 3069, - [3070] = 535, - [3071] = 543, - [3072] = 623, - [3073] = 598, - [3074] = 616, - [3075] = 606, - [3076] = 605, - [3077] = 596, - [3078] = 564, - [3079] = 592, - [3080] = 591, - [3081] = 554, - [3082] = 558, - [3083] = 584, - [3084] = 575, - [3085] = 583, - [3086] = 576, - [3087] = 582, - [3088] = 577, - [3089] = 573, - [3090] = 518, - [3091] = 575, - [3092] = 524, - [3093] = 524, - [3094] = 568, - [3095] = 1218, - [3096] = 567, - [3097] = 576, - [3098] = 577, - [3099] = 627, - [3100] = 633, - [3101] = 582, - [3102] = 583, - [3103] = 525, - [3104] = 584, - [3105] = 535, - [3106] = 591, - [3107] = 634, - [3108] = 592, - [3109] = 586, - [3110] = 581, - [3111] = 574, - [3112] = 596, - [3113] = 605, - [3114] = 606, - [3115] = 566, - [3116] = 616, - [3117] = 598, - [3118] = 1159, - [3119] = 623, - [3120] = 552, - [3121] = 608, - [3122] = 543, - [3123] = 580, - [3124] = 563, + [2886] = 589, + [2887] = 578, + [2888] = 597, + [2889] = 524, + [2890] = 531, + [2891] = 528, + [2892] = 618, + [2893] = 883, + [2894] = 573, + [2895] = 879, + [2896] = 2896, + [2897] = 577, + [2898] = 2898, + [2899] = 530, + [2900] = 2819, + [2901] = 525, + [2902] = 2902, + [2903] = 517, + [2904] = 568, + [2905] = 2833, + [2906] = 875, + [2907] = 538, + [2908] = 880, + [2909] = 878, + [2910] = 577, + [2911] = 537, + [2912] = 516, + [2913] = 881, + [2914] = 601, + [2915] = 517, + [2916] = 568, + [2917] = 2917, + [2918] = 2918, + [2919] = 882, + [2920] = 886, + [2921] = 532, + [2922] = 597, + [2923] = 538, + [2924] = 524, + [2925] = 580, + [2926] = 601, + [2927] = 530, + [2928] = 587, + [2929] = 589, + [2930] = 644, + [2931] = 528, + [2932] = 597, + [2933] = 528, + [2934] = 577, + [2935] = 517, + [2936] = 616, + [2937] = 532, + [2938] = 578, + [2939] = 589, + [2940] = 587, + [2941] = 580, + [2942] = 616, + [2943] = 618, + [2944] = 601, + [2945] = 640, + [2946] = 618, + [2947] = 644, + [2948] = 640, + [2949] = 2949, + [2950] = 568, + [2951] = 2917, + [2952] = 632, + [2953] = 527, + [2954] = 537, + [2955] = 517, + [2956] = 516, + [2957] = 514, + [2958] = 529, + [2959] = 573, + [2960] = 614, + [2961] = 609, + [2962] = 632, + [2963] = 518, + [2964] = 524, + [2965] = 563, + [2966] = 2918, + [2967] = 518, + [2968] = 614, + [2969] = 530, + [2970] = 516, + [2971] = 609, + [2972] = 518, + [2973] = 560, + [2974] = 578, + [2975] = 537, + [2976] = 516, + [2977] = 515, + [2978] = 515, + [2979] = 517, + [2980] = 532, + [2981] = 575, + [2982] = 587, + [2983] = 618, + [2984] = 616, + [2985] = 580, + [2986] = 554, + [2987] = 583, + [2988] = 601, + [2989] = 640, + [2990] = 632, + [2991] = 614, + [2992] = 609, + [2993] = 2993, + [2994] = 531, + [2995] = 518, + [2996] = 552, + [2997] = 589, + [2998] = 578, + [2999] = 613, + [3000] = 597, + [3001] = 525, + [3002] = 626, + [3003] = 634, + [3004] = 612, + [3005] = 648, + [3006] = 575, + [3007] = 615, + [3008] = 569, + [3009] = 623, + [3010] = 526, + [3011] = 645, + [3012] = 1213, + [3013] = 531, + [3014] = 515, + [3015] = 520, + [3016] = 517, + [3017] = 644, + [3018] = 620, + [3019] = 568, + [3020] = 514, + [3021] = 586, + [3022] = 629, + [3023] = 637, + [3024] = 520, + [3025] = 526, + [3026] = 514, + [3027] = 647, + [3028] = 516, + [3029] = 525, + [3030] = 3030, + [3031] = 569, + [3032] = 577, + [3033] = 596, + [3034] = 594, + [3035] = 601, + [3036] = 614, + [3037] = 624, + [3038] = 586, + [3039] = 590, + [3040] = 591, + [3041] = 617, + [3042] = 563, + [3043] = 2993, + [3044] = 594, + [3045] = 596, + [3046] = 638, + [3047] = 583, + [3048] = 630, + [3049] = 622, + [3050] = 585, + [3051] = 635, + [3052] = 615, + [3053] = 569, + [3054] = 613, + [3055] = 603, + [3056] = 645, + [3057] = 631, + [3058] = 637, + [3059] = 629, + [3060] = 560, + [3061] = 607, + [3062] = 626, + [3063] = 648, + [3064] = 623, + [3065] = 528, + [3066] = 537, + [3067] = 3067, + [3068] = 627, + [3069] = 575, + [3070] = 1204, + [3071] = 552, + [3072] = 577, + [3073] = 515, + [3074] = 575, + [3075] = 3075, + [3076] = 3076, + [3077] = 563, + [3078] = 560, + [3079] = 611, + [3080] = 569, + [3081] = 573, + [3082] = 619, + [3083] = 632, + [3084] = 633, + [3085] = 516, + [3086] = 640, + [3087] = 525, + [3088] = 526, + [3089] = 620, + [3090] = 642, + [3091] = 644, + [3092] = 600, + [3093] = 608, + [3094] = 646, + [3095] = 618, + [3096] = 1749, + [3097] = 639, + [3098] = 616, + [3099] = 602, + [3100] = 527, + [3101] = 646, + [3102] = 628, + [3103] = 580, + [3104] = 581, + [3105] = 647, + [3106] = 587, + [3107] = 582, + [3108] = 589, + [3109] = 592, + [3110] = 531, + [3111] = 520, + [3112] = 578, + [3113] = 3113, + [3114] = 588, + [3115] = 1213, + [3116] = 518, + [3117] = 595, + [3118] = 554, + [3119] = 552, + [3120] = 597, + [3121] = 598, + [3122] = 634, + [3123] = 3123, + [3124] = 3124, [3125] = 3125, - [3126] = 1192, - [3127] = 633, - [3128] = 519, - [3129] = 604, - [3130] = 629, - [3131] = 579, - [3132] = 578, - [3133] = 518, - [3134] = 554, - [3135] = 523, - [3136] = 611, - [3137] = 623, - [3138] = 616, - [3139] = 605, - [3140] = 592, - [3141] = 570, - [3142] = 584, - [3143] = 582, - [3144] = 576, - [3145] = 573, - [3146] = 562, - [3147] = 567, - [3148] = 581, - [3149] = 571, - [3150] = 570, - [3151] = 595, - [3152] = 603, - [3153] = 635, - [3154] = 520, - [3155] = 609, - [3156] = 579, - [3157] = 617, - [3158] = 609, - [3159] = 559, - [3160] = 588, - [3161] = 3038, - [3162] = 622, - [3163] = 529, - [3164] = 3069, - [3165] = 590, - [3166] = 532, - [3167] = 526, - [3168] = 517, + [3126] = 605, + [3127] = 568, + [3128] = 609, + [3129] = 631, + [3130] = 591, + [3131] = 532, + [3132] = 627, + [3133] = 3125, + [3134] = 527, + [3135] = 3076, + [3136] = 560, + [3137] = 3137, + [3138] = 597, + [3139] = 590, + [3140] = 591, + [3141] = 520, + [3142] = 531, + [3143] = 518, + [3144] = 645, + [3145] = 635, + [3146] = 3146, + [3147] = 563, + [3148] = 3148, + [3149] = 1251, + [3150] = 585, + [3151] = 527, + [3152] = 648, + [3153] = 1204, + [3154] = 525, + [3155] = 2052, + [3156] = 526, + [3157] = 622, + [3158] = 585, + [3159] = 1196, + [3160] = 617, + [3161] = 635, + [3162] = 516, + [3163] = 613, + [3164] = 598, + [3165] = 1094, + [3166] = 587, + [3167] = 595, + [3168] = 583, [3169] = 578, - [3170] = 621, - [3171] = 571, - [3172] = 595, - [3173] = 597, - [3174] = 603, - [3175] = 590, - [3176] = 589, - [3177] = 3008, - [3178] = 565, - [3179] = 613, - [3180] = 602, - [3181] = 565, - [3182] = 624, - [3183] = 558, - [3184] = 1215, - [3185] = 600, - [3186] = 580, - [3187] = 569, - [3188] = 593, - [3189] = 517, - [3190] = 608, - [3191] = 1130, - [3192] = 599, - [3193] = 2259, - [3194] = 3042, - [3195] = 540, - [3196] = 599, - [3197] = 593, - [3198] = 621, - [3199] = 602, - [3200] = 619, - [3201] = 1119, - [3202] = 613, - [3203] = 635, - [3204] = 1117, - [3205] = 3205, - [3206] = 600, + [3170] = 592, + [3171] = 589, + [3172] = 582, + [3173] = 3123, + [3174] = 581, + [3175] = 638, + [3176] = 580, + [3177] = 602, + [3178] = 620, + [3179] = 1234, + [3180] = 616, + [3181] = 639, + [3182] = 618, + [3183] = 608, + [3184] = 630, + [3185] = 601, + [3186] = 600, + [3187] = 644, + [3188] = 642, + [3189] = 640, + [3190] = 554, + [3191] = 633, + [3192] = 517, + [3193] = 517, + [3194] = 626, + [3195] = 603, + [3196] = 647, + [3197] = 538, + [3198] = 632, + [3199] = 619, + [3200] = 607, + [3201] = 614, + [3202] = 611, + [3203] = 623, + [3204] = 622, + [3205] = 646, + [3206] = 552, [3207] = 3207, - [3208] = 617, - [3209] = 3209, - [3210] = 587, - [3211] = 626, - [3212] = 614, - [3213] = 1055, - [3214] = 608, - [3215] = 612, - [3216] = 615, - [3217] = 604, - [3218] = 565, - [3219] = 614, - [3220] = 1123, - [3221] = 622, - [3222] = 618, - [3223] = 2998, - [3224] = 1127, - [3225] = 1123, - [3226] = 2359, - [3227] = 1137, - [3228] = 1218, - [3229] = 3205, - [3230] = 1182, - [3231] = 3207, - [3232] = 1215, - [3233] = 1181, - [3234] = 554, - [3235] = 1137, - [3236] = 2259, - [3237] = 1055, - [3238] = 1127, - [3239] = 564, - [3240] = 561, - [3241] = 555, - [3242] = 565, - [3243] = 1180, - [3244] = 1117, - [3245] = 562, - [3246] = 1192, - [3247] = 1184, - [3248] = 552, - [3249] = 3023, - [3250] = 1119, - [3251] = 1130, - [3252] = 563, - [3253] = 517, - [3254] = 3254, - [3255] = 1123, - [3256] = 3254, - [3257] = 3254, - [3258] = 526, - [3259] = 3254, - [3260] = 3254, - [3261] = 1415, - [3262] = 1416, - [3263] = 1201, - [3264] = 564, - [3265] = 1200, - [3266] = 3254, - [3267] = 1117, - [3268] = 1119, - [3269] = 3254, - [3270] = 622, - [3271] = 3254, - [3272] = 1159, - [3273] = 1130, - [3274] = 593, - [3275] = 1198, - [3276] = 1417, - [3277] = 1418, - [3278] = 598, - [3279] = 1277, - [3280] = 606, - [3281] = 2259, - [3282] = 596, - [3283] = 591, - [3284] = 525, - [3285] = 583, - [3286] = 3286, - [3287] = 577, - [3288] = 575, - [3289] = 568, - [3290] = 586, - [3291] = 574, - [3292] = 569, - [3293] = 566, - [3294] = 597, - [3295] = 1199, - [3296] = 3254, - [3297] = 1405, - [3298] = 1401, - [3299] = 1399, - [3300] = 3254, - [3301] = 1397, - [3302] = 1395, - [3303] = 1394, - [3304] = 1389, - [3305] = 1388, - [3306] = 2435, - [3307] = 1368, - [3308] = 1341, - [3309] = 1334, - [3310] = 1333, - [3311] = 1285, - [3312] = 1180, - [3313] = 1181, - [3314] = 526, - [3315] = 3254, - [3316] = 3254, - [3317] = 3254, - [3318] = 555, - [3319] = 1182, - [3320] = 1205, - [3321] = 521, - [3322] = 1055, - [3323] = 518, - [3324] = 1204, - [3325] = 1184, - [3326] = 1276, - [3327] = 564, - [3328] = 558, - [3329] = 554, - [3330] = 3330, - [3331] = 559, - [3332] = 3332, - [3333] = 1326, - [3334] = 1282, - [3335] = 1325, - [3336] = 563, - [3337] = 1320, - [3338] = 3125, - [3339] = 1319, - [3340] = 1317, - [3341] = 1316, - [3342] = 1315, - [3343] = 1314, - [3344] = 1313, - [3345] = 518, - [3346] = 1310, - [3347] = 1309, - [3348] = 1308, - [3349] = 1283, - [3350] = 1307, - [3351] = 1304, - [3352] = 1303, - [3353] = 1301, - [3354] = 525, - [3355] = 555, - [3356] = 1300, - [3357] = 517, - [3358] = 559, - [3359] = 3209, - [3360] = 1297, - [3361] = 1295, - [3362] = 1294, - [3363] = 1293, - [3364] = 1292, - [3365] = 1291, - [3366] = 1290, - [3367] = 1289, - [3368] = 1288, - [3369] = 1286, - [3370] = 559, - [3371] = 3371, - [3372] = 1137, - [3373] = 597, - [3374] = 3374, - [3375] = 3375, - [3376] = 566, - [3377] = 1184, - [3378] = 588, - [3379] = 1127, - [3380] = 3380, - [3381] = 1055, - [3382] = 3382, - [3383] = 3383, - [3384] = 569, - [3385] = 574, - [3386] = 1117, - [3387] = 3387, - [3388] = 586, - [3389] = 3389, - [3390] = 568, - [3391] = 1123, - [3392] = 3392, - [3393] = 575, - [3394] = 1119, - [3395] = 1130, - [3396] = 577, - [3397] = 3397, - [3398] = 583, - [3399] = 532, - [3400] = 591, - [3401] = 634, - [3402] = 596, - [3403] = 606, - [3404] = 598, - [3405] = 626, - [3406] = 589, - [3407] = 540, - [3408] = 627, - [3409] = 619, - [3410] = 624, - [3411] = 3411, - [3412] = 629, - [3413] = 614, - [3414] = 565, - [3415] = 3415, - [3416] = 554, - [3417] = 600, - [3418] = 613, - [3419] = 618, - [3420] = 1180, - [3421] = 608, - [3422] = 611, - [3423] = 3423, - [3424] = 599, - [3425] = 1192, - [3426] = 602, - [3427] = 612, - [3428] = 597, - [3429] = 561, - [3430] = 566, - [3431] = 615, - [3432] = 569, - [3433] = 540, - [3434] = 1181, - [3435] = 574, - [3436] = 1137, - [3437] = 586, + [3208] = 3208, + [3209] = 1232, + [3210] = 634, + [3211] = 609, + [3212] = 605, + [3213] = 615, + [3214] = 1165, + [3215] = 624, + [3216] = 590, + [3217] = 586, + [3218] = 3124, + [3219] = 588, + [3220] = 627, + [3221] = 624, + [3222] = 1110, + [3223] = 529, + [3224] = 602, + [3225] = 598, + [3226] = 595, + [3227] = 629, + [3228] = 637, + [3229] = 592, + [3230] = 631, + [3231] = 582, + [3232] = 585, + [3233] = 581, + [3234] = 639, + [3235] = 608, + [3236] = 600, + [3237] = 3113, + [3238] = 612, + [3239] = 642, + [3240] = 633, + [3241] = 619, + [3242] = 611, + [3243] = 605, + [3244] = 646, + [3245] = 530, + [3246] = 630, + [3247] = 532, + [3248] = 628, + [3249] = 1168, + [3250] = 588, + [3251] = 524, + [3252] = 638, + [3253] = 569, + [3254] = 575, + [3255] = 628, + [3256] = 607, + [3257] = 603, + [3258] = 646, + [3259] = 596, + [3260] = 617, + [3261] = 594, + [3262] = 2052, + [3263] = 1110, + [3264] = 1245, + [3265] = 1247, + [3266] = 3075, + [3267] = 573, + [3268] = 3148, + [3269] = 3146, + [3270] = 1231, + [3271] = 516, + [3272] = 568, + [3273] = 554, + [3274] = 1251, + [3275] = 1151, + [3276] = 2421, + [3277] = 585, + [3278] = 560, + [3279] = 515, + [3280] = 1234, + [3281] = 1151, + [3282] = 1232, + [3283] = 1150, + [3284] = 1150, + [3285] = 1211, + [3286] = 518, + [3287] = 517, + [3288] = 518, + [3289] = 517, + [3290] = 1094, + [3291] = 532, + [3292] = 563, + [3293] = 532, + [3294] = 516, + [3295] = 1094, + [3296] = 577, + [3297] = 1110, + [3298] = 1386, + [3299] = 1409, + [3300] = 1410, + [3301] = 3301, + [3302] = 1168, + [3303] = 1405, + [3304] = 1411, + [3305] = 1361, + [3306] = 1423, + [3307] = 1424, + [3308] = 1425, + [3309] = 1400, + [3310] = 1196, + [3311] = 1399, + [3312] = 1426, + [3313] = 1396, + [3314] = 1395, + [3315] = 1428, + [3316] = 1429, + [3317] = 1392, + [3318] = 3301, + [3319] = 1387, + [3320] = 3320, + [3321] = 1430, + [3322] = 569, + [3323] = 1432, + [3324] = 1436, + [3325] = 1268, + [3326] = 1437, + [3327] = 1439, + [3328] = 1440, + [3329] = 1444, + [3330] = 1446, + [3331] = 1447, + [3332] = 1384, + [3333] = 569, + [3334] = 1378, + [3335] = 575, + [3336] = 1448, + [3337] = 3301, + [3338] = 1374, + [3339] = 3339, + [3340] = 3340, + [3341] = 1341, + [3342] = 1339, + [3343] = 1165, + [3344] = 3301, + [3345] = 597, + [3346] = 578, + [3347] = 589, + [3348] = 1196, + [3349] = 587, + [3350] = 580, + [3351] = 1338, + [3352] = 616, + [3353] = 618, + [3354] = 601, + [3355] = 644, + [3356] = 640, + [3357] = 632, + [3358] = 3301, + [3359] = 614, + [3360] = 1204, + [3361] = 609, + [3362] = 617, + [3363] = 568, + [3364] = 1337, + [3365] = 1168, + [3366] = 568, + [3367] = 3301, + [3368] = 3301, + [3369] = 3301, + [3370] = 3301, + [3371] = 3301, + [3372] = 3372, + [3373] = 2452, + [3374] = 1094, + [3375] = 1328, + [3376] = 1327, + [3377] = 1326, + [3378] = 1325, + [3379] = 3301, + [3380] = 3301, + [3381] = 575, + [3382] = 1321, + [3383] = 1320, + [3384] = 1309, + [3385] = 3301, + [3386] = 1110, + [3387] = 622, + [3388] = 1308, + [3389] = 1225, + [3390] = 2052, + [3391] = 1151, + [3392] = 520, + [3393] = 3393, + [3394] = 531, + [3395] = 1150, + [3396] = 1212, + [3397] = 1221, + [3398] = 1224, + [3399] = 3399, + [3400] = 3207, + [3401] = 1165, + [3402] = 1287, + [3403] = 552, + [3404] = 1278, + [3405] = 1272, + [3406] = 1280, + [3407] = 1209, + [3408] = 1237, + [3409] = 554, + [3410] = 3208, + [3411] = 577, + [3412] = 525, + [3413] = 1151, + [3414] = 526, + [3415] = 569, + [3416] = 1150, + [3417] = 577, + [3418] = 580, + [3419] = 563, + [3420] = 1221, + [3421] = 526, + [3422] = 1165, + [3423] = 632, + [3424] = 525, + [3425] = 1247, + [3426] = 612, + [3427] = 614, + [3428] = 1212, + [3429] = 3429, + [3430] = 609, + [3431] = 640, + [3432] = 3432, + [3433] = 1196, + [3434] = 573, + [3435] = 644, + [3436] = 3436, + [3437] = 1211, [3438] = 3438, - [3439] = 568, - [3440] = 1127, - [3441] = 575, - [3442] = 3442, - [3443] = 577, - [3444] = 587, - [3445] = 583, - [3446] = 1182, - [3447] = 591, - [3448] = 535, - [3449] = 596, - [3450] = 543, - [3451] = 532, - [3452] = 606, - [3453] = 617, - [3454] = 598, - [3455] = 1218, - [3456] = 578, - [3457] = 579, - [3458] = 562, - [3459] = 1159, - [3460] = 1200, - [3461] = 3461, - [3462] = 1201, - [3463] = 3461, - [3464] = 3461, - [3465] = 1198, - [3466] = 1204, - [3467] = 1205, - [3468] = 3461, - [3469] = 552, - [3470] = 3461, - [3471] = 558, - [3472] = 3472, - [3473] = 3461, - [3474] = 3461, - [3475] = 554, - [3476] = 1184, - [3477] = 1182, - [3478] = 3461, - [3479] = 1181, - [3480] = 1180, - [3481] = 3461, - [3482] = 3461, - [3483] = 3461, - [3484] = 3461, - [3485] = 3461, + [3439] = 3439, + [3440] = 601, + [3441] = 618, + [3442] = 1234, + [3443] = 616, + [3444] = 554, + [3445] = 3445, + [3446] = 3446, + [3447] = 1224, + [3448] = 623, + [3449] = 587, + [3450] = 589, + [3451] = 578, + [3452] = 648, + [3453] = 1211, + [3454] = 1231, + [3455] = 1245, + [3456] = 1247, + [3457] = 645, + [3458] = 3458, + [3459] = 3459, + [3460] = 635, + [3461] = 585, + [3462] = 3462, + [3463] = 1245, + [3464] = 1231, + [3465] = 3465, + [3466] = 3466, + [3467] = 597, + [3468] = 1225, + [3469] = 3469, + [3470] = 573, + [3471] = 629, + [3472] = 637, + [3473] = 646, + [3474] = 597, + [3475] = 631, + [3476] = 607, + [3477] = 603, + [3478] = 578, + [3479] = 554, + [3480] = 589, + [3481] = 615, + [3482] = 587, + [3483] = 1209, + [3484] = 580, + [3485] = 3485, [3486] = 3486, - [3487] = 3487, - [3488] = 1199, - [3489] = 3461, - [3490] = 3490, - [3491] = 3491, - [3492] = 561, - [3493] = 3461, - [3494] = 3286, - [3495] = 1303, - [3496] = 1277, - [3497] = 1334, - [3498] = 3498, - [3499] = 1309, - [3500] = 1218, - [3501] = 1308, - [3502] = 1307, - [3503] = 1304, - [3504] = 1301, - [3505] = 1333, - [3506] = 3506, - [3507] = 1326, - [3508] = 561, - [3509] = 1300, - [3510] = 3510, - [3511] = 1415, - [3512] = 554, - [3513] = 1416, - [3514] = 1325, - [3515] = 1297, - [3516] = 1368, - [3517] = 3517, - [3518] = 1417, - [3519] = 1295, - [3520] = 3520, - [3521] = 3521, - [3522] = 3522, - [3523] = 1320, + [3487] = 616, + [3488] = 1237, + [3489] = 618, + [3490] = 1251, + [3491] = 601, + [3492] = 630, + [3493] = 644, + [3494] = 627, + [3495] = 640, + [3496] = 624, + [3497] = 632, + [3498] = 638, + [3499] = 614, + [3500] = 594, + [3501] = 609, + [3502] = 626, + [3503] = 1168, + [3504] = 591, + [3505] = 596, + [3506] = 590, + [3507] = 586, + [3508] = 560, + [3509] = 552, + [3510] = 1247, + [3511] = 3511, + [3512] = 1378, + [3513] = 3511, + [3514] = 1384, + [3515] = 3511, + [3516] = 554, + [3517] = 1204, + [3518] = 3511, + [3519] = 1268, + [3520] = 1308, + [3521] = 1386, + [3522] = 1387, + [3523] = 1392, [3524] = 3524, - [3525] = 1319, - [3526] = 1317, - [3527] = 3527, - [3528] = 1294, - [3529] = 1293, - [3530] = 1292, - [3531] = 3531, - [3532] = 3532, - [3533] = 3533, - [3534] = 3534, - [3535] = 1291, - [3536] = 1290, - [3537] = 1215, - [3538] = 1289, - [3539] = 1341, - [3540] = 1288, - [3541] = 1286, - [3542] = 1192, - [3543] = 1313, - [3544] = 1314, - [3545] = 1316, - [3546] = 1285, - [3547] = 1283, - [3548] = 1282, - [3549] = 3549, - [3550] = 1315, - [3551] = 1310, - [3552] = 1276, - [3553] = 1405, - [3554] = 1384, - [3555] = 1418, - [3556] = 1388, - [3557] = 1389, - [3558] = 1401, - [3559] = 1394, - [3560] = 1395, - [3561] = 1397, - [3562] = 1399, - [3563] = 3563, - [3564] = 3564, - [3565] = 3565, + [3525] = 1395, + [3526] = 1448, + [3527] = 1309, + [3528] = 1396, + [3529] = 1320, + [3530] = 573, + [3531] = 3511, + [3532] = 1400, + [3533] = 1211, + [3534] = 1231, + [3535] = 1245, + [3536] = 1405, + [3537] = 3511, + [3538] = 1328, + [3539] = 3340, + [3540] = 3511, + [3541] = 1409, + [3542] = 3542, + [3543] = 1444, + [3544] = 1440, + [3545] = 1439, + [3546] = 1321, + [3547] = 1447, + [3548] = 1374, + [3549] = 1280, + [3550] = 3511, + [3551] = 1437, + [3552] = 1361, + [3553] = 3511, + [3554] = 1272, + [3555] = 1325, + [3556] = 3511, + [3557] = 3511, + [3558] = 1278, + [3559] = 1283, + [3560] = 1326, + [3561] = 1337, + [3562] = 3562, + [3563] = 1446, + [3564] = 1287, + [3565] = 1327, [3566] = 3566, - [3567] = 837, - [3568] = 838, - [3569] = 836, - [3570] = 840, - [3571] = 841, - [3572] = 839, - [3573] = 852, - [3574] = 850, - [3575] = 855, - [3576] = 851, - [3577] = 861, - [3578] = 857, - [3579] = 860, - [3580] = 854, - [3581] = 853, - [3582] = 858, - [3583] = 859, - [3584] = 849, - [3585] = 836, - [3586] = 838, - [3587] = 837, - [3588] = 3588, - [3589] = 841, - [3590] = 3588, - [3591] = 840, - [3592] = 839, - [3593] = 841, - [3594] = 840, - [3595] = 836, - [3596] = 837, - [3597] = 840, - [3598] = 841, - [3599] = 836, - [3600] = 838, - [3601] = 839, - [3602] = 839, - [3603] = 532, - [3604] = 540, - [3605] = 837, - [3606] = 838, - [3607] = 852, - [3608] = 841, - [3609] = 840, - [3610] = 836, - [3611] = 860, - [3612] = 850, - [3613] = 859, - [3614] = 858, - [3615] = 838, - [3616] = 837, - [3617] = 857, - [3618] = 855, - [3619] = 839, - [3620] = 3620, - [3621] = 851, - [3622] = 861, - [3623] = 854, - [3624] = 853, - [3625] = 849, - [3626] = 850, - [3627] = 3627, - [3628] = 840, - [3629] = 841, - [3630] = 860, - [3631] = 852, - [3632] = 852, - [3633] = 849, - [3634] = 854, - [3635] = 849, - [3636] = 838, - [3637] = 859, - [3638] = 3627, - [3639] = 853, - [3640] = 853, - [3641] = 858, - [3642] = 854, - [3643] = 855, - [3644] = 618, - [3645] = 837, - [3646] = 3646, - [3647] = 857, - [3648] = 861, - [3649] = 861, - [3650] = 836, - [3651] = 851, - [3652] = 839, - [3653] = 841, - [3654] = 840, - [3655] = 836, - [3656] = 858, - [3657] = 859, - [3658] = 838, - [3659] = 850, - [3660] = 860, - [3661] = 839, - [3662] = 851, - [3663] = 837, - [3664] = 857, - [3665] = 855, - [3666] = 3646, - [3667] = 839, - [3668] = 3668, - [3669] = 851, - [3670] = 854, - [3671] = 841, - [3672] = 861, - [3673] = 857, - [3674] = 855, - [3675] = 839, + [3567] = 3511, + [3568] = 3568, + [3569] = 1341, + [3570] = 1436, + [3571] = 1410, + [3572] = 1411, + [3573] = 3573, + [3574] = 3574, + [3575] = 1339, + [3576] = 1399, + [3577] = 3511, + [3578] = 1432, + [3579] = 1338, + [3580] = 1423, + [3581] = 1424, + [3582] = 1425, + [3583] = 1426, + [3584] = 1428, + [3585] = 1429, + [3586] = 3586, + [3587] = 3511, + [3588] = 1430, + [3589] = 3511, + [3590] = 3590, + [3591] = 3591, + [3592] = 3592, + [3593] = 3593, + [3594] = 3594, + [3595] = 3595, + [3596] = 3596, + [3597] = 3597, + [3598] = 3598, + [3599] = 3599, + [3600] = 3600, + [3601] = 3601, + [3602] = 3602, + [3603] = 3603, + [3604] = 1232, + [3605] = 1251, + [3606] = 3606, + [3607] = 1234, + [3608] = 3608, + [3609] = 3609, + [3610] = 3610, + [3611] = 867, + [3612] = 862, + [3613] = 864, + [3614] = 866, + [3615] = 865, + [3616] = 863, + [3617] = 885, + [3618] = 880, + [3619] = 878, + [3620] = 875, + [3621] = 876, + [3622] = 887, + [3623] = 883, + [3624] = 886, + [3625] = 882, + [3626] = 879, + [3627] = 877, + [3628] = 881, + [3629] = 865, + [3630] = 867, + [3631] = 3631, + [3632] = 863, + [3633] = 864, + [3634] = 3631, + [3635] = 866, + [3636] = 862, + [3637] = 867, + [3638] = 866, + [3639] = 525, + [3640] = 864, + [3641] = 862, + [3642] = 526, + [3643] = 864, + [3644] = 867, + [3645] = 866, + [3646] = 863, + [3647] = 2318, + [3648] = 865, + [3649] = 863, + [3650] = 865, + [3651] = 862, + [3652] = 875, + [3653] = 887, + [3654] = 3654, + [3655] = 883, + [3656] = 885, + [3657] = 878, + [3658] = 886, + [3659] = 882, + [3660] = 881, + [3661] = 880, + [3662] = 877, + [3663] = 879, + [3664] = 876, + [3665] = 864, + [3666] = 867, + [3667] = 2318, + [3668] = 866, + [3669] = 865, + [3670] = 863, + [3671] = 862, + [3672] = 612, + [3673] = 885, + [3674] = 883, + [3675] = 877, [3676] = 3676, - [3677] = 850, - [3678] = 852, - [3679] = 3679, - [3680] = 837, - [3681] = 853, - [3682] = 849, - [3683] = 3683, - [3684] = 860, - [3685] = 838, - [3686] = 836, - [3687] = 858, - [3688] = 840, - [3689] = 859, - [3690] = 838, - [3691] = 836, - [3692] = 840, - [3693] = 841, - [3694] = 837, - [3695] = 849, - [3696] = 3696, - [3697] = 858, - [3698] = 3698, - [3699] = 3699, - [3700] = 3700, - [3701] = 1055, - [3702] = 526, - [3703] = 3703, - [3704] = 861, - [3705] = 3705, - [3706] = 3668, - [3707] = 3696, - [3708] = 3700, - [3709] = 854, - [3710] = 517, - [3711] = 859, - [3712] = 526, - [3713] = 850, - [3714] = 852, - [3715] = 849, - [3716] = 521, - [3717] = 860, - [3718] = 3718, - [3719] = 1117, - [3720] = 3703, - [3721] = 3705, - [3722] = 3699, - [3723] = 852, - [3724] = 854, - [3725] = 853, - [3726] = 853, - [3727] = 860, - [3728] = 850, - [3729] = 857, - [3730] = 855, - [3731] = 518, - [3732] = 859, - [3733] = 858, - [3734] = 518, - [3735] = 3676, - [3736] = 525, - [3737] = 517, - [3738] = 3738, - [3739] = 857, - [3740] = 3699, - [3741] = 855, - [3742] = 3700, - [3743] = 3696, - [3744] = 3703, - [3745] = 851, - [3746] = 861, - [3747] = 851, - [3748] = 3718, - [3749] = 525, - [3750] = 3750, - [3751] = 851, - [3752] = 855, - [3753] = 857, - [3754] = 852, - [3755] = 849, - [3756] = 853, - [3757] = 3757, - [3758] = 3758, - [3759] = 3750, - [3760] = 851, - [3761] = 3758, - [3762] = 854, - [3763] = 858, - [3764] = 859, - [3765] = 850, - [3766] = 1127, - [3767] = 3767, - [3768] = 3767, - [3769] = 3750, - [3770] = 861, - [3771] = 854, - [3772] = 860, - [3773] = 853, - [3774] = 3750, - [3775] = 849, - [3776] = 861, - [3777] = 3750, - [3778] = 855, - [3779] = 3750, - [3780] = 3780, - [3781] = 857, - [3782] = 852, - [3783] = 3758, - [3784] = 1137, - [3785] = 859, - [3786] = 850, - [3787] = 860, - [3788] = 535, - [3789] = 543, - [3790] = 3767, - [3791] = 3758, - [3792] = 3758, - [3793] = 3758, - [3794] = 3750, - [3795] = 3767, - [3796] = 3767, - [3797] = 3758, - [3798] = 3758, - [3799] = 3750, - [3800] = 3767, + [3677] = 862, + [3678] = 867, + [3679] = 867, + [3680] = 878, + [3681] = 2326, + [3682] = 878, + [3683] = 875, + [3684] = 885, + [3685] = 863, + [3686] = 865, + [3687] = 883, + [3688] = 866, + [3689] = 887, + [3690] = 876, + [3691] = 887, + [3692] = 879, + [3693] = 866, + [3694] = 877, + [3695] = 880, + [3696] = 864, + [3697] = 881, + [3698] = 862, + [3699] = 882, + [3700] = 886, + [3701] = 876, + [3702] = 887, + [3703] = 879, + [3704] = 877, + [3705] = 880, + [3706] = 3676, + [3707] = 3707, + [3708] = 875, + [3709] = 865, + [3710] = 886, + [3711] = 3707, + [3712] = 881, + [3713] = 882, + [3714] = 2318, + [3715] = 883, + [3716] = 881, + [3717] = 880, + [3718] = 882, + [3719] = 886, + [3720] = 885, + [3721] = 875, + [3722] = 876, + [3723] = 878, + [3724] = 863, + [3725] = 879, + [3726] = 3726, + [3727] = 2331, + [3728] = 3728, + [3729] = 866, + [3730] = 862, + [3731] = 883, + [3732] = 864, + [3733] = 885, + [3734] = 875, + [3735] = 863, + [3736] = 2326, + [3737] = 867, + [3738] = 865, + [3739] = 878, + [3740] = 2328, + [3741] = 866, + [3742] = 867, + [3743] = 876, + [3744] = 863, + [3745] = 887, + [3746] = 3746, + [3747] = 879, + [3748] = 877, + [3749] = 3749, + [3750] = 880, + [3751] = 862, + [3752] = 865, + [3753] = 886, + [3754] = 882, + [3755] = 881, + [3756] = 3756, + [3757] = 517, + [3758] = 515, + [3759] = 518, + [3760] = 517, + [3761] = 3761, + [3762] = 2326, + [3763] = 3763, + [3764] = 2331, + [3765] = 518, + [3766] = 875, + [3767] = 878, + [3768] = 876, + [3769] = 885, + [3770] = 883, + [3771] = 3728, + [3772] = 532, + [3773] = 2328, + [3774] = 516, + [3775] = 3775, + [3776] = 3776, + [3777] = 3756, + [3778] = 3778, + [3779] = 3779, + [3780] = 882, + [3781] = 516, + [3782] = 532, + [3783] = 1094, + [3784] = 3756, + [3785] = 3776, + [3786] = 879, + [3787] = 887, + [3788] = 3778, + [3789] = 3779, + [3790] = 3761, + [3791] = 3763, + [3792] = 3761, + [3793] = 886, + [3794] = 3763, + [3795] = 881, + [3796] = 880, + [3797] = 877, + [3798] = 3726, + [3799] = 3776, + [3800] = 1110, [3801] = 3801, - [3802] = 3780, - [3803] = 1137, - [3804] = 3780, - [3805] = 3780, - [3806] = 1127, - [3807] = 3750, - [3808] = 2793, - [3809] = 1130, - [3810] = 2809, - [3811] = 3767, - [3812] = 3767, - [3813] = 3750, - [3814] = 3767, - [3815] = 3750, - [3816] = 3767, - [3817] = 1123, - [3818] = 3780, - [3819] = 3780, - [3820] = 3767, - [3821] = 3750, - [3822] = 3750, - [3823] = 3767, - [3824] = 3767, - [3825] = 3825, - [3826] = 3780, - [3827] = 3780, - [3828] = 3780, - [3829] = 3758, - [3830] = 858, - [3831] = 1184, - [3832] = 3780, - [3833] = 3758, - [3834] = 3750, - [3835] = 3750, - [3836] = 3836, - [3837] = 3780, - [3838] = 3838, - [3839] = 3780, - [3840] = 1182, - [3841] = 3767, - [3842] = 3767, - [3843] = 1119, - [3844] = 3780, - [3845] = 1181, - [3846] = 3846, - [3847] = 3767, - [3848] = 3750, - [3849] = 1180, - [3850] = 2864, - [3851] = 3801, - [3852] = 3852, - [3853] = 3853, - [3854] = 3854, - [3855] = 3855, - [3856] = 558, - [3857] = 552, - [3858] = 562, - [3859] = 1198, - [3860] = 1199, - [3861] = 1200, - [3862] = 3862, - [3863] = 3863, - [3864] = 3864, - [3865] = 3865, - [3866] = 1201, - [3867] = 1204, - [3868] = 3868, - [3869] = 1205, - [3870] = 3853, - [3871] = 3871, - [3872] = 3852, - [3873] = 3873, - [3874] = 2850, - [3875] = 2851, - [3876] = 3871, - [3877] = 3825, - [3878] = 561, - [3879] = 2793, - [3880] = 2809, - [3881] = 554, - [3882] = 2843, - [3883] = 3883, - [3884] = 3884, - [3885] = 3884, - [3886] = 2565, - [3887] = 3887, - [3888] = 3888, - [3889] = 2857, - [3890] = 3890, - [3891] = 3891, - [3892] = 3892, - [3893] = 3893, - [3894] = 3894, - [3895] = 3895, - [3896] = 3893, - [3897] = 3894, + [3802] = 864, + [3803] = 2331, + [3804] = 3804, + [3805] = 3804, + [3806] = 887, + [3807] = 876, + [3808] = 3808, + [3809] = 877, + [3810] = 3810, + [3811] = 1151, + [3812] = 3808, + [3813] = 3804, + [3814] = 3814, + [3815] = 880, + [3816] = 1150, + [3817] = 3810, + [3818] = 881, + [3819] = 3819, + [3820] = 882, + [3821] = 3804, + [3822] = 3814, + [3823] = 3804, + [3824] = 3808, + [3825] = 3814, + [3826] = 3808, + [3827] = 886, + [3828] = 3828, + [3829] = 3810, + [3830] = 3830, + [3831] = 3808, + [3832] = 1247, + [3833] = 2328, + [3834] = 1151, + [3835] = 3808, + [3836] = 3804, + [3837] = 520, + [3838] = 531, + [3839] = 2812, + [3840] = 3810, + [3841] = 3804, + [3842] = 3814, + [3843] = 3843, + [3844] = 3814, + [3845] = 3808, + [3846] = 2814, + [3847] = 1245, + [3848] = 1150, + [3849] = 878, + [3850] = 875, + [3851] = 3810, + [3852] = 3814, + [3853] = 1231, + [3854] = 3808, + [3855] = 3804, + [3856] = 3804, + [3857] = 3804, + [3858] = 885, + [3859] = 3810, + [3860] = 3860, + [3861] = 3808, + [3862] = 3804, + [3863] = 3810, + [3864] = 3814, + [3865] = 3808, + [3866] = 883, + [3867] = 3810, + [3868] = 1168, + [3869] = 1165, + [3870] = 879, + [3871] = 1196, + [3872] = 3808, + [3873] = 3814, + [3874] = 3808, + [3875] = 3804, + [3876] = 1211, + [3877] = 3804, + [3878] = 3808, + [3879] = 3810, + [3880] = 3810, + [3881] = 3881, + [3882] = 3810, + [3883] = 3804, + [3884] = 3804, + [3885] = 3810, + [3886] = 3814, + [3887] = 3814, + [3888] = 3808, + [3889] = 3808, + [3890] = 1225, + [3891] = 2814, + [3892] = 3830, + [3893] = 2812, + [3894] = 1224, + [3895] = 1221, + [3896] = 3896, + [3897] = 1212, [3898] = 3898, - [3899] = 3894, - [3900] = 1309, - [3901] = 3893, + [3899] = 2885, + [3900] = 1209, + [3901] = 1237, [3902] = 3902, - [3903] = 3893, - [3904] = 3898, - [3905] = 3891, - [3906] = 3895, - [3907] = 3891, - [3908] = 3895, - [3909] = 3893, - [3910] = 3894, - [3911] = 2857, - [3912] = 3891, - [3913] = 1276, - [3914] = 1277, - [3915] = 1282, - [3916] = 1283, - [3917] = 1285, - [3918] = 1286, - [3919] = 1288, - [3920] = 3898, + [3903] = 2881, + [3904] = 3904, + [3905] = 3905, + [3906] = 3902, + [3907] = 2896, + [3908] = 560, + [3909] = 2867, + [3910] = 3898, + [3911] = 2898, + [3912] = 3912, + [3913] = 563, + [3914] = 573, + [3915] = 2605, + [3916] = 3916, + [3917] = 3917, + [3918] = 3918, + [3919] = 554, + [3920] = 3920, [3921] = 3921, - [3922] = 3922, - [3923] = 3898, - [3924] = 3891, - [3925] = 3895, - [3926] = 3895, - [3927] = 3898, - [3928] = 3894, - [3929] = 1289, - [3930] = 1290, - [3931] = 1291, - [3932] = 1292, - [3933] = 1293, - [3934] = 1294, - [3935] = 1295, - [3936] = 1297, - [3937] = 1300, - [3938] = 1301, - [3939] = 1303, - [3940] = 1304, - [3941] = 1307, - [3942] = 1308, - [3943] = 1415, - [3944] = 1310, - [3945] = 3945, - [3946] = 3894, - [3947] = 1313, - [3948] = 1314, - [3949] = 1315, - [3950] = 3922, - [3951] = 3891, - [3952] = 1316, - [3953] = 3891, - [3954] = 3895, - [3955] = 3893, - [3956] = 3894, - [3957] = 3922, - [3958] = 1232, - [3959] = 1230, - [3960] = 3922, - [3961] = 3898, - [3962] = 3891, - [3963] = 3895, - [3964] = 3893, - [3965] = 3894, - [3966] = 3922, - [3967] = 3898, - [3968] = 3891, - [3969] = 3895, - [3970] = 3893, - [3971] = 3894, - [3972] = 2864, - [3973] = 3922, - [3974] = 3898, - [3975] = 3894, - [3976] = 3895, - [3977] = 3893, - [3978] = 3978, - [3979] = 3922, - [3980] = 1384, - [3981] = 3898, - [3982] = 3891, - [3983] = 3895, - [3984] = 3984, - [3985] = 3893, - [3986] = 1317, - [3987] = 3987, - [3988] = 3894, - [3989] = 3989, - [3990] = 3987, - [3991] = 3902, - [3992] = 3922, - [3993] = 3898, - [3994] = 3891, - [3995] = 3895, - [3996] = 3921, - [3997] = 3893, - [3998] = 3989, - [3999] = 3894, - [4000] = 3922, - [4001] = 3898, - [4002] = 3891, - [4003] = 3895, - [4004] = 4004, - [4005] = 3922, - [4006] = 3893, - [4007] = 3922, - [4008] = 3894, - [4009] = 3922, - [4010] = 3893, - [4011] = 3898, - [4012] = 3894, - [4013] = 3893, - [4014] = 3895, - [4015] = 3891, - [4016] = 3891, - [4017] = 3895, - [4018] = 1418, - [4019] = 1417, - [4020] = 1416, - [4021] = 3893, - [4022] = 3894, - [4023] = 3895, - [4024] = 3891, - [4025] = 3894, - [4026] = 3922, - [4027] = 3893, - [4028] = 1405, - [4029] = 1401, - [4030] = 3898, - [4031] = 3895, - [4032] = 3891, - [4033] = 1399, - [4034] = 1397, - [4035] = 1395, - [4036] = 1394, - [4037] = 1389, - [4038] = 1388, - [4039] = 1368, - [4040] = 1341, - [4041] = 1334, - [4042] = 1333, - [4043] = 1326, - [4044] = 1325, - [4045] = 4045, - [4046] = 4046, - [4047] = 1320, - [4048] = 2850, - [4049] = 1319, - [4050] = 2843, - [4051] = 2851, - [4052] = 4052, - [4053] = 4046, - [4054] = 3945, - [4055] = 4055, - [4056] = 4056, - [4057] = 4057, - [4058] = 4058, - [4059] = 4059, - [4060] = 4045, - [4061] = 4061, - [4062] = 4062, - [4063] = 4063, - [4064] = 4055, - [4065] = 4057, - [4066] = 4066, - [4067] = 4067, - [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 4071, - [4072] = 4072, - [4073] = 1055, - [4074] = 4074, - [4075] = 4075, - [4076] = 4076, - [4077] = 4077, - [4078] = 4078, - [4079] = 4079, - [4080] = 4080, - [4081] = 4081, - [4082] = 4082, - [4083] = 4083, - [4084] = 4084, - [4085] = 1117, + [3922] = 552, + [3923] = 3923, + [3924] = 3920, + [3925] = 3925, + [3926] = 3926, + [3927] = 3926, + [3928] = 3928, + [3929] = 3929, + [3930] = 3828, + [3931] = 3931, + [3932] = 3932, + [3933] = 3933, + [3934] = 3934, + [3935] = 1341, + [3936] = 3936, + [3937] = 1361, + [3938] = 1374, + [3939] = 1378, + [3940] = 1384, + [3941] = 3941, + [3942] = 1339, + [3943] = 1268, + [3944] = 3944, + [3945] = 3944, + [3946] = 3946, + [3947] = 3934, + [3948] = 3933, + [3949] = 3944, + [3950] = 3946, + [3951] = 3934, + [3952] = 3934, + [3953] = 2881, + [3954] = 1386, + [3955] = 3933, + [3956] = 1337, + [3957] = 1328, + [3958] = 3946, + [3959] = 3933, + [3960] = 3944, + [3961] = 3961, + [3962] = 3936, + [3963] = 3944, + [3964] = 1387, + [3965] = 3946, + [3966] = 3934, + [3967] = 1226, + [3968] = 3933, + [3969] = 1392, + [3970] = 1395, + [3971] = 1396, + [3972] = 1399, + [3973] = 1400, + [3974] = 1405, + [3975] = 1409, + [3976] = 1410, + [3977] = 1411, + [3978] = 1423, + [3979] = 1424, + [3980] = 1425, + [3981] = 1426, + [3982] = 3982, + [3983] = 1327, + [3984] = 1338, + [3985] = 1326, + [3986] = 3986, + [3987] = 1428, + [3988] = 1429, + [3989] = 1430, + [3990] = 1432, + [3991] = 1436, + [3992] = 1437, + [3993] = 1439, + [3994] = 3936, + [3995] = 1440, + [3996] = 3996, + [3997] = 1325, + [3998] = 1444, + [3999] = 1321, + [4000] = 1446, + [4001] = 2898, + [4002] = 1320, + [4003] = 3961, + [4004] = 1447, + [4005] = 1448, + [4006] = 3936, + [4007] = 1309, + [4008] = 3944, + [4009] = 3936, + [4010] = 3946, + [4011] = 1308, + [4012] = 2896, + [4013] = 4013, + [4014] = 3944, + [4015] = 3961, + [4016] = 3933, + [4017] = 4017, + [4018] = 3961, + [4019] = 3986, + [4020] = 3961, + [4021] = 1287, + [4022] = 3946, + [4023] = 1228, + [4024] = 4024, + [4025] = 1278, + [4026] = 3934, + [4027] = 3933, + [4028] = 3933, + [4029] = 3941, + [4030] = 3933, + [4031] = 2867, + [4032] = 3934, + [4033] = 3933, + [4034] = 4013, + [4035] = 3934, + [4036] = 1283, + [4037] = 3946, + [4038] = 3944, + [4039] = 3936, + [4040] = 1272, + [4041] = 1280, + [4042] = 3934, + [4043] = 3934, + [4044] = 4044, + [4045] = 2885, + [4046] = 3946, + [4047] = 3946, + [4048] = 4048, + [4049] = 3933, + [4050] = 4048, + [4051] = 3934, + [4052] = 3936, + [4053] = 3961, + [4054] = 3936, + [4055] = 3961, + [4056] = 3961, + [4057] = 3961, + [4058] = 3936, + [4059] = 3944, + [4060] = 3936, + [4061] = 3933, + [4062] = 3934, + [4063] = 3946, + [4064] = 3946, + [4065] = 3933, + [4066] = 3944, + [4067] = 3946, + [4068] = 3934, + [4069] = 3934, + [4070] = 3961, + [4071] = 3946, + [4072] = 3944, + [4073] = 3946, + [4074] = 3961, + [4075] = 3934, + [4076] = 3933, + [4077] = 3944, + [4078] = 3936, + [4079] = 3944, + [4080] = 3933, + [4081] = 3944, + [4082] = 3936, + [4083] = 3946, + [4084] = 3944, + [4085] = 3961, [4086] = 4086, [4087] = 4087, [4088] = 4088, [4089] = 4089, - [4090] = 4090, + [4090] = 3932, [4091] = 4091, [4092] = 4092, [4093] = 4093, [4094] = 4094, - [4095] = 1230, - [4096] = 1232, + [4095] = 4095, + [4096] = 4096, [4097] = 4097, - [4098] = 4059, + [4098] = 4098, [4099] = 4099, [4100] = 4100, [4101] = 4101, [4102] = 4102, - [4103] = 4103, + [4103] = 3982, [4104] = 4104, [4105] = 4105, - [4106] = 1119, - [4107] = 1127, - [4108] = 4088, + [4106] = 4106, + [4107] = 4107, + [4108] = 4108, [4109] = 4109, - [4110] = 4110, + [4110] = 4096, [4111] = 4111, - [4112] = 4089, - [4113] = 4090, - [4114] = 4114, - [4115] = 1130, - [4116] = 4092, - [4117] = 1137, - [4118] = 4093, - [4119] = 1117, - [4120] = 525, - [4121] = 517, - [4122] = 518, - [4123] = 4079, - [4124] = 4080, - [4125] = 4094, - [4126] = 526, - [4127] = 1123, - [4128] = 1127, - [4129] = 518, - [4130] = 4076, - [4131] = 1055, - [4132] = 4101, - [4133] = 4081, - [4134] = 4102, - [4135] = 4077, - [4136] = 1117, - [4137] = 4109, - [4138] = 4082, + [4112] = 4112, + [4113] = 4113, + [4114] = 4094, + [4115] = 4115, + [4116] = 4116, + [4117] = 4117, + [4118] = 4107, + [4119] = 4119, + [4120] = 4120, + [4121] = 4121, + [4122] = 4122, + [4123] = 4123, + [4124] = 4124, + [4125] = 4125, + [4126] = 4126, + [4127] = 4024, + [4128] = 4128, + [4129] = 1228, + [4130] = 1110, + [4131] = 1226, + [4132] = 4132, + [4133] = 1094, + [4134] = 4134, + [4135] = 4135, + [4136] = 4136, + [4137] = 4137, + [4138] = 4138, [4139] = 4139, - [4140] = 1055, - [4141] = 4084, - [4142] = 4110, + [4140] = 4140, + [4141] = 4104, + [4142] = 1110, [4143] = 4143, - [4144] = 4086, + [4144] = 4144, [4145] = 4145, - [4146] = 4146, + [4146] = 518, [4147] = 4147, - [4148] = 4148, - [4149] = 4149, - [4150] = 1117, - [4151] = 4151, - [4152] = 525, - [4153] = 4078, - [4154] = 4091, - [4155] = 4155, - [4156] = 1055, - [4157] = 4157, - [4158] = 4087, - [4159] = 4105, - [4160] = 4062, - [4161] = 4070, - [4162] = 4075, - [4163] = 4074, - [4164] = 4072, - [4165] = 4052, - [4166] = 4069, - [4167] = 4110, - [4168] = 4168, - [4169] = 4169, - [4170] = 4170, - [4171] = 4068, - [4172] = 4067, - [4173] = 4173, - [4174] = 4109, - [4175] = 4175, - [4176] = 4083, - [4177] = 4099, - [4178] = 4100, - [4179] = 4103, - [4180] = 4104, - [4181] = 4181, + [4148] = 517, + [4149] = 518, + [4150] = 4150, + [4151] = 4122, + [4152] = 4121, + [4153] = 4116, + [4154] = 4154, + [4155] = 4143, + [4156] = 4156, + [4157] = 1094, + [4158] = 4158, + [4159] = 4159, + [4160] = 4160, + [4161] = 1094, + [4162] = 1150, + [4163] = 4139, + [4164] = 4138, + [4165] = 4165, + [4166] = 4143, + [4167] = 4167, + [4168] = 1196, + [4169] = 515, + [4170] = 516, + [4171] = 517, + [4172] = 532, + [4173] = 4100, + [4174] = 4089, + [4175] = 4126, + [4176] = 516, + [4177] = 4177, + [4178] = 1151, + [4179] = 4106, + [4180] = 4123, + [4181] = 4135, [4182] = 4182, - [4183] = 4071, - [4184] = 4066, - [4185] = 4185, - [4186] = 1137, - [4187] = 517, - [4188] = 526, - [4189] = 521, - [4190] = 1204, - [4191] = 1205, + [4183] = 4144, + [4184] = 4184, + [4185] = 4128, + [4186] = 4186, + [4187] = 1150, + [4188] = 1165, + [4189] = 4189, + [4190] = 4124, + [4191] = 1110, [4192] = 4192, - [4193] = 1137, - [4194] = 1127, - [4195] = 4195, - [4196] = 4196, - [4197] = 4197, - [4198] = 4198, - [4199] = 1184, - [4200] = 4200, - [4201] = 1235, - [4202] = 4202, - [4203] = 4203, - [4204] = 1182, - [4205] = 4205, - [4206] = 4206, - [4207] = 1181, - [4208] = 4208, - [4209] = 1180, - [4210] = 4210, - [4211] = 4211, + [4193] = 1168, + [4194] = 4137, + [4195] = 1110, + [4196] = 1151, + [4197] = 4132, + [4198] = 1094, + [4199] = 4095, + [4200] = 4134, + [4201] = 4086, + [4202] = 4115, + [4203] = 4119, + [4204] = 4120, + [4205] = 4109, + [4206] = 4125, + [4207] = 4102, + [4208] = 4113, + [4209] = 4112, + [4210] = 4088, + [4211] = 4093, [4212] = 4212, - [4213] = 4213, - [4214] = 1127, - [4215] = 4215, - [4216] = 1127, - [4217] = 4217, - [4218] = 4218, - [4219] = 4219, - [4220] = 1137, - [4221] = 4221, - [4222] = 1137, - [4223] = 1117, + [4213] = 532, + [4214] = 4097, + [4215] = 4105, + [4216] = 4216, + [4217] = 4108, + [4218] = 4098, + [4219] = 4099, + [4220] = 4144, + [4221] = 4101, + [4222] = 4092, + [4223] = 4223, [4224] = 4224, - [4225] = 4225, - [4226] = 1201, - [4227] = 1127, - [4228] = 1130, - [4229] = 1200, - [4230] = 4230, - [4231] = 1137, - [4232] = 4203, - [4233] = 4206, - [4234] = 1159, - [4235] = 525, - [4236] = 4213, + [4225] = 1231, + [4226] = 4226, + [4227] = 4227, + [4228] = 1196, + [4229] = 4229, + [4230] = 518, + [4231] = 1165, + [4232] = 516, + [4233] = 516, + [4234] = 1168, + [4235] = 1151, + [4236] = 4236, [4237] = 4237, - [4238] = 1119, - [4239] = 1199, + [4238] = 1258, + [4239] = 532, [4240] = 4240, - [4241] = 4208, - [4242] = 1198, - [4243] = 1192, - [4244] = 4210, - [4245] = 4212, - [4246] = 526, - [4247] = 1055, - [4248] = 4215, - [4249] = 4249, - [4250] = 1123, + [4241] = 4241, + [4242] = 4236, + [4243] = 4243, + [4244] = 4244, + [4245] = 4245, + [4246] = 4241, + [4247] = 4247, + [4248] = 1168, + [4249] = 1165, + [4250] = 4250, [4251] = 518, - [4252] = 4225, - [4253] = 4253, - [4254] = 4254, - [4255] = 517, + [4252] = 4252, + [4253] = 1196, + [4254] = 1151, + [4255] = 4255, [4256] = 4256, - [4257] = 4192, - [4258] = 521, - [4259] = 4259, - [4260] = 4260, - [4261] = 4259, - [4262] = 4211, - [4263] = 4263, - [4264] = 4195, - [4265] = 1130, - [4266] = 4237, - [4267] = 4253, - [4268] = 1119, - [4269] = 4230, - [4270] = 4270, - [4271] = 525, - [4272] = 1123, - [4273] = 518, - [4274] = 517, - [4275] = 526, - [4276] = 4260, - [4277] = 4263, - [4278] = 4217, - [4279] = 1137, - [4280] = 4249, - [4281] = 4219, - [4282] = 1127, - [4283] = 4283, - [4284] = 1297, - [4285] = 4285, - [4286] = 4286, + [4257] = 4257, + [4258] = 1150, + [4259] = 1209, + [4260] = 1237, + [4261] = 1110, + [4262] = 532, + [4263] = 517, + [4264] = 4264, + [4265] = 4247, + [4266] = 1211, + [4267] = 1150, + [4268] = 4268, + [4269] = 1212, + [4270] = 4255, + [4271] = 517, + [4272] = 1221, + [4273] = 1151, + [4274] = 1245, + [4275] = 4275, + [4276] = 1247, + [4277] = 4277, + [4278] = 4278, + [4279] = 4279, + [4280] = 4280, + [4281] = 1224, + [4282] = 1225, + [4283] = 1151, + [4284] = 4240, + [4285] = 1151, + [4286] = 4244, [4287] = 4287, - [4288] = 526, + [4288] = 4288, [4289] = 4289, - [4290] = 4290, + [4290] = 4229, [4291] = 4291, - [4292] = 4292, - [4293] = 1205, - [4294] = 1204, + [4292] = 1150, + [4293] = 515, + [4294] = 4289, [4295] = 4295, - [4296] = 4291, + [4296] = 4296, [4297] = 4297, - [4298] = 518, - [4299] = 525, - [4300] = 517, - [4301] = 1285, - [4302] = 518, - [4303] = 516, - [4304] = 1218, - [4305] = 1159, - [4306] = 4306, - [4307] = 1201, - [4308] = 4295, - [4309] = 4309, - [4310] = 4310, - [4311] = 4311, - [4312] = 4291, - [4313] = 1276, + [4298] = 4296, + [4299] = 4299, + [4300] = 4264, + [4301] = 4226, + [4302] = 4268, + [4303] = 1150, + [4304] = 4252, + [4305] = 1234, + [4306] = 4227, + [4307] = 4245, + [4308] = 4308, + [4309] = 1150, + [4310] = 1150, + [4311] = 1204, + [4312] = 4250, + [4313] = 4243, [4314] = 4314, - [4315] = 1277, - [4316] = 4287, - [4317] = 1200, - [4318] = 4295, - [4319] = 1282, - [4320] = 1283, - [4321] = 1286, - [4322] = 1288, - [4323] = 1289, - [4324] = 1290, - [4325] = 1291, - [4326] = 1292, - [4327] = 1293, - [4328] = 4328, + [4315] = 4288, + [4316] = 4224, + [4317] = 4256, + [4318] = 1094, + [4319] = 1151, + [4320] = 1245, + [4321] = 4321, + [4322] = 4322, + [4323] = 4323, + [4324] = 4324, + [4325] = 4325, + [4326] = 4326, + [4327] = 4327, + [4328] = 1268, [4329] = 4329, [4330] = 4330, - [4331] = 1294, - [4332] = 1295, - [4333] = 4333, - [4334] = 1300, - [4335] = 1192, - [4336] = 4291, - [4337] = 4337, - [4338] = 4338, - [4339] = 1301, - [4340] = 4340, - [4341] = 4295, - [4342] = 1303, - [4343] = 1304, - [4344] = 1180, - [4345] = 4345, - [4346] = 1307, - [4347] = 1308, - [4348] = 4348, - [4349] = 4291, - [4350] = 1199, - [4351] = 4351, - [4352] = 4291, - [4353] = 4353, - [4354] = 4348, - [4355] = 4351, - [4356] = 4291, - [4357] = 4353, + [4331] = 4331, + [4332] = 1280, + [4333] = 1272, + [4334] = 4334, + [4335] = 1278, + [4336] = 4336, + [4337] = 1287, + [4338] = 4336, + [4339] = 4323, + [4340] = 4322, + [4341] = 4321, + [4342] = 4342, + [4343] = 1308, + [4344] = 1309, + [4345] = 1320, + [4346] = 1321, + [4347] = 4347, + [4348] = 1325, + [4349] = 4349, + [4350] = 4350, + [4351] = 3372, + [4352] = 4352, + [4353] = 4342, + [4354] = 1326, + [4355] = 1327, + [4356] = 528, + [4357] = 532, [4358] = 4358, - [4359] = 1309, - [4360] = 1310, - [4361] = 4295, - [4362] = 1313, - [4363] = 1181, - [4364] = 1198, - [4365] = 1314, - [4366] = 4314, - [4367] = 1315, - [4368] = 4287, - [4369] = 1316, - [4370] = 1317, - [4371] = 1319, - [4372] = 4333, - [4373] = 1182, - [4374] = 1320, - [4375] = 1325, - [4376] = 1326, - [4377] = 1333, - [4378] = 4378, - [4379] = 1334, - [4380] = 4287, - [4381] = 1341, - [4382] = 1368, - [4383] = 1388, - [4384] = 4295, - [4385] = 1389, - [4386] = 1394, - [4387] = 4295, - [4388] = 1395, - [4389] = 1397, - [4390] = 1399, - [4391] = 1401, - [4392] = 4295, - [4393] = 1405, - [4394] = 4394, - [4395] = 1235, - [4396] = 4295, - [4397] = 1180, - [4398] = 4398, - [4399] = 1181, - [4400] = 1415, - [4401] = 4401, - [4402] = 1416, - [4403] = 1417, - [4404] = 1418, - [4405] = 4291, - [4406] = 4406, - [4407] = 1159, - [4408] = 1184, - [4409] = 1182, - [4410] = 4337, - [4411] = 4291, - [4412] = 4412, - [4413] = 4413, - [4414] = 4287, - [4415] = 1384, - [4416] = 4295, - [4417] = 618, - [4418] = 1159, - [4419] = 4419, - [4420] = 4420, - [4421] = 4291, - [4422] = 1127, - [4423] = 4291, - [4424] = 4295, - [4425] = 1184, - [4426] = 4328, - [4427] = 4338, - [4428] = 4291, - [4429] = 4340, - [4430] = 4295, + [4359] = 517, + [4360] = 1337, + [4361] = 1338, + [4362] = 1339, + [4363] = 1341, + [4364] = 1361, + [4365] = 1374, + [4366] = 1378, + [4367] = 1384, + [4368] = 4324, + [4369] = 1386, + [4370] = 4329, + [4371] = 1387, + [4372] = 1392, + [4373] = 1395, + [4374] = 1151, + [4375] = 1396, + [4376] = 1399, + [4377] = 4334, + [4378] = 1400, + [4379] = 1405, + [4380] = 518, + [4381] = 1409, + [4382] = 4382, + [4383] = 1410, + [4384] = 1411, + [4385] = 1423, + [4386] = 1424, + [4387] = 1425, + [4388] = 1426, + [4389] = 1428, + [4390] = 1429, + [4391] = 1430, + [4392] = 1432, + [4393] = 1436, + [4394] = 1437, + [4395] = 4395, + [4396] = 4329, + [4397] = 1439, + [4398] = 1440, + [4399] = 1444, + [4400] = 1446, + [4401] = 1447, + [4402] = 1448, + [4403] = 1237, + [4404] = 1209, + [4405] = 4382, + [4406] = 532, + [4407] = 1247, + [4408] = 4408, + [4409] = 1231, + [4410] = 1328, + [4411] = 1211, + [4412] = 1204, + [4413] = 1251, + [4414] = 4329, + [4415] = 4330, + [4416] = 4416, + [4417] = 1204, + [4418] = 4418, + [4419] = 4324, + [4420] = 4329, + [4421] = 3393, + [4422] = 4324, + [4423] = 4423, + [4424] = 4424, + [4425] = 1258, + [4426] = 4324, + [4427] = 1232, + [4428] = 612, + [4429] = 1247, + [4430] = 1245, [4431] = 4431, - [4432] = 4432, - [4433] = 4433, - [4434] = 4394, - [4435] = 1205, - [4436] = 1127, - [4437] = 940, - [4438] = 1204, - [4439] = 540, - [4440] = 1215, + [4432] = 1231, + [4433] = 4324, + [4434] = 4434, + [4435] = 4325, + [4436] = 4326, + [4437] = 4327, + [4438] = 1211, + [4439] = 4439, + [4440] = 4329, [4441] = 4441, - [4442] = 1117, + [4442] = 4442, [4443] = 4443, - [4444] = 1137, - [4445] = 1201, - [4446] = 532, - [4447] = 1200, - [4448] = 4295, - [4449] = 1137, - [4450] = 4291, - [4451] = 4378, - [4452] = 1055, - [4453] = 1198, - [4454] = 4401, - [4455] = 1199, - [4456] = 4456, - [4457] = 4457, + [4444] = 4444, + [4445] = 4445, + [4446] = 4446, + [4447] = 516, + [4448] = 4448, + [4449] = 4342, + [4450] = 1204, + [4451] = 4342, + [4452] = 4452, + [4453] = 4324, + [4454] = 4454, + [4455] = 1094, + [4456] = 4416, + [4457] = 1237, [4458] = 4458, - [4459] = 1117, - [4460] = 1316, - [4461] = 4461, - [4462] = 4461, - [4463] = 4463, - [4464] = 4457, - [4465] = 1320, - [4466] = 4466, - [4467] = 4467, - [4468] = 4468, - [4469] = 1384, - [4470] = 4470, - [4471] = 4471, - [4472] = 1205, - [4473] = 1204, - [4474] = 4461, - [4475] = 1315, - [4476] = 1399, - [4477] = 4461, - [4478] = 4478, - [4479] = 4479, - [4480] = 4480, - [4481] = 4481, - [4482] = 4461, - [4483] = 1319, - [4484] = 1418, - [4485] = 1417, - [4486] = 1416, - [4487] = 1320, - [4488] = 1415, - [4489] = 4489, - [4490] = 1325, - [4491] = 1326, - [4492] = 1333, - [4493] = 1405, - [4494] = 1401, - [4495] = 4495, - [4496] = 4480, + [4459] = 1237, + [4460] = 4324, + [4461] = 4329, + [4462] = 4324, + [4463] = 1225, + [4464] = 1150, + [4465] = 1224, + [4466] = 1209, + [4467] = 1221, + [4468] = 1212, + [4469] = 4324, + [4470] = 980, + [4471] = 1283, + [4472] = 4329, + [4473] = 1234, + [4474] = 525, + [4475] = 1110, + [4476] = 1150, + [4477] = 526, + [4478] = 4324, + [4479] = 4329, + [4480] = 4324, + [4481] = 1225, + [4482] = 2371, + [4483] = 4483, + [4484] = 1224, + [4485] = 1221, + [4486] = 4329, + [4487] = 1212, + [4488] = 4488, + [4489] = 4329, + [4490] = 4329, + [4491] = 4347, + [4492] = 4324, + [4493] = 1151, + [4494] = 1209, + [4495] = 4342, + [4496] = 4329, [4497] = 4497, - [4498] = 4433, - [4499] = 4470, - [4500] = 1399, - [4501] = 1397, - [4502] = 1395, - [4503] = 1394, - [4504] = 1389, - [4505] = 4461, - [4506] = 4412, - [4507] = 1388, - [4508] = 4457, - [4509] = 4470, - [4510] = 4457, - [4511] = 1368, - [4512] = 4470, - [4513] = 1341, - [4514] = 1384, + [4498] = 1428, + [4499] = 4499, + [4500] = 4499, + [4501] = 1225, + [4502] = 1320, + [4503] = 1309, + [4504] = 4504, + [4505] = 4505, + [4506] = 4506, + [4507] = 4507, + [4508] = 1308, + [4509] = 4509, + [4510] = 4510, + [4511] = 4511, + [4512] = 4512, + [4513] = 4513, + [4514] = 4514, [4515] = 4515, - [4516] = 1055, - [4517] = 1314, - [4518] = 1334, - [4519] = 1334, + [4516] = 4516, + [4517] = 4517, + [4518] = 4518, + [4519] = 4519, [4520] = 4520, [4521] = 4521, - [4522] = 4457, + [4522] = 4522, [4523] = 4523, - [4524] = 1310, - [4525] = 1192, - [4526] = 4470, - [4527] = 1128, - [4528] = 4528, - [4529] = 1137, - [4530] = 1341, - [4531] = 4461, - [4532] = 4532, + [4524] = 4524, + [4525] = 4525, + [4526] = 4526, + [4527] = 1446, + [4528] = 1338, + [4529] = 4499, + [4530] = 1339, + [4531] = 4531, + [4532] = 4505, [4533] = 4533, - [4534] = 4534, + [4534] = 1341, [4535] = 4535, - [4536] = 4456, + [4536] = 4536, [4537] = 4537, - [4538] = 1201, - [4539] = 4457, - [4540] = 1200, - [4541] = 4541, - [4542] = 4470, - [4543] = 1313, - [4544] = 1199, - [4545] = 1198, - [4546] = 1137, - [4547] = 4547, - [4548] = 4461, - [4549] = 4461, - [4550] = 4461, - [4551] = 1368, - [4552] = 1333, + [4538] = 4538, + [4539] = 4511, + [4540] = 4540, + [4541] = 1361, + [4542] = 4542, + [4543] = 4543, + [4544] = 4544, + [4545] = 4545, + [4546] = 4546, + [4547] = 4452, + [4548] = 4548, + [4549] = 1374, + [4550] = 1378, + [4551] = 4551, + [4552] = 1221, [4553] = 4553, - [4554] = 1326, - [4555] = 4489, - [4556] = 1388, - [4557] = 1127, + [4554] = 4554, + [4555] = 4555, + [4556] = 1212, + [4557] = 4557, [4558] = 4558, - [4559] = 1325, - [4560] = 4457, - [4561] = 1218, - [4562] = 4562, + [4559] = 4559, + [4560] = 4560, + [4561] = 2421, + [4562] = 4499, [4563] = 4563, - [4564] = 4461, - [4565] = 1389, - [4566] = 1310, - [4567] = 1394, - [4568] = 1309, - [4569] = 4457, - [4570] = 4520, - [4571] = 1319, - [4572] = 4572, + [4564] = 1384, + [4565] = 4565, + [4566] = 1287, + [4567] = 1278, + [4568] = 1268, + [4569] = 4569, + [4570] = 4570, + [4571] = 1387, + [4572] = 4559, [4573] = 4573, - [4574] = 4574, - [4575] = 1308, - [4576] = 1317, - [4577] = 1307, + [4574] = 4559, + [4575] = 4559, + [4576] = 4559, + [4577] = 1392, [4578] = 4578, - [4579] = 1316, - [4580] = 1395, - [4581] = 1397, - [4582] = 1304, - [4583] = 4583, - [4584] = 4456, - [4585] = 4456, - [4586] = 1315, + [4579] = 4559, + [4580] = 4559, + [4581] = 4559, + [4582] = 4559, + [4583] = 1272, + [4584] = 1280, + [4585] = 4585, + [4586] = 4559, [4587] = 4587, [4588] = 4588, - [4589] = 4589, - [4590] = 4590, - [4591] = 4591, + [4589] = 1337, + [4590] = 1283, + [4591] = 4559, [4592] = 4592, - [4593] = 4593, - [4594] = 4456, - [4595] = 1418, - [4596] = 1127, - [4597] = 1301, - [4598] = 4598, - [4599] = 1314, - [4600] = 1313, - [4601] = 4601, - [4602] = 1283, - [4603] = 4456, - [4604] = 4604, + [4593] = 1395, + [4594] = 1396, + [4595] = 4595, + [4596] = 4499, + [4597] = 1399, + [4598] = 4499, + [4599] = 4505, + [4600] = 1400, + [4601] = 4499, + [4602] = 1405, + [4603] = 4603, + [4604] = 4505, [4605] = 4605, [4606] = 4606, - [4607] = 1309, - [4608] = 1300, - [4609] = 4609, - [4610] = 4610, - [4611] = 4489, + [4607] = 4511, + [4608] = 1409, + [4609] = 1410, + [4610] = 1411, + [4611] = 4611, [4612] = 4612, [4613] = 4613, [4614] = 4614, - [4615] = 1401, + [4615] = 4511, [4616] = 4616, [4617] = 4617, - [4618] = 1405, + [4618] = 4618, [4619] = 4619, - [4620] = 4620, - [4621] = 4489, - [4622] = 4622, + [4620] = 4511, + [4621] = 4621, + [4622] = 4573, [4623] = 4623, - [4624] = 4624, + [4624] = 1232, [4625] = 4625, - [4626] = 4626, - [4627] = 4627, - [4628] = 4628, - [4629] = 4461, - [4630] = 4630, - [4631] = 4470, + [4626] = 1423, + [4627] = 1321, + [4628] = 1325, + [4629] = 4629, + [4630] = 1326, + [4631] = 1327, [4632] = 4632, - [4633] = 4456, + [4633] = 1424, [4634] = 4634, - [4635] = 4457, - [4636] = 1308, - [4637] = 4470, - [4638] = 1297, - [4639] = 4461, - [4640] = 1295, - [4641] = 1307, + [4635] = 4635, + [4636] = 1328, + [4637] = 4637, + [4638] = 1151, + [4639] = 1237, + [4640] = 1209, + [4641] = 4641, [4642] = 4642, - [4643] = 4535, + [4643] = 4643, [4644] = 4644, - [4645] = 4645, + [4645] = 4542, [4646] = 4646, [4647] = 4647, - [4648] = 4648, - [4649] = 4649, + [4648] = 1425, + [4649] = 1426, [4650] = 4650, - [4651] = 4461, - [4652] = 4456, - [4653] = 4470, - [4654] = 1294, + [4651] = 4651, + [4652] = 1428, + [4653] = 1429, + [4654] = 4505, [4655] = 4655, - [4656] = 1304, - [4657] = 4461, - [4658] = 4461, - [4659] = 4456, - [4660] = 4285, - [4661] = 1303, - [4662] = 1303, - [4663] = 4663, - [4664] = 4458, - [4665] = 4461, - [4666] = 4612, + [4656] = 1280, + [4657] = 4595, + [4658] = 4499, + [4659] = 4659, + [4660] = 1272, + [4661] = 4661, + [4662] = 4662, + [4663] = 4646, + [4664] = 1278, + [4665] = 1287, + [4666] = 4666, [4667] = 4667, - [4668] = 4456, - [4669] = 1301, - [4670] = 4670, - [4671] = 1159, + [4668] = 1430, + [4669] = 4499, + [4670] = 1432, + [4671] = 1150, [4672] = 4672, - [4673] = 4673, - [4674] = 4457, + [4673] = 4505, + [4674] = 4559, [4675] = 4675, [4676] = 4676, - [4677] = 4677, - [4678] = 4678, - [4679] = 4470, + [4677] = 1436, + [4678] = 4499, + [4679] = 1308, [4680] = 4680, - [4681] = 4681, - [4682] = 4682, + [4681] = 1437, + [4682] = 1439, [4683] = 4683, [4684] = 4684, [4685] = 4685, - [4686] = 4686, + [4686] = 4511, [4687] = 4687, [4688] = 4688, [4689] = 4689, [4690] = 4690, - [4691] = 1300, - [4692] = 1297, - [4693] = 1295, - [4694] = 1294, - [4695] = 1293, - [4696] = 1292, - [4697] = 4697, - [4698] = 1291, - [4699] = 4456, + [4691] = 4691, + [4692] = 4692, + [4693] = 4693, + [4694] = 4694, + [4695] = 4695, + [4696] = 4696, + [4697] = 4499, + [4698] = 1309, + [4699] = 4699, [4700] = 4700, - [4701] = 1290, - [4702] = 1289, + [4701] = 4701, + [4702] = 1234, [4703] = 4703, - [4704] = 1288, - [4705] = 1286, + [4704] = 4704, + [4705] = 4705, [4706] = 4706, - [4707] = 4461, - [4708] = 1285, - [4709] = 1283, - [4710] = 1277, + [4707] = 4707, + [4708] = 4666, + [4709] = 4499, + [4710] = 4505, [4711] = 4711, [4712] = 4712, - [4713] = 522, - [4714] = 4443, - [4715] = 1276, + [4713] = 4713, + [4714] = 1320, + [4715] = 1440, [4716] = 4716, - [4717] = 4489, - [4718] = 4470, - [4719] = 4489, - [4720] = 1282, - [4721] = 4457, - [4722] = 4461, - [4723] = 4723, + [4717] = 1444, + [4718] = 4499, + [4719] = 4719, + [4720] = 4720, + [4721] = 4721, + [4722] = 4666, + [4723] = 4499, [4724] = 4724, - [4725] = 1317, - [4726] = 1276, - [4727] = 4727, - [4728] = 1277, - [4729] = 1282, + [4725] = 4725, + [4726] = 4511, + [4727] = 4505, + [4728] = 4511, + [4729] = 4729, [4730] = 4730, [4731] = 4731, - [4732] = 4732, - [4733] = 4733, + [4732] = 1321, + [4733] = 1447, [4734] = 4734, [4735] = 4735, - [4736] = 4736, - [4737] = 4737, + [4736] = 1448, + [4737] = 2371, [4738] = 4738, [4739] = 4739, - [4740] = 4740, - [4741] = 4457, + [4740] = 4454, + [4741] = 1325, [4742] = 4742, [4743] = 4743, - [4744] = 4744, - [4745] = 1285, - [4746] = 4746, - [4747] = 4747, - [4748] = 4489, - [4749] = 1127, + [4744] = 1326, + [4745] = 4614, + [4746] = 4511, + [4747] = 4573, + [4748] = 4748, + [4749] = 4749, [4750] = 4750, [4751] = 4751, [4752] = 4752, - [4753] = 4753, - [4754] = 4754, + [4753] = 1327, + [4754] = 4573, [4755] = 4755, [4756] = 4756, [4757] = 4757, [4758] = 4758, - [4759] = 4759, + [4759] = 1328, [4760] = 4760, [4761] = 4761, [4762] = 4762, @@ -9656,1380 +9694,2253 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4764] = 4764, [4765] = 4765, [4766] = 4766, - [4767] = 4572, - [4768] = 4768, + [4767] = 4573, + [4768] = 1337, [4769] = 4769, [4770] = 4770, - [4771] = 4771, + [4771] = 1338, [4772] = 4772, - [4773] = 4773, - [4774] = 4774, - [4775] = 4775, + [4773] = 1339, + [4774] = 4573, + [4775] = 1341, [4776] = 4776, - [4777] = 4777, + [4777] = 4573, [4778] = 4778, [4779] = 4779, [4780] = 4780, - [4781] = 4781, - [4782] = 4782, + [4781] = 4499, + [4782] = 1283, [4783] = 4783, - [4784] = 4784, - [4785] = 4785, - [4786] = 1415, - [4787] = 1416, - [4788] = 1417, - [4789] = 4456, + [4784] = 1374, + [4785] = 4511, + [4786] = 1378, + [4787] = 1384, + [4788] = 4788, + [4789] = 4789, [4790] = 4790, - [4791] = 4489, - [4792] = 4792, - [4793] = 4793, - [4794] = 4794, + [4791] = 4791, + [4792] = 4573, + [4793] = 1268, + [4794] = 1251, [4795] = 4795, - [4796] = 1286, - [4797] = 4489, - [4798] = 4441, + [4796] = 4573, + [4797] = 1386, + [4798] = 1361, [4799] = 4799, [4800] = 4800, - [4801] = 4461, - [4802] = 4802, - [4803] = 4420, - [4804] = 4804, - [4805] = 4805, - [4806] = 4806, - [4807] = 4807, - [4808] = 4470, - [4809] = 1288, - [4810] = 4810, + [4801] = 4801, + [4802] = 1448, + [4803] = 4499, + [4804] = 1447, + [4805] = 4573, + [4806] = 1386, + [4807] = 1446, + [4808] = 4499, + [4809] = 4809, + [4810] = 4505, [4811] = 4811, - [4812] = 4812, - [4813] = 4813, - [4814] = 4814, - [4815] = 4456, + [4812] = 4573, + [4813] = 4434, + [4814] = 537, + [4815] = 4815, [4816] = 4816, - [4817] = 4817, - [4818] = 4457, - [4819] = 1289, + [4817] = 4505, + [4818] = 4818, + [4819] = 1444, [4820] = 4820, - [4821] = 4461, - [4822] = 4489, - [4823] = 4823, + [4821] = 4821, + [4822] = 4822, + [4823] = 4499, [4824] = 4824, [4825] = 4825, - [4826] = 1290, - [4827] = 4461, - [4828] = 4828, - [4829] = 1137, - [4830] = 4489, - [4831] = 4831, - [4832] = 4832, - [4833] = 4833, - [4834] = 4834, - [4835] = 4835, - [4836] = 4836, + [4826] = 4499, + [4827] = 4499, + [4828] = 1387, + [4829] = 4829, + [4830] = 4573, + [4831] = 4511, + [4832] = 1440, + [4833] = 4666, + [4834] = 1439, + [4835] = 4499, + [4836] = 1437, [4837] = 4837, - [4838] = 4461, + [4838] = 4505, [4839] = 4839, [4840] = 4840, - [4841] = 4456, - [4842] = 1215, + [4841] = 4841, + [4842] = 4431, [4843] = 4843, [4844] = 4844, [4845] = 4845, [4846] = 4846, - [4847] = 4847, + [4847] = 4511, [4848] = 4848, [4849] = 4849, [4850] = 4850, - [4851] = 1291, - [4852] = 4470, - [4853] = 1292, - [4854] = 4431, - [4855] = 4461, - [4856] = 4489, - [4857] = 1293, - [4858] = 4406, + [4851] = 4499, + [4852] = 4852, + [4853] = 4853, + [4854] = 4854, + [4855] = 4855, + [4856] = 1150, + [4857] = 4857, + [4858] = 4858, [4859] = 4859, - [4860] = 4860, - [4861] = 4861, + [4860] = 1195, + [4861] = 1151, [4862] = 4862, - [4863] = 4863, + [4863] = 4458, [4864] = 4864, - [4865] = 4865, + [4865] = 1436, [4866] = 4866, [4867] = 4867, [4868] = 4868, - [4869] = 4869, + [4869] = 4629, [4870] = 4870, - [4871] = 4871, + [4871] = 1432, [4872] = 4872, [4873] = 4873, - [4874] = 4874, - [4875] = 4844, - [4876] = 4843, - [4877] = 4794, + [4874] = 4499, + [4875] = 4439, + [4876] = 4876, + [4877] = 4573, [4878] = 4878, - [4879] = 4839, + [4879] = 4879, [4880] = 4880, - [4881] = 4837, - [4882] = 4874, - [4883] = 4883, + [4881] = 1430, + [4882] = 1392, + [4883] = 1429, [4884] = 4884, [4885] = 4885, - [4886] = 4871, - [4887] = 4836, - [4888] = 4846, + [4886] = 1395, + [4887] = 4505, + [4888] = 4573, [4889] = 4889, - [4890] = 4835, - [4891] = 4891, - [4892] = 4889, - [4893] = 4889, - [4894] = 4878, - [4895] = 4874, - [4896] = 4880, + [4890] = 4890, + [4891] = 4446, + [4892] = 1396, + [4893] = 4499, + [4894] = 1399, + [4895] = 4895, + [4896] = 1400, [4897] = 4897, - [4898] = 4834, - [4899] = 4833, - [4900] = 1267, - [4901] = 4832, - [4902] = 4831, - [4903] = 4828, - [4904] = 4871, - [4905] = 4825, - [4906] = 4824, - [4907] = 1260, - [4908] = 4823, - [4909] = 4820, - [4910] = 4817, - [4911] = 4878, - [4912] = 4912, - [4913] = 4479, - [4914] = 4816, - [4915] = 4915, - [4916] = 4814, - [4917] = 4813, - [4918] = 4812, - [4919] = 4478, - [4920] = 4920, - [4921] = 4921, - [4922] = 4811, - [4923] = 4553, - [4924] = 4880, - [4925] = 4873, + [4898] = 4511, + [4899] = 4899, + [4900] = 1405, + [4901] = 4448, + [4902] = 1224, + [4903] = 1409, + [4904] = 4904, + [4905] = 1410, + [4906] = 4906, + [4907] = 4505, + [4908] = 1204, + [4909] = 1411, + [4910] = 4499, + [4911] = 1423, + [4912] = 1424, + [4913] = 4666, + [4914] = 4914, + [4915] = 1425, + [4916] = 1426, + [4917] = 4735, + [4918] = 4918, + [4919] = 4809, + [4920] = 4801, + [4921] = 4764, + [4922] = 4922, + [4923] = 4923, + [4924] = 4924, + [4925] = 4925, [4926] = 4926, - [4927] = 4874, - [4928] = 4810, - [4929] = 4807, - [4930] = 4806, - [4931] = 3487, - [4932] = 4880, - [4933] = 4874, - [4934] = 4871, - [4935] = 4805, - [4936] = 4889, - [4937] = 4871, - [4938] = 4889, - [4939] = 4804, - [4940] = 4802, - [4941] = 3486, - [4942] = 4800, - [4943] = 4799, - [4944] = 4795, - [4945] = 4889, - [4946] = 4946, - [4947] = 4874, - [4948] = 4880, - [4949] = 4889, - [4950] = 4793, - [4951] = 4847, - [4952] = 4871, - [4953] = 1204, - [4954] = 4848, - [4955] = 4955, - [4956] = 4956, + [4927] = 4927, + [4928] = 4928, + [4929] = 4761, + [4930] = 4756, + [4931] = 4815, + [4932] = 4932, + [4933] = 4933, + [4934] = 4933, + [4935] = 4770, + [4936] = 4928, + [4937] = 4751, + [4938] = 4795, + [4939] = 4928, + [4940] = 4933, + [4941] = 4632, + [4942] = 4731, + [4943] = 4943, + [4944] = 4944, + [4945] = 4862, + [4946] = 4926, + [4947] = 4889, + [4948] = 4816, + [4949] = 4725, + [4950] = 1297, + [4951] = 4824, + [4952] = 4825, + [4953] = 4928, + [4954] = 4932, + [4955] = 4890, + [4956] = 4895, [4957] = 4957, - [4958] = 1205, - [4959] = 4959, - [4960] = 4873, - [4961] = 4466, - [4962] = 4849, - [4963] = 4880, - [4964] = 4912, - [4965] = 4878, - [4966] = 4891, - [4967] = 4967, - [4968] = 4897, - [4969] = 4874, - [4970] = 4878, - [4971] = 4889, - [4972] = 4878, - [4973] = 4871, - [4974] = 4850, - [4975] = 4859, - [4976] = 4873, - [4977] = 4884, - [4978] = 4880, - [4979] = 4874, - [4980] = 4885, - [4981] = 4860, + [4958] = 4958, + [4959] = 4897, + [4960] = 4960, + [4961] = 4961, + [4962] = 4928, + [4963] = 1296, + [4964] = 4904, + [4965] = 4906, + [4966] = 4933, + [4967] = 4879, + [4968] = 4878, + [4969] = 4870, + [4970] = 4970, + [4971] = 4971, + [4972] = 4867, + [4973] = 4973, + [4974] = 4974, + [4975] = 2371, + [4976] = 1232, + [4977] = 4707, + [4978] = 4850, + [4979] = 4926, + [4980] = 4980, + [4981] = 4981, [4982] = 4982, - [4983] = 4861, - [4984] = 4863, - [4985] = 4871, - [4986] = 4873, - [4987] = 4987, - [4988] = 4988, - [4989] = 4989, - [4990] = 4889, - [4991] = 4991, - [4992] = 4871, - [4993] = 4864, - [4994] = 4871, - [4995] = 4865, - [4996] = 4946, - [4997] = 1137, - [4998] = 4998, - [4999] = 4889, - [5000] = 4874, - [5001] = 4880, - [5002] = 4495, - [5003] = 1204, - [5004] = 5004, - [5005] = 4967, - [5006] = 4959, - [5007] = 5007, - [5008] = 5008, - [5009] = 5009, - [5010] = 4889, - [5011] = 5011, - [5012] = 4989, - [5013] = 4880, - [5014] = 4880, - [5015] = 4874, - [5016] = 4874, - [5017] = 4889, - [5018] = 4871, - [5019] = 4845, - [5020] = 4889, - [5021] = 5021, - [5022] = 4878, - [5023] = 4880, - [5024] = 1127, - [5025] = 2, - [5026] = 4874, - [5027] = 4867, - [5028] = 1218, - [5029] = 4889, - [5030] = 3, - [5031] = 4871, - [5032] = 4871, - [5033] = 4874, - [5034] = 4880, - [5035] = 4873, - [5036] = 4467, - [5037] = 1205, - [5038] = 4868, - [5039] = 4873, - [5040] = 4663, - [5041] = 4874, - [5042] = 4463, - [5043] = 4562, - [5044] = 4468, - [5045] = 4880, - [5046] = 4869, - [5047] = 4870, - [5048] = 5048, - [5049] = 4878, - [5050] = 5050, - [5051] = 4871, - [5052] = 4681, - [5053] = 1215, + [4983] = 4932, + [4984] = 4691, + [4985] = 4683, + [4986] = 4526, + [4987] = 4821, + [4988] = 4811, + [4989] = 4749, + [4990] = 4958, + [4991] = 4734, + [4992] = 4992, + [4993] = 4721, + [4994] = 4720, + [4995] = 4995, + [4996] = 4996, + [4997] = 4706, + [4998] = 4690, + [4999] = 4680, + [5000] = 4659, + [5001] = 4762, + [5002] = 4655, + [5003] = 4637, + [5004] = 4618, + [5005] = 4578, + [5006] = 4928, + [5007] = 4933, + [5008] = 4551, + [5009] = 568, + [5010] = 4928, + [5011] = 4504, + [5012] = 4926, + [5013] = 4506, + [5014] = 4507, + [5015] = 4509, + [5016] = 4510, + [5017] = 4512, + [5018] = 5018, + [5019] = 4514, + [5020] = 4933, + [5021] = 4515, + [5022] = 4944, + [5023] = 4516, + [5024] = 4517, + [5025] = 4926, + [5026] = 4932, + [5027] = 4520, + [5028] = 4521, + [5029] = 4522, + [5030] = 4523, + [5031] = 4926, + [5032] = 5032, + [5033] = 4958, + [5034] = 4524, + [5035] = 4944, + [5036] = 4932, + [5037] = 4872, + [5038] = 5038, + [5039] = 4525, + [5040] = 4548, + [5041] = 4531, + [5042] = 4932, + [5043] = 4873, + [5044] = 4932, + [5045] = 4926, + [5046] = 4932, + [5047] = 4958, + [5048] = 4933, + [5049] = 4928, + [5050] = 4944, + [5051] = 4932, + [5052] = 5052, + [5053] = 4933, [5054] = 5054, - [5055] = 4785, - [5056] = 4874, - [5057] = 5057, + [5055] = 5055, + [5056] = 1204, + [5057] = 4926, [5058] = 5058, - [5059] = 4889, - [5060] = 4744, - [5061] = 4889, - [5062] = 4563, - [5063] = 4573, - [5064] = 5064, - [5065] = 4871, - [5066] = 4874, - [5067] = 4574, - [5068] = 4578, - [5069] = 4583, - [5070] = 4587, - [5071] = 4880, - [5072] = 4982, - [5073] = 4588, - [5074] = 4589, - [5075] = 4497, - [5076] = 5076, - [5077] = 4590, - [5078] = 5078, - [5079] = 4880, - [5080] = 4874, - [5081] = 5081, - [5082] = 4862, - [5083] = 4871, - [5084] = 5084, - [5085] = 4889, - [5086] = 4591, - [5087] = 5087, - [5088] = 4592, - [5089] = 5089, - [5090] = 4593, - [5091] = 5091, - [5092] = 5092, - [5093] = 4792, - [5094] = 4598, - [5095] = 4601, - [5096] = 4866, - [5097] = 4871, - [5098] = 4604, - [5099] = 4605, - [5100] = 4610, - [5101] = 4613, - [5102] = 4616, - [5103] = 4617, - [5104] = 4873, - [5105] = 4619, - [5106] = 4620, - [5107] = 4622, - [5108] = 1159, - [5109] = 4623, - [5110] = 4625, - [5111] = 4784, - [5112] = 4880, - [5113] = 1198, - [5114] = 4878, - [5115] = 1199, - [5116] = 1200, - [5117] = 1201, - [5118] = 4874, - [5119] = 4889, - [5120] = 4626, - [5121] = 4783, - [5122] = 4871, - [5123] = 4632, - [5124] = 4634, - [5125] = 4642, - [5126] = 4644, - [5127] = 4645, - [5128] = 4782, - [5129] = 4878, - [5130] = 4874, - [5131] = 4781, - [5132] = 4889, - [5133] = 4648, - [5134] = 4649, - [5135] = 4655, - [5136] = 4541, - [5137] = 4670, - [5138] = 4521, - [5139] = 4672, - [5140] = 1198, - [5141] = 1199, - [5142] = 1200, - [5143] = 4700, - [5144] = 4880, - [5145] = 4874, - [5146] = 4673, - [5147] = 4871, - [5148] = 4780, - [5149] = 4675, - [5150] = 4889, - [5151] = 4676, - [5152] = 4677, - [5153] = 4678, - [5154] = 4683, - [5155] = 1201, - [5156] = 4873, - [5157] = 4874, - [5158] = 4684, - [5159] = 4685, - [5160] = 4686, - [5161] = 4779, - [5162] = 4871, - [5163] = 4687, - [5164] = 4688, - [5165] = 4689, - [5166] = 4690, - [5167] = 4647, - [5168] = 4778, - [5169] = 4873, - [5170] = 4777, - [5171] = 4871, - [5172] = 4880, - [5173] = 4776, - [5174] = 4889, - [5175] = 4871, - [5176] = 4775, - [5177] = 4774, - [5178] = 4840, - [5179] = 4878, - [5180] = 4773, - [5181] = 4730, - [5182] = 4957, - [5183] = 4956, - [5184] = 4528, - [5185] = 4889, - [5186] = 4883, - [5187] = 4772, - [5188] = 4874, - [5189] = 4874, - [5190] = 4880, - [5191] = 4771, - [5192] = 4770, - [5193] = 4769, - [5194] = 1127, - [5195] = 5195, - [5196] = 4533, - [5197] = 5197, - [5198] = 5198, - [5199] = 4889, - [5200] = 4768, - [5201] = 4766, - [5202] = 4871, - [5203] = 1137, - [5204] = 4758, - [5205] = 4532, - [5206] = 5197, - [5207] = 4765, - [5208] = 4991, - [5209] = 4880, - [5210] = 4874, - [5211] = 4764, - [5212] = 4763, - [5213] = 4762, - [5214] = 5214, - [5215] = 4889, - [5216] = 4880, - [5217] = 5217, - [5218] = 4761, - [5219] = 4760, - [5220] = 1055, - [5221] = 4889, - [5222] = 4871, - [5223] = 4955, - [5224] = 1117, - [5225] = 4711, - [5226] = 4889, - [5227] = 4871, - [5228] = 4712, - [5229] = 4759, - [5230] = 4703, - [5231] = 4716, - [5232] = 4790, - [5233] = 4547, - [5234] = 4873, - [5235] = 4871, - [5236] = 4878, - [5237] = 4889, - [5238] = 4558, - [5239] = 4724, - [5240] = 4757, - [5241] = 4871, - [5242] = 4889, - [5243] = 4871, - [5244] = 4878, - [5245] = 4727, - [5246] = 4523, - [5247] = 4731, - [5248] = 4732, - [5249] = 4733, - [5250] = 4871, - [5251] = 4889, - [5252] = 4871, - [5253] = 4889, - [5254] = 4871, - [5255] = 4734, - [5256] = 4873, - [5257] = 4889, - [5258] = 4756, - [5259] = 4735, - [5260] = 4871, - [5261] = 4736, - [5262] = 4873, - [5263] = 4737, - [5264] = 4889, - [5265] = 4738, - [5266] = 4739, - [5267] = 4740, - [5268] = 4667, - [5269] = 4742, - [5270] = 4755, - [5271] = 4743, - [5272] = 5195, - [5273] = 4987, - [5274] = 4880, - [5275] = 4874, - [5276] = 4988, - [5277] = 4754, - [5278] = 4871, - [5279] = 1159, - [5280] = 4889, - [5281] = 4746, - [5282] = 4750, - [5283] = 4751, - [5284] = 4753, - [5285] = 4871, - [5286] = 4889, - [5287] = 4752, - [5288] = 1192, - [5289] = 1200, - [5290] = 5290, - [5291] = 5291, - [5292] = 5292, - [5293] = 3846, - [5294] = 5290, - [5295] = 1205, - [5296] = 3506, - [5297] = 3510, - [5298] = 5290, - [5299] = 1204, - [5300] = 5292, - [5301] = 5301, - [5302] = 5290, - [5303] = 12, - [5304] = 5290, - [5305] = 4998, - [5306] = 5290, - [5307] = 5301, - [5308] = 5308, - [5309] = 5008, - [5310] = 5292, - [5311] = 5290, - [5312] = 5312, - [5313] = 5313, - [5314] = 3498, - [5315] = 5291, - [5316] = 5292, - [5317] = 5290, - [5318] = 5291, - [5319] = 5292, - [5320] = 5290, - [5321] = 5321, - [5322] = 5292, - [5323] = 5301, - [5324] = 5324, - [5325] = 5292, - [5326] = 5290, - [5327] = 5327, - [5328] = 5328, - [5329] = 5329, - [5330] = 5021, - [5331] = 5331, - [5332] = 5292, - [5333] = 5333, - [5334] = 5334, - [5335] = 5335, - [5336] = 5058, - [5337] = 1127, - [5338] = 5292, + [5059] = 4958, + [5060] = 5060, + [5061] = 4661, + [5062] = 4933, + [5063] = 4928, + [5064] = 4932, + [5065] = 4926, + [5066] = 4687, + [5067] = 4926, + [5068] = 4933, + [5069] = 4859, + [5070] = 4533, + [5071] = 4537, + [5072] = 4538, + [5073] = 4932, + [5074] = 4540, + [5075] = 4545, + [5076] = 4864, + [5077] = 4928, + [5078] = 4933, + [5079] = 5079, + [5080] = 4926, + [5081] = 5018, + [5082] = 4546, + [5083] = 4926, + [5084] = 4662, + [5085] = 4553, + [5086] = 4866, + [5087] = 4554, + [5088] = 4555, + [5089] = 4557, + [5090] = 4558, + [5091] = 4928, + [5092] = 4933, + [5093] = 4926, + [5094] = 4560, + [5095] = 4932, + [5096] = 5096, + [5097] = 5097, + [5098] = 4926, + [5099] = 4563, + [5100] = 5100, + [5101] = 5101, + [5102] = 4944, + [5103] = 4569, + [5104] = 4570, + [5105] = 4588, + [5106] = 4592, + [5107] = 4603, + [5108] = 4932, + [5109] = 4933, + [5110] = 4928, + [5111] = 5111, + [5112] = 4958, + [5113] = 4605, + [5114] = 4926, + [5115] = 4932, + [5116] = 3574, + [5117] = 4932, + [5118] = 3586, + [5119] = 5055, + [5120] = 4606, + [5121] = 5121, + [5122] = 4611, + [5123] = 4958, + [5124] = 4612, + [5125] = 4923, + [5126] = 5126, + [5127] = 4925, + [5128] = 4926, + [5129] = 5129, + [5130] = 4933, + [5131] = 4613, + [5132] = 4617, + [5133] = 4619, + [5134] = 4981, + [5135] = 4982, + [5136] = 4876, + [5137] = 4928, + [5138] = 5138, + [5139] = 4621, + [5140] = 5140, + [5141] = 5141, + [5142] = 4928, + [5143] = 4933, + [5144] = 4944, + [5145] = 5145, + [5146] = 5146, + [5147] = 4858, + [5148] = 4926, + [5149] = 4623, + [5150] = 4880, + [5151] = 4625, + [5152] = 4933, + [5153] = 4928, + [5154] = 4641, + [5155] = 4497, + [5156] = 4634, + [5157] = 4932, + [5158] = 4926, + [5159] = 4635, + [5160] = 4932, + [5161] = 4642, + [5162] = 4944, + [5163] = 4643, + [5164] = 5145, + [5165] = 5140, + [5166] = 1212, + [5167] = 4944, + [5168] = 1221, + [5169] = 1224, + [5170] = 1225, + [5171] = 4644, + [5172] = 4647, + [5173] = 4544, + [5174] = 5111, + [5175] = 4958, + [5176] = 4651, + [5177] = 4958, + [5178] = 4800, + [5179] = 4667, + [5180] = 4932, + [5181] = 4933, + [5182] = 4672, + [5183] = 4675, + [5184] = 4676, + [5185] = 1212, + [5186] = 1221, + [5187] = 1224, + [5188] = 4684, + [5189] = 4685, + [5190] = 5190, + [5191] = 4928, + [5192] = 4688, + [5193] = 5141, + [5194] = 2452, + [5195] = 1204, + [5196] = 3, + [5197] = 4689, + [5198] = 4692, + [5199] = 1225, + [5200] = 5032, + [5201] = 4694, + [5202] = 4695, + [5203] = 1094, + [5204] = 1110, + [5205] = 1251, + [5206] = 1237, + [5207] = 4928, + [5208] = 4933, + [5209] = 4932, + [5210] = 4926, + [5211] = 4933, + [5212] = 1209, + [5213] = 4926, + [5214] = 5190, + [5215] = 5079, + [5216] = 4703, + [5217] = 4696, + [5218] = 1151, + [5219] = 4928, + [5220] = 4926, + [5221] = 4933, + [5222] = 4926, + [5223] = 2, + [5224] = 4932, + [5225] = 4932, + [5226] = 4933, + [5227] = 4928, + [5228] = 1150, + [5229] = 4932, + [5230] = 4699, + [5231] = 4700, + [5232] = 4944, + [5233] = 4944, + [5234] = 4958, + [5235] = 4650, + [5236] = 5236, + [5237] = 4980, + [5238] = 5238, + [5239] = 5239, + [5240] = 4926, + [5241] = 4928, + [5242] = 4958, + [5243] = 4958, + [5244] = 4933, + [5245] = 5146, + [5246] = 4914, + [5247] = 4926, + [5248] = 5248, + [5249] = 5096, + [5250] = 4932, + [5251] = 5097, + [5252] = 4932, + [5253] = 4854, + [5254] = 4853, + [5255] = 4852, + [5256] = 4849, + [5257] = 4848, + [5258] = 4846, + [5259] = 4845, + [5260] = 4844, + [5261] = 4971, + [5262] = 4843, + [5263] = 4841, + [5264] = 4701, + [5265] = 4840, + [5266] = 4839, + [5267] = 4837, + [5268] = 4820, + [5269] = 4818, + [5270] = 4855, + [5271] = 4799, + [5272] = 4928, + [5273] = 4933, + [5274] = 4791, + [5275] = 4926, + [5276] = 5276, + [5277] = 4790, + [5278] = 4789, + [5279] = 4788, + [5280] = 4783, + [5281] = 4780, + [5282] = 4779, + [5283] = 4932, + [5284] = 4778, + [5285] = 4776, + [5286] = 4772, + [5287] = 4769, + [5288] = 4766, + [5289] = 4765, + [5290] = 4944, + [5291] = 4932, + [5292] = 4926, + [5293] = 4932, + [5294] = 4763, + [5295] = 4926, + [5296] = 4932, + [5297] = 4958, + [5298] = 4926, + [5299] = 4932, + [5300] = 4926, + [5301] = 4760, + [5302] = 4758, + [5303] = 4932, + [5304] = 4926, + [5305] = 4932, + [5306] = 4926, + [5307] = 4757, + [5308] = 4755, + [5309] = 4752, + [5310] = 4750, + [5311] = 5248, + [5312] = 4748, + [5313] = 4742, + [5314] = 4739, + [5315] = 4738, + [5316] = 4730, + [5317] = 4729, + [5318] = 4944, + [5319] = 4928, + [5320] = 4933, + [5321] = 4724, + [5322] = 4719, + [5323] = 4926, + [5324] = 4716, + [5325] = 4712, + [5326] = 4705, + [5327] = 4932, + [5328] = 4926, + [5329] = 4932, + [5330] = 4704, + [5331] = 4711, + [5332] = 4932, + [5333] = 4928, + [5334] = 4933, + [5335] = 4926, + [5336] = 4926, + [5337] = 4944, + [5338] = 4932, [5339] = 5339, - [5340] = 5290, - [5341] = 5290, - [5342] = 5292, - [5343] = 1137, - [5344] = 4920, - [5345] = 5057, - [5346] = 5346, + [5340] = 3606, + [5341] = 5341, + [5342] = 3, + [5343] = 5343, + [5344] = 5339, + [5345] = 1110, + [5346] = 5126, [5347] = 5347, - [5348] = 5301, - [5349] = 5290, - [5350] = 5290, - [5351] = 5054, + [5348] = 5348, + [5349] = 5341, + [5350] = 2, + [5351] = 5351, [5352] = 5352, - [5353] = 5353, + [5353] = 5341, [5354] = 5354, - [5355] = 5291, - [5356] = 4926, + [5355] = 5341, + [5356] = 5341, [5357] = 5357, - [5358] = 5358, - [5359] = 5292, - [5360] = 5291, - [5361] = 1055, - [5362] = 5290, - [5363] = 5301, - [5364] = 5292, - [5365] = 5290, - [5366] = 1198, - [5367] = 1130, - [5368] = 5292, - [5369] = 1199, - [5370] = 5290, - [5371] = 5301, - [5372] = 1200, - [5373] = 1201, - [5374] = 5290, - [5375] = 5375, - [5376] = 5, - [5377] = 5290, - [5378] = 1117, - [5379] = 1204, - [5380] = 5292, - [5381] = 1205, - [5382] = 5301, - [5383] = 5290, - [5384] = 5290, - [5385] = 5385, - [5386] = 5291, - [5387] = 5387, - [5388] = 1123, - [5389] = 3527, - [5390] = 3487, - [5391] = 5391, - [5392] = 3486, - [5393] = 5393, - [5394] = 3524, - [5395] = 5395, - [5396] = 5292, + [5358] = 5354, + [5359] = 5359, + [5360] = 5339, + [5361] = 5341, + [5362] = 5339, + [5363] = 5363, + [5364] = 5364, + [5365] = 5339, + [5366] = 1212, + [5367] = 5341, + [5368] = 1150, + [5369] = 5341, + [5370] = 5357, + [5371] = 5357, + [5372] = 1221, + [5373] = 5341, + [5374] = 5339, + [5375] = 5341, + [5376] = 5357, + [5377] = 1094, + [5378] = 5341, + [5379] = 5379, + [5380] = 5354, + [5381] = 5339, + [5382] = 1224, + [5383] = 5339, + [5384] = 1225, + [5385] = 5341, + [5386] = 5341, + [5387] = 4918, + [5388] = 5388, + [5389] = 5357, + [5390] = 5341, + [5391] = 5341, + [5392] = 5354, + [5393] = 5129, + [5394] = 5339, + [5395] = 5339, + [5396] = 5396, [5397] = 5397, - [5398] = 5291, - [5399] = 3522, - [5400] = 5292, + [5398] = 5398, + [5399] = 5399, + [5400] = 5400, [5401] = 5401, - [5402] = 5290, - [5403] = 5076, - [5404] = 5404, - [5405] = 5301, - [5406] = 5292, - [5407] = 11, - [5408] = 5084, - [5409] = 5291, - [5410] = 5292, - [5411] = 5292, - [5412] = 5412, - [5413] = 5292, - [5414] = 5290, - [5415] = 5415, - [5416] = 4921, - [5417] = 5291, - [5418] = 5291, - [5419] = 5301, - [5420] = 5290, - [5421] = 1137, - [5422] = 1400, - [5423] = 5290, - [5424] = 5290, - [5425] = 3534, - [5426] = 5291, - [5427] = 8, - [5428] = 5292, - [5429] = 5087, - [5430] = 3533, - [5431] = 6, - [5432] = 5290, - [5433] = 5301, - [5434] = 12, - [5435] = 5290, - [5436] = 5292, + [5402] = 1234, + [5403] = 5357, + [5404] = 5341, + [5405] = 5405, + [5406] = 5339, + [5407] = 5407, + [5408] = 5357, + [5409] = 5, + [5410] = 5354, + [5411] = 5341, + [5412] = 5339, + [5413] = 5339, + [5414] = 3591, + [5415] = 5354, + [5416] = 5341, + [5417] = 4992, + [5418] = 6, + [5419] = 5354, + [5420] = 9, + [5421] = 5357, + [5422] = 5341, + [5423] = 1225, + [5424] = 1224, + [5425] = 1221, + [5426] = 1212, + [5427] = 5354, + [5428] = 5339, + [5429] = 1209, + [5430] = 1237, + [5431] = 5339, + [5432] = 5341, + [5433] = 5339, + [5434] = 5341, + [5435] = 5357, + [5436] = 5436, [5437] = 5437, - [5438] = 5438, - [5439] = 5292, - [5440] = 5, - [5441] = 5290, - [5442] = 5292, - [5443] = 5339, - [5444] = 1117, - [5445] = 1127, - [5446] = 5292, - [5447] = 5291, - [5448] = 1055, - [5449] = 3517, - [5450] = 5450, - [5451] = 5291, - [5452] = 5292, - [5453] = 5290, - [5454] = 5292, - [5455] = 5301, - [5456] = 1201, - [5457] = 1119, - [5458] = 5290, - [5459] = 1199, - [5460] = 1198, - [5461] = 5290, - [5462] = 5301, - [5463] = 5301, - [5464] = 5292, - [5465] = 5465, - [5466] = 5466, - [5467] = 5467, - [5468] = 5468, - [5469] = 5469, - [5470] = 5468, - [5471] = 5471, - [5472] = 5472, + [5438] = 1279, + [5439] = 5439, + [5440] = 5339, + [5441] = 4995, + [5442] = 4996, + [5443] = 4974, + [5444] = 4973, + [5445] = 5341, + [5446] = 5446, + [5447] = 4970, + [5448] = 1151, + [5449] = 5357, + [5450] = 5341, + [5451] = 5354, + [5452] = 3819, + [5453] = 5453, + [5454] = 5339, + [5455] = 5339, + [5456] = 5339, + [5457] = 12, + [5458] = 5446, + [5459] = 3586, + [5460] = 3574, + [5461] = 5354, + [5462] = 5341, + [5463] = 5339, + [5464] = 3602, + [5465] = 3601, + [5466] = 3592, + [5467] = 568, + [5468] = 5357, + [5469] = 5341, + [5470] = 5339, + [5471] = 3603, + [5472] = 5, [5473] = 5473, [5474] = 5474, [5475] = 5475, - [5476] = 5467, + [5476] = 5476, [5477] = 5477, - [5478] = 1130, - [5479] = 5479, - [5480] = 1130, - [5481] = 5481, - [5482] = 5468, - [5483] = 5479, - [5484] = 5484, - [5485] = 5485, - [5486] = 5486, - [5487] = 23, - [5488] = 5484, - [5489] = 5489, - [5490] = 5490, - [5491] = 5491, - [5492] = 5492, - [5493] = 20, - [5494] = 5494, - [5495] = 1119, - [5496] = 5484, - [5497] = 5497, - [5498] = 5468, - [5499] = 5499, - [5500] = 5500, - [5501] = 5484, - [5502] = 5468, - [5503] = 5468, - [5504] = 5469, - [5505] = 5474, - [5506] = 5475, - [5507] = 5507, - [5508] = 5508, - [5509] = 5509, - [5510] = 18, - [5511] = 5468, - [5512] = 5500, + [5478] = 5478, + [5479] = 10, + [5480] = 5341, + [5481] = 5354, + [5482] = 5357, + [5483] = 2421, + [5484] = 3608, + [5485] = 5339, + [5486] = 3596, + [5487] = 5341, + [5488] = 5488, + [5489] = 3594, + [5490] = 5341, + [5491] = 5354, + [5492] = 4961, + [5493] = 4960, + [5494] = 4957, + [5495] = 5339, + [5496] = 5341, + [5497] = 5357, + [5498] = 5339, + [5499] = 5339, + [5500] = 3595, + [5501] = 5501, + [5502] = 5341, + [5503] = 1151, + [5504] = 5504, + [5505] = 1196, + [5506] = 6, + [5507] = 3597, + [5508] = 5339, + [5509] = 5339, + [5510] = 1165, + [5511] = 1168, + [5512] = 3590, [5513] = 5513, - [5514] = 5499, - [5515] = 5468, - [5516] = 1221, - [5517] = 16, - [5518] = 5468, - [5519] = 5508, - [5520] = 1305, - [5521] = 5521, - [5522] = 5484, - [5523] = 5509, - [5524] = 5471, - [5525] = 5525, - [5526] = 5468, - [5527] = 5472, - [5528] = 5484, + [5514] = 5514, + [5515] = 5515, + [5516] = 5516, + [5517] = 5354, + [5518] = 1110, + [5519] = 1094, + [5520] = 1150, + [5521] = 5341, + [5522] = 5522, + [5523] = 1204, + [5524] = 5524, + [5525] = 1168, + [5526] = 5526, + [5527] = 5527, + [5528] = 5528, [5529] = 5529, - [5530] = 1123, - [5531] = 5484, - [5532] = 5521, - [5533] = 5489, - [5534] = 1362, + [5530] = 5530, + [5531] = 5531, + [5532] = 5532, + [5533] = 5533, + [5534] = 5534, [5535] = 5535, - [5536] = 5477, - [5537] = 1381, - [5538] = 5481, - [5539] = 5465, - [5540] = 5473, - [5541] = 1159, - [5542] = 5542, - [5543] = 5490, - [5544] = 5491, - [5545] = 5466, + [5536] = 5536, + [5537] = 5524, + [5538] = 5538, + [5539] = 5539, + [5540] = 5540, + [5541] = 5541, + [5542] = 5526, + [5543] = 5527, + [5544] = 5544, + [5545] = 5528, [5546] = 5546, - [5547] = 1123, + [5547] = 5547, [5548] = 5548, - [5549] = 5468, - [5550] = 5497, - [5551] = 5485, - [5552] = 5484, - [5553] = 5507, - [5554] = 5468, - [5555] = 5513, - [5556] = 5468, - [5557] = 5484, - [5558] = 1302, - [5559] = 5468, - [5560] = 1119, - [5561] = 5484, + [5549] = 5522, + [5550] = 5540, + [5551] = 5551, + [5552] = 1165, + [5553] = 5553, + [5554] = 5554, + [5555] = 5555, + [5556] = 5534, + [5557] = 5536, + [5558] = 5546, + [5559] = 5559, + [5560] = 1196, + [5561] = 5547, [5562] = 5562, - [5563] = 5563, + [5563] = 1165, [5564] = 5564, [5565] = 5565, - [5566] = 5566, - [5567] = 5567, + [5566] = 1316, + [5567] = 5539, [5568] = 5568, - [5569] = 5569, - [5570] = 5570, - [5571] = 5571, - [5572] = 5565, - [5573] = 5573, - [5574] = 5574, - [5575] = 5575, - [5576] = 5576, - [5577] = 5577, - [5578] = 5563, - [5579] = 5579, - [5580] = 5579, - [5581] = 5563, - [5582] = 5570, - [5583] = 5569, - [5584] = 5577, - [5585] = 5568, - [5586] = 5575, - [5587] = 5574, - [5588] = 5573, - [5589] = 5567, - [5590] = 5571, - [5591] = 5591, - [5592] = 5566, - [5593] = 5591, - [5594] = 5566, - [5595] = 5567, - [5596] = 5568, - [5597] = 5569, - [5598] = 5564, - [5599] = 5571, - [5600] = 5565, - [5601] = 5573, - [5602] = 5574, - [5603] = 5575, - [5604] = 5576, - [5605] = 5577, - [5606] = 5579, - [5607] = 5563, - [5608] = 5608, - [5609] = 5563, - [5610] = 5575, - [5611] = 5573, - [5612] = 5579, - [5613] = 5571, - [5614] = 5591, - [5615] = 5615, - [5616] = 5608, - [5617] = 5570, - [5618] = 5569, - [5619] = 5568, - [5620] = 5567, - [5621] = 5566, - [5622] = 5591, - [5623] = 5564, - [5624] = 5571, - [5625] = 5579, - [5626] = 5563, - [5627] = 5565, - [5628] = 5573, - [5629] = 5575, - [5630] = 5573, - [5631] = 5574, - [5632] = 5571, - [5633] = 5591, - [5634] = 5575, - [5635] = 5576, - [5636] = 5562, - [5637] = 5577, - [5638] = 5579, - [5639] = 5563, - [5640] = 5608, - [5641] = 5563, - [5642] = 5575, - [5643] = 5573, - [5644] = 5579, - [5645] = 5571, - [5646] = 5591, - [5647] = 5570, - [5648] = 5569, - [5649] = 5568, - [5650] = 5567, - [5651] = 5579, - [5652] = 5563, - [5653] = 5566, - [5654] = 5591, - [5655] = 5575, - [5656] = 5573, - [5657] = 5564, - [5658] = 5571, - [5659] = 5591, - [5660] = 5571, - [5661] = 5565, - [5662] = 5573, - [5663] = 5574, - [5664] = 5579, - [5665] = 5563, - [5666] = 5575, - [5667] = 5667, - [5668] = 5575, - [5669] = 5573, - [5670] = 5576, - [5671] = 5571, - [5672] = 5591, - [5673] = 5562, - [5674] = 5577, - [5675] = 5608, - [5676] = 5563, - [5677] = 5579, - [5678] = 5563, - [5679] = 5579, - [5680] = 5680, - [5681] = 5575, - [5682] = 5573, - [5683] = 5683, - [5684] = 5571, - [5685] = 5591, - [5686] = 5570, - [5687] = 5569, - [5688] = 5568, - [5689] = 5567, - [5690] = 5579, - [5691] = 5563, - [5692] = 5566, - [5693] = 5591, - [5694] = 5575, - [5695] = 5564, - [5696] = 5571, - [5697] = 5565, - [5698] = 5573, - [5699] = 5579, - [5700] = 5563, - [5701] = 5574, - [5702] = 5575, - [5703] = 5575, - [5704] = 5667, - [5705] = 5576, - [5706] = 5562, - [5707] = 5577, - [5708] = 5579, - [5709] = 5563, - [5710] = 5710, - [5711] = 5608, - [5712] = 5575, - [5713] = 5563, - [5714] = 5579, - [5715] = 5715, - [5716] = 5577, - [5717] = 5579, - [5718] = 5563, - [5719] = 5562, - [5720] = 5575, - [5721] = 5721, - [5722] = 5722, - [5723] = 5576, - [5724] = 5579, - [5725] = 5563, - [5726] = 5570, - [5727] = 5575, - [5728] = 5569, - [5729] = 5568, - [5730] = 5567, - [5731] = 5579, - [5732] = 5563, - [5733] = 5566, - [5734] = 5575, - [5735] = 5591, - [5736] = 5564, - [5737] = 5571, - [5738] = 5579, - [5739] = 5563, - [5740] = 5563, - [5741] = 5575, - [5742] = 5573, - [5743] = 5574, - [5744] = 5579, - [5745] = 5563, - [5746] = 5575, - [5747] = 5575, - [5748] = 5667, - [5749] = 5576, - [5750] = 5579, - [5751] = 5562, - [5752] = 5577, - [5753] = 5608, - [5754] = 5579, - [5755] = 5565, - [5756] = 5579, - [5757] = 5757, - [5758] = 5579, - [5759] = 5759, - [5760] = 5570, - [5761] = 5579, - [5762] = 5569, - [5763] = 5568, - [5764] = 5579, - [5765] = 5567, - [5766] = 5579, - [5767] = 5579, - [5768] = 5579, - [5769] = 5579, - [5770] = 5579, - [5771] = 5579, - [5772] = 5579, - [5773] = 5566, - [5774] = 5591, - [5775] = 5564, - [5776] = 5571, - [5777] = 5777, - [5778] = 5565, - [5779] = 5573, - [5780] = 5574, + [5569] = 1313, + [5570] = 20, + [5571] = 10, + [5572] = 568, + [5573] = 5540, + [5574] = 1196, + [5575] = 5548, + [5576] = 5565, + [5577] = 5533, + [5578] = 5548, + [5579] = 5540, + [5580] = 5540, + [5581] = 5532, + [5582] = 5582, + [5583] = 15, + [5584] = 24, + [5585] = 5548, + [5586] = 5565, + [5587] = 5544, + [5588] = 5540, + [5589] = 13, + [5590] = 5554, + [5591] = 5529, + [5592] = 5565, + [5593] = 5593, + [5594] = 1168, + [5595] = 5540, + [5596] = 5540, + [5597] = 5540, + [5598] = 5565, + [5599] = 5530, + [5600] = 5531, + [5601] = 1346, + [5602] = 5540, + [5603] = 1344, + [5604] = 5565, + [5605] = 5535, + [5606] = 5564, + [5607] = 5538, + [5608] = 1249, + [5609] = 5562, + [5610] = 5540, + [5611] = 5565, + [5612] = 5612, + [5613] = 5582, + [5614] = 5565, + [5615] = 5565, + [5616] = 9, + [5617] = 5617, + [5618] = 5540, + [5619] = 5540, + [5620] = 5565, + [5621] = 12, + [5622] = 5622, + [5623] = 5559, + [5624] = 5624, + [5625] = 5625, + [5626] = 5626, + [5627] = 5627, + [5628] = 5628, + [5629] = 1232, + [5630] = 5627, + [5631] = 5625, + [5632] = 5632, + [5633] = 5633, + [5634] = 5634, + [5635] = 5635, + [5636] = 5636, + [5637] = 5637, + [5638] = 5626, + [5639] = 5639, + [5640] = 5640, + [5641] = 5634, + [5642] = 5639, + [5643] = 5640, + [5644] = 5644, + [5645] = 5645, + [5646] = 5644, + [5647] = 5645, + [5648] = 5624, + [5649] = 5625, + [5650] = 5632, + [5651] = 5633, + [5652] = 5652, + [5653] = 5628, + [5654] = 5635, + [5655] = 5624, + [5656] = 5652, + [5657] = 5657, + [5658] = 5636, + [5659] = 5628, + [5660] = 5637, + [5661] = 5625, + [5662] = 5632, + [5663] = 5633, + [5664] = 5624, + [5665] = 5636, + [5666] = 5626, + [5667] = 5652, + [5668] = 5645, + [5669] = 5634, + [5670] = 5639, + [5671] = 5640, + [5672] = 5644, + [5673] = 5644, + [5674] = 5640, + [5675] = 5639, + [5676] = 5634, + [5677] = 5626, + [5678] = 5637, + [5679] = 5636, + [5680] = 5635, + [5681] = 5624, + [5682] = 5652, + [5683] = 5633, + [5684] = 5632, + [5685] = 5625, + [5686] = 5633, + [5687] = 5625, + [5688] = 5636, + [5689] = 5626, + [5690] = 5627, + [5691] = 5691, + [5692] = 5628, + [5693] = 5693, + [5694] = 5624, + [5695] = 5652, + [5696] = 5657, + [5697] = 5691, + [5698] = 5625, + [5699] = 5633, + [5700] = 5624, + [5701] = 5636, + [5702] = 5626, + [5703] = 5703, + [5704] = 5657, + [5705] = 5645, + [5706] = 5644, + [5707] = 5624, + [5708] = 5652, + [5709] = 5640, + [5710] = 5639, + [5711] = 5625, + [5712] = 5633, + [5713] = 5634, + [5714] = 5636, + [5715] = 5626, + [5716] = 5626, + [5717] = 5637, + [5718] = 5636, + [5719] = 5635, + [5720] = 5624, + [5721] = 5652, + [5722] = 5633, + [5723] = 5632, + [5724] = 5625, + [5725] = 5633, + [5726] = 5625, + [5727] = 5636, + [5728] = 5626, + [5729] = 5729, + [5730] = 5627, + [5731] = 5691, + [5732] = 5628, + [5733] = 5624, + [5734] = 5652, + [5735] = 5657, + [5736] = 5652, + [5737] = 5625, + [5738] = 5633, + [5739] = 5624, + [5740] = 5636, + [5741] = 5626, + [5742] = 5742, + [5743] = 5743, + [5744] = 5628, + [5745] = 5745, + [5746] = 5624, + [5747] = 5652, + [5748] = 5748, + [5749] = 5645, + [5750] = 5625, + [5751] = 5633, + [5752] = 5644, + [5753] = 5636, + [5754] = 5626, + [5755] = 5640, + [5756] = 5639, + [5757] = 5634, + [5758] = 5626, + [5759] = 5624, + [5760] = 5652, + [5761] = 5637, + [5762] = 5636, + [5763] = 5625, + [5764] = 5635, + [5765] = 5633, + [5766] = 5632, + [5767] = 5625, + [5768] = 5729, + [5769] = 5624, + [5770] = 5652, + [5771] = 5627, + [5772] = 5691, + [5773] = 5625, + [5774] = 5628, + [5775] = 5657, + [5776] = 5652, + [5777] = 5624, + [5778] = 5624, + [5779] = 5652, + [5780] = 5780, [5781] = 5781, - [5782] = 5575, - [5783] = 5667, - [5784] = 5576, - [5785] = 5562, - [5786] = 5577, - [5787] = 5787, - [5788] = 5608, - [5789] = 5563, - [5790] = 5579, - [5791] = 5579, - [5792] = 5792, - [5793] = 5793, - [5794] = 5794, - [5795] = 5667, - [5796] = 5683, - [5797] = 5797, - [5798] = 5575, - [5799] = 5799, - [5800] = 5800, - [5801] = 5570, - [5802] = 5569, - [5803] = 5568, - [5804] = 5567, - [5805] = 5566, - [5806] = 5591, - [5807] = 5564, - [5808] = 5571, - [5809] = 5809, - [5810] = 5810, - [5811] = 5811, - [5812] = 5571, - [5813] = 5573, - [5814] = 5574, - [5815] = 5575, - [5816] = 5667, - [5817] = 5576, - [5818] = 5562, - [5819] = 5577, - [5820] = 5820, - [5821] = 5566, - [5822] = 5567, - [5823] = 5568, - [5824] = 5569, - [5825] = 5793, - [5826] = 5608, - [5827] = 5563, - [5828] = 5579, - [5829] = 5829, - [5830] = 5830, - [5831] = 5831, - [5832] = 5832, - [5833] = 5833, - [5834] = 5570, - [5835] = 5569, - [5836] = 5568, - [5837] = 5567, - [5838] = 5566, - [5839] = 5591, - [5840] = 5564, - [5841] = 5571, - [5842] = 5565, - [5843] = 5573, - [5844] = 5574, - [5845] = 5575, - [5846] = 5787, - [5847] = 5667, - [5848] = 5792, - [5849] = 5591, - [5850] = 5576, - [5851] = 5562, - [5852] = 5579, - [5853] = 5577, - [5854] = 5574, - [5855] = 5608, - [5856] = 5563, - [5857] = 5579, - [5858] = 5858, - [5859] = 5573, - [5860] = 5570, - [5861] = 5569, - [5862] = 5568, + [5782] = 5625, + [5783] = 5627, + [5784] = 5784, + [5785] = 5645, + [5786] = 5644, + [5787] = 5624, + [5788] = 5652, + [5789] = 5640, + [5790] = 5639, + [5791] = 5625, + [5792] = 5634, + [5793] = 5626, + [5794] = 5637, + [5795] = 5624, + [5796] = 5652, + [5797] = 5636, + [5798] = 5625, + [5799] = 5635, + [5800] = 5633, + [5801] = 5632, + [5802] = 5624, + [5803] = 5652, + [5804] = 5625, + [5805] = 5625, + [5806] = 5729, + [5807] = 5627, + [5808] = 5691, + [5809] = 5624, + [5810] = 5652, + [5811] = 5628, + [5812] = 5625, + [5813] = 5657, + [5814] = 5652, + [5815] = 5624, + [5816] = 5652, + [5817] = 5624, + [5818] = 5625, + [5819] = 5819, + [5820] = 5644, + [5821] = 5624, + [5822] = 5652, + [5823] = 5645, + [5824] = 5625, + [5825] = 5633, + [5826] = 5640, + [5827] = 5624, + [5828] = 5652, + [5829] = 5639, + [5830] = 5625, + [5831] = 5634, + [5832] = 5624, + [5833] = 5626, + [5834] = 5637, + [5835] = 5624, + [5836] = 5636, + [5837] = 5635, + [5838] = 5624, + [5839] = 5633, + [5840] = 5632, + [5841] = 5624, + [5842] = 5625, + [5843] = 5624, + [5844] = 5624, + [5845] = 5624, + [5846] = 5624, + [5847] = 5624, + [5848] = 5624, + [5849] = 5729, + [5850] = 5627, + [5851] = 5691, + [5852] = 5628, + [5853] = 5853, + [5854] = 5657, + [5855] = 5652, + [5856] = 5624, + [5857] = 5857, + [5858] = 5625, + [5859] = 5859, + [5860] = 5860, + [5861] = 5861, + [5862] = 5862, [5863] = 5863, - [5864] = 5567, - [5865] = 5566, - [5866] = 5591, - [5867] = 5564, - [5868] = 5608, - [5869] = 5565, - [5870] = 5573, - [5871] = 5562, - [5872] = 5574, - [5873] = 5575, - [5874] = 5667, - [5875] = 5577, - [5876] = 5576, - [5877] = 5781, - [5878] = 5562, - [5879] = 5577, - [5880] = 5792, - [5881] = 5881, - [5882] = 5579, - [5883] = 5563, - [5884] = 5809, - [5885] = 5810, - [5886] = 5811, - [5887] = 5579, - [5888] = 5570, - [5889] = 5569, - [5890] = 5568, - [5891] = 5567, - [5892] = 5566, - [5893] = 5591, - [5894] = 5564, - [5895] = 5571, - [5896] = 5565, - [5897] = 5573, - [5898] = 5574, - [5899] = 5800, - [5900] = 5575, - [5901] = 5667, - [5902] = 5757, - [5903] = 5576, - [5904] = 5562, - [5905] = 5905, - [5906] = 5577, - [5907] = 5608, - [5908] = 5563, - [5909] = 5781, - [5910] = 5910, - [5911] = 5570, - [5912] = 5792, - [5913] = 5913, - [5914] = 5569, - [5915] = 5568, - [5916] = 5809, - [5917] = 5810, - [5918] = 5811, - [5919] = 5567, - [5920] = 5566, - [5921] = 5591, - [5922] = 5564, - [5923] = 5923, - [5924] = 5571, - [5925] = 5565, - [5926] = 5573, - [5927] = 5574, - [5928] = 5800, - [5929] = 5575, - [5930] = 5667, - [5931] = 5565, - [5932] = 5781, - [5933] = 5757, - [5934] = 5576, - [5935] = 5792, - [5936] = 1181, - [5937] = 5562, - [5938] = 5577, - [5939] = 5809, - [5940] = 5810, - [5941] = 5811, - [5942] = 5942, - [5943] = 5781, - [5944] = 5608, - [5945] = 5563, - [5946] = 5792, - [5947] = 5579, - [5948] = 5948, - [5949] = 5809, - [5950] = 5810, - [5951] = 5811, - [5952] = 5952, - [5953] = 5781, - [5954] = 5954, - [5955] = 5955, - [5956] = 5792, - [5957] = 5957, - [5958] = 5958, - [5959] = 5809, - [5960] = 5810, - [5961] = 5811, - [5962] = 5962, - [5963] = 5781, - [5964] = 5964, - [5965] = 5965, - [5966] = 5792, - [5967] = 5967, - [5968] = 5680, - [5969] = 5809, - [5970] = 5810, - [5971] = 5811, - [5972] = 5972, - [5973] = 5781, - [5974] = 5974, - [5975] = 5975, - [5976] = 5792, - [5977] = 5964, - [5978] = 5978, - [5979] = 5809, - [5980] = 5810, - [5981] = 5811, - [5982] = 5570, - [5983] = 5781, - [5984] = 5913, - [5985] = 5985, - [5986] = 5792, - [5987] = 5569, - [5988] = 5568, - [5989] = 5809, - [5990] = 5810, - [5991] = 5811, - [5992] = 5567, - [5993] = 5781, - [5994] = 5566, - [5995] = 5591, - [5996] = 5792, + [5864] = 5864, + [5865] = 5865, + [5866] = 5624, + [5867] = 5645, + [5868] = 5868, + [5869] = 5869, + [5870] = 5870, + [5871] = 5871, + [5872] = 5644, + [5873] = 5780, + [5874] = 5640, + [5875] = 5639, + [5876] = 5634, + [5877] = 5626, + [5878] = 5637, + [5879] = 5636, + [5880] = 5635, + [5881] = 5633, + [5882] = 5632, + [5883] = 5625, + [5884] = 5729, + [5885] = 5627, + [5886] = 5886, + [5887] = 5887, + [5888] = 5888, + [5889] = 5691, + [5890] = 5628, + [5891] = 5657, + [5892] = 5652, + [5893] = 5624, + [5894] = 5894, + [5895] = 5870, + [5896] = 5869, + [5897] = 5897, + [5898] = 5634, + [5899] = 5639, + [5900] = 5640, + [5901] = 5644, + [5902] = 5632, + [5903] = 5903, + [5904] = 1231, + [5905] = 5624, + [5906] = 5645, + [5907] = 5644, + [5908] = 5640, + [5909] = 5639, + [5910] = 5634, + [5911] = 5626, + [5912] = 5637, + [5913] = 5636, + [5914] = 5635, + [5915] = 5633, + [5916] = 5632, + [5917] = 5652, + [5918] = 5729, + [5919] = 5627, + [5920] = 5691, + [5921] = 5863, + [5922] = 5628, + [5923] = 5657, + [5924] = 5868, + [5925] = 5652, + [5926] = 5652, + [5927] = 5624, + [5928] = 5624, + [5929] = 5729, + [5930] = 5930, + [5931] = 5645, + [5932] = 5644, + [5933] = 5640, + [5934] = 5639, + [5935] = 5634, + [5936] = 5626, + [5937] = 5937, + [5938] = 5637, + [5939] = 5636, + [5940] = 5635, + [5941] = 5633, + [5942] = 5632, + [5943] = 5625, + [5944] = 5729, + [5945] = 5627, + [5946] = 5691, + [5947] = 5628, + [5948] = 5657, + [5949] = 5652, + [5950] = 5644, + [5951] = 5645, + [5952] = 5628, + [5953] = 1251, + [5954] = 5857, + [5955] = 5784, + [5956] = 5640, + [5957] = 5868, + [5958] = 5639, + [5959] = 5634, + [5960] = 5626, + [5961] = 5886, + [5962] = 5887, + [5963] = 5888, + [5964] = 5637, + [5965] = 5636, + [5966] = 5635, + [5967] = 5633, + [5968] = 5632, + [5969] = 5860, + [5970] = 5625, + [5971] = 5729, + [5972] = 5784, + [5973] = 5627, + [5974] = 5691, + [5975] = 5628, + [5976] = 5657, + [5977] = 5652, + [5978] = 5624, + [5979] = 5703, + [5980] = 5645, + [5981] = 5981, + [5982] = 5982, + [5983] = 5644, + [5984] = 5857, + [5985] = 5640, + [5986] = 5639, + [5987] = 5868, + [5988] = 5634, + [5989] = 5626, + [5990] = 5637, + [5991] = 5886, + [5992] = 5887, + [5993] = 5888, + [5994] = 5636, + [5995] = 5635, + [5996] = 5633, [5997] = 5997, - [5998] = 5998, - [5999] = 5809, - [6000] = 5810, - [6001] = 5811, + [5998] = 5632, + [5999] = 5860, + [6000] = 5625, + [6001] = 5729, [6002] = 6002, - [6003] = 5781, - [6004] = 5564, - [6005] = 5792, - [6006] = 5781, - [6007] = 5571, - [6008] = 5809, - [6009] = 5810, - [6010] = 5811, - [6011] = 5579, - [6012] = 5781, - [6013] = 5565, - [6014] = 5792, - [6015] = 5881, - [6016] = 5573, - [6017] = 5809, - [6018] = 5810, - [6019] = 5811, - [6020] = 5574, - [6021] = 5792, - [6022] = 5800, - [6023] = 5575, - [6024] = 5809, - [6025] = 5810, - [6026] = 5811, - [6027] = 5667, - [6028] = 5792, - [6029] = 5757, - [6030] = 5576, - [6031] = 5809, - [6032] = 5810, - [6033] = 5811, - [6034] = 5792, - [6035] = 5722, - [6036] = 5809, - [6037] = 5810, - [6038] = 5811, - [6039] = 5792, - [6040] = 5721, - [6041] = 5809, - [6042] = 5792, - [6043] = 5577, - [6044] = 5809, - [6045] = 5792, - [6046] = 5608, - [6047] = 5809, - [6048] = 5792, - [6049] = 5563, - [6050] = 5809, - [6051] = 5792, - [6052] = 5811, - [6053] = 5809, - [6054] = 5792, - [6055] = 5923, - [6056] = 5792, - [6057] = 5985, - [6058] = 5792, - [6059] = 5571, - [6060] = 5792, - [6061] = 5809, - [6062] = 5792, - [6063] = 5810, - [6064] = 5792, - [6065] = 5777, - [6066] = 5792, - [6067] = 6067, - [6068] = 5792, - [6069] = 6069, - [6070] = 5564, - [6071] = 6071, + [6003] = 5627, + [6004] = 5691, + [6005] = 5628, + [6006] = 5657, + [6007] = 5857, + [6008] = 5652, + [6009] = 5635, + [6010] = 5637, + [6011] = 5868, + [6012] = 6012, + [6013] = 6013, + [6014] = 5886, + [6015] = 5887, + [6016] = 5888, + [6017] = 6017, + [6018] = 5857, + [6019] = 6019, + [6020] = 6020, + [6021] = 5868, + [6022] = 6022, + [6023] = 6023, + [6024] = 5886, + [6025] = 5887, + [6026] = 5888, + [6027] = 6027, + [6028] = 5857, + [6029] = 6029, + [6030] = 6030, + [6031] = 5868, + [6032] = 5639, + [6033] = 6033, + [6034] = 5886, + [6035] = 5887, + [6036] = 5888, + [6037] = 6037, + [6038] = 5857, + [6039] = 6039, + [6040] = 6040, + [6041] = 5868, + [6042] = 6042, + [6043] = 6043, + [6044] = 5886, + [6045] = 5887, + [6046] = 5888, + [6047] = 6047, + [6048] = 5857, + [6049] = 6049, + [6050] = 6050, + [6051] = 5868, + [6052] = 6052, + [6053] = 6053, + [6054] = 5886, + [6055] = 5887, + [6056] = 5888, + [6057] = 6057, + [6058] = 5857, + [6059] = 5703, + [6060] = 6060, + [6061] = 5868, + [6062] = 6062, + [6063] = 5645, + [6064] = 5886, + [6065] = 5887, + [6066] = 5888, + [6067] = 5982, + [6068] = 5857, + [6069] = 1245, + [6070] = 6070, + [6071] = 5868, [6072] = 6072, - [6073] = 6002, - [6074] = 6074, - [6075] = 6075, - [6076] = 6076, - [6077] = 6077, - [6078] = 5998, - [6079] = 5820, - [6080] = 5799, - [6081] = 6081, - [6082] = 5997, - [6083] = 5591, - [6084] = 5974, - [6085] = 5566, - [6086] = 5942, - [6087] = 5962, - [6088] = 5567, - [6089] = 5568, - [6090] = 5569, - [6091] = 6091, - [6092] = 6092, - [6093] = 5913, - [6094] = 6094, - [6095] = 6095, - [6096] = 6096, - [6097] = 6097, - [6098] = 5570, - [6099] = 5952, - [6100] = 6100, - [6101] = 6101, - [6102] = 6102, - [6103] = 5683, - [6104] = 5942, + [6073] = 5857, + [6074] = 5886, + [6075] = 5887, + [6076] = 5888, + [6077] = 5644, + [6078] = 5857, + [6079] = 5640, + [6080] = 5868, + [6081] = 5930, + [6082] = 5634, + [6083] = 5886, + [6084] = 5887, + [6085] = 5888, + [6086] = 6037, + [6087] = 5857, + [6088] = 6039, + [6089] = 5868, + [6090] = 5645, + [6091] = 5982, + [6092] = 5886, + [6093] = 5887, + [6094] = 5888, + [6095] = 5644, + [6096] = 5868, + [6097] = 5640, + [6098] = 5639, + [6099] = 5886, + [6100] = 5887, + [6101] = 5888, + [6102] = 5634, + [6103] = 5868, + [6104] = 5626, [6105] = 6105, - [6106] = 6106, - [6107] = 5683, - [6108] = 5942, - [6109] = 5683, - [6110] = 5942, - [6111] = 5683, - [6112] = 5942, - [6113] = 5683, - [6114] = 5942, - [6115] = 5683, - [6116] = 5942, - [6117] = 5683, - [6118] = 5942, - [6119] = 5683, - [6120] = 5942, - [6121] = 5942, - [6122] = 5942, - [6123] = 5942, - [6124] = 5942, - [6125] = 5680, - [6126] = 6126, - [6127] = 1215, - [6128] = 1218, - [6129] = 1182, - [6130] = 1192, - [6131] = 1184, - [6132] = 1180, - [6133] = 1181, - [6134] = 1180, - [6135] = 1184, - [6136] = 1182, - [6137] = 6137, + [6106] = 5886, + [6107] = 5887, + [6108] = 5888, + [6109] = 5868, + [6110] = 6110, + [6111] = 5886, + [6112] = 5868, + [6113] = 6113, + [6114] = 5886, + [6115] = 5868, + [6116] = 6116, + [6117] = 5886, + [6118] = 5868, + [6119] = 5637, + [6120] = 5886, + [6121] = 5868, + [6122] = 5636, + [6123] = 5886, + [6124] = 5868, + [6125] = 6125, + [6126] = 5886, + [6127] = 5868, + [6128] = 6057, + [6129] = 5868, + [6130] = 5635, + [6131] = 5868, + [6132] = 6132, + [6133] = 5868, + [6134] = 5633, + [6135] = 5868, + [6136] = 5853, + [6137] = 5868, + [6138] = 5632, + [6139] = 5868, + [6140] = 6125, + [6141] = 5868, + [6142] = 5860, + [6143] = 5868, + [6144] = 1234, + [6145] = 5868, + [6146] = 5625, + [6147] = 5729, + [6148] = 5784, + [6149] = 5627, + [6150] = 5781, + [6151] = 5748, + [6152] = 5691, + [6153] = 5628, + [6154] = 1211, + [6155] = 5859, + [6156] = 6156, + [6157] = 1231, + [6158] = 5657, + [6159] = 1247, + [6160] = 6160, + [6161] = 6012, + [6162] = 6042, + [6163] = 5652, + [6164] = 5624, + [6165] = 5626, + [6166] = 5997, + [6167] = 1211, + [6168] = 6168, + [6169] = 6105, + [6170] = 6053, + [6171] = 1247, + [6172] = 6172, + [6173] = 6110, + [6174] = 5897, + [6175] = 6113, + [6176] = 5780, + [6177] = 6012, + [6178] = 5780, + [6179] = 6012, + [6180] = 5780, + [6181] = 6012, + [6182] = 5780, + [6183] = 6012, + [6184] = 5780, + [6185] = 6012, + [6186] = 5780, + [6187] = 6012, + [6188] = 5780, + [6189] = 6012, + [6190] = 5780, + [6191] = 6012, + [6192] = 6012, + [6193] = 6012, + [6194] = 6012, + [6195] = 6012, + [6196] = 1245, + [6197] = 6197, + [6198] = 6198, + [6199] = 6199, + [6200] = 6200, + [6201] = 6116, + [6202] = 5636, + [6203] = 6203, + [6204] = 6204, + [6205] = 5886, + [6206] = 5887, + [6207] = 5888, + [6208] = 6208, }; static inline bool sym_cmd_identifier_character_set_1(int32_t c) { + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 931 + ? (c < 748 + ? (c < 192 + ? (c < 170 + ? (c < 'g' + ? (c >= 'A' && c <= 'Z') + : c <= 'z') + : (c <= 170 || (c < 186 + ? c == 181 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))))) + : (c <= 748 || (c < 895 + ? (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))) + : (c <= 895 || (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c >= 910 && c <= 929))))))) + : (c <= 1013 || (c < 1649 + ? (c < 1376 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || c == 1369)) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2579 + ? (c < 2527 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 + ? (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 + ? (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712) + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110882) + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); +} + +static inline bool sym_cmd_identifier_character_set_2(int32_t c) { return (c < 43514 ? (c < 4193 ? (c < 2707 @@ -11831,7 +12742,7 @@ static inline bool sym_cmd_identifier_character_set_1(int32_t c) { : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_cmd_identifier_character_set_2(int32_t c) { +static inline bool sym_cmd_identifier_character_set_3(int32_t c) { return (c < 43520 ? (c < 4197 ? (c < 2730 @@ -12631,7 +13542,7 @@ static inline bool sym_cmd_identifier_character_set_2(int32_t c) { : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_cmd_identifier_character_set_3(int32_t c) { +static inline bool sym_cmd_identifier_character_set_4(int32_t c) { return (c < 43616 ? (c < 3782 ? (c < 2741 @@ -13651,7 +14562,7 @@ static inline bool sym_cmd_identifier_character_set_3(int32_t c) { : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } -static inline bool sym_cmd_identifier_character_set_4(int32_t c) { +static inline bool sym_cmd_identifier_character_set_5(int32_t c) { return (c < 43600 ? (c < 3751 ? (c < 2730 @@ -14675,7 +15586,7 @@ static inline bool sym_cmd_identifier_character_set_4(int32_t c) { : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } -static inline bool sym_cmd_identifier_character_set_5(int32_t c) { +static inline bool sym_cmd_identifier_character_set_6(int32_t c) { return (c < 43616 ? (c < 3782 ? (c < 2741 @@ -15695,7 +16606,7 @@ static inline bool sym_cmd_identifier_character_set_5(int32_t c) { : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } -static inline bool sym_cmd_identifier_character_set_6(int32_t c) { +static inline bool sym_cmd_identifier_character_set_7(int32_t c) { return (c < 43600 ? (c < 3751 ? (c < 2730 @@ -16719,7 +17630,7 @@ static inline bool sym_cmd_identifier_character_set_6(int32_t c) { : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } -static inline bool sym_cmd_identifier_character_set_7(int32_t c) { +static inline bool sym_cmd_identifier_character_set_8(int32_t c) { return (c < 43600 ? (c < 3751 ? (c < 2730 @@ -30928,808 +31839,6 @@ static inline bool aux_sym_unquoted_token2_character_set_1(int32_t c) { } static inline bool aux_sym_unquoted_token2_character_set_2(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 931 - ? (c < 748 - ? (c < 192 - ? (c < 170 - ? (c < 'g' - ? (c >= 'A' && c <= 'Z') - : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool aux_sym_unquoted_token2_character_set_3(int32_t c) { return (c < 43514 ? (c < 4193 ? (c < 2707 @@ -32531,7 +32640,7 @@ static inline bool aux_sym_unquoted_token2_character_set_3(int32_t c) { : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool aux_sym_unquoted_token2_character_set_4(int32_t c) { +static inline bool aux_sym_unquoted_token2_character_set_3(int32_t c) { return (c < '[' ? (c < '\'' ? (c < '"' @@ -36336,298 +36445,520 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(587); - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1289); - if (lookahead == '\'') ADVANCE(1848); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1508); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1504); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1201); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(1273); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1606); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2135); + if (eof) ADVANCE(619); + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1322); + if (lookahead == '\'') ADVANCE(1881); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1368); + if (lookahead == '+') ADVANCE(1541); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1537); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1389); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1233); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(1306); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1639); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2172); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(583) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1215); + lookahead == ' ') SKIP(615) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1248); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1216); - if (aux_sym_unquoted_token2_character_set_1(lookahead)) ADVANCE(2148); - if (lookahead != 0) ADVANCE(2062); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1249); + if (aux_sym_unquoted_token2_character_set_1(lookahead)) ADVANCE(2183); + if (lookahead != 0) ADVANCE(2100); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(792); - if (lookahead == 'd') ADVANCE(782); - if (lookahead == 'f') ADVANCE(675); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'm') ADVANCE(679); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'r') ADVANCE(728); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'w') ADVANCE(743); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1368); + if (lookahead == '+') ADVANCE(1403); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1240); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1389); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(634); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(799); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(705); + if (lookahead == 'n') ADVANCE(750); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(3) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1912); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1368); + if (lookahead == '+') ADVANCE(1403); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1240); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1389); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(634); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(799); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(705); + if (lookahead == 'n') ADVANCE(750); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(2) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(4) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && lookahead != ')' && - lookahead != ']') ADVANCE(2061); + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(590); - if (lookahead == '#') ADVANCE(3134); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1368); + if (lookahead == '+') ADVANCE(1403); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1240); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1389); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(634); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(799); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(705); + if (lookahead == 'n') ADVANCE(750); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(3); - if (lookahead != 0) ADVANCE(4); + lookahead == ' ') SKIP(3) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(589); - if (lookahead != 0) ADVANCE(4); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1368); + if (lookahead == '+') ADVANCE(1403); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1240); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1389); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(634); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(799); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(705); + if (lookahead == 'n') ADVANCE(750); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(4) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1486); - if (lookahead == ':') ADVANCE(2062); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2145); - if (lookahead == 'N') ADVANCE(2143); - if (lookahead == '_') ADVANCE(2076); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2097); - if (lookahead == 'b') ADVANCE(2096); - if (lookahead == 'c') ADVANCE(2083); - if (lookahead == 'd') ADVANCE(2084); - if (lookahead == 'e') ADVANCE(2100); - if (lookahead == 'f') ADVANCE(2118); - if (lookahead == 'h') ADVANCE(2092); - if (lookahead == 'i') ADVANCE(2070); - if (lookahead == 'l') ADVANCE(2085); - if (lookahead == 'm') ADVANCE(2077); - if (lookahead == 'n') ADVANCE(2088); - if (lookahead == 'o') ADVANCE(2127); - if (lookahead == 'r') ADVANCE(2087); - if (lookahead == 's') ADVANCE(2110); - if (lookahead == 't') ADVANCE(2134); - if (lookahead == 'u') ADVANCE(2136); - if (lookahead == 'w') ADVANCE(2091); - if (lookahead == 'x') ADVANCE(2121); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(824); + if (lookahead == 'd') ADVANCE(814); + if (lookahead == 'f') ADVANCE(707); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'm') ADVANCE(711); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'r') ADVANCE(760); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'w') ADVANCE(775); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(903); + END_STATE(); + case 6: + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(6) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ']') ADVANCE(2099); + END_STATE(); + case 7: + if (lookahead == '\n') ADVANCE(622); + if (lookahead == '#') ADVANCE(3169); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(7); + if (lookahead != 0) ADVANCE(8); + END_STATE(); + case 8: + if (lookahead == '\n') ADVANCE(621); + if (lookahead != 0) ADVANCE(8); + END_STATE(); + case 9: + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1519); + if (lookahead == ':') ADVANCE(2100); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2181); + if (lookahead == 'N') ADVANCE(2180); + if (lookahead == '_') ADVANCE(2114); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2135); + if (lookahead == 'b') ADVANCE(2134); + if (lookahead == 'c') ADVANCE(2120); + if (lookahead == 'd') ADVANCE(2121); + if (lookahead == 'e') ADVANCE(2138); + if (lookahead == 'f') ADVANCE(2155); + if (lookahead == 'h') ADVANCE(2130); + if (lookahead == 'i') ADVANCE(2109); + if (lookahead == 'l') ADVANCE(2122); + if (lookahead == 'm') ADVANCE(2115); + if (lookahead == 'n') ADVANCE(2125); + if (lookahead == 'o') ADVANCE(2165); + if (lookahead == 'r') ADVANCE(2124); + if (lookahead == 's') ADVANCE(2149); + if (lookahead == 't') ADVANCE(2171); + if (lookahead == 'u') ADVANCE(2173); + if (lookahead == 'w') ADVANCE(2129); + if (lookahead == 'x') ADVANCE(2161); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2149); + lookahead == ' ') SKIP(27) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2184); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(2062); + lookahead != '{') ADVANCE(2100); END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2147); - if (lookahead == 'N') ADVANCE(2144); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1274); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2102); - if (lookahead == 'b') ADVANCE(2094); - if (lookahead == 'e') ADVANCE(2106); - if (lookahead == 'f') ADVANCE(2079); - if (lookahead == 'i') ADVANCE(2072); - if (lookahead == 'm') ADVANCE(2116); - if (lookahead == 'n') ADVANCE(2124); - if (lookahead == 'o') ADVANCE(2128); - if (lookahead == 's') ADVANCE(2138); - if (lookahead == 't') ADVANCE(2130); - if (lookahead == 'x') ADVANCE(2112); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 10: + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2182); + if (lookahead == 'N') ADVANCE(2179); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1307); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2139); + if (lookahead == 'b') ADVANCE(2131); + if (lookahead == 'e') ADVANCE(2143); + if (lookahead == 'f') ADVANCE(2116); + if (lookahead == 'i') ADVANCE(2110); + if (lookahead == 'm') ADVANCE(2153); + if (lookahead == 'n') ADVANCE(2162); + if (lookahead == 'o') ADVANCE(2166); + if (lookahead == 's') ADVANCE(2174); + if (lookahead == 't') ADVANCE(2167); + if (lookahead == 'x') ADVANCE(2152); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); + lookahead == ' ') SKIP(97) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != ']') ADVANCE(2062); + lookahead != ']') ADVANCE(2100); END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == 'a') ADVANCE(2103); - if (lookahead == 'b') ADVANCE(2095); - if (lookahead == 'e') ADVANCE(2107); - if (lookahead == 'i') ADVANCE(2104); - if (lookahead == 'm') ADVANCE(2117); - if (lookahead == 'n') ADVANCE(2125); - if (lookahead == 'o') ADVANCE(2131); - if (lookahead == 's') ADVANCE(2139); - if (lookahead == 'x') ADVANCE(2113); + case 11: + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(2113); + if (lookahead == 'a') ADVANCE(2140); + if (lookahead == 'b') ADVANCE(2132); + if (lookahead == 'e') ADVANCE(2144); + if (lookahead == 'i') ADVANCE(2141); + if (lookahead == 'm') ADVANCE(2154); + if (lookahead == 'n') ADVANCE(2163); + if (lookahead == 'o') ADVANCE(2168); + if (lookahead == 's') ADVANCE(2175); + if (lookahead == 'x') ADVANCE(2151); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(73) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2183); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ';' < lookahead) && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2062); + lookahead != '}') ADVANCE(2100); END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == 'a') ADVANCE(2103); - if (lookahead == 'b') ADVANCE(2095); - if (lookahead == 'e') ADVANCE(2107); - if (lookahead == 'i') ADVANCE(2104); - if (lookahead == 'm') ADVANCE(2117); - if (lookahead == 'n') ADVANCE(2125); - if (lookahead == 'o') ADVANCE(2131); - if (lookahead == 's') ADVANCE(2139); - if (lookahead == 'x') ADVANCE(2113); + case 12: + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(2113); + if (lookahead == 'a') ADVANCE(2140); + if (lookahead == 'b') ADVANCE(2132); + if (lookahead == 'e') ADVANCE(2144); + if (lookahead == 'i') ADVANCE(2141); + if (lookahead == 'm') ADVANCE(2154); + if (lookahead == 'n') ADVANCE(2163); + if (lookahead == 'o') ADVANCE(2168); + if (lookahead == 's') ADVANCE(2175); + if (lookahead == 'x') ADVANCE(2151); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(75) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2183); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -36635,112 +36966,112 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2062); + lookahead != '}') ADVANCE(2100); END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == 'a') ADVANCE(2103); - if (lookahead == 'b') ADVANCE(2095); - if (lookahead == 'e') ADVANCE(2107); - if (lookahead == 'i') ADVANCE(2104); - if (lookahead == 'm') ADVANCE(2117); - if (lookahead == 'n') ADVANCE(2125); - if (lookahead == 'o') ADVANCE(2131); - if (lookahead == 's') ADVANCE(2139); - if (lookahead == 'x') ADVANCE(2113); - if (lookahead == '|') ADVANCE(1170); + case 13: + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '_') ADVANCE(2113); + if (lookahead == 'a') ADVANCE(2140); + if (lookahead == 'b') ADVANCE(2132); + if (lookahead == 'e') ADVANCE(2144); + if (lookahead == 'i') ADVANCE(2141); + if (lookahead == 'm') ADVANCE(2154); + if (lookahead == 'n') ADVANCE(2163); + if (lookahead == 'o') ADVANCE(2168); + if (lookahead == 's') ADVANCE(2175); + if (lookahead == 'x') ADVANCE(2151); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(77) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2183); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2062); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2100); END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == 'a') ADVANCE(2103); - if (lookahead == 'b') ADVANCE(2095); - if (lookahead == 'e') ADVANCE(2107); - if (lookahead == 'i') ADVANCE(2104); - if (lookahead == 'm') ADVANCE(2117); - if (lookahead == 'n') ADVANCE(2125); - if (lookahead == 'o') ADVANCE(2131); - if (lookahead == 's') ADVANCE(2139); - if (lookahead == 'x') ADVANCE(2113); - if (lookahead == '|') ADVANCE(1170); + case 14: + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '_') ADVANCE(2113); + if (lookahead == 'a') ADVANCE(2140); + if (lookahead == 'b') ADVANCE(2132); + if (lookahead == 'e') ADVANCE(2144); + if (lookahead == 'i') ADVANCE(2141); + if (lookahead == 'm') ADVANCE(2154); + if (lookahead == 'n') ADVANCE(2163); + if (lookahead == 'o') ADVANCE(2168); + if (lookahead == 's') ADVANCE(2175); + if (lookahead == 'x') ADVANCE(2151); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(79) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2183); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2062); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2100); END_STATE(); - case 11: - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '_') ADVANCE(2073); - if (lookahead == 'a') ADVANCE(2102); - if (lookahead == 'b') ADVANCE(2094); - if (lookahead == 'e') ADVANCE(2106); - if (lookahead == 'i') ADVANCE(2105); - if (lookahead == 'm') ADVANCE(2116); - if (lookahead == 'n') ADVANCE(2123); - if (lookahead == 'o') ADVANCE(2128); - if (lookahead == 's') ADVANCE(2138); - if (lookahead == 'x') ADVANCE(2112); - if (lookahead == '}') ADVANCE(1270); + case 15: + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '_') ADVANCE(2111); + if (lookahead == 'a') ADVANCE(2145); + if (lookahead == 'b') ADVANCE(2133); + if (lookahead == 'e') ADVANCE(2146); + if (lookahead == 'i') ADVANCE(2142); + if (lookahead == 'm') ADVANCE(2157); + if (lookahead == 'n') ADVANCE(2158); + if (lookahead == 'o') ADVANCE(2166); + if (lookahead == 's') ADVANCE(2176); + if (lookahead == 'x') ADVANCE(2159); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(84) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(85) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -36748,63 +37079,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2062); + lookahead != '{') ADVANCE(2100); END_STATE(); - case 12: - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2068); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '_') ADVANCE(2073); - if (lookahead == 'a') ADVANCE(2102); - if (lookahead == 'b') ADVANCE(2094); - if (lookahead == 'e') ADVANCE(2106); - if (lookahead == 'i') ADVANCE(2105); - if (lookahead == 'm') ADVANCE(2116); - if (lookahead == 'n') ADVANCE(2123); - if (lookahead == 'o') ADVANCE(2128); - if (lookahead == 's') ADVANCE(2138); - if (lookahead == 'x') ADVANCE(2112); + case 16: + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2106); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '_') ADVANCE(2111); + if (lookahead == 'a') ADVANCE(2145); + if (lookahead == 'b') ADVANCE(2133); + if (lookahead == 'e') ADVANCE(2146); + if (lookahead == 'i') ADVANCE(2142); + if (lookahead == 'm') ADVANCE(2157); + if (lookahead == 'n') ADVANCE(2158); + if (lookahead == 'o') ADVANCE(2166); + if (lookahead == 's') ADVANCE(2176); + if (lookahead == 'x') ADVANCE(2159); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(86) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2062); + lookahead == ' ') SKIP(87) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2100); END_STATE(); - case 13: - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '_') ADVANCE(2073); - if (lookahead == 'a') ADVANCE(2102); - if (lookahead == 'b') ADVANCE(2094); - if (lookahead == 'e') ADVANCE(2106); - if (lookahead == 'i') ADVANCE(2105); - if (lookahead == 'm') ADVANCE(2116); - if (lookahead == 'n') ADVANCE(2123); - if (lookahead == 'o') ADVANCE(2128); - if (lookahead == 's') ADVANCE(2138); - if (lookahead == 'x') ADVANCE(2112); - if (lookahead == '{') ADVANCE(1269); + case 17: + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '_') ADVANCE(2111); + if (lookahead == 'a') ADVANCE(2145); + if (lookahead == 'b') ADVANCE(2133); + if (lookahead == 'e') ADVANCE(2146); + if (lookahead == 'i') ADVANCE(2142); + if (lookahead == 'm') ADVANCE(2157); + if (lookahead == 'n') ADVANCE(2158); + if (lookahead == 'o') ADVANCE(2166); + if (lookahead == 's') ADVANCE(2176); + if (lookahead == 'x') ADVANCE(2159); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(88) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(89) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -36812,1131 +37143,1196 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '}') ADVANCE(2062); + lookahead != '}') ADVANCE(2100); END_STATE(); - case 14: - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'b') ADVANCE(750); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(767); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(673); - if (lookahead == 'n') ADVANCE(718); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(783); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '}') ADVANCE(1270); + case 18: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(665); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(671); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(675); + if (lookahead == 'n') ADVANCE(749); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(679); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(773); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(19) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(23) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '{') ADVANCE(1918); END_STATE(); - case 15: - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(633); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(639); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(643); - if (lookahead == 'n') ADVANCE(717); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(647); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(741); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 19: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(799); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(705); + if (lookahead == 'n') ADVANCE(750); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(24) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '{') ADVANCE(1918); END_STATE(); - case 16: - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(625); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(626); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(643); - if (lookahead == 'n') ADVANCE(717); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(647); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(741); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 20: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(657); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(675); + if (lookahead == 'n') ADVANCE(749); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(679); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(773); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(26) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '{') ADVANCE(1918); END_STATE(); - case 17: - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'b') ADVANCE(750); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(767); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(673); - if (lookahead == 'n') ADVANCE(718); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(783); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '}') ADVANCE(1270); + case 21: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(799); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(705); + if (lookahead == 'n') ADVANCE(750); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(27) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '{') ADVANCE(1918); END_STATE(); - case 18: - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1486); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(625); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '_') ADVANCE(669); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(626); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(643); - if (lookahead == 'n') ADVANCE(717); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(647); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(741); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 22: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1519); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(657); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '_') ADVANCE(701); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(675); + if (lookahead == 'n') ADVANCE(749); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(679); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(773); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(26) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '{') ADVANCE(1918); END_STATE(); - case 19: - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'b') ADVANCE(750); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(767); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(673); - if (lookahead == 'n') ADVANCE(718); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(783); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '}') ADVANCE(1270); + case 23: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(665); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(671); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(675); + if (lookahead == 'n') ADVANCE(749); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(679); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(773); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(19) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(23) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '{') ADVANCE(1918); END_STATE(); - case 20: - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(633); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(639); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(643); - if (lookahead == 'n') ADVANCE(717); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(647); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(741); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 24: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(799); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(705); + if (lookahead == 'n') ADVANCE(750); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(20) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(24) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && - lookahead != ']') ADVANCE(1885); + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); - case 21: - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(633); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(639); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(643); - if (lookahead == 'n') ADVANCE(717); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(647); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(741); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 25: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(665); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(671); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(675); + if (lookahead == 'n') ADVANCE(749); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(679); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(773); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(25) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); + if (lookahead != 0 && + (lookahead < ')' || ';' < lookahead) && + lookahead != '[' && + lookahead != ']') ADVANCE(1918); + END_STATE(); + case 26: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(665); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(671); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(675); + if (lookahead == 'n') ADVANCE(749); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(679); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(773); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(26) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '{') ADVANCE(1918); END_STATE(); - case 22: - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'b') ADVANCE(750); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(767); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(673); - if (lookahead == 'n') ADVANCE(718); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(783); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '}') ADVANCE(1270); + case 27: + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(799); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(705); + if (lookahead == 'n') ADVANCE(750); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(27) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '{') ADVANCE(1918); END_STATE(); - case 23: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1486); - if (lookahead == ':') ADVANCE(2790); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(2793); - if (lookahead == 'G') ADVANCE(2806); - if (lookahead == 'I') ADVANCE(2933); - if (lookahead == 'K') ADVANCE(2807); - if (lookahead == 'M') ADVANCE(2808); - if (lookahead == 'N') ADVANCE(2931); - if (lookahead == 'P') ADVANCE(2809); - if (lookahead == 'T') ADVANCE(2810); - if (lookahead == '[') ADVANCE(1817); - if (lookahead == '_') ADVANCE(2870); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2900); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(2885); - if (lookahead == 'd') ADVANCE(2884); - if (lookahead == 'e') ADVANCE(2794); - if (lookahead == 'f') ADVANCE(2911); - if (lookahead == 'g') ADVANCE(2813); - if (lookahead == 'h') ADVANCE(2897); - if (lookahead == 'i') ADVANCE(2862); - if (lookahead == 'k') ADVANCE(2814); - if (lookahead == 'l') ADVANCE(2886); - if (lookahead == 'm') ADVANCE(2815); - if (lookahead == 'n') ADVANCE(2893); - if (lookahead == 'o') ADVANCE(2918); - if (lookahead == 'p') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2888); - if (lookahead == 's') ADVANCE(2894); - if (lookahead == 't') ADVANCE(2819); - if (lookahead == 'u') ADVANCE(2924); - if (lookahead == 'w') ADVANCE(2896); - if (lookahead == 'x') ADVANCE(2913); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2925); + case 28: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1519); + if (lookahead == ':') ADVANCE(2822); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(2825); + if (lookahead == 'G') ADVANCE(2839); + if (lookahead == 'I') ADVANCE(2969); + if (lookahead == 'K') ADVANCE(2840); + if (lookahead == 'M') ADVANCE(2841); + if (lookahead == 'N') ADVANCE(2968); + if (lookahead == 'P') ADVANCE(2842); + if (lookahead == 'T') ADVANCE(2843); + if (lookahead == '[') ADVANCE(1850); + if (lookahead == '_') ADVANCE(2906); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2937); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(2920); + if (lookahead == 'd') ADVANCE(2919); + if (lookahead == 'e') ADVANCE(2826); + if (lookahead == 'f') ADVANCE(2947); + if (lookahead == 'g') ADVANCE(2846); + if (lookahead == 'h') ADVANCE(2934); + if (lookahead == 'i') ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2847); + if (lookahead == 'l') ADVANCE(2921); + if (lookahead == 'm') ADVANCE(2848); + if (lookahead == 'n') ADVANCE(2929); + if (lookahead == 'o') ADVANCE(2954); + if (lookahead == 'p') ADVANCE(2850); + if (lookahead == 'r') ADVANCE(2923); + if (lookahead == 's') ADVANCE(2930); + if (lookahead == 't') ADVANCE(2852); + if (lookahead == 'u') ADVANCE(2960); + if (lookahead == 'w') ADVANCE(2933); + if (lookahead == 'x') ADVANCE(2951); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2961); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(20) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(25) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(2972); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 24: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2874); - if (lookahead == ':') ADVANCE(2790); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(2793); - if (lookahead == 'G') ADVANCE(2806); - if (lookahead == 'I') ADVANCE(2933); - if (lookahead == 'K') ADVANCE(2807); - if (lookahead == 'M') ADVANCE(2808); - if (lookahead == 'N') ADVANCE(2931); - if (lookahead == 'P') ADVANCE(2809); - if (lookahead == 'T') ADVANCE(2810); - if (lookahead == '_') ADVANCE(2865); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2900); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(2885); - if (lookahead == 'd') ADVANCE(2884); - if (lookahead == 'e') ADVANCE(2794); - if (lookahead == 'f') ADVANCE(2911); - if (lookahead == 'g') ADVANCE(2813); - if (lookahead == 'h') ADVANCE(2897); - if (lookahead == 'i') ADVANCE(2862); - if (lookahead == 'k') ADVANCE(2814); - if (lookahead == 'l') ADVANCE(2886); - if (lookahead == 'm') ADVANCE(2815); - if (lookahead == 'n') ADVANCE(2893); - if (lookahead == 'o') ADVANCE(2918); - if (lookahead == 'p') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2888); - if (lookahead == 's') ADVANCE(2894); - if (lookahead == 't') ADVANCE(2819); - if (lookahead == 'u') ADVANCE(2924); - if (lookahead == 'w') ADVANCE(2896); - if (lookahead == 'x') ADVANCE(2913); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2925); + case 29: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2910); + if (lookahead == ':') ADVANCE(2822); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(2825); + if (lookahead == 'G') ADVANCE(2839); + if (lookahead == 'I') ADVANCE(2969); + if (lookahead == 'K') ADVANCE(2840); + if (lookahead == 'M') ADVANCE(2841); + if (lookahead == 'N') ADVANCE(2968); + if (lookahead == 'P') ADVANCE(2842); + if (lookahead == 'T') ADVANCE(2843); + if (lookahead == '_') ADVANCE(2901); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2937); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(2920); + if (lookahead == 'd') ADVANCE(2919); + if (lookahead == 'e') ADVANCE(2826); + if (lookahead == 'f') ADVANCE(2947); + if (lookahead == 'g') ADVANCE(2846); + if (lookahead == 'h') ADVANCE(2934); + if (lookahead == 'i') ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2847); + if (lookahead == 'l') ADVANCE(2921); + if (lookahead == 'm') ADVANCE(2848); + if (lookahead == 'n') ADVANCE(2929); + if (lookahead == 'o') ADVANCE(2954); + if (lookahead == 'p') ADVANCE(2850); + if (lookahead == 'r') ADVANCE(2923); + if (lookahead == 's') ADVANCE(2930); + if (lookahead == 't') ADVANCE(2852); + if (lookahead == 'u') ADVANCE(2960); + if (lookahead == 'w') ADVANCE(2933); + if (lookahead == 'x') ADVANCE(2951); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2961); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2877); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(26) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2913); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(2972); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 25: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2874); - if (lookahead == ':') ADVANCE(2790); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(2805); - if (lookahead == 'G') ADVANCE(2806); - if (lookahead == 'I') ADVANCE(2933); - if (lookahead == 'K') ADVANCE(2807); - if (lookahead == 'M') ADVANCE(2808); - if (lookahead == 'N') ADVANCE(2931); - if (lookahead == 'P') ADVANCE(2809); - if (lookahead == 'T') ADVANCE(2810); - if (lookahead == '_') ADVANCE(2865); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2900); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(2885); - if (lookahead == 'd') ADVANCE(2884); - if (lookahead == 'e') ADVANCE(2811); - if (lookahead == 'f') ADVANCE(2911); - if (lookahead == 'g') ADVANCE(2813); - if (lookahead == 'h') ADVANCE(2897); - if (lookahead == 'i') ADVANCE(2862); - if (lookahead == 'k') ADVANCE(2814); - if (lookahead == 'l') ADVANCE(2886); - if (lookahead == 'm') ADVANCE(2815); - if (lookahead == 'n') ADVANCE(2893); - if (lookahead == 'o') ADVANCE(2918); - if (lookahead == 'p') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2888); - if (lookahead == 's') ADVANCE(2894); - if (lookahead == 't') ADVANCE(2819); - if (lookahead == 'u') ADVANCE(2924); - if (lookahead == 'w') ADVANCE(2896); - if (lookahead == 'x') ADVANCE(2913); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2925); + case 30: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2910); + if (lookahead == ':') ADVANCE(2822); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(2838); + if (lookahead == 'G') ADVANCE(2839); + if (lookahead == 'I') ADVANCE(2969); + if (lookahead == 'K') ADVANCE(2840); + if (lookahead == 'M') ADVANCE(2841); + if (lookahead == 'N') ADVANCE(2968); + if (lookahead == 'P') ADVANCE(2842); + if (lookahead == 'T') ADVANCE(2843); + if (lookahead == '_') ADVANCE(2901); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2937); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(2920); + if (lookahead == 'd') ADVANCE(2919); + if (lookahead == 'e') ADVANCE(2844); + if (lookahead == 'f') ADVANCE(2947); + if (lookahead == 'g') ADVANCE(2846); + if (lookahead == 'h') ADVANCE(2934); + if (lookahead == 'i') ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2847); + if (lookahead == 'l') ADVANCE(2921); + if (lookahead == 'm') ADVANCE(2848); + if (lookahead == 'n') ADVANCE(2929); + if (lookahead == 'o') ADVANCE(2954); + if (lookahead == 'p') ADVANCE(2850); + if (lookahead == 'r') ADVANCE(2923); + if (lookahead == 's') ADVANCE(2930); + if (lookahead == 't') ADVANCE(2852); + if (lookahead == 'u') ADVANCE(2960); + if (lookahead == 'w') ADVANCE(2933); + if (lookahead == 'x') ADVANCE(2951); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2961); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2877); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(26) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2913); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(2972); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 26: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2874); - if (lookahead == ':') ADVANCE(2790); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(2805); - if (lookahead == 'G') ADVANCE(2806); - if (lookahead == 'I') ADVANCE(2933); - if (lookahead == 'K') ADVANCE(2807); - if (lookahead == 'M') ADVANCE(2808); - if (lookahead == 'N') ADVANCE(2931); - if (lookahead == 'P') ADVANCE(2809); - if (lookahead == 'T') ADVANCE(2810); - if (lookahead == '_') ADVANCE(2865); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2900); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(2885); - if (lookahead == 'd') ADVANCE(2884); - if (lookahead == 'e') ADVANCE(2811); - if (lookahead == 'f') ADVANCE(2911); - if (lookahead == 'g') ADVANCE(2813); - if (lookahead == 'h') ADVANCE(2897); - if (lookahead == 'i') ADVANCE(2862); - if (lookahead == 'k') ADVANCE(2814); - if (lookahead == 'l') ADVANCE(2886); - if (lookahead == 'm') ADVANCE(2815); - if (lookahead == 'n') ADVANCE(2893); - if (lookahead == 'o') ADVANCE(2918); - if (lookahead == 'p') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2888); - if (lookahead == 's') ADVANCE(2894); - if (lookahead == 't') ADVANCE(2819); - if (lookahead == 'u') ADVANCE(2924); - if (lookahead == 'w') ADVANCE(2896); - if (lookahead == 'x') ADVANCE(2913); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2925); + case 31: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2910); + if (lookahead == ':') ADVANCE(2822); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(2838); + if (lookahead == 'G') ADVANCE(2839); + if (lookahead == 'I') ADVANCE(2969); + if (lookahead == 'K') ADVANCE(2840); + if (lookahead == 'M') ADVANCE(2841); + if (lookahead == 'N') ADVANCE(2968); + if (lookahead == 'P') ADVANCE(2842); + if (lookahead == 'T') ADVANCE(2843); + if (lookahead == '_') ADVANCE(2901); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2937); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(2920); + if (lookahead == 'd') ADVANCE(2919); + if (lookahead == 'e') ADVANCE(2844); + if (lookahead == 'f') ADVANCE(2947); + if (lookahead == 'g') ADVANCE(2846); + if (lookahead == 'h') ADVANCE(2934); + if (lookahead == 'i') ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2847); + if (lookahead == 'l') ADVANCE(2921); + if (lookahead == 'm') ADVANCE(2848); + if (lookahead == 'n') ADVANCE(2929); + if (lookahead == 'o') ADVANCE(2954); + if (lookahead == 'p') ADVANCE(2850); + if (lookahead == 'r') ADVANCE(2923); + if (lookahead == 's') ADVANCE(2930); + if (lookahead == 't') ADVANCE(2852); + if (lookahead == 'u') ADVANCE(2960); + if (lookahead == 'w') ADVANCE(2933); + if (lookahead == 'x') ADVANCE(2951); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2961); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2877); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(26) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2913); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(2972); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 27: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'I') ADVANCE(2935); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'N') ADVANCE(2932); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1274); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'f') ADVANCE(2881); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2864); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2916); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2847); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 32: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2853); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'I') ADVANCE(2970); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1307); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2939); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2867); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2900); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2877); + if (lookahead == 'n') ADVANCE(2952); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2925); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2946); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 28: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2872); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'I') ADVANCE(2935); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'N') ADVANCE(2932); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'f') ADVANCE(2881); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2864); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2916); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2847); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 33: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2909); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2853); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'I') ADVANCE(2970); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2939); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2867); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2900); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2877); + if (lookahead == 'n') ADVANCE(2952); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2925); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2946); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2875); + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2912); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 29: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2872); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'I') ADVANCE(2935); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'N') ADVANCE(2932); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'f') ADVANCE(2881); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2864); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2916); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2847); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 34: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2909); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2854); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'I') ADVANCE(2970); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2939); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2868); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2900); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2877); + if (lookahead == 'n') ADVANCE(2952); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2925); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2946); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2875); + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2912); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 30: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2872); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'I') ADVANCE(2935); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'N') ADVANCE(2932); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'f') ADVANCE(2881); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2864); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2916); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2847); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 35: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2909); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2854); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'I') ADVANCE(2970); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2939); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2868); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2900); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2877); + if (lookahead == 'n') ADVANCE(2952); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2925); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2946); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2875); + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2912); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 31: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1466); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2848); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2869); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2855); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == 181) ADVANCE(2923); + case 36: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1499); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2885); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(2905); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2892); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(72) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ';' < lookahead) && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 32: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2848); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2855); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == 181) ADVANCE(2923); + case 37: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2885); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2892); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(72) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -37944,54 +38340,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 33: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2849); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2856); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == 181) ADVANCE(2923); + case 38: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2886); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2893); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(72) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -37999,55 +38395,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 34: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2848); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2869); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2855); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == 181) ADVANCE(2923); + case 39: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2885); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(2905); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2892); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(74) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -38055,53 +38451,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 35: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2848); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2855); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == 181) ADVANCE(2923); + case 40: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2885); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2892); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(74) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -38109,53 +38505,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 36: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2849); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2856); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == 181) ADVANCE(2923); + case 41: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2886); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2893); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(74) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -38163,54 +38559,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 37: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(2801); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2849); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2856); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == 181) ADVANCE(2923); + case 42: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(2833); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2886); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2893); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(72) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -38218,53 +38614,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 38: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(2801); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2849); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2856); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == 181) ADVANCE(2923); + case 43: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(2833); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2886); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2893); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(74) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -38272,526 +38668,526 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 39: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2848); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == '_') ADVANCE(2869); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2855); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(2923); + case 44: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2885); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == '_') ADVANCE(2905); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2892); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(76) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2822); END_STATE(); - case 40: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2848); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2855); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(2923); + case 45: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2885); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2892); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(76) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2822); END_STATE(); - case 41: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2849); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2856); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(2923); + case 46: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2886); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2893); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(76) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2822); END_STATE(); - case 42: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2848); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == '_') ADVANCE(2869); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2855); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(2923); + case 47: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2885); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == '_') ADVANCE(2905); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2892); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(78) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2822); END_STATE(); - case 43: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2848); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2855); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(2923); + case 48: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2885); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2892); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(78) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2822); END_STATE(); - case 44: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2849); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2856); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(2923); + case 49: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2886); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2893); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(78) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2822); END_STATE(); - case 45: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(2801); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2849); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2856); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(2923); + case 50: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(2833); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2886); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2893); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(76) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2822); END_STATE(); - case 46: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(2801); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(2849); - if (lookahead == 'G') ADVANCE(2850); - if (lookahead == 'K') ADVANCE(2851); - if (lookahead == 'M') ADVANCE(2852); - if (lookahead == 'P') ADVANCE(2853); - if (lookahead == 'T') ADVANCE(2854); - if (lookahead == 'a') ADVANCE(2904); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(2882); - if (lookahead == 'e') ADVANCE(2856); - if (lookahead == 'g') ADVANCE(2857); - if (lookahead == 'h') ADVANCE(2921); - if (lookahead == 'i') ADVANCE(2905); - if (lookahead == 'k') ADVANCE(2858); - if (lookahead == 'm') ADVANCE(2859); - if (lookahead == 'n') ADVANCE(2917); - if (lookahead == 'o') ADVANCE(2922); - if (lookahead == 'p') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2892); - if (lookahead == 't') ADVANCE(2861); - if (lookahead == 'u') ADVANCE(2929); - if (lookahead == 'w') ADVANCE(2899); - if (lookahead == 'x') ADVANCE(2909); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(2923); + case 51: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(2833); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(2886); + if (lookahead == 'G') ADVANCE(2887); + if (lookahead == 'K') ADVANCE(2888); + if (lookahead == 'M') ADVANCE(2889); + if (lookahead == 'P') ADVANCE(2890); + if (lookahead == 'T') ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2940); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(2916); + if (lookahead == 'e') ADVANCE(2893); + if (lookahead == 'g') ADVANCE(2894); + if (lookahead == 'h') ADVANCE(2957); + if (lookahead == 'i') ADVANCE(2941); + if (lookahead == 'k') ADVANCE(2895); + if (lookahead == 'm') ADVANCE(2896); + if (lookahead == 'n') ADVANCE(2953); + if (lookahead == 'o') ADVANCE(2958); + if (lookahead == 'p') ADVANCE(2897); + if (lookahead == 's') ADVANCE(2926); + if (lookahead == 't') ADVANCE(2898); + if (lookahead == 'u') ADVANCE(2966); + if (lookahead == 'w') ADVANCE(2936); + if (lookahead == 'x') ADVANCE(2945); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2959); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(78) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2936); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(2971); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2822); END_STATE(); - case 47: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == '_') ADVANCE(2867); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 52: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == '_') ADVANCE(2903); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2869); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(83) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - lookahead != '`' && - lookahead != '{') ADVANCE(2790); + lookahead != '`') ADVANCE(2822); END_STATE(); - case 48: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 53: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2869); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(83) + lookahead == ' ') SKIP(84) if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -38799,50 +39195,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 49: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 54: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2872); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(83) + lookahead == ' ') SKIP(84) if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -38850,49 +39246,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 50: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 55: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2872); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(83) + lookahead == ' ') SKIP(84) if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -38900,179 +39296,179 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 51: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2803); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == '_') ADVANCE(2867); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == 181) ADVANCE(2928); + case 56: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2835); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == '_') ADVANCE(2903); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2869); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(85) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(86) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2822); END_STATE(); - case 52: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2803); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == 181) ADVANCE(2928); + case 57: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2835); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2869); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(85) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(86) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2822); END_STATE(); - case 53: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2803); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == 181) ADVANCE(2928); + case 58: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2835); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2872); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(85) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(86) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2822); END_STATE(); - case 54: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == '_') ADVANCE(2867); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(2928); + case 59: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == '_') ADVANCE(2903); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2869); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(87) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(88) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -39080,49 +39476,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 55: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(2928); + case 60: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2869); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(87) + lookahead == ' ') SKIP(88) if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -39130,49 +39526,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 56: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(2928); + case 61: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2872); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(87) + lookahead == ' ') SKIP(88) if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -39180,89 +39576,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '}') ADVANCE(2790); + lookahead != '}') ADVANCE(2822); END_STATE(); - case 57: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2803); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == 181) ADVANCE(2928); + case 62: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2835); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2872); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(85) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(86) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2822); END_STATE(); - case 58: - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(2928); + case 63: + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2872); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(87) + lookahead == ' ') SKIP(88) if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -39270,1733 +39666,1582 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '}') ADVANCE(2790); - END_STATE(); - case 59: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(247); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(255); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(287); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(387); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(267); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(62) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - END_STATE(); - case 60: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(243); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(247); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1274); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(254); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(286); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(262); - if (lookahead == 'n') ADVANCE(387); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(267); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); - END_STATE(); - case 61: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(243); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(258); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(286); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(262); - if (lookahead == 'n') ADVANCE(387); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(267); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - END_STATE(); - case 62: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(259); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(287); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(387); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(267); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(62) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - END_STATE(); - case 63: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(259); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(287); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(387); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(267); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead != '}') ADVANCE(2822); END_STATE(); case 64: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(348); - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'i') ADVANCE(287); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(388); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 's') ADVANCE(415); - if (lookahead == 't') ADVANCE(399); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1499); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(285); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(289); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == '_') ADVANCE(1543); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(371); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(302); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(439); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(80) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 65: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1466); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(243); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(247); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == '_') ADVANCE(1510); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(255); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(336); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(386); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(285); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(913); + if (lookahead == 'G') ADVANCE(915); + if (lookahead == 'K') ADVANCE(916); + if (lookahead == 'M') ADVANCE(917); + if (lookahead == 'P') ADVANCE(918); + if (lookahead == 'T') ADVANCE(919); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(947); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(949); + if (lookahead == 'e') ADVANCE(920); + if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'h') ADVANCE(991); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'k') ADVANCE(923); + if (lookahead == 'm') ADVANCE(924); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 'p') ADVANCE(925); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 't') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1002); + if (lookahead == 'w') ADVANCE(970); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(80) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(69) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 66: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(936); - if (lookahead == 'e') ADVANCE(949); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'm') ADVANCE(952); - if (lookahead == 'n') ADVANCE(957); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 's') ADVANCE(975); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(968); + if (lookahead == 'e') ADVANCE(981); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'm') ADVANCE(984); + if (lookahead == 'n') ADVANCE(989); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 's') ADVANCE(1007); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(70) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(994); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 67: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(882); - if (lookahead == 'G') ADVANCE(883); - if (lookahead == 'K') ADVANCE(884); - if (lookahead == 'M') ADVANCE(885); - if (lookahead == 'P') ADVANCE(886); - if (lookahead == 'T') ADVANCE(887); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(917); - if (lookahead == 'e') ADVANCE(889); - if (lookahead == 'g') ADVANCE(890); - if (lookahead == 'h') ADVANCE(959); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'k') ADVANCE(891); - if (lookahead == 'm') ADVANCE(892); - if (lookahead == 'n') ADVANCE(956); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 'p') ADVANCE(893); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(894); - if (lookahead == 'u') ADVANCE(970); - if (lookahead == 'w') ADVANCE(938); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(969); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(914); + if (lookahead == 'G') ADVANCE(915); + if (lookahead == 'K') ADVANCE(916); + if (lookahead == 'M') ADVANCE(917); + if (lookahead == 'P') ADVANCE(918); + if (lookahead == 'T') ADVANCE(919); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(949); + if (lookahead == 'e') ADVANCE(921); + if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'h') ADVANCE(991); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'k') ADVANCE(923); + if (lookahead == 'm') ADVANCE(924); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 'p') ADVANCE(925); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 't') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1002); + if (lookahead == 'w') ADVANCE(970); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(71) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 68: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(881); - if (lookahead == 'G') ADVANCE(883); - if (lookahead == 'K') ADVANCE(884); - if (lookahead == 'M') ADVANCE(885); - if (lookahead == 'P') ADVANCE(886); - if (lookahead == 'T') ADVANCE(887); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(915); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(917); - if (lookahead == 'e') ADVANCE(888); - if (lookahead == 'g') ADVANCE(890); - if (lookahead == 'h') ADVANCE(959); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'k') ADVANCE(891); - if (lookahead == 'm') ADVANCE(892); - if (lookahead == 'n') ADVANCE(956); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 'p') ADVANCE(893); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(894); - if (lookahead == 'u') ADVANCE(970); - if (lookahead == 'w') ADVANCE(938); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(969); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(913); + if (lookahead == 'G') ADVANCE(915); + if (lookahead == 'K') ADVANCE(916); + if (lookahead == 'M') ADVANCE(917); + if (lookahead == 'P') ADVANCE(918); + if (lookahead == 'T') ADVANCE(919); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(949); + if (lookahead == 'e') ADVANCE(920); + if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'h') ADVANCE(991); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'k') ADVANCE(923); + if (lookahead == 'm') ADVANCE(924); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 'p') ADVANCE(925); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 't') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1002); + if (lookahead == 'w') ADVANCE(970); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(71) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token6_character_set_1(lookahead)) ADVANCE(994); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 69: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(881); - if (lookahead == 'G') ADVANCE(883); - if (lookahead == 'K') ADVANCE(884); - if (lookahead == 'M') ADVANCE(885); - if (lookahead == 'P') ADVANCE(886); - if (lookahead == 'T') ADVANCE(887); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(917); - if (lookahead == 'e') ADVANCE(888); - if (lookahead == 'g') ADVANCE(890); - if (lookahead == 'h') ADVANCE(959); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'k') ADVANCE(891); - if (lookahead == 'm') ADVANCE(892); - if (lookahead == 'n') ADVANCE(956); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 'p') ADVANCE(893); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(894); - if (lookahead == 'u') ADVANCE(970); - if (lookahead == 'w') ADVANCE(938); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(969); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(285); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(914); + if (lookahead == 'G') ADVANCE(915); + if (lookahead == 'K') ADVANCE(916); + if (lookahead == 'M') ADVANCE(917); + if (lookahead == 'P') ADVANCE(918); + if (lookahead == 'T') ADVANCE(919); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(949); + if (lookahead == 'e') ADVANCE(921); + if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'h') ADVANCE(991); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'k') ADVANCE(923); + if (lookahead == 'm') ADVANCE(924); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 'p') ADVANCE(925); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 't') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1002); + if (lookahead == 'w') ADVANCE(970); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(71) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(69) + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 70: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(936); - if (lookahead == 'e') ADVANCE(949); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'm') ADVANCE(952); - if (lookahead == 'n') ADVANCE(957); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 's') ADVANCE(975); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(968); + if (lookahead == 'e') ADVANCE(981); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'm') ADVANCE(984); + if (lookahead == 'n') ADVANCE(989); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 's') ADVANCE(1007); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(70) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(994); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 71: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(882); - if (lookahead == 'G') ADVANCE(883); - if (lookahead == 'K') ADVANCE(884); - if (lookahead == 'M') ADVANCE(885); - if (lookahead == 'P') ADVANCE(886); - if (lookahead == 'T') ADVANCE(887); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(917); - if (lookahead == 'e') ADVANCE(889); - if (lookahead == 'g') ADVANCE(890); - if (lookahead == 'h') ADVANCE(959); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'k') ADVANCE(891); - if (lookahead == 'm') ADVANCE(892); - if (lookahead == 'n') ADVANCE(956); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 'p') ADVANCE(893); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(894); - if (lookahead == 'u') ADVANCE(970); - if (lookahead == 'w') ADVANCE(938); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(969); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(914); + if (lookahead == 'G') ADVANCE(915); + if (lookahead == 'K') ADVANCE(916); + if (lookahead == 'M') ADVANCE(917); + if (lookahead == 'P') ADVANCE(918); + if (lookahead == 'T') ADVANCE(919); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(949); + if (lookahead == 'e') ADVANCE(921); + if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'h') ADVANCE(991); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'k') ADVANCE(923); + if (lookahead == 'm') ADVANCE(924); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 'p') ADVANCE(925); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 't') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1002); + if (lookahead == 'w') ADVANCE(970); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(71) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 72: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(882); - if (lookahead == 'G') ADVANCE(883); - if (lookahead == 'K') ADVANCE(884); - if (lookahead == 'M') ADVANCE(885); - if (lookahead == 'P') ADVANCE(886); - if (lookahead == 'T') ADVANCE(887); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(917); - if (lookahead == 'e') ADVANCE(889); - if (lookahead == 'g') ADVANCE(890); - if (lookahead == 'h') ADVANCE(959); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'k') ADVANCE(891); - if (lookahead == 'm') ADVANCE(892); - if (lookahead == 'n') ADVANCE(956); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 'p') ADVANCE(893); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(894); - if (lookahead == 'u') ADVANCE(970); - if (lookahead == 'w') ADVANCE(938); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == 181) ADVANCE(969); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(914); + if (lookahead == 'G') ADVANCE(915); + if (lookahead == 'K') ADVANCE(916); + if (lookahead == 'M') ADVANCE(917); + if (lookahead == 'P') ADVANCE(918); + if (lookahead == 'T') ADVANCE(919); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(949); + if (lookahead == 'e') ADVANCE(921); + if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'h') ADVANCE(991); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'k') ADVANCE(923); + if (lookahead == 'm') ADVANCE(924); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 'p') ADVANCE(925); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 't') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1002); + if (lookahead == 'w') ADVANCE(970); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(72) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 73: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(936); - if (lookahead == 'e') ADVANCE(949); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'm') ADVANCE(952); - if (lookahead == 'n') ADVANCE(957); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 's') ADVANCE(975); - if (lookahead == 'x') ADVANCE(951); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(968); + if (lookahead == 'e') ADVANCE(981); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'm') ADVANCE(984); + if (lookahead == 'n') ADVANCE(989); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 's') ADVANCE(1007); + if (lookahead == 'x') ADVANCE(983); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(73) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(994); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 74: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(882); - if (lookahead == 'G') ADVANCE(883); - if (lookahead == 'K') ADVANCE(884); - if (lookahead == 'M') ADVANCE(885); - if (lookahead == 'P') ADVANCE(886); - if (lookahead == 'T') ADVANCE(887); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(917); - if (lookahead == 'e') ADVANCE(889); - if (lookahead == 'g') ADVANCE(890); - if (lookahead == 'h') ADVANCE(959); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'k') ADVANCE(891); - if (lookahead == 'm') ADVANCE(892); - if (lookahead == 'n') ADVANCE(956); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 'p') ADVANCE(893); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(894); - if (lookahead == 'u') ADVANCE(970); - if (lookahead == 'w') ADVANCE(938); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == 181) ADVANCE(969); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(914); + if (lookahead == 'G') ADVANCE(915); + if (lookahead == 'K') ADVANCE(916); + if (lookahead == 'M') ADVANCE(917); + if (lookahead == 'P') ADVANCE(918); + if (lookahead == 'T') ADVANCE(919); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(949); + if (lookahead == 'e') ADVANCE(921); + if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'h') ADVANCE(991); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'k') ADVANCE(923); + if (lookahead == 'm') ADVANCE(924); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 'p') ADVANCE(925); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 't') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1002); + if (lookahead == 'w') ADVANCE(970); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(74) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 75: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(936); - if (lookahead == 'e') ADVANCE(949); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'm') ADVANCE(952); - if (lookahead == 'n') ADVANCE(957); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 's') ADVANCE(975); - if (lookahead == 'x') ADVANCE(951); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(968); + if (lookahead == 'e') ADVANCE(981); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'm') ADVANCE(984); + if (lookahead == 'n') ADVANCE(989); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 's') ADVANCE(1007); + if (lookahead == 'x') ADVANCE(983); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(75) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(994); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 76: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(882); - if (lookahead == 'G') ADVANCE(883); - if (lookahead == 'K') ADVANCE(884); - if (lookahead == 'M') ADVANCE(885); - if (lookahead == 'P') ADVANCE(886); - if (lookahead == 'T') ADVANCE(887); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(917); - if (lookahead == 'e') ADVANCE(889); - if (lookahead == 'g') ADVANCE(890); - if (lookahead == 'h') ADVANCE(959); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'k') ADVANCE(891); - if (lookahead == 'm') ADVANCE(892); - if (lookahead == 'n') ADVANCE(956); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 'p') ADVANCE(893); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(894); - if (lookahead == 'u') ADVANCE(970); - if (lookahead == 'w') ADVANCE(938); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(969); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(914); + if (lookahead == 'G') ADVANCE(915); + if (lookahead == 'K') ADVANCE(916); + if (lookahead == 'M') ADVANCE(917); + if (lookahead == 'P') ADVANCE(918); + if (lookahead == 'T') ADVANCE(919); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(949); + if (lookahead == 'e') ADVANCE(921); + if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'h') ADVANCE(991); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'k') ADVANCE(923); + if (lookahead == 'm') ADVANCE(924); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 'p') ADVANCE(925); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 't') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1002); + if (lookahead == 'w') ADVANCE(970); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(76) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 77: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(936); - if (lookahead == 'e') ADVANCE(949); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'm') ADVANCE(952); - if (lookahead == 'n') ADVANCE(957); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 's') ADVANCE(975); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(968); + if (lookahead == 'e') ADVANCE(981); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'm') ADVANCE(984); + if (lookahead == 'n') ADVANCE(989); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 's') ADVANCE(1007); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(77) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(994); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 78: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'E') ADVANCE(882); - if (lookahead == 'G') ADVANCE(883); - if (lookahead == 'K') ADVANCE(884); - if (lookahead == 'M') ADVANCE(885); - if (lookahead == 'P') ADVANCE(886); - if (lookahead == 'T') ADVANCE(887); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(1604); - if (lookahead == 'd') ADVANCE(917); - if (lookahead == 'e') ADVANCE(889); - if (lookahead == 'g') ADVANCE(890); - if (lookahead == 'h') ADVANCE(959); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'k') ADVANCE(891); - if (lookahead == 'm') ADVANCE(892); - if (lookahead == 'n') ADVANCE(956); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 'p') ADVANCE(893); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(894); - if (lookahead == 'u') ADVANCE(970); - if (lookahead == 'w') ADVANCE(938); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 181) ADVANCE(969); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == 'E') ADVANCE(914); + if (lookahead == 'G') ADVANCE(915); + if (lookahead == 'K') ADVANCE(916); + if (lookahead == 'M') ADVANCE(917); + if (lookahead == 'P') ADVANCE(918); + if (lookahead == 'T') ADVANCE(919); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(1636); + if (lookahead == 'd') ADVANCE(949); + if (lookahead == 'e') ADVANCE(921); + if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'h') ADVANCE(991); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'k') ADVANCE(923); + if (lookahead == 'm') ADVANCE(924); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 'p') ADVANCE(925); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 't') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1002); + if (lookahead == 'w') ADVANCE(970); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(78) - if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_unquoted_token6_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 79: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'b') ADVANCE(936); - if (lookahead == 'e') ADVANCE(949); - if (lookahead == 'i') ADVANCE(948); - if (lookahead == 'm') ADVANCE(952); - if (lookahead == 'n') ADVANCE(957); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 's') ADVANCE(975); - if (lookahead == 'x') ADVANCE(951); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(979); + if (lookahead == 'b') ADVANCE(968); + if (lookahead == 'e') ADVANCE(981); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == 'm') ADVANCE(984); + if (lookahead == 'n') ADVANCE(989); + if (lookahead == 'o') ADVANCE(992); + if (lookahead == 's') ADVANCE(1007); + if (lookahead == 'x') ADVANCE(983); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(79) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(994); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 80: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(243); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(259); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(336); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(386); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(285); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(290); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(371); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(302); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(439); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(80) END_STATE(); case 81: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(601); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(348); - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'i') ADVANCE(336); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(385); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 's') ADVANCE(415); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(633); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(385); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'h') ADVANCE(386); + if (lookahead == 'i') ADVANCE(371); + if (lookahead == 'l') ADVANCE(388); + if (lookahead == 'm') ADVANCE(414); + if (lookahead == 'n') ADVANCE(365); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 's') ADVANCE(457); + if (lookahead == 'u') ADVANCE(444); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(82) END_STATE(); case 82: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(601); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(348); - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'i') ADVANCE(336); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(385); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 's') ADVANCE(415); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(633); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(385); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'h') ADVANCE(386); + if (lookahead == 'i') ADVANCE(371); + if (lookahead == 'l') ADVANCE(388); + if (lookahead == 'm') ADVANCE(414); + if (lookahead == 'n') ADVANCE(365); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 's') ADVANCE(457); + if (lookahead == 'u') ADVANCE(444); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(82) END_STATE(); case 83: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(259); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(386); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(290); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(299); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(303); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(439); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(83) END_STATE(); case 84: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(348); - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(385); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 's') ADVANCE(415); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(290); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(299); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(303); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(439); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(84) END_STATE(); case 85: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(243); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(259); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(386); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == 181) ADVANCE(406); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(385); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'm') ADVANCE(414); + if (lookahead == 'n') ADVANCE(415); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 's') ADVANCE(457); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(85) END_STATE(); case 86: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(243); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(348); - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(385); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 's') ADVANCE(415); - if (lookahead == 'x') ADVANCE(375); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(285); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(290); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(299); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(303); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == 181) ADVANCE(439); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(86) END_STATE(); case 87: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(259); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(386); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(406); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(285); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(385); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'm') ADVANCE(414); + if (lookahead == 'n') ADVANCE(415); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 's') ADVANCE(457); + if (lookahead == 'x') ADVANCE(418); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(87) END_STATE(); case 88: - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(348); - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(385); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 's') ADVANCE(415); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(290); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(299); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(303); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(439); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(88) END_STATE(); case 89: - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2621); - if (lookahead == ':') ADVANCE(2607); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2692); - if (lookahead == 'N') ADVANCE(2690); - if (lookahead == '_') ADVANCE(2616); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2645); - if (lookahead == 'b') ADVANCE(2644); - if (lookahead == 'c') ADVANCE(2631); - if (lookahead == 'd') ADVANCE(2632); - if (lookahead == 'e') ADVANCE(2648); - if (lookahead == 'f') ADVANCE(2666); - if (lookahead == 'h') ADVANCE(2640); - if (lookahead == 'i') ADVANCE(2613); - if (lookahead == 'l') ADVANCE(2633); - if (lookahead == 'm') ADVANCE(2625); - if (lookahead == 'n') ADVANCE(2636); - if (lookahead == 'o') ADVANCE(2675); - if (lookahead == 'r') ADVANCE(2635); - if (lookahead == 's') ADVANCE(2658); - if (lookahead == 't') ADVANCE(2682); - if (lookahead == 'u') ADVANCE(2683); - if (lookahead == 'w') ADVANCE(2639); - if (lookahead == 'x') ADVANCE(2669); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(385); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'm') ADVANCE(414); + if (lookahead == 'n') ADVANCE(415); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 's') ADVANCE(457); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2624); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2696); - if (lookahead != 0 && - (lookahead < ')' || ';' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '{') ADVANCE(2607); + lookahead == ' ') SKIP(89) END_STATE(); case 90: - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2619); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2694); - if (lookahead == 'N') ADVANCE(2691); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2650); - if (lookahead == 'b') ADVANCE(2642); - if (lookahead == 'e') ADVANCE(2654); - if (lookahead == 'f') ADVANCE(2627); - if (lookahead == 'i') ADVANCE(2615); - if (lookahead == 'm') ADVANCE(2664); - if (lookahead == 'n') ADVANCE(2672); - if (lookahead == 'o') ADVANCE(2676); - if (lookahead == 's') ADVANCE(2685); - if (lookahead == 't') ADVANCE(2678); - if (lookahead == 'x') ADVANCE(2660); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(1962); + if (lookahead == 'G') ADVANCE(1964); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'K') ADVANCE(1965); + if (lookahead == 'M') ADVANCE(1966); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == 'P') ADVANCE(1967); + if (lookahead == 'T') ADVANCE(1968); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1307); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2001); + if (lookahead == 'e') ADVANCE(1969); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'g') ADVANCE(1971); + if (lookahead == 'h') ADVANCE(2046); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'k') ADVANCE(1972); + if (lookahead == 'm') ADVANCE(1973); + if (lookahead == 'n') ADVANCE(2044); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 'p') ADVANCE(1975); + if (lookahead == 's') ADVANCE(2016); + if (lookahead == 't') ADVANCE(1976); + if (lookahead == 'u') ADVANCE(2057); + if (lookahead == 'w') ADVANCE(2029); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2058); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2622); + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != ']') ADVANCE(2607); + lookahead != ']') ADVANCE(2099); END_STATE(); case 91: - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2651); - if (lookahead == 'b') ADVANCE(2643); - if (lookahead == 'e') ADVANCE(2655); - if (lookahead == 'i') ADVANCE(2652); - if (lookahead == 'm') ADVANCE(2665); - if (lookahead == 'n') ADVANCE(2673); - if (lookahead == 'o') ADVANCE(2679); - if (lookahead == 's') ADVANCE(2686); - if (lookahead == 'x') ADVANCE(2661); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(2025); + if (lookahead == 'e') ADVANCE(2036); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'm') ADVANCE(2041); + if (lookahead == 'n') ADVANCE(2045); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 's') ADVANCE(2062); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(73) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2695); + lookahead == ' ') SKIP(95) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\'' && - lookahead != '(' && + lookahead != ')' && lookahead != ';' && - lookahead != '[' && - (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2607); + lookahead != ']') ADVANCE(2099); END_STATE(); case 92: - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2651); - if (lookahead == 'b') ADVANCE(2643); - if (lookahead == 'e') ADVANCE(2655); - if (lookahead == 'i') ADVANCE(2652); - if (lookahead == 'm') ADVANCE(2665); - if (lookahead == 'n') ADVANCE(2673); - if (lookahead == 'o') ADVANCE(2679); - if (lookahead == 's') ADVANCE(2686); - if (lookahead == 'x') ADVANCE(2661); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(1963); + if (lookahead == 'G') ADVANCE(1964); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'K') ADVANCE(1965); + if (lookahead == 'M') ADVANCE(1966); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == 'P') ADVANCE(1967); + if (lookahead == 'T') ADVANCE(1968); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2001); + if (lookahead == 'e') ADVANCE(1970); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'g') ADVANCE(1971); + if (lookahead == 'h') ADVANCE(2046); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'k') ADVANCE(1972); + if (lookahead == 'm') ADVANCE(1973); + if (lookahead == 'n') ADVANCE(2044); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 'p') ADVANCE(1975); + if (lookahead == 's') ADVANCE(2016); + if (lookahead == 't') ADVANCE(1976); + if (lookahead == 'u') ADVANCE(2057); + if (lookahead == 'w') ADVANCE(2029); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2058); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(75) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2695); + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\'' && - lookahead != '(' && + lookahead != ')' && lookahead != ';' && - lookahead != '[' && - (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2607); + lookahead != ']') ADVANCE(2099); END_STATE(); case 93: - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2651); - if (lookahead == 'b') ADVANCE(2643); - if (lookahead == 'e') ADVANCE(2655); - if (lookahead == 'i') ADVANCE(2652); - if (lookahead == 'm') ADVANCE(2665); - if (lookahead == 'n') ADVANCE(2673); - if (lookahead == 'o') ADVANCE(2679); - if (lookahead == 's') ADVANCE(2686); - if (lookahead == 'x') ADVANCE(2661); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(1962); + if (lookahead == 'G') ADVANCE(1964); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'K') ADVANCE(1965); + if (lookahead == 'M') ADVANCE(1966); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == 'P') ADVANCE(1967); + if (lookahead == 'T') ADVANCE(1968); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2001); + if (lookahead == 'e') ADVANCE(1969); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'g') ADVANCE(1971); + if (lookahead == 'h') ADVANCE(2046); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'k') ADVANCE(1972); + if (lookahead == 'm') ADVANCE(1973); + if (lookahead == 'n') ADVANCE(2044); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 'p') ADVANCE(1975); + if (lookahead == 's') ADVANCE(2016); + if (lookahead == 't') ADVANCE(1976); + if (lookahead == 'u') ADVANCE(2057); + if (lookahead == 'w') ADVANCE(2029); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2058); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(77) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2695); + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && + lookahead != ')' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2607); + lookahead != ']') ADVANCE(2099); END_STATE(); case 94: - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2651); - if (lookahead == 'b') ADVANCE(2643); - if (lookahead == 'e') ADVANCE(2655); - if (lookahead == 'i') ADVANCE(2652); - if (lookahead == 'm') ADVANCE(2665); - if (lookahead == 'n') ADVANCE(2673); - if (lookahead == 'o') ADVANCE(2679); - if (lookahead == 's') ADVANCE(2686); - if (lookahead == 'x') ADVANCE(2661); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(2025); + if (lookahead == 'e') ADVANCE(2036); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'm') ADVANCE(2041); + if (lookahead == 'n') ADVANCE(2045); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 's') ADVANCE(2062); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(79) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2695); + lookahead == ' ') SKIP(97) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && + lookahead != ')' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2607); + lookahead != ']') ADVANCE(2099); END_STATE(); case 95: - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2650); - if (lookahead == 'b') ADVANCE(2642); - if (lookahead == 'e') ADVANCE(2654); - if (lookahead == 'i') ADVANCE(2653); - if (lookahead == 'm') ADVANCE(2664); - if (lookahead == 'n') ADVANCE(2671); - if (lookahead == 'o') ADVANCE(2676); - if (lookahead == 's') ADVANCE(2685); - if (lookahead == 'x') ADVANCE(2660); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(2025); + if (lookahead == 'e') ADVANCE(2036); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'm') ADVANCE(2041); + if (lookahead == 'n') ADVANCE(2045); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 's') ADVANCE(2062); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(84) + lookahead == ' ') SKIP(95) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && + lookahead != ')' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '`' && - lookahead != '{') ADVANCE(2607); + lookahead != ']') ADVANCE(2099); END_STATE(); case 96: - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2650); - if (lookahead == 'b') ADVANCE(2642); - if (lookahead == 'e') ADVANCE(2654); - if (lookahead == 'i') ADVANCE(2653); - if (lookahead == 'm') ADVANCE(2664); - if (lookahead == 'n') ADVANCE(2671); - if (lookahead == 'o') ADVANCE(2676); - if (lookahead == 's') ADVANCE(2685); - if (lookahead == 'x') ADVANCE(2660); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(1963); + if (lookahead == 'G') ADVANCE(1964); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'K') ADVANCE(1965); + if (lookahead == 'M') ADVANCE(1966); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == 'P') ADVANCE(1967); + if (lookahead == 'T') ADVANCE(1968); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2001); + if (lookahead == 'e') ADVANCE(1970); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'g') ADVANCE(1971); + if (lookahead == 'h') ADVANCE(2046); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'k') ADVANCE(1972); + if (lookahead == 'm') ADVANCE(1973); + if (lookahead == 'n') ADVANCE(2044); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 'p') ADVANCE(1975); + if (lookahead == 's') ADVANCE(2016); + if (lookahead == 't') ADVANCE(1976); + if (lookahead == 'u') ADVANCE(2057); + if (lookahead == 'w') ADVANCE(2029); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2058); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(88) + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && + lookahead != ')' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '`' && - lookahead != '}') ADVANCE(2607); + lookahead != ']') ADVANCE(2099); END_STATE(); case 97: - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1468); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2650); - if (lookahead == 'b') ADVANCE(2642); - if (lookahead == 'e') ADVANCE(2654); - if (lookahead == 'i') ADVANCE(2653); - if (lookahead == 'm') ADVANCE(2664); - if (lookahead == 'n') ADVANCE(2671); - if (lookahead == 'o') ADVANCE(2676); - if (lookahead == 's') ADVANCE(2685); - if (lookahead == 'x') ADVANCE(2660); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(2025); + if (lookahead == 'e') ADVANCE(2036); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'm') ADVANCE(2041); + if (lookahead == 'n') ADVANCE(2045); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 's') ADVANCE(2062); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(86) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2607); + lookahead == ' ') SKIP(97) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != ']') ADVANCE(2099); END_STATE(); case 98: - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2714); - if (lookahead == ':') ADVANCE(2697); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2785); - if (lookahead == 'N') ADVANCE(2783); - if (lookahead == '_') ADVANCE(2709); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2738); - if (lookahead == 'b') ADVANCE(2737); - if (lookahead == 'c') ADVANCE(2724); - if (lookahead == 'd') ADVANCE(2725); - if (lookahead == 'e') ADVANCE(2741); - if (lookahead == 'f') ADVANCE(2759); - if (lookahead == 'h') ADVANCE(2733); - if (lookahead == 'i') ADVANCE(2706); - if (lookahead == 'l') ADVANCE(2726); - if (lookahead == 'm') ADVANCE(2718); - if (lookahead == 'n') ADVANCE(2729); - if (lookahead == 'o') ADVANCE(2768); - if (lookahead == 'r') ADVANCE(2728); - if (lookahead == 's') ADVANCE(2751); - if (lookahead == 't') ADVANCE(2775); - if (lookahead == 'u') ADVANCE(2776); - if (lookahead == 'w') ADVANCE(2732); - if (lookahead == 'x') ADVANCE(2762); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2658); + if (lookahead == ':') ADVANCE(2644); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2727); + if (lookahead == 'N') ADVANCE(2726); + if (lookahead == '_') ADVANCE(2652); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2682); + if (lookahead == 'b') ADVANCE(2681); + if (lookahead == 'c') ADVANCE(2667); + if (lookahead == 'd') ADVANCE(2668); + if (lookahead == 'e') ADVANCE(2685); + if (lookahead == 'f') ADVANCE(2702); + if (lookahead == 'h') ADVANCE(2677); + if (lookahead == 'i') ADVANCE(2650); + if (lookahead == 'l') ADVANCE(2669); + if (lookahead == 'm') ADVANCE(2662); + if (lookahead == 'n') ADVANCE(2672); + if (lookahead == 'o') ADVANCE(2712); + if (lookahead == 'r') ADVANCE(2671); + if (lookahead == 's') ADVANCE(2696); + if (lookahead == 't') ADVANCE(2718); + if (lookahead == 'u') ADVANCE(2719); + if (lookahead == 'w') ADVANCE(2676); + if (lookahead == 'x') ADVANCE(2708); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2717); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2789); + lookahead == ' ') SKIP(27) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2661); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2730); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(2697); + lookahead != '{') ADVANCE(2644); END_STATE(); case 99: - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2712); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2787); - if (lookahead == 'N') ADVANCE(2784); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2743); - if (lookahead == 'b') ADVANCE(2735); - if (lookahead == 'e') ADVANCE(2747); - if (lookahead == 'f') ADVANCE(2720); - if (lookahead == 'i') ADVANCE(2708); - if (lookahead == 'm') ADVANCE(2757); - if (lookahead == 'n') ADVANCE(2765); - if (lookahead == 'o') ADVANCE(2769); - if (lookahead == 's') ADVANCE(2778); - if (lookahead == 't') ADVANCE(2771); - if (lookahead == 'x') ADVANCE(2753); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2657); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2728); + if (lookahead == 'N') ADVANCE(2725); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2686); + if (lookahead == 'b') ADVANCE(2678); + if (lookahead == 'e') ADVANCE(2690); + if (lookahead == 'f') ADVANCE(2663); + if (lookahead == 'i') ADVANCE(2651); + if (lookahead == 'm') ADVANCE(2700); + if (lookahead == 'n') ADVANCE(2709); + if (lookahead == 'o') ADVANCE(2713); + if (lookahead == 's') ADVANCE(2720); + if (lookahead == 't') ADVANCE(2714); + if (lookahead == 'x') ADVANCE(2699); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2715); + lookahead == ' ') SKIP(97) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2660); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != ']') ADVANCE(2697); + lookahead != ']') ADVANCE(2644); END_STATE(); case 100: - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(2702); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2744); - if (lookahead == 'b') ADVANCE(2736); - if (lookahead == 'e') ADVANCE(2748); - if (lookahead == 'i') ADVANCE(2745); - if (lookahead == 'm') ADVANCE(2758); - if (lookahead == 'n') ADVANCE(2766); - if (lookahead == 'o') ADVANCE(2772); - if (lookahead == 's') ADVANCE(2779); - if (lookahead == 'x') ADVANCE(2754); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2679); + if (lookahead == 'e') ADVANCE(2691); + if (lookahead == 'i') ADVANCE(2688); + if (lookahead == 'm') ADVANCE(2701); + if (lookahead == 'n') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2715); + if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'x') ADVANCE(2698); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(73) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2788); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2729); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -41004,37 +41249,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2697); + lookahead != '}') ADVANCE(2644); END_STATE(); case 101: - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(2702); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2744); - if (lookahead == 'b') ADVANCE(2736); - if (lookahead == 'e') ADVANCE(2748); - if (lookahead == 'i') ADVANCE(2745); - if (lookahead == 'm') ADVANCE(2758); - if (lookahead == 'n') ADVANCE(2766); - if (lookahead == 'o') ADVANCE(2772); - if (lookahead == 's') ADVANCE(2779); - if (lookahead == 'x') ADVANCE(2754); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2679); + if (lookahead == 'e') ADVANCE(2691); + if (lookahead == 'i') ADVANCE(2688); + if (lookahead == 'm') ADVANCE(2701); + if (lookahead == 'n') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2715); + if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'x') ADVANCE(2698); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(75) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2788); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2729); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -41042,248 +41287,251 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2697); + lookahead != '}') ADVANCE(2644); END_STATE(); case 102: - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(2702); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2744); - if (lookahead == 'b') ADVANCE(2736); - if (lookahead == 'e') ADVANCE(2748); - if (lookahead == 'i') ADVANCE(2745); - if (lookahead == 'm') ADVANCE(2758); - if (lookahead == 'n') ADVANCE(2766); - if (lookahead == 'o') ADVANCE(2772); - if (lookahead == 's') ADVANCE(2779); - if (lookahead == 'x') ADVANCE(2754); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2679); + if (lookahead == 'e') ADVANCE(2691); + if (lookahead == 'i') ADVANCE(2688); + if (lookahead == 'm') ADVANCE(2701); + if (lookahead == 'n') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2715); + if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'x') ADVANCE(2698); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(77) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2788); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2729); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2697); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2644); END_STATE(); case 103: - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(2702); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2744); - if (lookahead == 'b') ADVANCE(2736); - if (lookahead == 'e') ADVANCE(2748); - if (lookahead == 'i') ADVANCE(2745); - if (lookahead == 'm') ADVANCE(2758); - if (lookahead == 'n') ADVANCE(2766); - if (lookahead == 'o') ADVANCE(2772); - if (lookahead == 's') ADVANCE(2779); - if (lookahead == 'x') ADVANCE(2754); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2679); + if (lookahead == 'e') ADVANCE(2691); + if (lookahead == 'i') ADVANCE(2688); + if (lookahead == 'm') ADVANCE(2701); + if (lookahead == 'n') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2715); + if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'x') ADVANCE(2698); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(79) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2788); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2729); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2697); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2644); END_STATE(); case 104: - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2743); - if (lookahead == 'b') ADVANCE(2735); - if (lookahead == 'e') ADVANCE(2747); - if (lookahead == 'i') ADVANCE(2746); - if (lookahead == 'm') ADVANCE(2757); - if (lookahead == 'n') ADVANCE(2764); - if (lookahead == 'o') ADVANCE(2769); - if (lookahead == 's') ADVANCE(2778); - if (lookahead == 'x') ADVANCE(2753); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2692); + if (lookahead == 'b') ADVANCE(2680); + if (lookahead == 'e') ADVANCE(2693); + if (lookahead == 'i') ADVANCE(2689); + if (lookahead == 'm') ADVANCE(2704); + if (lookahead == 'n') ADVANCE(2705); + if (lookahead == 'o') ADVANCE(2713); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'x') ADVANCE(2706); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(84) + lookahead == ' ') SKIP(85) if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && + lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2697); + lookahead != '{') ADVANCE(2644); END_STATE(); case 105: - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2704); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2743); - if (lookahead == 'b') ADVANCE(2735); - if (lookahead == 'e') ADVANCE(2747); - if (lookahead == 'i') ADVANCE(2746); - if (lookahead == 'm') ADVANCE(2757); - if (lookahead == 'n') ADVANCE(2764); - if (lookahead == 'o') ADVANCE(2769); - if (lookahead == 's') ADVANCE(2778); - if (lookahead == 'x') ADVANCE(2753); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(86) - if (!aux_sym_unquoted_token5_character_set_1(lookahead)) ADVANCE(2697); - END_STATE(); - case 106: - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2743); - if (lookahead == 'b') ADVANCE(2735); - if (lookahead == 'e') ADVANCE(2747); - if (lookahead == 'i') ADVANCE(2746); - if (lookahead == 'm') ADVANCE(2757); - if (lookahead == 'n') ADVANCE(2764); - if (lookahead == 'o') ADVANCE(2769); - if (lookahead == 's') ADVANCE(2778); - if (lookahead == 'x') ADVANCE(2753); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2692); + if (lookahead == 'b') ADVANCE(2680); + if (lookahead == 'e') ADVANCE(2693); + if (lookahead == 'i') ADVANCE(2689); + if (lookahead == 'm') ADVANCE(2704); + if (lookahead == 'n') ADVANCE(2705); + if (lookahead == 'o') ADVANCE(2713); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'x') ADVANCE(2706); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(88) + lookahead == ' ') SKIP(89) if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && + lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '}') ADVANCE(2697); + lookahead != '}') ADVANCE(2644); + END_STATE(); + case 106: + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1501); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2692); + if (lookahead == 'b') ADVANCE(2680); + if (lookahead == 'e') ADVANCE(2693); + if (lookahead == 'i') ADVANCE(2689); + if (lookahead == 'm') ADVANCE(2704); + if (lookahead == 'n') ADVANCE(2705); + if (lookahead == 'o') ADVANCE(2713); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'x') ADVANCE(2706); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(87) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2644); END_STATE(); case 107: - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1177); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == ',') ADVANCE(1166); - if (lookahead == '-') ADVANCE(1211); - if (lookahead == '.') ADVANCE(1281); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == '0') ADVANCE(2200); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == 'I') ADVANCE(2579); - if (lookahead == 'N') ADVANCE(2569); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1276); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2365); - if (lookahead == 'b') ADVANCE(2317); - if (lookahead == 'e') ADVANCE(2375); - if (lookahead == 'f') ADVANCE(2210); - if (lookahead == 'i') ADVANCE(2190); - if (lookahead == 'm') ADVANCE(2397); - if (lookahead == 'n') ADVANCE(2394); - if (lookahead == 'o') ADVANCE(2431); - if (lookahead == 's') ADVANCE(2499); - if (lookahead == 't') ADVANCE(2432); - if (lookahead == 'x') ADVANCE(2396); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1209); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == ',') ADVANCE(1198); + if (lookahead == '-') ADVANCE(1244); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == '0') ADVANCE(2236); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == 'I') ADVANCE(2616); + if (lookahead == 'N') ADVANCE(2606); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1309); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2402); + if (lookahead == 'b') ADVANCE(2354); + if (lookahead == 'e') ADVANCE(2412); + if (lookahead == 'f') ADVANCE(2246); + if (lookahead == 'i') ADVANCE(2226); + if (lookahead == 'm') ADVANCE(2434); + if (lookahead == 'n') ADVANCE(2431); + if (lookahead == 'o') ADVANCE(2468); + if (lookahead == 's') ADVANCE(2536); + if (lookahead == 't') ADVANCE(2469); + if (lookahead == 'x') ADVANCE(2433); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2203); + lookahead == ' ') SKIP(97) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2239); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != ']') ADVANCE(2606); + lookahead != ']') ADVANCE(2643); END_STATE(); case 108: - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1177); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == ',') ADVANCE(1166); - if (lookahead == '-') ADVANCE(1206); - if (lookahead == '.') ADVANCE(2174); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == ':') ADVANCE(1162); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2367); - if (lookahead == 'b') ADVANCE(2318); - if (lookahead == 'e') ADVANCE(2376); - if (lookahead == 'i') ADVANCE(2368); - if (lookahead == 'm') ADVANCE(2399); - if (lookahead == 'n') ADVANCE(2398); - if (lookahead == 'o') ADVANCE(2437); - if (lookahead == 's') ADVANCE(2495); - if (lookahead == 'x') ADVANCE(2392); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1209); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == ',') ADVANCE(1198); + if (lookahead == '-') ADVANCE(1238); + if (lookahead == '.') ADVANCE(2209); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == ':') ADVANCE(1194); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2404); + if (lookahead == 'b') ADVANCE(2355); + if (lookahead == 'e') ADVANCE(2413); + if (lookahead == 'i') ADVANCE(2405); + if (lookahead == 'm') ADVANCE(2436); + if (lookahead == 'n') ADVANCE(2435); + if (lookahead == 'o') ADVANCE(2474); + if (lookahead == 's') ADVANCE(2532); + if (lookahead == 'x') ADVANCE(2429); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(73) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2604); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2641); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -41291,37 +41539,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2606); + lookahead != '}') ADVANCE(2643); END_STATE(); case 109: - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1177); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == ',') ADVANCE(1166); - if (lookahead == '-') ADVANCE(1206); - if (lookahead == '.') ADVANCE(2174); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(2367); - if (lookahead == 'b') ADVANCE(2318); - if (lookahead == 'e') ADVANCE(2376); - if (lookahead == 'i') ADVANCE(2368); - if (lookahead == 'm') ADVANCE(2399); - if (lookahead == 'n') ADVANCE(2398); - if (lookahead == 'o') ADVANCE(2437); - if (lookahead == 's') ADVANCE(2495); - if (lookahead == 'x') ADVANCE(2392); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1209); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == ',') ADVANCE(1198); + if (lookahead == '-') ADVANCE(1238); + if (lookahead == '.') ADVANCE(2209); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2404); + if (lookahead == 'b') ADVANCE(2355); + if (lookahead == 'e') ADVANCE(2413); + if (lookahead == 'i') ADVANCE(2405); + if (lookahead == 'm') ADVANCE(2436); + if (lookahead == 'n') ADVANCE(2435); + if (lookahead == 'o') ADVANCE(2474); + if (lookahead == 's') ADVANCE(2532); + if (lookahead == 'x') ADVANCE(2429); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(75) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2604); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2641); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -41329,106 +41577,106 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && (lookahead < '`' || '{' < lookahead) && - lookahead != '}') ADVANCE(2606); + lookahead != '}') ADVANCE(2643); END_STATE(); case 110: - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1177); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == ',') ADVANCE(1166); - if (lookahead == '-') ADVANCE(1206); - if (lookahead == '.') ADVANCE(2174); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == ':') ADVANCE(1162); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == 'a') ADVANCE(2367); - if (lookahead == 'b') ADVANCE(2318); - if (lookahead == 'e') ADVANCE(2376); - if (lookahead == 'i') ADVANCE(2368); - if (lookahead == 'm') ADVANCE(2399); - if (lookahead == 'n') ADVANCE(2398); - if (lookahead == 'o') ADVANCE(2437); - if (lookahead == 's') ADVANCE(2495); - if (lookahead == 'x') ADVANCE(2392); - if (lookahead == '|') ADVANCE(1171); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1209); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == ',') ADVANCE(1198); + if (lookahead == '-') ADVANCE(1238); + if (lookahead == '.') ADVANCE(2209); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == ':') ADVANCE(1194); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == 'a') ADVANCE(2404); + if (lookahead == 'b') ADVANCE(2355); + if (lookahead == 'e') ADVANCE(2413); + if (lookahead == 'i') ADVANCE(2405); + if (lookahead == 'm') ADVANCE(2436); + if (lookahead == 'n') ADVANCE(2435); + if (lookahead == 'o') ADVANCE(2474); + if (lookahead == 's') ADVANCE(2532); + if (lookahead == 'x') ADVANCE(2429); + if (lookahead == '|') ADVANCE(1203); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(77) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2604); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2641); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2606); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2643); END_STATE(); case 111: - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1177); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == ',') ADVANCE(1166); - if (lookahead == '-') ADVANCE(1206); - if (lookahead == '.') ADVANCE(2174); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == 'a') ADVANCE(2367); - if (lookahead == 'b') ADVANCE(2318); - if (lookahead == 'e') ADVANCE(2376); - if (lookahead == 'i') ADVANCE(2368); - if (lookahead == 'm') ADVANCE(2399); - if (lookahead == 'n') ADVANCE(2398); - if (lookahead == 'o') ADVANCE(2437); - if (lookahead == 's') ADVANCE(2495); - if (lookahead == 'x') ADVANCE(2392); - if (lookahead == '|') ADVANCE(1171); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1209); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == ',') ADVANCE(1198); + if (lookahead == '-') ADVANCE(1238); + if (lookahead == '.') ADVANCE(2209); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == 'a') ADVANCE(2404); + if (lookahead == 'b') ADVANCE(2355); + if (lookahead == 'e') ADVANCE(2413); + if (lookahead == 'i') ADVANCE(2405); + if (lookahead == 'm') ADVANCE(2436); + if (lookahead == 'n') ADVANCE(2435); + if (lookahead == 'o') ADVANCE(2474); + if (lookahead == 's') ADVANCE(2532); + if (lookahead == 'x') ADVANCE(2429); + if (lookahead == '|') ADVANCE(1203); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(79) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(2604); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2641); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || '}' < lookahead)) ADVANCE(2606); + (lookahead < '`' || '}' < lookahead)) ADVANCE(2643); END_STATE(); case 112: - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == ',') ADVANCE(1166); - if (lookahead == '-') ADVANCE(1213); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == 'a') ADVANCE(2365); - if (lookahead == 'b') ADVANCE(2317); - if (lookahead == 'e') ADVANCE(2375); - if (lookahead == 'i') ADVANCE(2369); - if (lookahead == 'm') ADVANCE(2397); - if (lookahead == 'n') ADVANCE(2395); - if (lookahead == 'o') ADVANCE(2431); - if (lookahead == 's') ADVANCE(2499); - if (lookahead == 'x') ADVANCE(2396); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == ',') ADVANCE(1198); + if (lookahead == '-') ADVANCE(1246); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == 'a') ADVANCE(2402); + if (lookahead == 'b') ADVANCE(2354); + if (lookahead == 'e') ADVANCE(2412); + if (lookahead == 'i') ADVANCE(2406); + if (lookahead == 'm') ADVANCE(2434); + if (lookahead == 'n') ADVANCE(2432); + if (lookahead == 'o') ADVANCE(2468); + if (lookahead == 's') ADVANCE(2536); + if (lookahead == 'x') ADVANCE(2433); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(84) + lookahead == ' ') SKIP(85) if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -41436,57 +41684,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2606); + lookahead != '{') ADVANCE(2643); END_STATE(); case 113: - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == '-') ADVANCE(1213); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2181); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == 'a') ADVANCE(2365); - if (lookahead == 'b') ADVANCE(2317); - if (lookahead == 'e') ADVANCE(2375); - if (lookahead == 'i') ADVANCE(2369); - if (lookahead == 'm') ADVANCE(2397); - if (lookahead == 'n') ADVANCE(2395); - if (lookahead == 'o') ADVANCE(2431); - if (lookahead == 's') ADVANCE(2499); - if (lookahead == 'x') ADVANCE(2396); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == '-') ADVANCE(1246); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2216); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == 'a') ADVANCE(2402); + if (lookahead == 'b') ADVANCE(2354); + if (lookahead == 'e') ADVANCE(2412); + if (lookahead == 'i') ADVANCE(2406); + if (lookahead == 'm') ADVANCE(2434); + if (lookahead == 'n') ADVANCE(2432); + if (lookahead == 'o') ADVANCE(2468); + if (lookahead == 's') ADVANCE(2536); + if (lookahead == 'x') ADVANCE(2433); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(86) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2606); + lookahead == ' ') SKIP(87) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2643); END_STATE(); case 114: - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == '-') ADVANCE(1213); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == 'a') ADVANCE(2365); - if (lookahead == 'b') ADVANCE(2317); - if (lookahead == 'e') ADVANCE(2375); - if (lookahead == 'i') ADVANCE(2369); - if (lookahead == 'm') ADVANCE(2397); - if (lookahead == 'n') ADVANCE(2395); - if (lookahead == 'o') ADVANCE(2431); - if (lookahead == 's') ADVANCE(2499); - if (lookahead == 'x') ADVANCE(2396); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == '-') ADVANCE(1246); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == 'a') ADVANCE(2402); + if (lookahead == 'b') ADVANCE(2354); + if (lookahead == 'e') ADVANCE(2412); + if (lookahead == 'i') ADVANCE(2406); + if (lookahead == 'm') ADVANCE(2434); + if (lookahead == 'n') ADVANCE(2432); + if (lookahead == 'o') ADVANCE(2468); + if (lookahead == 's') ADVANCE(2536); + if (lookahead == 'x') ADVANCE(2433); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(88) + lookahead == ' ') SKIP(89) if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -41494,4273 +41742,5415 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '}') ADVANCE(2606); + lookahead != '}') ADVANCE(2643); END_STATE(); case 115: - if (lookahead == '!') ADVANCE(2183); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3136); - if (lookahead == '$') ADVANCE(1177); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '*') ADVANCE(1337); - if (lookahead == '+') ADVANCE(1372); - if (lookahead == ',') ADVANCE(1166); - if (lookahead == '-') ADVANCE(1208); - if (lookahead == '.') ADVANCE(1279); - if (lookahead == '/') ADVANCE(1358); - if (lookahead == '0') ADVANCE(2195); - if (lookahead == ':') ADVANCE(2606); - if (lookahead == '<') ADVANCE(1394); - if (lookahead == '=') ADVANCE(2184); - if (lookahead == '>') ADVANCE(1197); - if (lookahead == 'I') ADVANCE(2555); - if (lookahead == 'N') ADVANCE(2547); - if (lookahead == '_') ADVANCE(2194); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2343); - if (lookahead == 'b') ADVANCE(2312); - if (lookahead == 'c') ADVANCE(2212); - if (lookahead == 'd') ADVANCE(2258); - if (lookahead == 'e') ADVANCE(2354); - if (lookahead == 'f') ADVANCE(2393); - if (lookahead == 'h') ADVANCE(2321); - if (lookahead == 'i') ADVANCE(2191); - if (lookahead == 'l') ADVANCE(2274); - if (lookahead == 'm') ADVANCE(2208); - if (lookahead == 'n') ADVANCE(2259); - if (lookahead == 'o') ADVANCE(2423); - if (lookahead == 'r') ADVANCE(2260); - if (lookahead == 's') ADVANCE(2388); - if (lookahead == 't') ADVANCE(2424); - if (lookahead == 'u') ADVANCE(2468); - if (lookahead == 'w') ADVANCE(2310); - if (lookahead == 'x') ADVANCE(2401); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2749); + if (lookahead == ':') ADVANCE(2731); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2818); + if (lookahead == 'N') ADVANCE(2817); + if (lookahead == '_') ADVANCE(2743); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2773); + if (lookahead == 'b') ADVANCE(2772); + if (lookahead == 'c') ADVANCE(2758); + if (lookahead == 'd') ADVANCE(2759); + if (lookahead == 'e') ADVANCE(2776); + if (lookahead == 'f') ADVANCE(2793); + if (lookahead == 'h') ADVANCE(2768); + if (lookahead == 'i') ADVANCE(2741); + if (lookahead == 'l') ADVANCE(2760); + if (lookahead == 'm') ADVANCE(2753); + if (lookahead == 'n') ADVANCE(2763); + if (lookahead == 'o') ADVANCE(2803); + if (lookahead == 'r') ADVANCE(2762); + if (lookahead == 's') ADVANCE(2787); + if (lookahead == 't') ADVANCE(2809); + if (lookahead == 'u') ADVANCE(2810); + if (lookahead == 'w') ADVANCE(2767); + if (lookahead == 'x') ADVANCE(2799); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2196); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2566); + lookahead == ' ') SKIP(27) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2752); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2821); if (lookahead != 0 && (lookahead < ')' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(2567); + lookahead != '{') ADVANCE(2731); END_STATE(); case 116: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1289); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'N') ADVANCE(3091); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3087); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(3088); - if (lookahead == 'n') ADVANCE(3090); - if (lookahead == 't') ADVANCE(3089); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3092); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2748); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2819); + if (lookahead == 'N') ADVANCE(2816); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2777); + if (lookahead == 'b') ADVANCE(2769); + if (lookahead == 'e') ADVANCE(2781); + if (lookahead == 'f') ADVANCE(2754); + if (lookahead == 'i') ADVANCE(2742); + if (lookahead == 'm') ADVANCE(2791); + if (lookahead == 'n') ADVANCE(2800); + if (lookahead == 'o') ADVANCE(2804); + if (lookahead == 's') ADVANCE(2811); + if (lookahead == 't') ADVANCE(2805); + if (lookahead == 'x') ADVANCE(2790); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); + lookahead == ' ') SKIP(97) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2751); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3086); + lookahead != ']') ADVANCE(2731); END_STATE(); case 117: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(3121); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(3105); - if (lookahead == 'G') ADVANCE(3107); - if (lookahead == 'K') ADVANCE(3108); - if (lookahead == 'M') ADVANCE(3109); - if (lookahead == 'N') ADVANCE(3131); - if (lookahead == 'P') ADVANCE(3110); - if (lookahead == 'T') ADVANCE(3111); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3120); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(3123); - if (lookahead == 'e') ADVANCE(3112); - if (lookahead == 'f') ADVANCE(3124); - if (lookahead == 'g') ADVANCE(3114); - if (lookahead == 'h') ADVANCE(3127); - if (lookahead == 'k') ADVANCE(3115); - if (lookahead == 'm') ADVANCE(3116); - if (lookahead == 'n') ADVANCE(3128); - if (lookahead == 'p') ADVANCE(3117); - if (lookahead == 's') ADVANCE(3125); - if (lookahead == 't') ADVANCE(3118); - if (lookahead == 'u') ADVANCE(3129); - if (lookahead == 'w') ADVANCE(3126); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(3130); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3132); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(2736); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2778); + if (lookahead == 'b') ADVANCE(2770); + if (lookahead == 'e') ADVANCE(2782); + if (lookahead == 'i') ADVANCE(2779); + if (lookahead == 'm') ADVANCE(2792); + if (lookahead == 'n') ADVANCE(2801); + if (lookahead == 'o') ADVANCE(2806); + if (lookahead == 's') ADVANCE(2812); + if (lookahead == 'x') ADVANCE(2789); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(131) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3122); + lookahead == ' ') SKIP(73) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2820); if (lookahead != 0 && - lookahead != ')' && + lookahead != '"' && + lookahead != '\'' && + lookahead != '(' && lookahead != ';' && - lookahead != '}') ADVANCE(3104); + lookahead != '[' && + (lookahead < '`' || '{' < lookahead) && + lookahead != '}') ADVANCE(2731); END_STATE(); case 118: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(3121); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(3106); - if (lookahead == 'G') ADVANCE(3107); - if (lookahead == 'K') ADVANCE(3108); - if (lookahead == 'M') ADVANCE(3109); - if (lookahead == 'N') ADVANCE(3131); - if (lookahead == 'P') ADVANCE(3110); - if (lookahead == 'T') ADVANCE(3111); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3120); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(3123); - if (lookahead == 'e') ADVANCE(3113); - if (lookahead == 'f') ADVANCE(3124); - if (lookahead == 'g') ADVANCE(3114); - if (lookahead == 'h') ADVANCE(3127); - if (lookahead == 'k') ADVANCE(3115); - if (lookahead == 'm') ADVANCE(3116); - if (lookahead == 'n') ADVANCE(3128); - if (lookahead == 'p') ADVANCE(3117); - if (lookahead == 's') ADVANCE(3125); - if (lookahead == 't') ADVANCE(3118); - if (lookahead == 'u') ADVANCE(3129); - if (lookahead == 'w') ADVANCE(3126); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(3130); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3132); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(2736); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'a') ADVANCE(2778); + if (lookahead == 'b') ADVANCE(2770); + if (lookahead == 'e') ADVANCE(2782); + if (lookahead == 'i') ADVANCE(2779); + if (lookahead == 'm') ADVANCE(2792); + if (lookahead == 'n') ADVANCE(2801); + if (lookahead == 'o') ADVANCE(2806); + if (lookahead == 's') ADVANCE(2812); + if (lookahead == 'x') ADVANCE(2789); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(131) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3122); + lookahead == ' ') SKIP(75) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2820); if (lookahead != 0 && - lookahead != ')' && + lookahead != '"' && + lookahead != '\'' && + lookahead != '(' && lookahead != ';' && - lookahead != '}') ADVANCE(3104); + lookahead != '[' && + (lookahead < '`' || '{' < lookahead) && + lookahead != '}') ADVANCE(2731); END_STATE(); case 119: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(3105); - if (lookahead == 'G') ADVANCE(3107); - if (lookahead == 'K') ADVANCE(3108); - if (lookahead == 'M') ADVANCE(3109); - if (lookahead == 'N') ADVANCE(3131); - if (lookahead == 'P') ADVANCE(3110); - if (lookahead == 'T') ADVANCE(3111); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(3123); - if (lookahead == 'e') ADVANCE(3112); - if (lookahead == 'f') ADVANCE(3124); - if (lookahead == 'g') ADVANCE(3114); - if (lookahead == 'h') ADVANCE(3127); - if (lookahead == 'k') ADVANCE(3115); - if (lookahead == 'm') ADVANCE(3116); - if (lookahead == 'n') ADVANCE(3128); - if (lookahead == 'p') ADVANCE(3117); - if (lookahead == 's') ADVANCE(3125); - if (lookahead == 't') ADVANCE(3118); - if (lookahead == 'u') ADVANCE(3129); - if (lookahead == 'w') ADVANCE(3126); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(3130); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3132); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(2736); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2778); + if (lookahead == 'b') ADVANCE(2770); + if (lookahead == 'e') ADVANCE(2782); + if (lookahead == 'i') ADVANCE(2779); + if (lookahead == 'm') ADVANCE(2792); + if (lookahead == 'n') ADVANCE(2801); + if (lookahead == 'o') ADVANCE(2806); + if (lookahead == 's') ADVANCE(2812); + if (lookahead == 'x') ADVANCE(2789); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(131) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); + lookahead == ' ') SKIP(77) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2820); if (lookahead != 0 && - lookahead != ')' && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3104); + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || '}' < lookahead)) ADVANCE(2731); END_STATE(); case 120: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2974); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2972); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(2736); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2778); + if (lookahead == 'b') ADVANCE(2770); + if (lookahead == 'e') ADVANCE(2782); + if (lookahead == 'i') ADVANCE(2779); + if (lookahead == 'm') ADVANCE(2792); + if (lookahead == 'n') ADVANCE(2801); + if (lookahead == 'o') ADVANCE(2806); + if (lookahead == 's') ADVANCE(2812); + if (lookahead == 'x') ADVANCE(2789); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); + lookahead == ' ') SKIP(79) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(2820); if (lookahead != 0 && - lookahead != ')' && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || '}' < lookahead)) ADVANCE(2731); END_STATE(); case 121: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == 'N') ADVANCE(3029); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3025); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(3026); - if (lookahead == 'n') ADVANCE(3028); - if (lookahead == 't') ADVANCE(3027); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3030); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2783); + if (lookahead == 'b') ADVANCE(2771); + if (lookahead == 'e') ADVANCE(2784); + if (lookahead == 'i') ADVANCE(2780); + if (lookahead == 'm') ADVANCE(2795); + if (lookahead == 'n') ADVANCE(2796); + if (lookahead == 'o') ADVANCE(2804); + if (lookahead == 's') ADVANCE(2813); + if (lookahead == 'x') ADVANCE(2797); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); + lookahead == ' ') SKIP(85) if (lookahead != 0 && - lookahead != ')' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3024); + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + lookahead != '{') ADVANCE(2731); END_STATE(); case 122: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2738); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2783); + if (lookahead == 'b') ADVANCE(2771); + if (lookahead == 'e') ADVANCE(2784); + if (lookahead == 'i') ADVANCE(2780); + if (lookahead == 'm') ADVANCE(2795); + if (lookahead == 'n') ADVANCE(2796); + if (lookahead == 'o') ADVANCE(2804); + if (lookahead == 's') ADVANCE(2813); + if (lookahead == 'x') ADVANCE(2797); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(129) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '}') ADVANCE(3023); + lookahead == ' ') SKIP(87) + if (!aux_sym_unquoted_token5_character_set_1(lookahead)) ADVANCE(2731); END_STATE(); case 123: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2783); + if (lookahead == 'b') ADVANCE(2771); + if (lookahead == 'e') ADVANCE(2784); + if (lookahead == 'i') ADVANCE(2780); + if (lookahead == 'm') ADVANCE(2795); + if (lookahead == 'n') ADVANCE(2796); + if (lookahead == 'o') ADVANCE(2804); + if (lookahead == 's') ADVANCE(2813); + if (lookahead == 'x') ADVANCE(2797); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(130) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(89) if (lookahead != 0 && - lookahead != ')') ADVANCE(3023); + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + lookahead != '}') ADVANCE(2731); END_STATE(); case 124: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2972); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + if (lookahead == '!') ADVANCE(2218); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3171); + if (lookahead == '$') ADVANCE(1209); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '*') ADVANCE(1370); + if (lookahead == '+') ADVANCE(1406); + if (lookahead == ',') ADVANCE(1198); + if (lookahead == '-') ADVANCE(1241); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '/') ADVANCE(1391); + if (lookahead == '0') ADVANCE(2231); + if (lookahead == ':') ADVANCE(2643); + if (lookahead == '<') ADVANCE(1427); + if (lookahead == '=') ADVANCE(2219); + if (lookahead == '>') ADVANCE(1229); + if (lookahead == 'I') ADVANCE(2592); + if (lookahead == 'N') ADVANCE(2584); + if (lookahead == '_') ADVANCE(2230); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2380); + if (lookahead == 'b') ADVANCE(2349); + if (lookahead == 'c') ADVANCE(2248); + if (lookahead == 'd') ADVANCE(2294); + if (lookahead == 'e') ADVANCE(2391); + if (lookahead == 'f') ADVANCE(2430); + if (lookahead == 'h') ADVANCE(2358); + if (lookahead == 'i') ADVANCE(2227); + if (lookahead == 'l') ADVANCE(2310); + if (lookahead == 'm') ADVANCE(2244); + if (lookahead == 'n') ADVANCE(2295); + if (lookahead == 'o') ADVANCE(2460); + if (lookahead == 'r') ADVANCE(2296); + if (lookahead == 's') ADVANCE(2425); + if (lookahead == 't') ADVANCE(2461); + if (lookahead == 'u') ADVANCE(2505); + if (lookahead == 'w') ADVANCE(2347); + if (lookahead == 'x') ADVANCE(2438); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(132) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(27) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2232); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2603); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(3023); + (lookahead < ')' || ';' < lookahead) && + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(2604); END_STATE(); case 125: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(245); - if (lookahead == 'E') ADVANCE(289); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(365); - if (lookahead == 'c') ADVANCE(384); - if (lookahead == 'd') ADVANCE(331); - if (lookahead == 'e') ADVANCE(288); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'h') ADVANCE(352); - if (lookahead == 'i') ADVANCE(337); - if (lookahead == 'l') ADVANCE(354); - if (lookahead == 'm') ADVANCE(380); - if (lookahead == 'n') ADVANCE(330); - if (lookahead == 't') ADVANCE(399); - if (lookahead == 'u') ADVANCE(411); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1322); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'N') ADVANCE(3126); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3122); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3123); + if (lookahead == 'n') ADVANCE(3125); + if (lookahead == 't') ADVANCE(3124); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3127); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(126) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3121); END_STATE(); case 126: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(245); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(365); - if (lookahead == 'c') ADVANCE(384); - if (lookahead == 'd') ADVANCE(331); - if (lookahead == 'e') ADVANCE(443); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'h') ADVANCE(352); - if (lookahead == 'i') ADVANCE(337); - if (lookahead == 'l') ADVANCE(354); - if (lookahead == 'm') ADVANCE(380); - if (lookahead == 'n') ADVANCE(330); - if (lookahead == 't') ADVANCE(399); - if (lookahead == 'u') ADVANCE(411); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(3156); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(3140); + if (lookahead == 'G') ADVANCE(3142); + if (lookahead == 'K') ADVANCE(3143); + if (lookahead == 'M') ADVANCE(3144); + if (lookahead == 'N') ADVANCE(3166); + if (lookahead == 'P') ADVANCE(3145); + if (lookahead == 'T') ADVANCE(3146); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3155); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3158); + if (lookahead == 'e') ADVANCE(3147); + if (lookahead == 'f') ADVANCE(3159); + if (lookahead == 'g') ADVANCE(3149); + if (lookahead == 'h') ADVANCE(3162); + if (lookahead == 'k') ADVANCE(3150); + if (lookahead == 'm') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(3163); + if (lookahead == 'p') ADVANCE(3152); + if (lookahead == 's') ADVANCE(3160); + if (lookahead == 't') ADVANCE(3153); + if (lookahead == 'u') ADVANCE(3164); + if (lookahead == 'w') ADVANCE(3161); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3165); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(126) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(138) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3157); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3139); END_STATE(); case 127: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(3121); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(3106); - if (lookahead == 'G') ADVANCE(3107); - if (lookahead == 'K') ADVANCE(3108); - if (lookahead == 'M') ADVANCE(3109); - if (lookahead == 'N') ADVANCE(3131); - if (lookahead == 'P') ADVANCE(3110); - if (lookahead == 'T') ADVANCE(3111); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3120); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(3123); - if (lookahead == 'e') ADVANCE(3113); - if (lookahead == 'f') ADVANCE(3124); - if (lookahead == 'g') ADVANCE(3114); - if (lookahead == 'h') ADVANCE(3127); - if (lookahead == 'k') ADVANCE(3115); - if (lookahead == 'm') ADVANCE(3116); - if (lookahead == 'n') ADVANCE(3128); - if (lookahead == 'p') ADVANCE(3117); - if (lookahead == 's') ADVANCE(3125); - if (lookahead == 't') ADVANCE(3118); - if (lookahead == 'u') ADVANCE(3129); - if (lookahead == 'w') ADVANCE(3126); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(3130); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(3156); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(3141); + if (lookahead == 'G') ADVANCE(3142); + if (lookahead == 'K') ADVANCE(3143); + if (lookahead == 'M') ADVANCE(3144); + if (lookahead == 'N') ADVANCE(3166); + if (lookahead == 'P') ADVANCE(3145); + if (lookahead == 'T') ADVANCE(3146); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3155); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3158); + if (lookahead == 'e') ADVANCE(3148); + if (lookahead == 'f') ADVANCE(3159); + if (lookahead == 'g') ADVANCE(3149); + if (lookahead == 'h') ADVANCE(3162); + if (lookahead == 'k') ADVANCE(3150); + if (lookahead == 'm') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(3163); + if (lookahead == 'p') ADVANCE(3152); + if (lookahead == 's') ADVANCE(3160); + if (lookahead == 't') ADVANCE(3153); + if (lookahead == 'u') ADVANCE(3164); + if (lookahead == 'w') ADVANCE(3161); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3165); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3132); + lookahead == 'i') ADVANCE(3167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(131) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3122); + lookahead == ' ') SKIP(138) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3157); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3104); + lookahead != '}') ADVANCE(3139); END_STATE(); case 128: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2974); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2972); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(3140); + if (lookahead == 'G') ADVANCE(3142); + if (lookahead == 'K') ADVANCE(3143); + if (lookahead == 'M') ADVANCE(3144); + if (lookahead == 'N') ADVANCE(3166); + if (lookahead == 'P') ADVANCE(3145); + if (lookahead == 'T') ADVANCE(3146); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3154); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3158); + if (lookahead == 'e') ADVANCE(3147); + if (lookahead == 'f') ADVANCE(3159); + if (lookahead == 'g') ADVANCE(3149); + if (lookahead == 'h') ADVANCE(3162); + if (lookahead == 'k') ADVANCE(3150); + if (lookahead == 'm') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(3163); + if (lookahead == 'p') ADVANCE(3152); + if (lookahead == 's') ADVANCE(3160); + if (lookahead == 't') ADVANCE(3153); + if (lookahead == 'u') ADVANCE(3164); + if (lookahead == 'w') ADVANCE(3161); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3165); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(3167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); + lookahead == ' ') SKIP(138) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead != '}') ADVANCE(3139); END_STATE(); case 129: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3009); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3007); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(129) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); if (lookahead != 0 && lookahead != ')' && - lookahead != '}') ADVANCE(3023); + lookahead != ';' && + lookahead != '}') ADVANCE(3058); END_STATE(); case 130: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == 'N') ADVANCE(3064); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3060); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3061); + if (lookahead == 'n') ADVANCE(3063); + if (lookahead == 't') ADVANCE(3062); + if (lookahead == '{') ADVANCE(1302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(3065); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(130) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); if (lookahead != 0 && - lookahead != ')') ADVANCE(3023); + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3059); END_STATE(); case 131: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2942); - if (lookahead == 'G') ADVANCE(2943); - if (lookahead == 'K') ADVANCE(2944); - if (lookahead == 'M') ADVANCE(2945); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == 'P') ADVANCE(2946); - if (lookahead == 'T') ADVANCE(2947); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(2976); - if (lookahead == 'e') ADVANCE(2948); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'g') ADVANCE(2949); - if (lookahead == 'h') ADVANCE(2992); - if (lookahead == 'k') ADVANCE(2950); - if (lookahead == 'm') ADVANCE(2951); - if (lookahead == 'n') ADVANCE(2994); - if (lookahead == 'p') ADVANCE(2952); - if (lookahead == 's') ADVANCE(2987); - if (lookahead == 't') ADVANCE(2953); - if (lookahead == 'u') ADVANCE(2995); - if (lookahead == 'w') ADVANCE(2988); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(2996); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(131) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(136) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead != '}') ADVANCE(3058); END_STATE(); case 132: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(132) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(137) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(3023); + lookahead != ')') ADVANCE(3058); END_STATE(); case 133: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2972); + lookahead == 'e') ADVANCE(3007); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(139) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead != ';') ADVANCE(3058); END_STATE(); case 134: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(3156); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(3141); + if (lookahead == 'G') ADVANCE(3142); + if (lookahead == 'K') ADVANCE(3143); + if (lookahead == 'M') ADVANCE(3144); + if (lookahead == 'N') ADVANCE(3166); + if (lookahead == 'P') ADVANCE(3145); + if (lookahead == 'T') ADVANCE(3146); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3155); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3158); + if (lookahead == 'e') ADVANCE(3148); + if (lookahead == 'f') ADVANCE(3159); + if (lookahead == 'g') ADVANCE(3149); + if (lookahead == 'h') ADVANCE(3162); + if (lookahead == 'k') ADVANCE(3150); + if (lookahead == 'm') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(3163); + if (lookahead == 'p') ADVANCE(3152); + if (lookahead == 's') ADVANCE(3160); + if (lookahead == 't') ADVANCE(3153); + if (lookahead == 'u') ADVANCE(3164); + if (lookahead == 'w') ADVANCE(3161); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3165); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(3167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(138) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3157); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead != '}') ADVANCE(3139); END_STATE(); case 135: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == 'N') ADVANCE(1117); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(1001); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(1005); - if (lookahead == 'n') ADVANCE(1104); - if (lookahead == 't') ADVANCE(1077); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3009); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3007); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1127); + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(1135); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead != '}') ADVANCE(3058); END_STATE(); case 136: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1545); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(768); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(716); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(136) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1559); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); if (lookahead != 0 && lookahead != ')' && - lookahead != ',' && - lookahead != ':' && - lookahead != ';' && - lookahead != ']') ADVANCE(1885); + lookahead != '}') ADVANCE(3058); END_STATE(); case 137: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == 'N') ADVANCE(985); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(916); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(918); - if (lookahead == 'n') ADVANCE(953); - if (lookahead == 't') ADVANCE(962); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(990); + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(137) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(994); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); + if (lookahead != 0 && + lookahead != ')') ADVANCE(3058); END_STATE(); case 138: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(792); - if (lookahead == 'd') ADVANCE(782); - if (lookahead == 'f') ADVANCE(675); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'm') ADVANCE(679); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'r') ADVANCE(728); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'w') ADVANCE(743); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2977); + if (lookahead == 'G') ADVANCE(2978); + if (lookahead == 'K') ADVANCE(2979); + if (lookahead == 'M') ADVANCE(2980); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == 'P') ADVANCE(2981); + if (lookahead == 'T') ADVANCE(2982); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3011); + if (lookahead == 'e') ADVANCE(2983); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'g') ADVANCE(2984); + if (lookahead == 'h') ADVANCE(3027); + if (lookahead == 'k') ADVANCE(2985); + if (lookahead == 'm') ADVANCE(2986); + if (lookahead == 'n') ADVANCE(3029); + if (lookahead == 'p') ADVANCE(2987); + if (lookahead == 's') ADVANCE(3022); + if (lookahead == 't') ADVANCE(2988); + if (lookahead == 'u') ADVANCE(3030); + if (lookahead == 'w') ADVANCE(3023); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3031); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(138) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3058); END_STATE(); case 139: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(675); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 't') ADVANCE(816); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(867); + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(3058); END_STATE(); case 140: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(292); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(382); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3007); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3058); END_STATE(); case 141: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == 'N') ADVANCE(1117); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1001); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(1005); - if (lookahead == 'n') ADVANCE(1067); - if (lookahead == 't') ADVANCE(1077); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1127); + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(1135); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3058); END_STATE(); case 142: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1912); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == 'N') ADVANCE(1149); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(1033); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(1037); + if (lookahead == 'n') ADVANCE(1136); + if (lookahead == 't') ADVANCE(1109); + if (lookahead == '{') ADVANCE(1302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(1159); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(142) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(1167); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(2061); + lookahead != '}') ADVANCE(3058); END_STATE(); case 143: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2006); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1578); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(748); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(143) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1592); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && lookahead != ')' && + lookahead != ',' && + lookahead != ':' && lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(2061); + lookahead != ']') ADVANCE(1918); END_STATE(); case 144: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2974); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == 'N') ADVANCE(1017); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(950); + if (lookahead == 'n') ADVANCE(985); + if (lookahead == 't') ADVANCE(994); + if (lookahead == '{') ADVANCE(1302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(1022); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead == ' ') SKIP(144) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 145: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'N') ADVANCE(3091); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3087); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(3088); - if (lookahead == 'n') ADVANCE(3090); - if (lookahead == 't') ADVANCE(3089); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3092); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(824); + if (lookahead == 'd') ADVANCE(814); + if (lookahead == 'f') ADVANCE(707); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'm') ADVANCE(711); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'r') ADVANCE(760); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'w') ADVANCE(775); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '}') ADVANCE(3086); + lookahead == ' ') SKIP(145) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(903); END_STATE(); case 146: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2974); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(707); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 't') ADVANCE(848); + if (lookahead == '{') ADVANCE(1302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(899); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead == ' ') SKIP(146) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(903); END_STATE(); case 147: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == 'N') ADVANCE(3102); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3098); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(3099); - if (lookahead == 'n') ADVANCE(3101); - if (lookahead == 't') ADVANCE(3100); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == 'N') ADVANCE(482); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(327); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(335); + if (lookahead == 'n') ADVANCE(421); + if (lookahead == 't') ADVANCE(433); + if (lookahead == '{') ADVANCE(1302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3103); + lookahead == 'i') ADVANCE(490); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '}') ADVANCE(3097); + lookahead == ' ') SKIP(147) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); END_STATE(); case 148: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '>') ADVANCE(1194); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '`') ADVANCE(293); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == 'N') ADVANCE(1149); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1033); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(1037); + if (lookahead == 'n') ADVANCE(1099); + if (lookahead == 't') ADVANCE(1109); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1159); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(149) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(147) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(1167); END_STATE(); case 149: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '>') ADVANCE(1194); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '`') ADVANCE(293); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2043); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(149) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(994); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != ']' && + lookahead != '}') ADVANCE(2099); END_STATE(); case 150: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(768); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(154) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(150) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '}') ADVANCE(2099); END_STATE(); case 151: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == 'E') ADVANCE(628); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(627); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2043); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(151) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '[' && lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '}') ADVANCE(2099); END_STATE(); case 152: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(768); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3009); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); if (lookahead != 0 && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '}') ADVANCE(3058); END_STATE(); case 153: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1486); - if (lookahead == 'E') ADVANCE(628); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(669); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(627); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'N') ADVANCE(3126); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3122); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3123); + if (lookahead == 'n') ADVANCE(3125); + if (lookahead == 't') ADVANCE(3124); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3127); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); if (lookahead != 0 && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '}') ADVANCE(3121); END_STATE(); case 154: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(768); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3009); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(154) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); if (lookahead != 0 && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '}') ADVANCE(3058); END_STATE(); case 155: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == 'E') ADVANCE(628); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(627); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == 'N') ADVANCE(3137); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3133); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3134); + if (lookahead == 'n') ADVANCE(3136); + if (lookahead == 't') ADVANCE(3135); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3138); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); if (lookahead != 0 && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != '}') ADVANCE(3132); END_STATE(); case 156: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1548); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(768); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(1226); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '`') ADVANCE(328); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ':' && - lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead == ' ') SKIP(157) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 157: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1486); - if (lookahead == 'E') ADVANCE(628); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(669); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(627); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(1226); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '`') ADVANCE(328); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ':' && - lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead == ' ') SKIP(157) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 158: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(436); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(289); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(164) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(162) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 159: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1274); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(436); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(289); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); + lookahead == ' ') SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 160: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(3121); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(3105); - if (lookahead == 'G') ADVANCE(3107); - if (lookahead == 'K') ADVANCE(3108); - if (lookahead == 'M') ADVANCE(3109); - if (lookahead == 'N') ADVANCE(3131); - if (lookahead == 'P') ADVANCE(3110); - if (lookahead == 'T') ADVANCE(3111); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3120); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(3123); - if (lookahead == 'e') ADVANCE(3112); - if (lookahead == 'f') ADVANCE(3124); - if (lookahead == 'g') ADVANCE(3114); - if (lookahead == 'h') ADVANCE(3127); - if (lookahead == 'k') ADVANCE(3115); - if (lookahead == 'm') ADVANCE(3116); - if (lookahead == 'n') ADVANCE(3128); - if (lookahead == 'p') ADVANCE(3117); - if (lookahead == 's') ADVANCE(3125); - if (lookahead == 't') ADVANCE(3118); - if (lookahead == 'u') ADVANCE(3129); - if (lookahead == 'w') ADVANCE(3126); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(3130); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3132); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == 'E') ADVANCE(660); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(659); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3122); + lookahead == ' ') SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - lookahead != '}') ADVANCE(3104); + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 161: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(3121); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(3106); - if (lookahead == 'G') ADVANCE(3107); - if (lookahead == 'K') ADVANCE(3108); - if (lookahead == 'M') ADVANCE(3109); - if (lookahead == 'N') ADVANCE(3131); - if (lookahead == 'P') ADVANCE(3110); - if (lookahead == 'T') ADVANCE(3111); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3120); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(3123); - if (lookahead == 'e') ADVANCE(3113); - if (lookahead == 'f') ADVANCE(3124); - if (lookahead == 'g') ADVANCE(3114); - if (lookahead == 'h') ADVANCE(3127); - if (lookahead == 'k') ADVANCE(3115); - if (lookahead == 'm') ADVANCE(3116); - if (lookahead == 'n') ADVANCE(3128); - if (lookahead == 'p') ADVANCE(3117); - if (lookahead == 's') ADVANCE(3125); - if (lookahead == 't') ADVANCE(3118); - if (lookahead == 'u') ADVANCE(3129); - if (lookahead == 'w') ADVANCE(3126); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(3130); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3132); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1519); + if (lookahead == 'E') ADVANCE(660); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(701); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(659); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3122); + lookahead == ' ') SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - lookahead != '}') ADVANCE(3104); + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 162: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(3105); - if (lookahead == 'G') ADVANCE(3107); - if (lookahead == 'K') ADVANCE(3108); - if (lookahead == 'M') ADVANCE(3109); - if (lookahead == 'N') ADVANCE(3131); - if (lookahead == 'P') ADVANCE(3110); - if (lookahead == 'T') ADVANCE(3111); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(3123); - if (lookahead == 'e') ADVANCE(3112); - if (lookahead == 'f') ADVANCE(3124); - if (lookahead == 'g') ADVANCE(3114); - if (lookahead == 'h') ADVANCE(3127); - if (lookahead == 'k') ADVANCE(3115); - if (lookahead == 'm') ADVANCE(3116); - if (lookahead == 'n') ADVANCE(3128); - if (lookahead == 'p') ADVANCE(3117); - if (lookahead == 's') ADVANCE(3125); - if (lookahead == 't') ADVANCE(3118); - if (lookahead == 'u') ADVANCE(3129); - if (lookahead == 'w') ADVANCE(3126); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(3130); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3132); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); + lookahead == ' ') SKIP(162) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3104); + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 163: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == 'N') ADVANCE(3029); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3025); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(3026); - if (lookahead == 'n') ADVANCE(3028); - if (lookahead == 't') ADVANCE(3027); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3030); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); + lookahead == ' ') SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3024); + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 164: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(436); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == 'E') ADVANCE(660); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(659); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(164) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 165: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1275); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(436); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1581); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 166: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1274); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(436); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(289); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1519); + if (lookahead == 'E') ADVANCE(660); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(701); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(659); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 167: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(3121); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(3106); - if (lookahead == 'G') ADVANCE(3107); - if (lookahead == 'K') ADVANCE(3108); - if (lookahead == 'M') ADVANCE(3109); - if (lookahead == 'N') ADVANCE(3131); - if (lookahead == 'P') ADVANCE(3110); - if (lookahead == 'T') ADVANCE(3111); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3120); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(3123); - if (lookahead == 'e') ADVANCE(3113); - if (lookahead == 'f') ADVANCE(3124); - if (lookahead == 'g') ADVANCE(3114); - if (lookahead == 'h') ADVANCE(3127); - if (lookahead == 'k') ADVANCE(3115); - if (lookahead == 'm') ADVANCE(3116); - if (lookahead == 'n') ADVANCE(3128); - if (lookahead == 'p') ADVANCE(3117); - if (lookahead == 's') ADVANCE(3125); - if (lookahead == 't') ADVANCE(3118); - if (lookahead == 'u') ADVANCE(3129); - if (lookahead == 'w') ADVANCE(3126); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(3130); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(3156); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(3140); + if (lookahead == 'G') ADVANCE(3142); + if (lookahead == 'K') ADVANCE(3143); + if (lookahead == 'M') ADVANCE(3144); + if (lookahead == 'N') ADVANCE(3166); + if (lookahead == 'P') ADVANCE(3145); + if (lookahead == 'T') ADVANCE(3146); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3155); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3158); + if (lookahead == 'e') ADVANCE(3147); + if (lookahead == 'f') ADVANCE(3159); + if (lookahead == 'g') ADVANCE(3149); + if (lookahead == 'h') ADVANCE(3162); + if (lookahead == 'k') ADVANCE(3150); + if (lookahead == 'm') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(3163); + if (lookahead == 'p') ADVANCE(3152); + if (lookahead == 's') ADVANCE(3160); + if (lookahead == 't') ADVANCE(3153); + if (lookahead == 'u') ADVANCE(3164); + if (lookahead == 'w') ADVANCE(3161); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3165); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3132); + lookahead == 'i') ADVANCE(3167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3122); + lookahead == ' ') SKIP(180) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3157); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3104); + lookahead != '}') ADVANCE(3139); END_STATE(); case 168: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2942); - if (lookahead == 'G') ADVANCE(2943); - if (lookahead == 'K') ADVANCE(2944); - if (lookahead == 'M') ADVANCE(2945); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == 'P') ADVANCE(2946); - if (lookahead == 'T') ADVANCE(2947); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(2976); - if (lookahead == 'e') ADVANCE(2948); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'g') ADVANCE(2949); - if (lookahead == 'h') ADVANCE(2992); - if (lookahead == 'k') ADVANCE(2950); - if (lookahead == 'm') ADVANCE(2951); - if (lookahead == 'n') ADVANCE(2994); - if (lookahead == 'p') ADVANCE(2952); - if (lookahead == 's') ADVANCE(2987); - if (lookahead == 't') ADVANCE(2953); - if (lookahead == 'u') ADVANCE(2995); - if (lookahead == 'w') ADVANCE(2988); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 181) ADVANCE(2996); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(3156); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(3141); + if (lookahead == 'G') ADVANCE(3142); + if (lookahead == 'K') ADVANCE(3143); + if (lookahead == 'M') ADVANCE(3144); + if (lookahead == 'N') ADVANCE(3166); + if (lookahead == 'P') ADVANCE(3145); + if (lookahead == 'T') ADVANCE(3146); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3155); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3158); + if (lookahead == 'e') ADVANCE(3148); + if (lookahead == 'f') ADVANCE(3159); + if (lookahead == 'g') ADVANCE(3149); + if (lookahead == 'h') ADVANCE(3162); + if (lookahead == 'k') ADVANCE(3150); + if (lookahead == 'm') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(3163); + if (lookahead == 'p') ADVANCE(3152); + if (lookahead == 's') ADVANCE(3160); + if (lookahead == 't') ADVANCE(3153); + if (lookahead == 'u') ADVANCE(3164); + if (lookahead == 'w') ADVANCE(3161); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3165); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(3167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(180) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3157); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead != '}') ADVANCE(3139); END_STATE(); case 169: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1547); - if (lookahead == 'N') ADVANCE(3001); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(2975); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(2977); - if (lookahead == 'n') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2993); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1307); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1997); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3005); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1561); + lookahead == ' ') SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3023); + lookahead != ']') ADVANCE(2099); END_STATE(); case 170: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1504); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1486); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(669); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(768); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(177) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != ']') ADVANCE(2099); END_STATE(); case 171: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1504); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1486); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '_') ADVANCE(669); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(683); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(768); - if (lookahead == 'f') ADVANCE(786); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(701); - if (lookahead == 'm') ADVANCE(672); - if (lookahead == 'n') ADVANCE(719); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(742); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1997); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{') ADVANCE(1885); + lookahead != ']') ADVANCE(2099); END_STATE(); case 172: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1274); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(436); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); + lookahead == ' ') SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != ']') ADVANCE(2099); END_STATE(); case 173: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'N') ADVANCE(3091); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3087); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(3088); - if (lookahead == 'n') ADVANCE(3090); - if (lookahead == 't') ADVANCE(3089); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(3140); + if (lookahead == 'G') ADVANCE(3142); + if (lookahead == 'K') ADVANCE(3143); + if (lookahead == 'M') ADVANCE(3144); + if (lookahead == 'N') ADVANCE(3166); + if (lookahead == 'P') ADVANCE(3145); + if (lookahead == 'T') ADVANCE(3146); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3154); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3158); + if (lookahead == 'e') ADVANCE(3147); + if (lookahead == 'f') ADVANCE(3159); + if (lookahead == 'g') ADVANCE(3149); + if (lookahead == 'h') ADVANCE(3162); + if (lookahead == 'k') ADVANCE(3150); + if (lookahead == 'm') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(3163); + if (lookahead == 'p') ADVANCE(3152); + if (lookahead == 's') ADVANCE(3160); + if (lookahead == 't') ADVANCE(3153); + if (lookahead == 'u') ADVANCE(3164); + if (lookahead == 'w') ADVANCE(3161); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3165); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3092); + lookahead == 'i') ADVANCE(3167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); + lookahead == ' ') SKIP(180) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3086); + lookahead != '}') ADVANCE(3139); END_STATE(); case 174: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '`') ADVANCE(293); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == 'N') ADVANCE(3064); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3060); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3061); + if (lookahead == 'n') ADVANCE(3063); + if (lookahead == 't') ADVANCE(3062); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3065); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(174) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(181) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3059); END_STATE(); case 175: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1549); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '>') ADVANCE(1194); - if (lookahead == '_') ADVANCE(916); - if (lookahead == '`') ADVANCE(293); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(3156); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(3141); + if (lookahead == 'G') ADVANCE(3142); + if (lookahead == 'K') ADVANCE(3143); + if (lookahead == 'M') ADVANCE(3144); + if (lookahead == 'N') ADVANCE(3166); + if (lookahead == 'P') ADVANCE(3145); + if (lookahead == 'T') ADVANCE(3146); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3155); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3158); + if (lookahead == 'e') ADVANCE(3148); + if (lookahead == 'f') ADVANCE(3159); + if (lookahead == 'g') ADVANCE(3149); + if (lookahead == 'h') ADVANCE(3162); + if (lookahead == 'k') ADVANCE(3150); + if (lookahead == 'm') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(3163); + if (lookahead == 'p') ADVANCE(3152); + if (lookahead == 's') ADVANCE(3160); + if (lookahead == 't') ADVANCE(3153); + if (lookahead == 'u') ADVANCE(3164); + if (lookahead == 'w') ADVANCE(3161); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3165); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(990); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(985); + lookahead == 'i') ADVANCE(3167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(175) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(180) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3157); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3139); END_STATE(); case 176: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1307); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1997); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2039); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(176) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + lookahead == ' ') SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{' && - lookahead != '}') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); case 177: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2039); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(177) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - lookahead != '{' && - lookahead != '}') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); case 178: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1288); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1485); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'N') ADVANCE(3091); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3087); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(3088); - if (lookahead == 'n') ADVANCE(3090); - if (lookahead == 't') ADVANCE(3089); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1997); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3092); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1495); + lookahead == ' ') SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(3086); + lookahead != ']') ADVANCE(2099); END_STATE(); case 179: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(246); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '>') ADVANCE(1194); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == '`') ADVANCE(293); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(180) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != ']') ADVANCE(2099); END_STATE(); case 180: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(246); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '>') ADVANCE(1194); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == '`') ADVANCE(293); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2977); + if (lookahead == 'G') ADVANCE(2978); + if (lookahead == 'K') ADVANCE(2979); + if (lookahead == 'M') ADVANCE(2980); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == 'P') ADVANCE(2981); + if (lookahead == 'T') ADVANCE(2982); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(3011); + if (lookahead == 'e') ADVANCE(2983); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'g') ADVANCE(2984); + if (lookahead == 'h') ADVANCE(3027); + if (lookahead == 'k') ADVANCE(2985); + if (lookahead == 'm') ADVANCE(2986); + if (lookahead == 'n') ADVANCE(3029); + if (lookahead == 'p') ADVANCE(2987); + if (lookahead == 's') ADVANCE(3022); + if (lookahead == 't') ADVANCE(2988); + if (lookahead == 'u') ADVANCE(3030); + if (lookahead == 'w') ADVANCE(3023); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 181) ADVANCE(3031); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(180) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(994); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3058); END_STATE(); case 181: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '`') ADVANCE(293); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1580); + if (lookahead == 'N') ADVANCE(3036); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3010); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3012); + if (lookahead == 'n') ADVANCE(3033); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3040); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(181) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1594); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3058); END_STATE(); case 182: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '`') ADVANCE(293); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1308); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(181) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1134); + lookahead == ' ') SKIP(182) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != ']') ADVANCE(2099); END_STATE(); case 183: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '`') ADVANCE(293); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(183) - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1886); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != ']' && + lookahead != '}') ADVANCE(2099); END_STATE(); case 184: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3138); - if (lookahead == '$') ADVANCE(1174); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1374); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1212); - if (lookahead == '.') ADVANCE(1280); - if (lookahead == '0') ADVANCE(3039); - if (lookahead == 'N') ADVANCE(3058); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3040); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(3047); - if (lookahead == 'n') ADVANCE(3056); - if (lookahead == 't') ADVANCE(3053); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3063); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1537); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1519); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(701); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3043); + lookahead == ' ') SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - lookahead != '}') ADVANCE(3085); + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 185: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3138); - if (lookahead == '$') ADVANCE(1176); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1374); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1212); - if (lookahead == '.') ADVANCE(1280); - if (lookahead == '0') ADVANCE(3039); - if (lookahead == 'N') ADVANCE(3058); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(3040); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(3047); - if (lookahead == 'n') ADVANCE(3056); - if (lookahead == 't') ADVANCE(3053); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3063); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1537); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1519); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '_') ADVANCE(701); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(733); + if (lookahead == 'm') ADVANCE(704); + if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(841); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(774); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3043); + lookahead == ' ') SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); if (lookahead != 0 && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - lookahead != '}') ADVANCE(3085); + lookahead != '[' && + lookahead != ']' && + lookahead != '{') ADVANCE(1918); END_STATE(); case 186: - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(1838); - if (lookahead == '\\') ADVANCE(438); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1307); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1837); - if (lookahead != 0) ADVANCE(1838); + lookahead == ' ') SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != ']') ADVANCE(2099); END_STATE(); case 187: - if (lookahead == '"') ADVANCE(1850); - if (lookahead == '#') ADVANCE(1843); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '\\') ADVANCE(489); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1307); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1842); - if (lookahead != 0) ADVANCE(1843); + lookahead == ' ') SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != ']') ADVANCE(2099); END_STATE(); case 188: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1503); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(915); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'N') ADVANCE(3126); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3122); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3123); + if (lookahead == 'n') ADVANCE(3125); + if (lookahead == 't') ADVANCE(3124); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3127); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(189) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(181) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3121); END_STATE(); case 189: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '`') ADVANCE(328); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(189) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(903); END_STATE(); case 190: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1502); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1470); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(247); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == '_') ADVANCE(291); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(256); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(335); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(264); - if (lookahead == 'n') ADVANCE(404); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(322); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1582); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '>') ADVANCE(1226); + if (lookahead == '_') ADVANCE(948); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1022); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1017); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(192) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(190) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 191: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1502); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == '_') ADVANCE(291); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2077); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(193) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(191) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{' && + lookahead != '}') ADVANCE(2099); END_STATE(); case 192: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '=') ADVANCE(245); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(257); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(335); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(264); - if (lookahead == 'n') ADVANCE(404); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(322); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2077); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(192) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '{' && + lookahead != '}') ADVANCE(2099); END_STATE(); case 193: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1321); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1518); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'N') ADVANCE(3126); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3122); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3123); + if (lookahead == 'n') ADVANCE(3125); + if (lookahead == 't') ADVANCE(3124); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3127); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(193) + lookahead == ' ') SKIP(181) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1528); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3121); END_STATE(); case 194: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(600); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'n') ADVANCE(381); - if (lookahead == 't') ADVANCE(399); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(288); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(1226); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == '`') ADVANCE(328); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(194) + lookahead == ' ') SKIP(195) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 195: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(245); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(288); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(1226); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == '`') ADVANCE(328); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(200) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(195) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 196: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '_') ADVANCE(915); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(913); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '`') ADVANCE(328); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(201) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(196) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(903); END_STATE(); case 197: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(1283); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(913); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '`') ADVANCE(328); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(201) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(196) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(1166); END_STATE(); case 198: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '?') ADVANCE(1201); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '`') ADVANCE(328); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(199) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(198) + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1919); END_STATE(); case 199: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(600); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3173); + if (lookahead == '$') ADVANCE(1206); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1407); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1245); + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '0') ADVANCE(3074); + if (lookahead == 'N') ADVANCE(3093); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3075); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3082); + if (lookahead == 'n') ADVANCE(3091); + if (lookahead == 't') ADVANCE(3088); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3098); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(199) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3078); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3120); END_STATE(); case 200: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(245); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3173); + if (lookahead == '$') ADVANCE(1208); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1407); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1245); + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '0') ADVANCE(3074); + if (lookahead == 'N') ADVANCE(3093); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(3075); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(3082); + if (lookahead == 'n') ADVANCE(3091); + if (lookahead == 't') ADVANCE(3088); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3098); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(200) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(181) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3078); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '}') ADVANCE(3120); END_STATE(); case 201: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1205); - if (lookahead == '.') ADVANCE(237); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '|') ADVANCE(1170); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(1871); + if (lookahead == '\\') ADVANCE(470); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(201) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') ADVANCE(1870); + if (lookahead != 0) ADVANCE(1871); END_STATE(); case 202: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '"') ADVANCE(1883); + if (lookahead == '#') ADVANCE(1876); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '\\') ADVANCE(521); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(202) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') ADVANCE(1875); + if (lookahead != 0) ADVANCE(1876); END_STATE(); case 203: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1536); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(203) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(204) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 204: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(203) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(999); + lookahead == ' ') SKIP(204) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 205: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '(') ADVANCE(1466); - if (lookahead == '-') ADVANCE(1502); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '_') ADVANCE(1512); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == '_') ADVANCE(326); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(417); + if (lookahead == 'd') ADVANCE(366); + if (lookahead == 'e') ADVANCE(475); + if (lookahead == 'm') ADVANCE(419); + if (lookahead == 'u') ADVANCE(444); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1480); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1905); + lookahead == ' ') SKIP(213) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 206: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(246); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '>') ADVANCE(1194); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'c') ADVANCE(935); - if (lookahead == 'e') ADVANCE(966); - if (lookahead == 'f') ADVANCE(983); - if (lookahead == 'i') ADVANCE(946); - if (lookahead == 'l') ADVANCE(937); - if (lookahead == 'o') ADVANCE(950); - if (lookahead == 'v') ADVANCE(920); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == '_') ADVANCE(2653); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(207) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(218) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + lookahead != '}') ADVANCE(2644); END_STATE(); case 207: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(246); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '>') ADVANCE(1194); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == 'c') ADVANCE(935); - if (lookahead == 'e') ADVANCE(966); - if (lookahead == 'f') ADVANCE(983); - if (lookahead == 'i') ADVANCE(946); - if (lookahead == 'l') ADVANCE(937); - if (lookahead == 'o') ADVANCE(950); - if (lookahead == 'v') ADVANCE(920); - if (lookahead == '{') ADVANCE(1269); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1503); + if (lookahead == '_') ADVANCE(2653); + if (lookahead == 'i') ADVANCE(2674); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(207) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); + lookahead == ' ') SKIP(216) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2644); END_STATE(); case 208: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == ']') ADVANCE(1167); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1503); + if (lookahead == '_') ADVANCE(2653); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(208) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1818); + lookahead == ' ') SKIP(217) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2644); END_STATE(); case 209: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '-') ADVANCE(1502); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(287); + if (lookahead == '_') ADVANCE(326); + if (lookahead == 'i') ADVANCE(370); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1905); + lookahead == ' ') SKIP(215) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 210: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '_') ADVANCE(2867); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2866); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2740); + if (lookahead == '_') ADVANCE(2744); + if (lookahead == 'i') ADVANCE(2765); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(216) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2731); END_STATE(); case 211: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2866); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2740); + if (lookahead == '_') ADVANCE(2744); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(217) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2731); END_STATE(); case 212: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '.') ADVANCE(1282); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '_') ADVANCE(2744); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(218) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + lookahead != '}') ADVANCE(2731); END_STATE(); case 213: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == 'i') ADVANCE(1058); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(417); + if (lookahead == 'd') ADVANCE(366); + if (lookahead == 'e') ADVANCE(475); + if (lookahead == 'm') ADVANCE(419); + if (lookahead == 'u') ADVANCE(444); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(215) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1135); + lookahead == ' ') SKIP(213) END_STATE(); case 214: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == 'i') ADVANCE(948); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '=') ADVANCE(632); + if (lookahead == 'f') ADVANCE(335); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == 't') ADVANCE(433); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(214) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(994); END_STATE(); case 215: - if (lookahead == '#') ADVANCE(3133); - if (lookahead == 'i') ADVANCE(369); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '=') ADVANCE(287); + if (lookahead == 'i') ADVANCE(370); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(215) END_STATE(); case 216: - if (lookahead == '#') ADVANCE(3133); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '=') ADVANCE(287); + if (lookahead == 'i') ADVANCE(370); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(216) END_STATE(); case 217: - if (lookahead == '#') ADVANCE(3133); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '=') ADVANCE(287); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1214); + lookahead == ' ') SKIP(217) END_STATE(); case 218: - if (lookahead == '#') ADVANCE(3133); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(218) END_STATE(); case 219: - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '.') ADVANCE(1286); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2197); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '=') ADVANCE(287); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2606); + lookahead == ' ') SKIP(224) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 220: - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '_') ADVANCE(2199); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '_') ADVANCE(947); + if (lookahead == '|') ADVANCE(1202); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2197); + lookahead == 'e') ADVANCE(945); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1481); - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2606); + lookahead == ' ') SKIP(225) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 221: - if (lookahead == '#') ADVANCE(3140); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(1316); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '|') ADVANCE(1202); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2197); + lookahead == 'e') ADVANCE(945); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2606); + lookahead == ' ') SKIP(225) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 222: - if (lookahead == '#') ADVANCE(3140); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '?') ADVANCE(1233); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (!aux_sym_unquoted_token2_character_set_4(lookahead)) ADVANCE(2606); + lookahead == ' ') SKIP(223) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 223: - if (lookahead == '#') ADVANCE(3138); - if (lookahead == '.') ADVANCE(1285); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3044); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '=') ADVANCE(632); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (!aux_sym__unquoted_in_list_token3_character_set_1(lookahead)) ADVANCE(3085); + lookahead == ' ') SKIP(223) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 224: - if (lookahead == '#') ADVANCE(3138); - if (lookahead == '_') ADVANCE(3046); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3044); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '=') ADVANCE(287); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1479); - if (!aux_sym__unquoted_in_list_token3_character_set_1(lookahead)) ADVANCE(3085); + lookahead == ' ') SKIP(224) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 225: - if (lookahead == '#') ADVANCE(3138); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3044); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1237); + if (lookahead == '.') ADVANCE(279); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '|') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (!aux_sym__unquoted_in_list_token3_character_set_1(lookahead)) ADVANCE(3085); + lookahead == ' ') SKIP(225) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 226: - if (lookahead == '#') ADVANCE(3138); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (!aux_sym__unquoted_in_list_token3_character_set_1(lookahead)) ADVANCE(3085); + lookahead == ' ') SKIP(226) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 227: - if (lookahead == '#') ADVANCE(1845); - if (lookahead == '\'') ADVANCE(1847); - if (lookahead == '(') ADVANCE(1168); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1844); - if (lookahead != 0) ADVANCE(1845); + lookahead == ' ') SKIP(227) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 228: - if (lookahead == '\'') ADVANCE(1839); - if (lookahead != 0) ADVANCE(228); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(227) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1031); END_STATE(); case 229: - if (lookahead == '-') ADVANCE(296); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '(') ADVANCE(1499); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '_') ADVANCE(1545); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1513); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1938); END_STATE(); case 230: - if (lookahead == '-') ADVANCE(350); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(288); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(1226); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'c') ADVANCE(967); + if (lookahead == 'e') ADVANCE(998); + if (lookahead == 'f') ADVANCE(1015); + if (lookahead == 'i') ADVANCE(978); + if (lookahead == 'l') ADVANCE(969); + if (lookahead == 'o') ADVANCE(982); + if (lookahead == 'v') ADVANCE(952); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(231) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 231: - if (lookahead == '-') ADVANCE(440); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(288); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(1226); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == 'c') ADVANCE(967); + if (lookahead == 'e') ADVANCE(998); + if (lookahead == 'f') ADVANCE(1015); + if (lookahead == 'i') ADVANCE(978); + if (lookahead == 'l') ADVANCE(969); + if (lookahead == 'o') ADVANCE(982); + if (lookahead == 'v') ADVANCE(952); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(231) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 232: - if (lookahead == '-') ADVANCE(377); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(232) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1851); END_STATE(); case 233: - if (lookahead == '-') ADVANCE(420); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1938); END_STATE(); case 234: - if (lookahead == '-') ADVANCE(477); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2837); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == '_') ADVANCE(2903); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2870); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2880); + if (lookahead == 'n') ADVANCE(2962); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2927); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2965); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(248) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2822); END_STATE(); case 235: - if (lookahead == '-') ADVANCE(441); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2837); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == '_') ADVANCE(2903); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2870); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2880); + if (lookahead == 'n') ADVANCE(2962); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2927); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2965); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(249) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2822); END_STATE(); case 236: - if (lookahead == '-') ADVANCE(393); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2837); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2870); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2880); + if (lookahead == 'n') ADVANCE(2962); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2927); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2965); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(248) + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2822); END_STATE(); case 237: - if (lookahead == '.') ADVANCE(238); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2837); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2870); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2880); + if (lookahead == 'n') ADVANCE(2962); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2927); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2965); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(249) + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2822); END_STATE(); case 238: - if (lookahead == '.') ADVANCE(1199); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2837); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2871); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2880); + if (lookahead == 'n') ADVANCE(2962); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2927); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2965); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(248) + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2822); END_STATE(); case 239: - if (lookahead == '2') ADVANCE(465); - if (lookahead == '0' || - lookahead == '1') ADVANCE(471); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2837); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2871); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2880); + if (lookahead == 'n') ADVANCE(2962); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2927); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2965); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(249) + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2822); END_STATE(); case 240: - if (lookahead == ':') ADVANCE(474); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2108); + if (lookahead == '_') ADVANCE(2111); + if (lookahead == 'i') ADVANCE(2127); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(250) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2100); END_STATE(); case 241: - if (lookahead == ':') ADVANCE(475); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '=') ADVANCE(2108); + if (lookahead == '_') ADVANCE(2111); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(251) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2100); END_STATE(); case 242: - if (lookahead == '=') ADVANCE(1389); - if (lookahead == '~') ADVANCE(1419); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '_') ADVANCE(2111); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(255) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + lookahead != '}') ADVANCE(2100); END_STATE(); case 243: - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '>') ADVANCE(1271); - if (lookahead == '~') ADVANCE(1416); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '_') ADVANCE(2903); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2902); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2822); END_STATE(); case 244: - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '~') ADVANCE(1416); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2902); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2822); END_STATE(); case 245: - if (lookahead == '>') ADVANCE(1271); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2822); END_STATE(); case 246: - if (lookahead == '>') ADVANCE(1163); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '=') ADVANCE(2837); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2871); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2880); + if (lookahead == 'n') ADVANCE(2962); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2927); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2965); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(248) + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2822); END_STATE(); case 247: - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(268); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(304); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '=') ADVANCE(2837); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2871); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2880); + if (lookahead == 'n') ADVANCE(2962); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2927); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(2965); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(249) + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2822); END_STATE(); case 248: - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(268); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(304); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '=') ADVANCE(287); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(290); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(297); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(370); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(304); + if (lookahead == 'n') ADVANCE(437); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(357); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(439); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(248) END_STATE(); case 249: - if (lookahead == 'B') ADVANCE(1643); - if (lookahead == 'I') ADVANCE(269); - if (lookahead == 'b') ADVANCE(1640); - if (lookahead == 'i') ADVANCE(305); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '=') ADVANCE(287); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(290); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(297); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(304); + if (lookahead == 'n') ADVANCE(437); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(357); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == 181) ADVANCE(439); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(249) END_STATE(); case 250: - if (lookahead == 'B') ADVANCE(1619); - if (lookahead == 'I') ADVANCE(270); - if (lookahead == 'b') ADVANCE(1616); - if (lookahead == 'i') ADVANCE(306); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '=') ADVANCE(287); + if (lookahead == 'i') ADVANCE(370); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(250) END_STATE(); case 251: - if (lookahead == 'B') ADVANCE(1631); - if (lookahead == 'I') ADVANCE(271); - if (lookahead == 'b') ADVANCE(1628); - if (lookahead == 'i') ADVANCE(307); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '=') ADVANCE(287); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(251) END_STATE(); case 252: - if (lookahead == 'B') ADVANCE(1667); - if (lookahead == 'I') ADVANCE(272); - if (lookahead == 'b') ADVANCE(1664); - if (lookahead == 'i') ADVANCE(308); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == 'i') ADVANCE(1090); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(254) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1167); END_STATE(); case 253: - if (lookahead == 'B') ADVANCE(1655); - if (lookahead == 'I') ADVANCE(273); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'i') ADVANCE(309); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == 'i') ADVANCE(980); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(253) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1026); END_STATE(); case 254: - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(274); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(275); - if (lookahead == 'l') ADVANCE(409); - if (lookahead == 'n') ADVANCE(318); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(254) END_STATE(); case 255: - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(274); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(275); - if (lookahead == 'n') ADVANCE(318); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(255) END_STATE(); case 256: - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(274); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(275); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) END_STATE(); case 257: - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(274); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(275); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1247); END_STATE(); case 258: - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(274); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(275); - if (lookahead == 'l') ADVANCE(409); - if (lookahead == 'n') ADVANCE(318); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2822); END_STATE(); case 259: - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(274); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(275); - if (lookahead == 'n') ADVANCE(318); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '.') ADVANCE(1319); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2233); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2643); END_STATE(); case 260: - if (lookahead == 'B') ADVANCE(1637); - if (lookahead == 'I') ADVANCE(276); - if (lookahead == 'b') ADVANCE(1634); - if (lookahead == 'i') ADVANCE(277); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '=') ADVANCE(2224); + if (lookahead == 'i') ADVANCE(2331); + if (lookahead == '|') ADVANCE(1203); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(250) + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2643); END_STATE(); case 261: - if (lookahead == 'B') ADVANCE(1613); - if (lookahead == 'I') ADVANCE(278); - if (lookahead == 'b') ADVANCE(1610); - if (lookahead == 'i') ADVANCE(279); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '=') ADVANCE(2224); + if (lookahead == '|') ADVANCE(1203); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(251) + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2643); END_STATE(); case 262: - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(280); - if (lookahead == 'a') ADVANCE(357); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(281); - if (lookahead == 'o') ADVANCE(315); - if (lookahead == 's') ADVANCE(1583); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '_') ADVANCE(2235); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2233); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1514); + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2643); END_STATE(); case 263: - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(280); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(281); - if (lookahead == 'o') ADVANCE(315); - if (lookahead == 's') ADVANCE(1583); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(255) + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + lookahead != '`' && + lookahead != '}') ADVANCE(2643); END_STATE(); case 264: - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(280); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(281); - if (lookahead == 's') ADVANCE(1583); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2233); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (!aux_sym_unquoted_token2_character_set_3(lookahead)) ADVANCE(2643); END_STATE(); case 265: - if (lookahead == 'B') ADVANCE(1661); - if (lookahead == 'I') ADVANCE(282); - if (lookahead == 'b') ADVANCE(1658); - if (lookahead == 'i') ADVANCE(283); + if (lookahead == '#') ADVANCE(3173); + if (lookahead == '.') ADVANCE(1318); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3080); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (!aux_sym__unquoted_in_list_token3_character_set_1(lookahead)) ADVANCE(3120); END_STATE(); case 266: - if (lookahead == 'B') ADVANCE(1649); - if (lookahead == 'I') ADVANCE(284); - if (lookahead == 'b') ADVANCE(1646); - if (lookahead == 'i') ADVANCE(285); + if (lookahead == '#') ADVANCE(3173); + if (lookahead == '_') ADVANCE(3079); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3080); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1512); + if (!aux_sym__unquoted_in_list_token3_character_set_1(lookahead)) ADVANCE(3120); END_STATE(); case 267: - if (lookahead == 'B') ADVANCE(1649); - if (lookahead == 'I') ADVANCE(284); - if (lookahead == 'b') ADVANCE(1646); - if (lookahead == 'i') ADVANCE(285); - if (lookahead == 'r') ADVANCE(434); + if (lookahead == '#') ADVANCE(3173); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3080); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (!aux_sym__unquoted_in_list_token3_character_set_1(lookahead)) ADVANCE(3120); END_STATE(); case 268: - if (lookahead == 'B') ADVANCE(1805); - if (lookahead == 'b') ADVANCE(1802); + if (lookahead == '#') ADVANCE(3173); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(256) + if (!aux_sym__unquoted_in_list_token3_character_set_1(lookahead)) ADVANCE(3120); END_STATE(); case 269: - if (lookahead == 'B') ADVANCE(1742); - if (lookahead == 'b') ADVANCE(1739); + if (lookahead == '#') ADVANCE(1878); + if (lookahead == '\'') ADVANCE(1880); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1877); + if (lookahead != 0) ADVANCE(1878); END_STATE(); case 270: - if (lookahead == 'B') ADVANCE(1700); - if (lookahead == 'b') ADVANCE(1697); + if (lookahead == '\'') ADVANCE(1872); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 271: - if (lookahead == 'B') ADVANCE(1721); - if (lookahead == 'b') ADVANCE(1718); + if (lookahead == '-') ADVANCE(329); END_STATE(); case 272: - if (lookahead == 'B') ADVANCE(1784); - if (lookahead == 'b') ADVANCE(1781); + if (lookahead == '-') ADVANCE(384); END_STATE(); case 273: - if (lookahead == 'B') ADVANCE(1763); - if (lookahead == 'b') ADVANCE(1760); + if (lookahead == '-') ADVANCE(472); END_STATE(); case 274: - if (lookahead == 'B') ADVANCE(1793); - if (lookahead == 'b') ADVANCE(1796); + if (lookahead == '-') ADVANCE(413); END_STATE(); case 275: - if (lookahead == 'B') ADVANCE(1790); - if (lookahead == 'b') ADVANCE(1787); + if (lookahead == '-') ADVANCE(453); END_STATE(); case 276: - if (lookahead == 'B') ADVANCE(1730); - if (lookahead == 'b') ADVANCE(1733); + if (lookahead == '-') ADVANCE(509); END_STATE(); case 277: - if (lookahead == 'B') ADVANCE(1727); - if (lookahead == 'b') ADVANCE(1724); + if (lookahead == '-') ADVANCE(473); END_STATE(); case 278: - if (lookahead == 'B') ADVANCE(1688); - if (lookahead == 'b') ADVANCE(1691); + if (lookahead == '-') ADVANCE(426); END_STATE(); case 279: - if (lookahead == 'B') ADVANCE(1685); - if (lookahead == 'b') ADVANCE(1682); + if (lookahead == '.') ADVANCE(280); END_STATE(); case 280: - if (lookahead == 'B') ADVANCE(1709); - if (lookahead == 'b') ADVANCE(1712); + if (lookahead == '.') ADVANCE(1231); END_STATE(); case 281: - if (lookahead == 'B') ADVANCE(1706); - if (lookahead == 'b') ADVANCE(1703); - if (lookahead == 'n') ADVANCE(1589); + if (lookahead == '2') ADVANCE(497); + if (lookahead == '0' || + lookahead == '1') ADVANCE(503); END_STATE(); case 282: - if (lookahead == 'B') ADVANCE(1772); - if (lookahead == 'b') ADVANCE(1775); + if (lookahead == ':') ADVANCE(506); END_STATE(); case 283: - if (lookahead == 'B') ADVANCE(1769); - if (lookahead == 'b') ADVANCE(1766); + if (lookahead == ':') ADVANCE(507); END_STATE(); case 284: - if (lookahead == 'B') ADVANCE(1751); - if (lookahead == 'b') ADVANCE(1754); + if (lookahead == '=') ADVANCE(1422); + if (lookahead == '~') ADVANCE(1452); END_STATE(); case 285: - if (lookahead == 'B') ADVANCE(1748); - if (lookahead == 'b') ADVANCE(1745); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '>') ADVANCE(1304); + if (lookahead == '~') ADVANCE(1449); END_STATE(); case 286: - if (lookahead == 'N') ADVANCE(452); - if (lookahead == 'f') ADVANCE(1256); - if (lookahead == 'n') ADVANCE(1235); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '~') ADVANCE(1449); END_STATE(); case 287: - if (lookahead == 'N') ADVANCE(452); - if (lookahead == 'n') ADVANCE(1235); + if (lookahead == '>') ADVANCE(1304); END_STATE(); case 288: - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'x') ADVANCE(428); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (lookahead == '>') ADVANCE(1195); END_STATE(); case 289: - if (lookahead == '_') ADVANCE(290); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == '_') ADVANCE(325); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(339); if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 290: - if (lookahead == '_') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(339); END_STATE(); case 291: - if (lookahead == '_') ADVANCE(291); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == 'B') ADVANCE(1676); + if (lookahead == 'I') ADVANCE(308); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'i') ADVANCE(340); END_STATE(); case 292: - if (lookahead == '_') ADVANCE(292); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == 'B') ADVANCE(1652); + if (lookahead == 'I') ADVANCE(309); + if (lookahead == 'b') ADVANCE(1649); + if (lookahead == 'i') ADVANCE(341); END_STATE(); case 293: - if (lookahead == '`') ADVANCE(1840); - if (lookahead != 0) ADVANCE(293); + if (lookahead == 'B') ADVANCE(1664); + if (lookahead == 'I') ADVANCE(310); + if (lookahead == 'b') ADVANCE(1661); + if (lookahead == 'i') ADVANCE(342); END_STATE(); case 294: - if (lookahead == 'a') ADVANCE(444); + if (lookahead == 'B') ADVANCE(1700); + if (lookahead == 'I') ADVANCE(311); + if (lookahead == 'b') ADVANCE(1697); + if (lookahead == 'i') ADVANCE(343); END_STATE(); case 295: - if (lookahead == 'a') ADVANCE(361); + if (lookahead == 'B') ADVANCE(1688); + if (lookahead == 'I') ADVANCE(312); + if (lookahead == 'b') ADVANCE(1685); + if (lookahead == 'i') ADVANCE(344); END_STATE(); case 296: - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'o') ADVANCE(397); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 'x') ADVANCE(383); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(313); + if (lookahead == '_') ADVANCE(325); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(314); + if (lookahead == 'l') ADVANCE(440); + if (lookahead == 'n') ADVANCE(353); + if (lookahead == '+' || + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 297: - if (lookahead == 'a') ADVANCE(401); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(313); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(314); END_STATE(); case 298: - if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(313); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(314); + if (lookahead == 'l') ADVANCE(440); + if (lookahead == 'n') ADVANCE(353); END_STATE(); case 299: - if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(313); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(314); + if (lookahead == 'n') ADVANCE(353); END_STATE(); case 300: - if (lookahead == 'a') ADVANCE(427); + if (lookahead == 'B') ADVANCE(1670); + if (lookahead == 'I') ADVANCE(315); + if (lookahead == 'b') ADVANCE(1667); + if (lookahead == 'i') ADVANCE(316); END_STATE(); case 301: - if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'B') ADVANCE(1646); + if (lookahead == 'I') ADVANCE(317); + if (lookahead == 'b') ADVANCE(1643); + if (lookahead == 'i') ADVANCE(318); END_STATE(); case 302: - if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(319); + if (lookahead == 'a') ADVANCE(392); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(320); + if (lookahead == 'o') ADVANCE(350); + if (lookahead == 's') ADVANCE(1616); END_STATE(); case 303: - if (lookahead == 'a') ADVANCE(430); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(319); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(320); + if (lookahead == 'o') ADVANCE(350); + if (lookahead == 's') ADVANCE(1616); END_STATE(); case 304: - if (lookahead == 'b') ADVANCE(1799); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(319); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(320); + if (lookahead == 's') ADVANCE(1616); END_STATE(); case 305: - if (lookahead == 'b') ADVANCE(1736); + if (lookahead == 'B') ADVANCE(1694); + if (lookahead == 'I') ADVANCE(321); + if (lookahead == 'b') ADVANCE(1691); + if (lookahead == 'i') ADVANCE(322); END_STATE(); case 306: - if (lookahead == 'b') ADVANCE(1694); + if (lookahead == 'B') ADVANCE(1682); + if (lookahead == 'I') ADVANCE(323); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'i') ADVANCE(324); END_STATE(); case 307: - if (lookahead == 'b') ADVANCE(1715); + if (lookahead == 'B') ADVANCE(1838); + if (lookahead == 'b') ADVANCE(1835); END_STATE(); case 308: - if (lookahead == 'b') ADVANCE(1778); + if (lookahead == 'B') ADVANCE(1775); + if (lookahead == 'b') ADVANCE(1772); END_STATE(); case 309: - if (lookahead == 'b') ADVANCE(1757); + if (lookahead == 'B') ADVANCE(1733); + if (lookahead == 'b') ADVANCE(1730); END_STATE(); case 310: - if (lookahead == 'c') ADVANCE(1586); + if (lookahead == 'B') ADVANCE(1754); + if (lookahead == 'b') ADVANCE(1751); END_STATE(); case 311: - if (lookahead == 'c') ADVANCE(343); + if (lookahead == 'B') ADVANCE(1817); + if (lookahead == 'b') ADVANCE(1814); END_STATE(); case 312: - if (lookahead == 'c') ADVANCE(344); + if (lookahead == 'B') ADVANCE(1796); + if (lookahead == 'b') ADVANCE(1793); END_STATE(); case 313: - if (lookahead == 'c') ADVANCE(334); + if (lookahead == 'B') ADVANCE(1826); + if (lookahead == 'b') ADVANCE(1829); END_STATE(); case 314: - if (lookahead == 'd') ADVANCE(1437); + if (lookahead == 'B') ADVANCE(1823); + if (lookahead == 'b') ADVANCE(1820); END_STATE(); case 315: - if (lookahead == 'd') ADVANCE(1359); + if (lookahead == 'B') ADVANCE(1763); + if (lookahead == 'b') ADVANCE(1766); END_STATE(); case 316: - if (lookahead == 'd') ADVANCE(1422); + if (lookahead == 'B') ADVANCE(1760); + if (lookahead == 'b') ADVANCE(1757); END_STATE(); case 317: - if (lookahead == 'd') ADVANCE(437); + if (lookahead == 'B') ADVANCE(1721); + if (lookahead == 'b') ADVANCE(1724); END_STATE(); case 318: - if (lookahead == 'd') ADVANCE(410); + if (lookahead == 'B') ADVANCE(1718); + if (lookahead == 'b') ADVANCE(1715); END_STATE(); case 319: - if (lookahead == 'd') ADVANCE(327); + if (lookahead == 'B') ADVANCE(1742); + if (lookahead == 'b') ADVANCE(1745); END_STATE(); case 320: - if (lookahead == 'e') ADVANCE(1524); + if (lookahead == 'B') ADVANCE(1739); + if (lookahead == 'b') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(1622); END_STATE(); case 321: - if (lookahead == 'e') ADVANCE(1532); + if (lookahead == 'B') ADVANCE(1805); + if (lookahead == 'b') ADVANCE(1808); END_STATE(); case 322: - if (lookahead == 'e') ADVANCE(310); + if (lookahead == 'B') ADVANCE(1802); + if (lookahead == 'b') ADVANCE(1799); END_STATE(); case 323: - if (lookahead == 'e') ADVANCE(310); - if (lookahead == 't') ADVANCE(297); + if (lookahead == 'B') ADVANCE(1784); + if (lookahead == 'b') ADVANCE(1787); END_STATE(); case 324: - if (lookahead == 'e') ADVANCE(1261); + if (lookahead == 'B') ADVANCE(1781); + if (lookahead == 'b') ADVANCE(1778); END_STATE(); case 325: - if (lookahead == 'e') ADVANCE(1244); + if (lookahead == '_') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 326: - if (lookahead == 'e') ADVANCE(1156); + if (lookahead == '_') ADVANCE(326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 327: - if (lookahead == 'e') ADVANCE(1314); + if (lookahead == '_') ADVANCE(327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 328: - if (lookahead == 'e') ADVANCE(1151); + if (lookahead == '`') ADVANCE(1873); + if (lookahead != 0) ADVANCE(328); END_STATE(); case 329: - if (lookahead == 'e') ADVANCE(1187); + if (lookahead == 'a') ADVANCE(403); + if (lookahead == 'o') ADVANCE(430); + if (lookahead == 's') ADVANCE(377); + if (lookahead == 'x') ADVANCE(411); END_STATE(); case 330: - if (lookahead == 'e') ADVANCE(439); - if (lookahead == 'o') ADVANCE(416); - if (lookahead == 'u') ADVANCE(360); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'a') ADVANCE(476); END_STATE(); case 331: - if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'a') ADVANCE(454); END_STATE(); case 332: - if (lookahead == 'e') ADVANCE(402); + if (lookahead == 'a') ADVANCE(435); END_STATE(); case 333: - if (lookahead == 'e') ADVANCE(403); + if (lookahead == 'a') ADVANCE(463); END_STATE(); case 334: - if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'a') ADVANCE(441); END_STATE(); case 335: - if (lookahead == 'f') ADVANCE(1256); + if (lookahead == 'a') ADVANCE(400); END_STATE(); case 336: - if (lookahead == 'f') ADVANCE(1256); - if (lookahead == 'n') ADVANCE(1229); + if (lookahead == 'a') ADVANCE(465); END_STATE(); case 337: - if (lookahead == 'f') ADVANCE(1256); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(452); + if (lookahead == 'a') ADVANCE(460); END_STATE(); case 338: - if (lookahead == 'f') ADVANCE(1137); + if (lookahead == 'a') ADVANCE(461); END_STATE(); case 339: - if (lookahead == 'f') ADVANCE(1186); + if (lookahead == 'b') ADVANCE(1832); END_STATE(); case 340: - if (lookahead == 'h') ADVANCE(1411); + if (lookahead == 'b') ADVANCE(1769); END_STATE(); case 341: - if (lookahead == 'h') ADVANCE(1406); + if (lookahead == 'b') ADVANCE(1727); END_STATE(); case 342: - if (lookahead == 'h') ADVANCE(359); + if (lookahead == 'b') ADVANCE(1748); END_STATE(); case 343: - if (lookahead == 'h') ADVANCE(1295); + if (lookahead == 'b') ADVANCE(1811); END_STATE(); case 344: - if (lookahead == 'h') ADVANCE(1264); + if (lookahead == 'b') ADVANCE(1790); END_STATE(); case 345: - if (lookahead == 'h') ADVANCE(1178); + if (lookahead == 'c') ADVANCE(1619); END_STATE(); case 346: - if (lookahead == 'h') ADVANCE(1184); + if (lookahead == 'c') ADVANCE(378); END_STATE(); case 347: - if (lookahead == 'h') ADVANCE(232); + if (lookahead == 'c') ADVANCE(379); END_STATE(); case 348: - if (lookahead == 'i') ADVANCE(419); + if (lookahead == 'c') ADVANCE(369); END_STATE(); case 349: - if (lookahead == 'i') ADVANCE(422); + if (lookahead == 'd') ADVANCE(1470); END_STATE(); case 350: - if (lookahead == 'i') ADVANCE(367); + if (lookahead == 'd') ADVANCE(1392); END_STATE(); case 351: - if (lookahead == 'i') ADVANCE(424); + if (lookahead == 'd') ADVANCE(1455); END_STATE(); case 352: - if (lookahead == 'i') ADVANCE(319); + if (lookahead == 'd') ADVANCE(469); END_STATE(); case 353: - if (lookahead == 'i') ADVANCE(299); + if (lookahead == 'd') ADVANCE(442); END_STATE(); case 354: - if (lookahead == 'i') ADVANCE(412); + if (lookahead == 'd') ADVANCE(362); END_STATE(); case 355: - if (lookahead == 'i') ADVANCE(425); + if (lookahead == 'e') ADVANCE(1557); END_STATE(); case 356: - if (lookahead == 'k') ADVANCE(1598); + if (lookahead == 'e') ADVANCE(1565); END_STATE(); case 357: - if (lookahead == 'k') ADVANCE(325); + if (lookahead == 'e') ADVANCE(345); END_STATE(); case 358: - if (lookahead == 'l') ADVANCE(1515); + if (lookahead == 'e') ADVANCE(345); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 359: - if (lookahead == 'l') ADVANCE(1376); - if (lookahead == 'r') ADVANCE(1381); + if (lookahead == 'e') ADVANCE(1294); END_STATE(); case 360: - if (lookahead == 'l') ADVANCE(358); + if (lookahead == 'e') ADVANCE(1276); END_STATE(); case 361: - if (lookahead == 'l') ADVANCE(408); + if (lookahead == 'e') ADVANCE(1188); END_STATE(); case 362: - if (lookahead == 'l') ADVANCE(409); + if (lookahead == 'e') ADVANCE(1347); END_STATE(); case 363: - if (lookahead == 'l') ADVANCE(236); + if (lookahead == 'e') ADVANCE(1219); END_STATE(); case 364: - if (lookahead == 'l') ADVANCE(363); + if (lookahead == 'e') ADVANCE(1183); END_STATE(); case 365: - if (lookahead == 'l') ADVANCE(353); + if (lookahead == 'e') ADVANCE(471); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 366: - if (lookahead == 'l') ADVANCE(328); + if (lookahead == 'e') ADVANCE(374); END_STATE(); case 367: - if (lookahead == 'n') ADVANCE(1401); + if (lookahead == 'e') ADVANCE(434); END_STATE(); case 368: - if (lookahead == 'n') ADVANCE(314); + if (lookahead == 'e') ADVANCE(436); END_STATE(); case 369: - if (lookahead == 'n') ADVANCE(1229); + if (lookahead == 'e') ADVANCE(397); END_STATE(); case 370: - if (lookahead == 'n') ADVANCE(1146); + if (lookahead == 'f') ADVANCE(1288); END_STATE(); case 371: - if (lookahead == 'n') ADVANCE(1185); + if (lookahead == 'f') ADVANCE(1288); + if (lookahead == 'n') ADVANCE(1262); END_STATE(); case 372: - if (lookahead == 'n') ADVANCE(318); + if (lookahead == 'f') ADVANCE(1288); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(484); END_STATE(); case 373: - if (lookahead == 'n') ADVANCE(316); + if (lookahead == 'f') ADVANCE(1218); END_STATE(); case 374: - if (lookahead == 'n') ADVANCE(413); + if (lookahead == 'f') ADVANCE(1169); END_STATE(); case 375: - if (lookahead == 'o') ADVANCE(396); + if (lookahead == 'h') ADVANCE(1444); END_STATE(); case 376: - if (lookahead == 'o') ADVANCE(1251); + if (lookahead == 'h') ADVANCE(1439); END_STATE(); case 377: - if (lookahead == 'o') ADVANCE(391); + if (lookahead == 'h') ADVANCE(394); END_STATE(); case 378: - if (lookahead == 'o') ADVANCE(315); + if (lookahead == 'h') ADVANCE(1328); END_STATE(); case 379: - if (lookahead == 'o') ADVANCE(339); + if (lookahead == 'h') ADVANCE(1297); END_STATE(); case 380: - if (lookahead == 'o') ADVANCE(317); + if (lookahead == 'h') ADVANCE(1210); END_STATE(); case 381: - if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'h') ADVANCE(1216); END_STATE(); case 382: - if (lookahead == 'o') ADVANCE(416); - if (lookahead == 'u') ADVANCE(360); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'h') ADVANCE(274); END_STATE(); case 383: - if (lookahead == 'o') ADVANCE(398); + if (lookahead == 'i') ADVANCE(452); END_STATE(); case 384: - if (lookahead == 'o') ADVANCE(374); + if (lookahead == 'i') ADVANCE(402); END_STATE(); case 385: - if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'i') ADVANCE(451); END_STATE(); case 386: - if (lookahead == 'o') ADVANCE(423); - if (lookahead == 's') ADVANCE(1574); + if (lookahead == 'i') ADVANCE(354); END_STATE(); case 387: - if (lookahead == 'o') ADVANCE(423); - if (lookahead == 's') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(360); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'i') ADVANCE(334); END_STATE(); case 388: - if (lookahead == 'o') ADVANCE(423); - if (lookahead == 'u') ADVANCE(360); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'i') ADVANCE(445); END_STATE(); case 389: - if (lookahead == 'p') ADVANCE(329); + if (lookahead == 'i') ADVANCE(456); END_STATE(); case 390: - if (lookahead == 'p') ADVANCE(300); + if (lookahead == 'i') ADVANCE(458); END_STATE(); case 391: - if (lookahead == 'p') ADVANCE(426); + if (lookahead == 'k') ADVANCE(1631); END_STATE(); case 392: - if (lookahead == 'p') ADVANCE(301); + if (lookahead == 'k') ADVANCE(360); END_STATE(); case 393: - if (lookahead == 'p') ADVANCE(302); + if (lookahead == 'l') ADVANCE(1548); END_STATE(); case 394: - if (lookahead == 'r') ADVANCE(1592); + if (lookahead == 'l') ADVANCE(1409); + if (lookahead == 'r') ADVANCE(1414); END_STATE(); case 395: - if (lookahead == 'r') ADVANCE(1451); + if (lookahead == 'l') ADVANCE(440); END_STATE(); case 396: - if (lookahead == 'r') ADVANCE(1444); + if (lookahead == 'l') ADVANCE(393); END_STATE(); case 397: - if (lookahead == 'r') ADVANCE(1432); + if (lookahead == 'l') ADVANCE(398); END_STATE(); case 398: - if (lookahead == 'r') ADVANCE(1427); + if (lookahead == 'l') ADVANCE(278); END_STATE(); case 399: - if (lookahead == 'r') ADVANCE(434); + if (lookahead == 'l') ADVANCE(387); END_STATE(); case 400: - if (lookahead == 'r') ADVANCE(435); + if (lookahead == 'l') ADVANCE(443); END_STATE(); case 401: - if (lookahead == 'r') ADVANCE(433); + if (lookahead == 'l') ADVANCE(364); END_STATE(); case 402: - if (lookahead == 'r') ADVANCE(370); + if (lookahead == 'n') ADVANCE(1434); END_STATE(); case 403: - if (lookahead == 'r') ADVANCE(371); + if (lookahead == 'n') ADVANCE(351); END_STATE(); case 404: - if (lookahead == 's') ADVANCE(1574); + if (lookahead == 'n') ADVANCE(1262); END_STATE(); case 405: - if (lookahead == 's') ADVANCE(1580); + if (lookahead == 'n') ADVANCE(1217); END_STATE(); case 406: - if (lookahead == 's') ADVANCE(1577); + if (lookahead == 'n') ADVANCE(1178); END_STATE(); case 407: - if (lookahead == 's') ADVANCE(595); + if (lookahead == 'n') ADVANCE(349); END_STATE(); case 408: - if (lookahead == 's') ADVANCE(321); + if (lookahead == 'n') ADVANCE(353); END_STATE(); case 409: - if (lookahead == 's') ADVANCE(324); + if (lookahead == 'n') ADVANCE(446); END_STATE(); case 410: - if (lookahead == 's') ADVANCE(231); + if (lookahead == 'o') ADVANCE(1283); END_STATE(); case 411: - if (lookahead == 's') ADVANCE(326); + if (lookahead == 'o') ADVANCE(431); END_STATE(); case 412: - if (lookahead == 's') ADVANCE(417); + if (lookahead == 'o') ADVANCE(373); END_STATE(); case 413: - if (lookahead == 's') ADVANCE(418); + if (lookahead == 'o') ADVANCE(424); END_STATE(); case 414: - if (lookahead == 's') ADVANCE(235); + if (lookahead == 'o') ADVANCE(350); END_STATE(); case 415: - if (lookahead == 't') ADVANCE(297); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 416: - if (lookahead == 't') ADVANCE(1458); + if (lookahead == 'o') ADVANCE(455); + if (lookahead == 's') ADVANCE(1607); END_STATE(); case 417: - if (lookahead == 't') ADVANCE(1188); + if (lookahead == 'o') ADVANCE(409); END_STATE(); case 418: - if (lookahead == 't') ADVANCE(615); + if (lookahead == 'o') ADVANCE(429); END_STATE(); case 419: - if (lookahead == 't') ADVANCE(229); + if (lookahead == 'o') ADVANCE(352); END_STATE(); case 420: - if (lookahead == 't') ADVANCE(445); + if (lookahead == 'o') ADVANCE(448); END_STATE(); case 421: - if (lookahead == 't') ADVANCE(311); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'u') ADVANCE(396); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(489); END_STATE(); case 422: - if (lookahead == 't') ADVANCE(340); + if (lookahead == 'p') ADVANCE(337); END_STATE(); case 423: - if (lookahead == 't') ADVANCE(230); + if (lookahead == 'p') ADVANCE(363); END_STATE(); case 424: - if (lookahead == 't') ADVANCE(341); + if (lookahead == 'p') ADVANCE(459); END_STATE(); case 425: - if (lookahead == 't') ADVANCE(347); + if (lookahead == 'p') ADVANCE(333); END_STATE(); case 426: - if (lookahead == 't') ADVANCE(233); + if (lookahead == 'p') ADVANCE(338); END_STATE(); case 427: - if (lookahead == 't') ADVANCE(345); + if (lookahead == 'r') ADVANCE(1625); END_STATE(); case 428: - if (lookahead == 't') ADVANCE(332); + if (lookahead == 'r') ADVANCE(1484); END_STATE(); case 429: - if (lookahead == 't') ADVANCE(346); + if (lookahead == 'r') ADVANCE(1477); END_STATE(); case 430: - if (lookahead == 't') ADVANCE(312); + if (lookahead == 'r') ADVANCE(1465); END_STATE(); case 431: - if (lookahead == 't') ADVANCE(333); + if (lookahead == 'r') ADVANCE(1460); END_STATE(); case 432: - if (lookahead == 't') ADVANCE(431); + if (lookahead == 'r') ADVANCE(468); END_STATE(); case 433: - if (lookahead == 't') ADVANCE(414); + if (lookahead == 'r') ADVANCE(467); END_STATE(); case 434: - if (lookahead == 'u') ADVANCE(320); + if (lookahead == 'r') ADVANCE(405); END_STATE(); case 435: - if (lookahead == 'u') ADVANCE(320); - if (lookahead == 'y') ADVANCE(1290); + if (lookahead == 'r') ADVANCE(466); END_STATE(); case 436: - if (lookahead == 'u') ADVANCE(360); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'r') ADVANCE(406); END_STATE(); case 437: - if (lookahead == 'u') ADVANCE(366); + if (lookahead == 's') ADVANCE(1607); END_STATE(); case 438: - if (lookahead == 'u') ADVANCE(447); - if (lookahead == 'x') ADVANCE(486); - if (lookahead != 0) ADVANCE(1841); + if (lookahead == 's') ADVANCE(1613); END_STATE(); case 439: - if (lookahead == 'w') ADVANCE(1327); + if (lookahead == 's') ADVANCE(1610); END_STATE(); case 440: - if (lookahead == 'w') ADVANCE(349); + if (lookahead == 's') ADVANCE(359); END_STATE(); case 441: - if (lookahead == 'w') ADVANCE(351); + if (lookahead == 's') ADVANCE(627); END_STATE(); case 442: - if (lookahead == 'w') ADVANCE(355); + if (lookahead == 's') ADVANCE(273); END_STATE(); case 443: - if (lookahead == 'x') ADVANCE(428); + if (lookahead == 's') ADVANCE(356); END_STATE(); case 444: - if (lookahead == 'y') ADVANCE(1595); + if (lookahead == 's') ADVANCE(361); END_STATE(); case 445: - if (lookahead == 'y') ADVANCE(389); + if (lookahead == 's') ADVANCE(449); END_STATE(); case 446: - if (lookahead == '{') ADVANCE(482); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(481); + if (lookahead == 's') ADVANCE(450); END_STATE(); case 447: - if (lookahead == '{') ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(487); + if (lookahead == 's') ADVANCE(277); END_STATE(); case 448: - if (lookahead == '}') ADVANCE(1851); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(448); + if (lookahead == 't') ADVANCE(1491); END_STATE(); case 449: - if (lookahead == '}') ADVANCE(1841); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(449); + if (lookahead == 't') ADVANCE(1220); END_STATE(); case 450: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 't') ADVANCE(647); END_STATE(); case 451: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1572); + if (lookahead == 't') ADVANCE(271); END_STATE(); case 452: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1569); + if (lookahead == 't') ADVANCE(375); END_STATE(); case 453: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(460); + if (lookahead == 't') ADVANCE(477); END_STATE(); case 454: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(461); + if (lookahead == 't') ADVANCE(346); END_STATE(); case 455: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(451); + if (lookahead == 't') ADVANCE(272); END_STATE(); case 456: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(453); + if (lookahead == 't') ADVANCE(376); END_STATE(); case 457: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1573); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 458: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(452); + if (lookahead == 't') ADVANCE(382); END_STATE(); case 459: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(454); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 460: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(462); + if (lookahead == 't') ADVANCE(380); END_STATE(); case 461: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(463); + if (lookahead == 't') ADVANCE(381); END_STATE(); case 462: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1570); + if (lookahead == 't') ADVANCE(367); END_STATE(); case 463: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1566); + if (lookahead == 't') ADVANCE(462); END_STATE(); case 464: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1564); + if (lookahead == 't') ADVANCE(368); END_STATE(); case 465: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1823); + if (lookahead == 't') ADVANCE(347); END_STATE(); case 466: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1565); + if (lookahead == 't') ADVANCE(447); END_STATE(); case 467: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(241); + if (lookahead == 'u') ADVANCE(355); END_STATE(); case 468: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1820); + if (lookahead == 'u') ADVANCE(355); + if (lookahead == 'y') ADVANCE(1323); END_STATE(); case 469: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1819); + if (lookahead == 'u') ADVANCE(401); END_STATE(); case 470: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1830); + if (lookahead == 'u') ADVANCE(479); + if (lookahead == 'x') ADVANCE(518); + if (lookahead != 0) ADVANCE(1874); END_STATE(); case 471: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1823); + if (lookahead == 'w') ADVANCE(1360); END_STATE(); case 472: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + if (lookahead == 'w') ADVANCE(383); END_STATE(); case 473: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1829); + if (lookahead == 'w') ADVANCE(389); END_STATE(); case 474: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (lookahead == 'w') ADVANCE(390); END_STATE(); case 475: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(468); + if (lookahead == 'x') ADVANCE(464); END_STATE(); case 476: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(472); + if (lookahead == 'y') ADVANCE(1628); END_STATE(); case 477: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); + if (lookahead == 'y') ADVANCE(423); END_STATE(); case 478: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(240); + if (lookahead == '{') ADVANCE(514); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(513); END_STATE(); case 479: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); + if (lookahead == '{') ADVANCE(516); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(519); END_STATE(); case 480: + if (lookahead == '}') ADVANCE(1884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1851); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(480); END_STATE(); case 481: + if (lookahead == '}') ADVANCE(1874); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(485); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(481); END_STATE(); case 482: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(448); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(489); END_STATE(); case 483: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1605); + END_STATE(); + case 484: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1602); + END_STATE(); + case 485: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(492); + END_STATE(); + case 486: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(493); + END_STATE(); + case 487: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(483); + END_STATE(); + case 488: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(485); + END_STATE(); + case 489: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1606); + END_STATE(); + case 490: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(484); + END_STATE(); + case 491: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(486); + END_STATE(); + case 492: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(494); + END_STATE(); + case 493: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(495); + END_STATE(); + case 494: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1603); + END_STATE(); + case 495: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1599); + END_STATE(); + case 496: + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1597); + END_STATE(); + case 497: + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1856); + END_STATE(); + case 498: + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1598); + END_STATE(); + case 499: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(283); + END_STATE(); + case 500: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1853); + END_STATE(); + case 501: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1852); + END_STATE(); + case 502: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1863); + END_STATE(); + case 503: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1856); + END_STATE(); + case 504: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(276); + END_STATE(); + case 505: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1862); + END_STATE(); + case 506: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(499); + END_STATE(); + case 507: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(500); + END_STATE(); + case 508: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(504); + END_STATE(); + case 509: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(505); + END_STATE(); + case 510: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); + END_STATE(); + case 511: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(510); + END_STATE(); + case 512: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1841); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1884); END_STATE(); - case 484: + case 513: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(449); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(517); END_STATE(); - case 485: + case 514: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(480); END_STATE(); - case 486: + case 515: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(483); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1874); END_STATE(); - case 487: + case 516: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(486); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(481); END_STATE(); - case 488: + case 517: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(512); + END_STATE(); + case 518: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(515); + END_STATE(); + case 519: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(518); + END_STATE(); + case 520: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1596); END_STATE(); - case 489: + case 521: if (lookahead != 0 && lookahead != 'u' && - lookahead != 'x') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(446); - if (lookahead == 'x') ADVANCE(485); + lookahead != 'x') ADVANCE(1884); + if (lookahead == 'u') ADVANCE(478); + if (lookahead == 'x') ADVANCE(517); END_STATE(); - case 490: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2145); - if (lookahead == 'N') ADVANCE(2143); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2076); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2098); - if (lookahead == 'b') ADVANCE(2096); - if (lookahead == 'c') ADVANCE(2109); - if (lookahead == 'd') ADVANCE(2084); - if (lookahead == 'e') ADVANCE(2108); - if (lookahead == 'f') ADVANCE(2080); - if (lookahead == 'h') ADVANCE(2092); - if (lookahead == 'i') ADVANCE(2070); - if (lookahead == 'l') ADVANCE(2086); - if (lookahead == 'm') ADVANCE(2082); - if (lookahead == 'n') ADVANCE(2120); - if (lookahead == 'o') ADVANCE(2127); - if (lookahead == 'r') ADVANCE(2087); - if (lookahead == 's') ADVANCE(2110); - if (lookahead == 't') ADVANCE(2126); - if (lookahead == 'u') ADVANCE(2136); - if (lookahead == 'w') ADVANCE(2090); - if (lookahead == 'x') ADVANCE(2121); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 522: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1516); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2181); + if (lookahead == 'N') ADVANCE(2180); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2114); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2136); + if (lookahead == 'b') ADVANCE(2134); + if (lookahead == 'c') ADVANCE(2148); + if (lookahead == 'd') ADVANCE(2121); + if (lookahead == 'e') ADVANCE(2147); + if (lookahead == 'f') ADVANCE(2117); + if (lookahead == 'h') ADVANCE(2130); + if (lookahead == 'i') ADVANCE(2109); + if (lookahead == 'l') ADVANCE(2123); + if (lookahead == 'm') ADVANCE(2119); + if (lookahead == 'n') ADVANCE(2160); + if (lookahead == 'o') ADVANCE(2165); + if (lookahead == 'r') ADVANCE(2124); + if (lookahead == 's') ADVANCE(2149); + if (lookahead == 't') ADVANCE(2164); + if (lookahead == 'u') ADVANCE(2173); + if (lookahead == 'w') ADVANCE(2128); + if (lookahead == 'x') ADVANCE(2161); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(512) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2149); + lookahead == ' ') SKIP(544) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1526); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2184); if (lookahead != 0 && - lookahead != ']') ADVANCE(2062); + lookahead != ']') ADVANCE(2100); END_STATE(); - case 491: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2146); - if (lookahead == 'N') ADVANCE(2142); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2074); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2101); - if (lookahead == 'b') ADVANCE(2093); - if (lookahead == 'e') ADVANCE(2065); - if (lookahead == 'f') ADVANCE(2078); - if (lookahead == 'i') ADVANCE(2071); - if (lookahead == 'm') ADVANCE(2115); - if (lookahead == 'n') ADVANCE(2122); - if (lookahead == 'o') ADVANCE(2063); - if (lookahead == 's') ADVANCE(2137); - if (lookahead == 't') ADVANCE(2129); - if (lookahead == 'x') ADVANCE(2114); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 523: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2182); + if (lookahead == 'N') ADVANCE(2179); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2112); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2139); + if (lookahead == 'b') ADVANCE(2131); + if (lookahead == 'e') ADVANCE(2103); + if (lookahead == 'f') ADVANCE(2116); + if (lookahead == 'i') ADVANCE(2110); + if (lookahead == 'm') ADVANCE(2153); + if (lookahead == 'n') ADVANCE(2162); + if (lookahead == 'o') ADVANCE(2101); + if (lookahead == 's') ADVANCE(2174); + if (lookahead == 't') ADVANCE(2167); + if (lookahead == 'x') ADVANCE(2152); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(523) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(555) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2062); + lookahead != ']') ADVANCE(2100); END_STATE(); - case 492: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2067); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2069); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '_') ADVANCE(2073); - if (lookahead == 'a') ADVANCE(2102); - if (lookahead == 'b') ADVANCE(2094); - if (lookahead == 'e') ADVANCE(2106); - if (lookahead == 'i') ADVANCE(2105); - if (lookahead == 'm') ADVANCE(2116); - if (lookahead == 'n') ADVANCE(2123); - if (lookahead == 'o') ADVANCE(2128); - if (lookahead == 's') ADVANCE(2138); - if (lookahead == 'x') ADVANCE(2112); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 524: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2105); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '_') ADVANCE(2111); + if (lookahead == 'a') ADVANCE(2145); + if (lookahead == 'b') ADVANCE(2133); + if (lookahead == 'e') ADVANCE(2146); + if (lookahead == 'i') ADVANCE(2142); + if (lookahead == 'm') ADVANCE(2157); + if (lookahead == 'n') ADVANCE(2158); + if (lookahead == 'o') ADVANCE(2166); + if (lookahead == 's') ADVANCE(2176); + if (lookahead == 'x') ADVANCE(2159); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(516) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(550) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -45768,559 +47158,559 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2062); + lookahead != '{') ADVANCE(2100); END_STATE(); - case 493: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(2791); - if (lookahead == 'G') ADVANCE(2806); - if (lookahead == 'I') ADVANCE(2933); - if (lookahead == 'K') ADVANCE(2807); - if (lookahead == 'M') ADVANCE(2808); - if (lookahead == 'N') ADVANCE(2931); - if (lookahead == 'P') ADVANCE(2809); - if (lookahead == 'T') ADVANCE(2810); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2870); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2901); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(2907); - if (lookahead == 'd') ADVANCE(2884); - if (lookahead == 'e') ADVANCE(2792); - if (lookahead == 'f') ADVANCE(2883); - if (lookahead == 'g') ADVANCE(2813); - if (lookahead == 'h') ADVANCE(2897); - if (lookahead == 'i') ADVANCE(2862); - if (lookahead == 'k') ADVANCE(2814); - if (lookahead == 'l') ADVANCE(2887); - if (lookahead == 'm') ADVANCE(2816); - if (lookahead == 'n') ADVANCE(2912); - if (lookahead == 'o') ADVANCE(2918); - if (lookahead == 'p') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2888); - if (lookahead == 's') ADVANCE(2894); - if (lookahead == 't') ADVANCE(2818); - if (lookahead == 'u') ADVANCE(2924); - if (lookahead == 'w') ADVANCE(2895); - if (lookahead == 'x') ADVANCE(2913); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2925); + case 525: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1516); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(2823); + if (lookahead == 'G') ADVANCE(2839); + if (lookahead == 'I') ADVANCE(2969); + if (lookahead == 'K') ADVANCE(2840); + if (lookahead == 'M') ADVANCE(2841); + if (lookahead == 'N') ADVANCE(2968); + if (lookahead == 'P') ADVANCE(2842); + if (lookahead == 'T') ADVANCE(2843); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2906); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2938); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(2944); + if (lookahead == 'd') ADVANCE(2919); + if (lookahead == 'e') ADVANCE(2824); + if (lookahead == 'f') ADVANCE(2918); + if (lookahead == 'g') ADVANCE(2846); + if (lookahead == 'h') ADVANCE(2934); + if (lookahead == 'i') ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2847); + if (lookahead == 'l') ADVANCE(2922); + if (lookahead == 'm') ADVANCE(2849); + if (lookahead == 'n') ADVANCE(2950); + if (lookahead == 'o') ADVANCE(2954); + if (lookahead == 'p') ADVANCE(2850); + if (lookahead == 'r') ADVANCE(2923); + if (lookahead == 's') ADVANCE(2930); + if (lookahead == 't') ADVANCE(2851); + if (lookahead == 'u') ADVANCE(2960); + if (lookahead == 'w') ADVANCE(2932); + if (lookahead == 'x') ADVANCE(2951); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2961); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(511) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(543) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1526); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(2972); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 494: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2872); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(2791); - if (lookahead == 'G') ADVANCE(2806); - if (lookahead == 'I') ADVANCE(2933); - if (lookahead == 'K') ADVANCE(2807); - if (lookahead == 'M') ADVANCE(2808); - if (lookahead == 'N') ADVANCE(2931); - if (lookahead == 'P') ADVANCE(2809); - if (lookahead == 'T') ADVANCE(2810); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2865); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2901); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(2907); - if (lookahead == 'd') ADVANCE(2884); - if (lookahead == 'e') ADVANCE(2792); - if (lookahead == 'f') ADVANCE(2883); - if (lookahead == 'g') ADVANCE(2813); - if (lookahead == 'h') ADVANCE(2897); - if (lookahead == 'i') ADVANCE(2862); - if (lookahead == 'k') ADVANCE(2814); - if (lookahead == 'l') ADVANCE(2887); - if (lookahead == 'm') ADVANCE(2816); - if (lookahead == 'n') ADVANCE(2912); - if (lookahead == 'o') ADVANCE(2918); - if (lookahead == 'p') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2888); - if (lookahead == 's') ADVANCE(2894); - if (lookahead == 't') ADVANCE(2818); - if (lookahead == 'u') ADVANCE(2924); - if (lookahead == 'w') ADVANCE(2895); - if (lookahead == 'x') ADVANCE(2913); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2925); + case 526: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2908); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(2823); + if (lookahead == 'G') ADVANCE(2839); + if (lookahead == 'I') ADVANCE(2969); + if (lookahead == 'K') ADVANCE(2840); + if (lookahead == 'M') ADVANCE(2841); + if (lookahead == 'N') ADVANCE(2968); + if (lookahead == 'P') ADVANCE(2842); + if (lookahead == 'T') ADVANCE(2843); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2901); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2938); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(2944); + if (lookahead == 'd') ADVANCE(2919); + if (lookahead == 'e') ADVANCE(2824); + if (lookahead == 'f') ADVANCE(2918); + if (lookahead == 'g') ADVANCE(2846); + if (lookahead == 'h') ADVANCE(2934); + if (lookahead == 'i') ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2847); + if (lookahead == 'l') ADVANCE(2922); + if (lookahead == 'm') ADVANCE(2849); + if (lookahead == 'n') ADVANCE(2950); + if (lookahead == 'o') ADVANCE(2954); + if (lookahead == 'p') ADVANCE(2850); + if (lookahead == 'r') ADVANCE(2923); + if (lookahead == 's') ADVANCE(2930); + if (lookahead == 't') ADVANCE(2851); + if (lookahead == 'u') ADVANCE(2960); + if (lookahead == 'w') ADVANCE(2932); + if (lookahead == 'x') ADVANCE(2951); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2961); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(511) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2875); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(543) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2911); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(2972); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 495: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2872); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(2805); - if (lookahead == 'G') ADVANCE(2806); - if (lookahead == 'I') ADVANCE(2933); - if (lookahead == 'K') ADVANCE(2807); - if (lookahead == 'M') ADVANCE(2808); - if (lookahead == 'N') ADVANCE(2931); - if (lookahead == 'P') ADVANCE(2809); - if (lookahead == 'T') ADVANCE(2810); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2865); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2901); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(2907); - if (lookahead == 'd') ADVANCE(2884); - if (lookahead == 'e') ADVANCE(2812); - if (lookahead == 'f') ADVANCE(2883); - if (lookahead == 'g') ADVANCE(2813); - if (lookahead == 'h') ADVANCE(2897); - if (lookahead == 'i') ADVANCE(2862); - if (lookahead == 'k') ADVANCE(2814); - if (lookahead == 'l') ADVANCE(2887); - if (lookahead == 'm') ADVANCE(2816); - if (lookahead == 'n') ADVANCE(2912); - if (lookahead == 'o') ADVANCE(2918); - if (lookahead == 'p') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2888); - if (lookahead == 's') ADVANCE(2894); - if (lookahead == 't') ADVANCE(2818); - if (lookahead == 'u') ADVANCE(2924); - if (lookahead == 'w') ADVANCE(2895); - if (lookahead == 'x') ADVANCE(2913); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2925); + case 527: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2908); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(2838); + if (lookahead == 'G') ADVANCE(2839); + if (lookahead == 'I') ADVANCE(2969); + if (lookahead == 'K') ADVANCE(2840); + if (lookahead == 'M') ADVANCE(2841); + if (lookahead == 'N') ADVANCE(2968); + if (lookahead == 'P') ADVANCE(2842); + if (lookahead == 'T') ADVANCE(2843); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2901); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2938); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(2944); + if (lookahead == 'd') ADVANCE(2919); + if (lookahead == 'e') ADVANCE(2845); + if (lookahead == 'f') ADVANCE(2918); + if (lookahead == 'g') ADVANCE(2846); + if (lookahead == 'h') ADVANCE(2934); + if (lookahead == 'i') ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2847); + if (lookahead == 'l') ADVANCE(2922); + if (lookahead == 'm') ADVANCE(2849); + if (lookahead == 'n') ADVANCE(2950); + if (lookahead == 'o') ADVANCE(2954); + if (lookahead == 'p') ADVANCE(2850); + if (lookahead == 'r') ADVANCE(2923); + if (lookahead == 's') ADVANCE(2930); + if (lookahead == 't') ADVANCE(2851); + if (lookahead == 'u') ADVANCE(2960); + if (lookahead == 'w') ADVANCE(2932); + if (lookahead == 'x') ADVANCE(2951); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2961); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(511) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2875); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(543) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2911); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(2972); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 496: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2820); - if (lookahead == 'G') ADVANCE(2824); - if (lookahead == 'I') ADVANCE(2934); - if (lookahead == 'K') ADVANCE(2826); - if (lookahead == 'M') ADVANCE(2828); - if (lookahead == 'N') ADVANCE(2930); - if (lookahead == 'P') ADVANCE(2830); - if (lookahead == 'T') ADVANCE(2832); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2868); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2902); - if (lookahead == 'b') ADVANCE(1602); - if (lookahead == 'd') ADVANCE(2878); - if (lookahead == 'e') ADVANCE(2795); - if (lookahead == 'f') ADVANCE(2879); - if (lookahead == 'g') ADVANCE(2836); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2863); - if (lookahead == 'k') ADVANCE(2838); - if (lookahead == 'm') ADVANCE(2840); - if (lookahead == 'n') ADVANCE(2914); - if (lookahead == 'o') ADVANCE(2797); - if (lookahead == 'p') ADVANCE(2843); - if (lookahead == 's') ADVANCE(2890); - if (lookahead == 't') ADVANCE(2845); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2910); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 528: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2853); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'I') ADVANCE(2970); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2904); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2939); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2827); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2900); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2877); + if (lookahead == 'n') ADVANCE(2952); + if (lookahead == 'o') ADVANCE(2829); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2925); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2946); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(522) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(554) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 497: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2873); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2820); - if (lookahead == 'G') ADVANCE(2824); - if (lookahead == 'I') ADVANCE(2934); - if (lookahead == 'K') ADVANCE(2826); - if (lookahead == 'M') ADVANCE(2828); - if (lookahead == 'N') ADVANCE(2930); - if (lookahead == 'P') ADVANCE(2830); - if (lookahead == 'T') ADVANCE(2832); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2871); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2902); - if (lookahead == 'b') ADVANCE(1602); - if (lookahead == 'd') ADVANCE(2878); - if (lookahead == 'e') ADVANCE(2795); - if (lookahead == 'f') ADVANCE(2879); - if (lookahead == 'g') ADVANCE(2836); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2863); - if (lookahead == 'k') ADVANCE(2838); - if (lookahead == 'm') ADVANCE(2840); - if (lookahead == 'n') ADVANCE(2914); - if (lookahead == 'o') ADVANCE(2797); - if (lookahead == 'p') ADVANCE(2843); - if (lookahead == 's') ADVANCE(2890); - if (lookahead == 't') ADVANCE(2845); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2910); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 529: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2909); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2853); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'I') ADVANCE(2970); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2907); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2939); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2827); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2900); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2877); + if (lookahead == 'n') ADVANCE(2952); + if (lookahead == 'o') ADVANCE(2829); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2925); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2946); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(522) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2876); + lookahead == ' ') SKIP(554) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2912); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 498: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2873); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2821); - if (lookahead == 'G') ADVANCE(2824); - if (lookahead == 'I') ADVANCE(2934); - if (lookahead == 'K') ADVANCE(2826); - if (lookahead == 'M') ADVANCE(2828); - if (lookahead == 'N') ADVANCE(2930); - if (lookahead == 'P') ADVANCE(2830); - if (lookahead == 'T') ADVANCE(2832); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2871); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2902); - if (lookahead == 'b') ADVANCE(1602); - if (lookahead == 'd') ADVANCE(2878); - if (lookahead == 'e') ADVANCE(2799); - if (lookahead == 'f') ADVANCE(2879); - if (lookahead == 'g') ADVANCE(2836); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2863); - if (lookahead == 'k') ADVANCE(2838); - if (lookahead == 'm') ADVANCE(2840); - if (lookahead == 'n') ADVANCE(2914); - if (lookahead == 'o') ADVANCE(2797); - if (lookahead == 'p') ADVANCE(2843); - if (lookahead == 's') ADVANCE(2890); - if (lookahead == 't') ADVANCE(2845); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2910); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 530: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2909); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2854); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'I') ADVANCE(2970); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2907); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2939); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2831); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2900); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2877); + if (lookahead == 'n') ADVANCE(2952); + if (lookahead == 'o') ADVANCE(2829); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2925); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2946); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(522) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2876); + lookahead == ' ') SKIP(554) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2912); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 499: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2872); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(2805); - if (lookahead == 'G') ADVANCE(2806); - if (lookahead == 'I') ADVANCE(2933); - if (lookahead == 'K') ADVANCE(2807); - if (lookahead == 'M') ADVANCE(2808); - if (lookahead == 'N') ADVANCE(2931); - if (lookahead == 'P') ADVANCE(2809); - if (lookahead == 'T') ADVANCE(2810); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2865); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2901); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(2907); - if (lookahead == 'd') ADVANCE(2884); - if (lookahead == 'e') ADVANCE(2812); - if (lookahead == 'f') ADVANCE(2883); - if (lookahead == 'g') ADVANCE(2813); - if (lookahead == 'h') ADVANCE(2897); - if (lookahead == 'i') ADVANCE(2862); - if (lookahead == 'k') ADVANCE(2814); - if (lookahead == 'l') ADVANCE(2887); - if (lookahead == 'm') ADVANCE(2816); - if (lookahead == 'n') ADVANCE(2912); - if (lookahead == 'o') ADVANCE(2918); - if (lookahead == 'p') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2888); - if (lookahead == 's') ADVANCE(2894); - if (lookahead == 't') ADVANCE(2818); - if (lookahead == 'u') ADVANCE(2924); - if (lookahead == 'w') ADVANCE(2895); - if (lookahead == 'x') ADVANCE(2913); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2925); + case 531: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2908); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(2838); + if (lookahead == 'G') ADVANCE(2839); + if (lookahead == 'I') ADVANCE(2969); + if (lookahead == 'K') ADVANCE(2840); + if (lookahead == 'M') ADVANCE(2841); + if (lookahead == 'N') ADVANCE(2968); + if (lookahead == 'P') ADVANCE(2842); + if (lookahead == 'T') ADVANCE(2843); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2901); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2938); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(2944); + if (lookahead == 'd') ADVANCE(2919); + if (lookahead == 'e') ADVANCE(2845); + if (lookahead == 'f') ADVANCE(2918); + if (lookahead == 'g') ADVANCE(2846); + if (lookahead == 'h') ADVANCE(2934); + if (lookahead == 'i') ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2847); + if (lookahead == 'l') ADVANCE(2922); + if (lookahead == 'm') ADVANCE(2849); + if (lookahead == 'n') ADVANCE(2950); + if (lookahead == 'o') ADVANCE(2954); + if (lookahead == 'p') ADVANCE(2850); + if (lookahead == 'r') ADVANCE(2923); + if (lookahead == 's') ADVANCE(2930); + if (lookahead == 't') ADVANCE(2851); + if (lookahead == 'u') ADVANCE(2960); + if (lookahead == 'w') ADVANCE(2932); + if (lookahead == 'x') ADVANCE(2951); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2961); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(511) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2875); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(543) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2911); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(2972); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 500: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2873); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2821); - if (lookahead == 'G') ADVANCE(2824); - if (lookahead == 'I') ADVANCE(2934); - if (lookahead == 'K') ADVANCE(2826); - if (lookahead == 'M') ADVANCE(2828); - if (lookahead == 'N') ADVANCE(2930); - if (lookahead == 'P') ADVANCE(2830); - if (lookahead == 'T') ADVANCE(2832); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2871); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2902); - if (lookahead == 'b') ADVANCE(1602); - if (lookahead == 'd') ADVANCE(2878); - if (lookahead == 'e') ADVANCE(2799); - if (lookahead == 'f') ADVANCE(2879); - if (lookahead == 'g') ADVANCE(2836); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2863); - if (lookahead == 'k') ADVANCE(2838); - if (lookahead == 'm') ADVANCE(2840); - if (lookahead == 'n') ADVANCE(2914); - if (lookahead == 'o') ADVANCE(2797); - if (lookahead == 'p') ADVANCE(2843); - if (lookahead == 's') ADVANCE(2890); - if (lookahead == 't') ADVANCE(2845); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2910); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 532: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2909); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2854); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'I') ADVANCE(2970); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2907); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2939); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2831); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2900); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2877); + if (lookahead == 'n') ADVANCE(2952); + if (lookahead == 'o') ADVANCE(2829); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2925); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2946); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(522) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2876); + lookahead == ' ') SKIP(554) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2912); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 501: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == '_') ADVANCE(2867); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 533: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == '_') ADVANCE(2903); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2869); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(515) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(549) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -46328,53 +47718,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 502: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2822); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2834); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 534: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2855); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2869); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(515) + lookahead == ' ') SKIP(549) if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -46382,53 +47772,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 503: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 535: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2872); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(515) + lookahead == ' ') SKIP(549) if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -46436,52 +47826,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 504: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2802); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2804); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2823); - if (lookahead == 'G') ADVANCE(2825); - if (lookahead == 'K') ADVANCE(2827); - if (lookahead == 'M') ADVANCE(2829); - if (lookahead == 'P') ADVANCE(2831); - if (lookahead == 'T') ADVANCE(2833); - if (lookahead == 'a') ADVANCE(2903); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(2880); - if (lookahead == 'e') ADVANCE(2835); - if (lookahead == 'g') ADVANCE(2837); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'i') ADVANCE(2906); - if (lookahead == 'k') ADVANCE(2839); - if (lookahead == 'm') ADVANCE(2842); - if (lookahead == 'n') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2920); - if (lookahead == 'p') ADVANCE(2844); - if (lookahead == 's') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2846); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(2908); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 536: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2834); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2836); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2856); + if (lookahead == 'G') ADVANCE(2858); + if (lookahead == 'K') ADVANCE(2860); + if (lookahead == 'M') ADVANCE(2862); + if (lookahead == 'P') ADVANCE(2864); + if (lookahead == 'T') ADVANCE(2866); + if (lookahead == 'a') ADVANCE(2943); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(2917); + if (lookahead == 'e') ADVANCE(2872); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'i') ADVANCE(2942); + if (lookahead == 'k') ADVANCE(2876); + if (lookahead == 'm') ADVANCE(2879); + if (lookahead == 'n') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(2956); + if (lookahead == 'p') ADVANCE(2882); + if (lookahead == 's') ADVANCE(2928); + if (lookahead == 't') ADVANCE(2884); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == 'x') ADVANCE(2949); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(515) + lookahead == ' ') SKIP(549) if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -46489,1097 +47879,1097 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2790); + lookahead != '{') ADVANCE(2822); END_STATE(); - case 505: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(759); - if (lookahead == 'b') ADVANCE(750); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(777); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(678); - if (lookahead == 'n') ADVANCE(791); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(783); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 537: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(809); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(710); + if (lookahead == 'n') ADVANCE(823); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(510) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(542) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 506: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(633); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(759); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(640); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(644); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(646); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(734); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 538: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(665); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(672); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(676); + if (lookahead == 'n') ADVANCE(822); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(678); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(766); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(511) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(543) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 507: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(621); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(759); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(622); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(644); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(646); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(734); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 539: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(653); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(654); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(676); + if (lookahead == 'n') ADVANCE(822); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(678); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(766); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(511) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(543) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 508: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(621); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(669); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(759); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(622); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(644); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(646); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(734); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 540: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1516); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(653); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(701); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(654); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(676); + if (lookahead == 'n') ADVANCE(822); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(678); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(766); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(509) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(541) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1526); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 509: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(633); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(759); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(640); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(644); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(646); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(734); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 541: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(665); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(672); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(676); + if (lookahead == 'n') ADVANCE(822); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(678); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(766); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(509) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(541) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 510: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(759); - if (lookahead == 'b') ADVANCE(750); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(777); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(678); - if (lookahead == 'n') ADVANCE(791); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(783); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 542: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(809); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(710); + if (lookahead == 'n') ADVANCE(823); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(510) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(542) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 511: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1609); - if (lookahead == 'E') ADVANCE(633); - if (lookahead == 'G') ADVANCE(634); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'K') ADVANCE(635); - if (lookahead == 'M') ADVANCE(636); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == 'P') ADVANCE(637); - if (lookahead == 'T') ADVANCE(638); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(759); - if (lookahead == 'b') ADVANCE(1605); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(640); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'g') ADVANCE(641); - if (lookahead == 'h') ADVANCE(744); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'k') ADVANCE(642); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(644); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'p') ADVANCE(645); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(720); - if (lookahead == 't') ADVANCE(646); - if (lookahead == 'u') ADVANCE(818); - if (lookahead == 'w') ADVANCE(734); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(819); + case 543: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1642); + if (lookahead == 'E') ADVANCE(665); + if (lookahead == 'G') ADVANCE(666); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'K') ADVANCE(667); + if (lookahead == 'M') ADVANCE(668); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'T') ADVANCE(670); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'b') ADVANCE(1638); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'e') ADVANCE(672); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'g') ADVANCE(673); + if (lookahead == 'h') ADVANCE(776); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'k') ADVANCE(674); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(676); + if (lookahead == 'n') ADVANCE(822); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(678); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'w') ADVANCE(766); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(851); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(511) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(543) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 512: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(759); - if (lookahead == 'b') ADVANCE(750); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(777); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(666); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(678); - if (lookahead == 'n') ADVANCE(791); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(783); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == 'x') ADVANCE(793); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 544: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(809); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(710); + if (lookahead == 'n') ADVANCE(823); + if (lookahead == 'o') ADVANCE(833); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == 'x') ADVANCE(825); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(512) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(544) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 513: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(247); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == '_') ADVANCE(291); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(254); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(386); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); + case 545: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1368); + if (lookahead == '+') ADVANCE(1403); + if (lookahead == '-') ADVANCE(1239); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1389); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(634); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(385); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'm') ADVANCE(414); + if (lookahead == 'n') ADVANCE(415); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 's') ADVANCE(457); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(514) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(546) END_STATE(); - case 514: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(258); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(386); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); + case 546: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1368); + if (lookahead == '+') ADVANCE(1403); + if (lookahead == '-') ADVANCE(1239); + if (lookahead == '/') ADVANCE(1389); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(634); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(385); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'm') ADVANCE(414); + if (lookahead == 'n') ADVANCE(415); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 's') ADVANCE(457); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(514) + lookahead == ' ') SKIP(546) END_STATE(); - case 515: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(248); - if (lookahead == 'G') ADVANCE(249); - if (lookahead == 'K') ADVANCE(250); - if (lookahead == 'M') ADVANCE(251); - if (lookahead == 'P') ADVANCE(252); - if (lookahead == 'T') ADVANCE(253); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(1603); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(259); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'k') ADVANCE(261); - if (lookahead == 'm') ADVANCE(263); - if (lookahead == 'n') ADVANCE(386); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(265); - if (lookahead == 's') ADVANCE(323); - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'u') ADVANCE(405); - if (lookahead == 'w') ADVANCE(356); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(406); + case 547: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(289); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == '_') ADVANCE(326); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'c') ADVANCE(331); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(303); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(439); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(515) + lookahead == ' ') SKIP(548) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 516: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(348); - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(385); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 's') ADVANCE(415); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 548: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(290); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'c') ADVANCE(331); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(303); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(439); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(516) + lookahead == ' ') SKIP(548) END_STATE(); - case 517: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1335); - if (lookahead == '+') ADVANCE(1373); - if (lookahead == '-') ADVANCE(1207); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1356); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(348); - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(385); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 's') ADVANCE(415); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 549: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(290); + if (lookahead == 'G') ADVANCE(291); + if (lookahead == 'K') ADVANCE(292); + if (lookahead == 'M') ADVANCE(293); + if (lookahead == 'P') ADVANCE(294); + if (lookahead == 'T') ADVANCE(295); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'e') ADVANCE(299); + if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'h') ADVANCE(427); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'm') ADVANCE(303); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(391); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(439); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(518) + lookahead == ' ') SKIP(549) END_STATE(); - case 518: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(242); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1335); - if (lookahead == '+') ADVANCE(1373); - if (lookahead == '-') ADVANCE(1207); - if (lookahead == '/') ADVANCE(1356); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'a') ADVANCE(368); - if (lookahead == 'b') ADVANCE(348); - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(385); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 's') ADVANCE(415); - if (lookahead == 'x') ADVANCE(375); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 550: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(284); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(286); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'b') ADVANCE(385); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'm') ADVANCE(414); + if (lookahead == 'n') ADVANCE(415); + if (lookahead == 'o') ADVANCE(428); + if (lookahead == 's') ADVANCE(457); + if (lookahead == 'x') ADVANCE(418); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(518) + lookahead == ' ') SKIP(550) END_STATE(); - case 519: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(1923); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1924); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(2042); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(1998); - if (lookahead == 'b') ADVANCE(1989); - if (lookahead == 'e') ADVANCE(1911); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'i') ADVANCE(1959); - if (lookahead == 'm') ADVANCE(2004); - if (lookahead == 'n') ADVANCE(2008); - if (lookahead == 'o') ADVANCE(1907); - if (lookahead == 's') ADVANCE(2024); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == 'x') ADVANCE(2002); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 551: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(2025); + if (lookahead == 'e') ADVANCE(1944); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'm') ADVANCE(2041); + if (lookahead == 'n') ADVANCE(2045); + if (lookahead == 'o') ADVANCE(1940); + if (lookahead == 's') ADVANCE(2062); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(521) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(553) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 520: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(1923); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1924); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2042); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(1998); - if (lookahead == 'b') ADVANCE(1989); - if (lookahead == 'e') ADVANCE(1911); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'i') ADVANCE(1959); - if (lookahead == 'm') ADVANCE(2004); - if (lookahead == 'n') ADVANCE(2008); - if (lookahead == 'o') ADVANCE(1907); - if (lookahead == 's') ADVANCE(2024); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == 'x') ADVANCE(2002); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 552: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(2025); + if (lookahead == 'e') ADVANCE(1944); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'm') ADVANCE(2041); + if (lookahead == 'n') ADVANCE(2045); + if (lookahead == 'o') ADVANCE(1940); + if (lookahead == 's') ADVANCE(2062); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(523) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(555) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 521: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(1923); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1924); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(2042); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(1998); - if (lookahead == 'b') ADVANCE(1989); - if (lookahead == 'e') ADVANCE(1911); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'i') ADVANCE(1959); - if (lookahead == 'm') ADVANCE(2004); - if (lookahead == 'n') ADVANCE(2008); - if (lookahead == 'o') ADVANCE(1907); - if (lookahead == 's') ADVANCE(2024); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == 'x') ADVANCE(2002); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 553: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(2025); + if (lookahead == 'e') ADVANCE(1944); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'm') ADVANCE(2041); + if (lookahead == 'n') ADVANCE(2045); + if (lookahead == 'o') ADVANCE(1940); + if (lookahead == 's') ADVANCE(2062); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(521) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(553) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 522: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(1923); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1924); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(1929); - if (lookahead == 'G') ADVANCE(1930); - if (lookahead == 'I') ADVANCE(2042); - if (lookahead == 'K') ADVANCE(1931); - if (lookahead == 'M') ADVANCE(1932); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == 'P') ADVANCE(1933); - if (lookahead == 'T') ADVANCE(1934); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(1998); - if (lookahead == 'b') ADVANCE(1602); - if (lookahead == 'd') ADVANCE(1965); - if (lookahead == 'e') ADVANCE(1909); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'g') ADVANCE(1935); - if (lookahead == 'h') ADVANCE(2009); - if (lookahead == 'i') ADVANCE(1959); - if (lookahead == 'k') ADVANCE(1936); - if (lookahead == 'm') ADVANCE(1937); - if (lookahead == 'n') ADVANCE(2007); - if (lookahead == 'o') ADVANCE(1907); - if (lookahead == 'p') ADVANCE(1939); - if (lookahead == 's') ADVANCE(1980); - if (lookahead == 't') ADVANCE(1940); - if (lookahead == 'u') ADVANCE(2019); - if (lookahead == 'w') ADVANCE(1993); - if (lookahead == 'x') ADVANCE(2002); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2020); + case 554: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(1963); + if (lookahead == 'G') ADVANCE(1964); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'K') ADVANCE(1965); + if (lookahead == 'M') ADVANCE(1966); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == 'P') ADVANCE(1967); + if (lookahead == 'T') ADVANCE(1968); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(1635); + if (lookahead == 'd') ADVANCE(2001); + if (lookahead == 'e') ADVANCE(1942); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'g') ADVANCE(1971); + if (lookahead == 'h') ADVANCE(2046); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'k') ADVANCE(1972); + if (lookahead == 'm') ADVANCE(1973); + if (lookahead == 'n') ADVANCE(2044); + if (lookahead == 'o') ADVANCE(1940); + if (lookahead == 'p') ADVANCE(1975); + if (lookahead == 's') ADVANCE(2016); + if (lookahead == 't') ADVANCE(1976); + if (lookahead == 'u') ADVANCE(2057); + if (lookahead == 'w') ADVANCE(2029); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2058); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(522) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(554) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 523: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(1923); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(1924); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2042); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(1998); - if (lookahead == 'b') ADVANCE(1989); - if (lookahead == 'e') ADVANCE(1911); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'i') ADVANCE(1959); - if (lookahead == 'm') ADVANCE(2004); - if (lookahead == 'n') ADVANCE(2008); - if (lookahead == 'o') ADVANCE(1907); - if (lookahead == 's') ADVANCE(2024); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == 'x') ADVANCE(2002); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 555: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(1956); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(1957); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2080); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'b') ADVANCE(2025); + if (lookahead == 'e') ADVANCE(1944); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'm') ADVANCE(2041); + if (lookahead == 'n') ADVANCE(2045); + if (lookahead == 'o') ADVANCE(1940); + if (lookahead == 's') ADVANCE(2062); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == 'x') ADVANCE(2039); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(523) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(555) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 524: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2619); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2692); - if (lookahead == 'N') ADVANCE(2690); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2616); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2646); - if (lookahead == 'b') ADVANCE(2644); - if (lookahead == 'c') ADVANCE(2657); - if (lookahead == 'd') ADVANCE(2632); - if (lookahead == 'e') ADVANCE(2656); - if (lookahead == 'f') ADVANCE(2628); - if (lookahead == 'h') ADVANCE(2640); - if (lookahead == 'i') ADVANCE(2613); - if (lookahead == 'l') ADVANCE(2634); - if (lookahead == 'm') ADVANCE(2630); - if (lookahead == 'n') ADVANCE(2668); - if (lookahead == 'o') ADVANCE(2675); - if (lookahead == 'r') ADVANCE(2635); - if (lookahead == 's') ADVANCE(2658); - if (lookahead == 't') ADVANCE(2674); - if (lookahead == 'u') ADVANCE(2683); - if (lookahead == 'w') ADVANCE(2638); - if (lookahead == 'x') ADVANCE(2669); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 556: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2656); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2727); + if (lookahead == 'N') ADVANCE(2726); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2652); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2683); + if (lookahead == 'b') ADVANCE(2681); + if (lookahead == 'c') ADVANCE(2695); + if (lookahead == 'd') ADVANCE(2668); + if (lookahead == 'e') ADVANCE(2694); + if (lookahead == 'f') ADVANCE(2664); + if (lookahead == 'h') ADVANCE(2677); + if (lookahead == 'i') ADVANCE(2650); + if (lookahead == 'l') ADVANCE(2670); + if (lookahead == 'm') ADVANCE(2666); + if (lookahead == 'n') ADVANCE(2707); + if (lookahead == 'o') ADVANCE(2712); + if (lookahead == 'r') ADVANCE(2671); + if (lookahead == 's') ADVANCE(2696); + if (lookahead == 't') ADVANCE(2711); + if (lookahead == 'u') ADVANCE(2719); + if (lookahead == 'w') ADVANCE(2675); + if (lookahead == 'x') ADVANCE(2708); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(512) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2622); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2696); + lookahead == ' ') SKIP(544) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2659); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2730); if (lookahead != 0 && - lookahead != ']') ADVANCE(2607); + lookahead != ']') ADVANCE(2644); END_STATE(); - case 525: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2620); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2693); - if (lookahead == 'N') ADVANCE(2689); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2618); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2649); - if (lookahead == 'b') ADVANCE(2641); - if (lookahead == 'e') ADVANCE(2610); - if (lookahead == 'f') ADVANCE(2626); - if (lookahead == 'i') ADVANCE(2614); - if (lookahead == 'm') ADVANCE(2663); - if (lookahead == 'n') ADVANCE(2670); - if (lookahead == 'o') ADVANCE(2608); - if (lookahead == 's') ADVANCE(2684); - if (lookahead == 't') ADVANCE(2677); - if (lookahead == 'x') ADVANCE(2662); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 557: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2657); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2728); + if (lookahead == 'N') ADVANCE(2725); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2655); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2686); + if (lookahead == 'b') ADVANCE(2678); + if (lookahead == 'e') ADVANCE(2647); + if (lookahead == 'f') ADVANCE(2663); + if (lookahead == 'i') ADVANCE(2651); + if (lookahead == 'm') ADVANCE(2700); + if (lookahead == 'n') ADVANCE(2709); + if (lookahead == 'o') ADVANCE(2645); + if (lookahead == 's') ADVANCE(2720); + if (lookahead == 't') ADVANCE(2714); + if (lookahead == 'x') ADVANCE(2699); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(523) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2623); + lookahead == ' ') SKIP(555) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2660); if (lookahead != 0 && - lookahead != ']') ADVANCE(2607); + lookahead != ']') ADVANCE(2644); END_STATE(); - case 526: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2612); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1193); - if (lookahead == '=') ADVANCE(1469); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2650); - if (lookahead == 'b') ADVANCE(2642); - if (lookahead == 'e') ADVANCE(2654); - if (lookahead == 'i') ADVANCE(2653); - if (lookahead == 'm') ADVANCE(2664); - if (lookahead == 'n') ADVANCE(2671); - if (lookahead == 'o') ADVANCE(2676); - if (lookahead == 's') ADVANCE(2685); - if (lookahead == 'x') ADVANCE(2660); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 558: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2649); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1225); + if (lookahead == '=') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2692); + if (lookahead == 'b') ADVANCE(2680); + if (lookahead == 'e') ADVANCE(2693); + if (lookahead == 'i') ADVANCE(2689); + if (lookahead == 'm') ADVANCE(2704); + if (lookahead == 'n') ADVANCE(2705); + if (lookahead == 'o') ADVANCE(2713); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'x') ADVANCE(2706); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(516) + lookahead == ' ') SKIP(550) if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -47587,17088 +48977,17127 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2607); + lookahead != '{') ADVANCE(2644); END_STATE(); - case 527: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2712); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2785); - if (lookahead == 'N') ADVANCE(2783); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2709); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2739); - if (lookahead == 'b') ADVANCE(2737); - if (lookahead == 'c') ADVANCE(2750); - if (lookahead == 'd') ADVANCE(2725); - if (lookahead == 'e') ADVANCE(2749); - if (lookahead == 'f') ADVANCE(2721); - if (lookahead == 'h') ADVANCE(2733); - if (lookahead == 'i') ADVANCE(2706); - if (lookahead == 'l') ADVANCE(2727); - if (lookahead == 'm') ADVANCE(2723); - if (lookahead == 'n') ADVANCE(2761); - if (lookahead == 'o') ADVANCE(2768); - if (lookahead == 'r') ADVANCE(2728); - if (lookahead == 's') ADVANCE(2751); - if (lookahead == 't') ADVANCE(2767); - if (lookahead == 'u') ADVANCE(2776); - if (lookahead == 'w') ADVANCE(2731); - if (lookahead == 'x') ADVANCE(2762); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 559: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1207); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == '-') ADVANCE(1244); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == '0') ADVANCE(2236); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == 'I') ADVANCE(2615); + if (lookahead == 'N') ADVANCE(2605); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1921); + if (lookahead == '_') ADVANCE(2229); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2378); + if (lookahead == 'b') ADVANCE(2348); + if (lookahead == 'c') ADVANCE(2421); + if (lookahead == 'd') ADVANCE(2283); + if (lookahead == 'e') ADVANCE(2407); + if (lookahead == 'f') ADVANCE(2241); + if (lookahead == 'h') ADVANCE(2356); + if (lookahead == 'i') ADVANCE(2225); + if (lookahead == 'l') ADVANCE(2307); + if (lookahead == 'm') ADVANCE(2252); + if (lookahead == 'n') ADVANCE(2439); + if (lookahead == 'o') ADVANCE(2452); + if (lookahead == 'r') ADVANCE(2284); + if (lookahead == 's') ADVANCE(2422); + if (lookahead == 't') ADVANCE(2453); + if (lookahead == 'u') ADVANCE(2503); + if (lookahead == 'w') ADVANCE(2334); + if (lookahead == 'x') ADVANCE(2437); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(512) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2715); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2789); + lookahead == ' ') SKIP(544) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2239); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2642); if (lookahead != 0 && - lookahead != ']') ADVANCE(2697); + lookahead != ']') ADVANCE(2643); END_STATE(); - case 528: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == '0') ADVANCE(2713); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'I') ADVANCE(2786); - if (lookahead == 'N') ADVANCE(2782); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2711); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2742); - if (lookahead == 'b') ADVANCE(2734); - if (lookahead == 'e') ADVANCE(2700); - if (lookahead == 'f') ADVANCE(2719); - if (lookahead == 'i') ADVANCE(2707); - if (lookahead == 'm') ADVANCE(2756); - if (lookahead == 'n') ADVANCE(2763); - if (lookahead == 'o') ADVANCE(2698); - if (lookahead == 's') ADVANCE(2777); - if (lookahead == 't') ADVANCE(2770); - if (lookahead == 'x') ADVANCE(2755); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 560: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1207); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == '-') ADVANCE(1244); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == '0') ADVANCE(2236); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == 'I') ADVANCE(2616); + if (lookahead == 'N') ADVANCE(2606); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2240); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2402); + if (lookahead == 'b') ADVANCE(2354); + if (lookahead == 'e') ADVANCE(2187); + if (lookahead == 'f') ADVANCE(2246); + if (lookahead == 'i') ADVANCE(2226); + if (lookahead == 'm') ADVANCE(2434); + if (lookahead == 'n') ADVANCE(2431); + if (lookahead == 'o') ADVANCE(2185); + if (lookahead == 's') ADVANCE(2536); + if (lookahead == 't') ADVANCE(2469); + if (lookahead == 'x') ADVANCE(2433); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1203); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(523) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2716); + lookahead == ' ') SKIP(555) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2239); if (lookahead != 0 && - lookahead != ']') ADVANCE(2697); + lookahead != ']') ADVANCE(2643); END_STATE(); - case 529: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2703); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(2705); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == 'a') ADVANCE(2743); - if (lookahead == 'b') ADVANCE(2735); - if (lookahead == 'e') ADVANCE(2747); - if (lookahead == 'i') ADVANCE(2746); - if (lookahead == 'm') ADVANCE(2757); - if (lookahead == 'n') ADVANCE(2764); - if (lookahead == 'o') ADVANCE(2769); - if (lookahead == 's') ADVANCE(2778); - if (lookahead == 'x') ADVANCE(2753); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 561: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2215); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1369); + if (lookahead == '+') ADVANCE(1405); + if (lookahead == '-') ADVANCE(1246); + if (lookahead == '/') ADVANCE(1390); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1426); + if (lookahead == '=') ADVANCE(2217); + if (lookahead == '>') ADVANCE(1228); + if (lookahead == 'a') ADVANCE(2402); + if (lookahead == 'b') ADVANCE(2354); + if (lookahead == 'e') ADVANCE(2412); + if (lookahead == 'i') ADVANCE(2406); + if (lookahead == 'm') ADVANCE(2434); + if (lookahead == 'n') ADVANCE(2432); + if (lookahead == 'o') ADVANCE(2468); + if (lookahead == 's') ADVANCE(2536); + if (lookahead == 'x') ADVANCE(2433); + if (lookahead == '|') ADVANCE(1203); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(516) + lookahead == ' ') SKIP(550) if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && + lookahead != '"' && lookahead != '\'' && lookahead != '(' && lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2697); + lookahead != '{') ADVANCE(2643); END_STATE(); - case 530: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1175); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == '-') ADVANCE(1211); - if (lookahead == '.') ADVANCE(1281); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == '0') ADVANCE(2200); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == 'I') ADVANCE(2578); - if (lookahead == 'N') ADVANCE(2568); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1888); - if (lookahead == '_') ADVANCE(2193); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2341); - if (lookahead == 'b') ADVANCE(2311); - if (lookahead == 'c') ADVANCE(2384); - if (lookahead == 'd') ADVANCE(2247); - if (lookahead == 'e') ADVANCE(2370); - if (lookahead == 'f') ADVANCE(2205); - if (lookahead == 'h') ADVANCE(2319); - if (lookahead == 'i') ADVANCE(2189); - if (lookahead == 'l') ADVANCE(2271); - if (lookahead == 'm') ADVANCE(2216); - if (lookahead == 'n') ADVANCE(2402); - if (lookahead == 'o') ADVANCE(2415); - if (lookahead == 'r') ADVANCE(2248); - if (lookahead == 's') ADVANCE(2385); - if (lookahead == 't') ADVANCE(2416); - if (lookahead == 'u') ADVANCE(2466); - if (lookahead == 'w') ADVANCE(2297); - if (lookahead == 'x') ADVANCE(2400); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 562: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2747); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2818); + if (lookahead == 'N') ADVANCE(2817); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2743); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2774); + if (lookahead == 'b') ADVANCE(2772); + if (lookahead == 'c') ADVANCE(2786); + if (lookahead == 'd') ADVANCE(2759); + if (lookahead == 'e') ADVANCE(2785); + if (lookahead == 'f') ADVANCE(2755); + if (lookahead == 'h') ADVANCE(2768); + if (lookahead == 'i') ADVANCE(2741); + if (lookahead == 'l') ADVANCE(2761); + if (lookahead == 'm') ADVANCE(2757); + if (lookahead == 'n') ADVANCE(2798); + if (lookahead == 'o') ADVANCE(2803); + if (lookahead == 'r') ADVANCE(2762); + if (lookahead == 's') ADVANCE(2787); + if (lookahead == 't') ADVANCE(2802); + if (lookahead == 'u') ADVANCE(2810); + if (lookahead == 'w') ADVANCE(2766); + if (lookahead == 'x') ADVANCE(2799); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(512) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2203); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2605); + lookahead == ' ') SKIP(544) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2750); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2821); if (lookahead != 0 && - lookahead != ']') ADVANCE(2606); + lookahead != ']') ADVANCE(2731); END_STATE(); - case 531: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1175); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == '-') ADVANCE(1211); - if (lookahead == '.') ADVANCE(1281); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == '0') ADVANCE(2200); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == 'I') ADVANCE(2579); - if (lookahead == 'N') ADVANCE(2569); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2204); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2365); - if (lookahead == 'b') ADVANCE(2317); - if (lookahead == 'e') ADVANCE(2152); - if (lookahead == 'f') ADVANCE(2210); - if (lookahead == 'i') ADVANCE(2190); - if (lookahead == 'm') ADVANCE(2397); - if (lookahead == 'n') ADVANCE(2394); - if (lookahead == 'o') ADVANCE(2150); - if (lookahead == 's') ADVANCE(2499); - if (lookahead == 't') ADVANCE(2432); - if (lookahead == 'x') ADVANCE(2396); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1171); - if (lookahead == '}') ADVANCE(1270); + case 563: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == '0') ADVANCE(2748); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'I') ADVANCE(2819); + if (lookahead == 'N') ADVANCE(2816); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2746); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2777); + if (lookahead == 'b') ADVANCE(2769); + if (lookahead == 'e') ADVANCE(2734); + if (lookahead == 'f') ADVANCE(2754); + if (lookahead == 'i') ADVANCE(2742); + if (lookahead == 'm') ADVANCE(2791); + if (lookahead == 'n') ADVANCE(2800); + if (lookahead == 'o') ADVANCE(2732); + if (lookahead == 's') ADVANCE(2811); + if (lookahead == 't') ADVANCE(2805); + if (lookahead == 'x') ADVANCE(2790); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(523) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2203); + lookahead == ' ') SKIP(555) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2751); if (lookahead != 0 && - lookahead != ']') ADVANCE(2606); + lookahead != ']') ADVANCE(2731); END_STATE(); - case 532: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '!') ADVANCE(2180); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1336); - if (lookahead == '+') ADVANCE(1371); - if (lookahead == '-') ADVANCE(1213); - if (lookahead == '/') ADVANCE(1357); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1393); - if (lookahead == '=') ADVANCE(2182); - if (lookahead == '>') ADVANCE(1196); - if (lookahead == 'a') ADVANCE(2365); - if (lookahead == 'b') ADVANCE(2317); - if (lookahead == 'e') ADVANCE(2375); - if (lookahead == 'i') ADVANCE(2369); - if (lookahead == 'm') ADVANCE(2397); - if (lookahead == 'n') ADVANCE(2395); - if (lookahead == 'o') ADVANCE(2431); - if (lookahead == 's') ADVANCE(2499); - if (lookahead == 'x') ADVANCE(2396); - if (lookahead == '|') ADVANCE(1171); - if (lookahead == '}') ADVANCE(1270); + case 564: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '!') ADVANCE(2737); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1367); + if (lookahead == '+') ADVANCE(1404); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == '/') ADVANCE(1388); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2739); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == 'a') ADVANCE(2783); + if (lookahead == 'b') ADVANCE(2771); + if (lookahead == 'e') ADVANCE(2784); + if (lookahead == 'i') ADVANCE(2780); + if (lookahead == 'm') ADVANCE(2795); + if (lookahead == 'n') ADVANCE(2796); + if (lookahead == 'o') ADVANCE(2804); + if (lookahead == 's') ADVANCE(2813); + if (lookahead == 'x') ADVANCE(2797); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(516) + lookahead == ' ') SKIP(550) if (lookahead != 0 && - lookahead != '"' && + (lookahead < '"' || '$' < lookahead) && lookahead != '\'' && lookahead != '(' && lookahead != '[' && lookahead != ']' && lookahead != '`' && - lookahead != '{') ADVANCE(2606); + lookahead != '{') ADVANCE(2731); END_STATE(); - case 533: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1333); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(2145); - if (lookahead == 'N') ADVANCE(2143); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2076); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2099); - if (lookahead == 'b') ADVANCE(2132); - if (lookahead == 'c') ADVANCE(2109); - if (lookahead == 'd') ADVANCE(2084); - if (lookahead == 'e') ADVANCE(2133); - if (lookahead == 'f') ADVANCE(2080); - if (lookahead == 'h') ADVANCE(2092); - if (lookahead == 'i') ADVANCE(2089); - if (lookahead == 'l') ADVANCE(2086); - if (lookahead == 'm') ADVANCE(2081); - if (lookahead == 'n') ADVANCE(2119); - if (lookahead == 'o') ADVANCE(2141); - if (lookahead == 'r') ADVANCE(2087); - if (lookahead == 's') ADVANCE(2111); - if (lookahead == 't') ADVANCE(2126); - if (lookahead == 'u') ADVANCE(2136); - if (lookahead == 'w') ADVANCE(2090); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 565: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1366); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1516); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(2181); + if (lookahead == 'N') ADVANCE(2180); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2114); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2137); + if (lookahead == 'b') ADVANCE(2169); + if (lookahead == 'c') ADVANCE(2148); + if (lookahead == 'd') ADVANCE(2121); + if (lookahead == 'e') ADVANCE(2170); + if (lookahead == 'f') ADVANCE(2117); + if (lookahead == 'h') ADVANCE(2130); + if (lookahead == 'i') ADVANCE(2126); + if (lookahead == 'l') ADVANCE(2123); + if (lookahead == 'm') ADVANCE(2118); + if (lookahead == 'n') ADVANCE(2156); + if (lookahead == 'o') ADVANCE(2178); + if (lookahead == 'r') ADVANCE(2124); + if (lookahead == 's') ADVANCE(2150); + if (lookahead == 't') ADVANCE(2164); + if (lookahead == 'u') ADVANCE(2173); + if (lookahead == 'w') ADVANCE(2128); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(536) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2149); + lookahead == ' ') SKIP(568) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1526); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2184); if (lookahead != 0 && - lookahead != ']') ADVANCE(2062); + lookahead != ']') ADVANCE(2100); END_STATE(); - case 534: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1333); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(2619); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'I') ADVANCE(2692); - if (lookahead == 'N') ADVANCE(2690); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2616); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2647); - if (lookahead == 'b') ADVANCE(2680); - if (lookahead == 'c') ADVANCE(2657); - if (lookahead == 'd') ADVANCE(2632); - if (lookahead == 'e') ADVANCE(2681); - if (lookahead == 'f') ADVANCE(2628); - if (lookahead == 'h') ADVANCE(2640); - if (lookahead == 'i') ADVANCE(2637); - if (lookahead == 'l') ADVANCE(2634); - if (lookahead == 'm') ADVANCE(2629); - if (lookahead == 'n') ADVANCE(2667); - if (lookahead == 'o') ADVANCE(2688); - if (lookahead == 'r') ADVANCE(2635); - if (lookahead == 's') ADVANCE(2659); - if (lookahead == 't') ADVANCE(2674); - if (lookahead == 'u') ADVANCE(2683); - if (lookahead == 'w') ADVANCE(2638); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 566: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1366); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(2656); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'I') ADVANCE(2727); + if (lookahead == 'N') ADVANCE(2726); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2652); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2684); + if (lookahead == 'b') ADVANCE(2716); + if (lookahead == 'c') ADVANCE(2695); + if (lookahead == 'd') ADVANCE(2668); + if (lookahead == 'e') ADVANCE(2717); + if (lookahead == 'f') ADVANCE(2664); + if (lookahead == 'h') ADVANCE(2677); + if (lookahead == 'i') ADVANCE(2673); + if (lookahead == 'l') ADVANCE(2670); + if (lookahead == 'm') ADVANCE(2665); + if (lookahead == 'n') ADVANCE(2703); + if (lookahead == 'o') ADVANCE(2724); + if (lookahead == 'r') ADVANCE(2671); + if (lookahead == 's') ADVANCE(2697); + if (lookahead == 't') ADVANCE(2711); + if (lookahead == 'u') ADVANCE(2719); + if (lookahead == 'w') ADVANCE(2675); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(536) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2622); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2696); + lookahead == ' ') SKIP(568) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2659); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2730); if (lookahead != 0 && - lookahead != ']') ADVANCE(2607); + lookahead != ']') ADVANCE(2644); END_STATE(); - case 535: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1333); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 567: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1366); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(535) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(567) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 536: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1333); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 568: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1366); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(536) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(568) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 537: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1333); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(2712); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(2785); - if (lookahead == 'N') ADVANCE(2783); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2709); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2740); - if (lookahead == 'b') ADVANCE(2773); - if (lookahead == 'c') ADVANCE(2750); - if (lookahead == 'd') ADVANCE(2725); - if (lookahead == 'e') ADVANCE(2774); - if (lookahead == 'f') ADVANCE(2721); - if (lookahead == 'h') ADVANCE(2733); - if (lookahead == 'i') ADVANCE(2730); - if (lookahead == 'l') ADVANCE(2727); - if (lookahead == 'm') ADVANCE(2722); - if (lookahead == 'n') ADVANCE(2760); - if (lookahead == 'o') ADVANCE(2781); - if (lookahead == 'r') ADVANCE(2728); - if (lookahead == 's') ADVANCE(2752); - if (lookahead == 't') ADVANCE(2767); - if (lookahead == 'u') ADVANCE(2776); - if (lookahead == 'w') ADVANCE(2731); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 569: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1366); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(2747); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(2818); + if (lookahead == 'N') ADVANCE(2817); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2743); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2775); + if (lookahead == 'b') ADVANCE(2807); + if (lookahead == 'c') ADVANCE(2786); + if (lookahead == 'd') ADVANCE(2759); + if (lookahead == 'e') ADVANCE(2808); + if (lookahead == 'f') ADVANCE(2755); + if (lookahead == 'h') ADVANCE(2768); + if (lookahead == 'i') ADVANCE(2764); + if (lookahead == 'l') ADVANCE(2761); + if (lookahead == 'm') ADVANCE(2756); + if (lookahead == 'n') ADVANCE(2794); + if (lookahead == 'o') ADVANCE(2815); + if (lookahead == 'r') ADVANCE(2762); + if (lookahead == 's') ADVANCE(2788); + if (lookahead == 't') ADVANCE(2802); + if (lookahead == 'u') ADVANCE(2810); + if (lookahead == 'w') ADVANCE(2766); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(536) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2715); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2789); + lookahead == ' ') SKIP(568) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2750); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2821); if (lookahead != 0 && - lookahead != ']') ADVANCE(2697); + lookahead != ']') ADVANCE(2731); END_STATE(); - case 538: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 570: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(553) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(585) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 539: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(292); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(382); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 571: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'N') ADVANCE(482); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(327); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(335); + if (lookahead == 'n') ADVANCE(421); + if (lookahead == 't') ADVANCE(433); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + lookahead == 'i') ADVANCE(490); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(554) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(586) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); END_STATE(); - case 540: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'E') ADVANCE(624); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(623); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 572: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'E') ADVANCE(656); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(655); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 541: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'E') ADVANCE(624); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(669); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(623); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 573: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1516); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'E') ADVANCE(656); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(701); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(655); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1526); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 542: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(2145); - if (lookahead == 'N') ADVANCE(2143); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2076); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2099); - if (lookahead == 'b') ADVANCE(2132); - if (lookahead == 'c') ADVANCE(2109); - if (lookahead == 'd') ADVANCE(2084); - if (lookahead == 'e') ADVANCE(2133); - if (lookahead == 'f') ADVANCE(2080); - if (lookahead == 'h') ADVANCE(2092); - if (lookahead == 'i') ADVANCE(2089); - if (lookahead == 'l') ADVANCE(2086); - if (lookahead == 'm') ADVANCE(2081); - if (lookahead == 'n') ADVANCE(2119); - if (lookahead == 'o') ADVANCE(2141); - if (lookahead == 'r') ADVANCE(2087); - if (lookahead == 's') ADVANCE(2111); - if (lookahead == 't') ADVANCE(2126); - if (lookahead == 'u') ADVANCE(2136); - if (lookahead == 'w') ADVANCE(2090); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 574: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1516); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(2181); + if (lookahead == 'N') ADVANCE(2180); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2114); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2137); + if (lookahead == 'b') ADVANCE(2169); + if (lookahead == 'c') ADVANCE(2148); + if (lookahead == 'd') ADVANCE(2121); + if (lookahead == 'e') ADVANCE(2170); + if (lookahead == 'f') ADVANCE(2117); + if (lookahead == 'h') ADVANCE(2130); + if (lookahead == 'i') ADVANCE(2126); + if (lookahead == 'l') ADVANCE(2123); + if (lookahead == 'm') ADVANCE(2118); + if (lookahead == 'n') ADVANCE(2156); + if (lookahead == 'o') ADVANCE(2178); + if (lookahead == 'r') ADVANCE(2124); + if (lookahead == 's') ADVANCE(2150); + if (lookahead == 't') ADVANCE(2164); + if (lookahead == 'u') ADVANCE(2173); + if (lookahead == 'w') ADVANCE(2128); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2149); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1526); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2184); if (lookahead != 0 && - lookahead != ']') ADVANCE(2062); + lookahead != ']') ADVANCE(2100); END_STATE(); - case 543: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(2619); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'I') ADVANCE(2692); - if (lookahead == 'N') ADVANCE(2690); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2616); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2647); - if (lookahead == 'b') ADVANCE(2680); - if (lookahead == 'c') ADVANCE(2657); - if (lookahead == 'd') ADVANCE(2632); - if (lookahead == 'e') ADVANCE(2681); - if (lookahead == 'f') ADVANCE(2628); - if (lookahead == 'h') ADVANCE(2640); - if (lookahead == 'i') ADVANCE(2637); - if (lookahead == 'l') ADVANCE(2634); - if (lookahead == 'm') ADVANCE(2629); - if (lookahead == 'n') ADVANCE(2667); - if (lookahead == 'o') ADVANCE(2688); - if (lookahead == 'r') ADVANCE(2635); - if (lookahead == 's') ADVANCE(2659); - if (lookahead == 't') ADVANCE(2674); - if (lookahead == 'u') ADVANCE(2683); - if (lookahead == 'w') ADVANCE(2638); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 575: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(2656); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'I') ADVANCE(2727); + if (lookahead == 'N') ADVANCE(2726); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2652); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2684); + if (lookahead == 'b') ADVANCE(2716); + if (lookahead == 'c') ADVANCE(2695); + if (lookahead == 'd') ADVANCE(2668); + if (lookahead == 'e') ADVANCE(2717); + if (lookahead == 'f') ADVANCE(2664); + if (lookahead == 'h') ADVANCE(2677); + if (lookahead == 'i') ADVANCE(2673); + if (lookahead == 'l') ADVANCE(2670); + if (lookahead == 'm') ADVANCE(2665); + if (lookahead == 'n') ADVANCE(2703); + if (lookahead == 'o') ADVANCE(2724); + if (lookahead == 'r') ADVANCE(2671); + if (lookahead == 's') ADVANCE(2697); + if (lookahead == 't') ADVANCE(2711); + if (lookahead == 'u') ADVANCE(2719); + if (lookahead == 'w') ADVANCE(2675); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2622); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2696); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2659); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2730); if (lookahead != 0 && - lookahead != ']') ADVANCE(2607); + lookahead != ']') ADVANCE(2644); END_STATE(); - case 544: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2820); - if (lookahead == 'G') ADVANCE(2824); - if (lookahead == 'K') ADVANCE(2826); - if (lookahead == 'M') ADVANCE(2828); - if (lookahead == 'N') ADVANCE(2930); - if (lookahead == 'P') ADVANCE(2830); - if (lookahead == 'T') ADVANCE(2832); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2868); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(2878); - if (lookahead == 'e') ADVANCE(2796); - if (lookahead == 'f') ADVANCE(2879); - if (lookahead == 'g') ADVANCE(2836); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'k') ADVANCE(2838); - if (lookahead == 'm') ADVANCE(2841); - if (lookahead == 'n') ADVANCE(2926); - if (lookahead == 'o') ADVANCE(2798); - if (lookahead == 'p') ADVANCE(2843); - if (lookahead == 's') ADVANCE(2889); - if (lookahead == 't') ADVANCE(2845); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 576: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2853); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2904); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2828); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2878); + if (lookahead == 'n') ADVANCE(2963); + if (lookahead == 'o') ADVANCE(2830); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2924); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2934); + lookahead == 'i') ADVANCE(2970); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(566) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(598) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 545: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'E') ADVANCE(1961); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1963); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1906); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 577: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'E') ADVANCE(1997); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1999); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 546: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(2142); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2074); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(2066); - if (lookahead == 'f') ADVANCE(2078); - if (lookahead == 'n') ADVANCE(2140); - if (lookahead == 'o') ADVANCE(2064); - if (lookahead == 't') ADVANCE(2129); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 578: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(2179); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2112); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(2104); + if (lookahead == 'f') ADVANCE(2116); + if (lookahead == 'n') ADVANCE(2177); + if (lookahead == 'o') ADVANCE(2102); + if (lookahead == 't') ADVANCE(2167); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2146); + lookahead == 'i') ADVANCE(2182); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2062); + lookahead != ']') ADVANCE(2100); END_STATE(); - case 547: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(2873); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2820); - if (lookahead == 'G') ADVANCE(2824); - if (lookahead == 'K') ADVANCE(2826); - if (lookahead == 'M') ADVANCE(2828); - if (lookahead == 'N') ADVANCE(2930); - if (lookahead == 'P') ADVANCE(2830); - if (lookahead == 'T') ADVANCE(2832); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2871); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(2878); - if (lookahead == 'e') ADVANCE(2796); - if (lookahead == 'f') ADVANCE(2879); - if (lookahead == 'g') ADVANCE(2836); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'k') ADVANCE(2838); - if (lookahead == 'm') ADVANCE(2841); - if (lookahead == 'n') ADVANCE(2926); - if (lookahead == 'o') ADVANCE(2798); - if (lookahead == 'p') ADVANCE(2843); - if (lookahead == 's') ADVANCE(2889); - if (lookahead == 't') ADVANCE(2845); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 579: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(2909); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2853); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2907); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2828); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2878); + if (lookahead == 'n') ADVANCE(2963); + if (lookahead == 'o') ADVANCE(2830); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2924); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2934); + lookahead == 'i') ADVANCE(2970); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(566) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2876); + lookahead == ' ') SKIP(598) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2912); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 548: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(2873); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2821); - if (lookahead == 'G') ADVANCE(2824); - if (lookahead == 'K') ADVANCE(2826); - if (lookahead == 'M') ADVANCE(2828); - if (lookahead == 'N') ADVANCE(2930); - if (lookahead == 'P') ADVANCE(2830); - if (lookahead == 'T') ADVANCE(2832); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2871); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(2878); - if (lookahead == 'e') ADVANCE(2800); - if (lookahead == 'f') ADVANCE(2879); - if (lookahead == 'g') ADVANCE(2836); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'k') ADVANCE(2838); - if (lookahead == 'm') ADVANCE(2841); - if (lookahead == 'n') ADVANCE(2926); - if (lookahead == 'o') ADVANCE(2798); - if (lookahead == 'p') ADVANCE(2843); - if (lookahead == 's') ADVANCE(2889); - if (lookahead == 't') ADVANCE(2845); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 580: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(2909); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2854); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2907); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2832); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2878); + if (lookahead == 'n') ADVANCE(2963); + if (lookahead == 'o') ADVANCE(2830); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2924); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2934); + lookahead == 'i') ADVANCE(2970); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(566) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2876); + lookahead == ' ') SKIP(598) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2912); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 549: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1912); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 581: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(565) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(597) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 550: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'E') ADVANCE(1961); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1906); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 582: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'E') ADVANCE(1997); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 551: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1912); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 583: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 552: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(292); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'd') ADVANCE(376); - if (lookahead == 'e') ADVANCE(362); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'i') ADVANCE(337); - if (lookahead == 'm') ADVANCE(303); - if (lookahead == 'n') ADVANCE(382); - if (lookahead == 't') ADVANCE(400); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 584: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(490); + if (lookahead == 'N') ADVANCE(482); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(327); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'c') ADVANCE(331); + if (lookahead == 'd') ADVANCE(410); + if (lookahead == 'e') ADVANCE(395); + if (lookahead == 'f') ADVANCE(335); + if (lookahead == 'i') ADVANCE(372); + if (lookahead == 'm') ADVANCE(336); + if (lookahead == 'n') ADVANCE(421); + if (lookahead == 't') ADVANCE(432); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(552) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(584) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); END_STATE(); - case 553: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 585: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(553) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(585) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 554: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(292); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(382); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 586: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'N') ADVANCE(482); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(327); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(335); + if (lookahead == 'n') ADVANCE(421); + if (lookahead == 't') ADVANCE(433); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + lookahead == 'i') ADVANCE(490); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(554) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(586) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); END_STATE(); - case 555: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'E') ADVANCE(624); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(623); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 587: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'E') ADVANCE(656); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(655); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 556: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 588: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 557: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 589: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(557) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(589) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 558: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(1125); - if (lookahead == 'N') ADVANCE(1116); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(1000); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(1048); - if (lookahead == 'b') ADVANCE(1079); - if (lookahead == 'c') ADVANCE(1064); - if (lookahead == 'd') ADVANCE(1012); - if (lookahead == 'e') ADVANCE(1081); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'h') ADVANCE(1040); - if (lookahead == 'i') ADVANCE(1035); - if (lookahead == 'l') ADVANCE(1013); - if (lookahead == 'm') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(1068); - if (lookahead == 'o') ADVANCE(1114); - if (lookahead == 'r') ADVANCE(1014); - if (lookahead == 's') ADVANCE(1065); - if (lookahead == 't') ADVANCE(1073); - if (lookahead == 'u') ADVANCE(1090); - if (lookahead == 'w') ADVANCE(1038); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 590: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(1157); + if (lookahead == 'N') ADVANCE(1148); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(1032); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(1080); + if (lookahead == 'b') ADVANCE(1111); + if (lookahead == 'c') ADVANCE(1096); + if (lookahead == 'd') ADVANCE(1044); + if (lookahead == 'e') ADVANCE(1113); + if (lookahead == 'f') ADVANCE(1034); + if (lookahead == 'h') ADVANCE(1072); + if (lookahead == 'i') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(1045); + if (lookahead == 'm') ADVANCE(1039); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1146); + if (lookahead == 'r') ADVANCE(1046); + if (lookahead == 's') ADVANCE(1097); + if (lookahead == 't') ADVANCE(1105); + if (lookahead == 'u') ADVANCE(1122); + if (lookahead == 'w') ADVANCE(1070); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(557) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(1134); + lookahead == ' ') SKIP(589) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 559: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(450); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(292); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(295); - if (lookahead == 'n') ADVANCE(382); - if (lookahead == 't') ADVANCE(399); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 591: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(482); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(327); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(335); + if (lookahead == 'n') ADVANCE(421); + if (lookahead == 't') ADVANCE(433); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); + lookahead == 'i') ADVANCE(490); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(559) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); + lookahead == ' ') SKIP(591) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); END_STATE(); - case 560: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(1117); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1001); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'f') ADVANCE(1005); - if (lookahead == 'n') ADVANCE(1067); - if (lookahead == 't') ADVANCE(1077); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 592: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(1149); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1033); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'f') ADVANCE(1037); + if (lookahead == 'n') ADVANCE(1099); + if (lookahead == 't') ADVANCE(1109); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1127); + lookahead == 'i') ADVANCE(1159); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(559) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(1135); + lookahead == ' ') SKIP(591) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(1167); END_STATE(); - case 561: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'E') ADVANCE(624); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(669); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(623); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 593: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1516); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'E') ADVANCE(656); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(701); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(655); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1526); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 562: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(2712); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(2785); - if (lookahead == 'N') ADVANCE(2783); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(2709); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2740); - if (lookahead == 'b') ADVANCE(2773); - if (lookahead == 'c') ADVANCE(2750); - if (lookahead == 'd') ADVANCE(2725); - if (lookahead == 'e') ADVANCE(2774); - if (lookahead == 'f') ADVANCE(2721); - if (lookahead == 'h') ADVANCE(2733); - if (lookahead == 'i') ADVANCE(2730); - if (lookahead == 'l') ADVANCE(2727); - if (lookahead == 'm') ADVANCE(2722); - if (lookahead == 'n') ADVANCE(2760); - if (lookahead == 'o') ADVANCE(2781); - if (lookahead == 'r') ADVANCE(2728); - if (lookahead == 's') ADVANCE(2752); - if (lookahead == 't') ADVANCE(2767); - if (lookahead == 'u') ADVANCE(2776); - if (lookahead == 'w') ADVANCE(2731); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 594: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(2747); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(2818); + if (lookahead == 'N') ADVANCE(2817); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(2743); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2775); + if (lookahead == 'b') ADVANCE(2807); + if (lookahead == 'c') ADVANCE(2786); + if (lookahead == 'd') ADVANCE(2759); + if (lookahead == 'e') ADVANCE(2808); + if (lookahead == 'f') ADVANCE(2755); + if (lookahead == 'h') ADVANCE(2768); + if (lookahead == 'i') ADVANCE(2764); + if (lookahead == 'l') ADVANCE(2761); + if (lookahead == 'm') ADVANCE(2756); + if (lookahead == 'n') ADVANCE(2794); + if (lookahead == 'o') ADVANCE(2815); + if (lookahead == 'r') ADVANCE(2762); + if (lookahead == 's') ADVANCE(2788); + if (lookahead == 't') ADVANCE(2802); + if (lookahead == 'u') ADVANCE(2810); + if (lookahead == 'w') ADVANCE(2766); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2715); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2789); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2750); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2821); if (lookahead != 0 && - lookahead != ']') ADVANCE(2697); + lookahead != ']') ADVANCE(2731); END_STATE(); - case 563: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'E') ADVANCE(1961); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1963); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1906); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 595: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'E') ADVANCE(1997); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1999); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 564: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(2873); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(2821); - if (lookahead == 'G') ADVANCE(2824); - if (lookahead == 'K') ADVANCE(2826); - if (lookahead == 'M') ADVANCE(2828); - if (lookahead == 'N') ADVANCE(2930); - if (lookahead == 'P') ADVANCE(2830); - if (lookahead == 'T') ADVANCE(2832); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2871); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(2878); - if (lookahead == 'e') ADVANCE(2800); - if (lookahead == 'f') ADVANCE(2879); - if (lookahead == 'g') ADVANCE(2836); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == 'k') ADVANCE(2838); - if (lookahead == 'm') ADVANCE(2841); - if (lookahead == 'n') ADVANCE(2926); - if (lookahead == 'o') ADVANCE(2798); - if (lookahead == 'p') ADVANCE(2843); - if (lookahead == 's') ADVANCE(2889); - if (lookahead == 't') ADVANCE(2845); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'w') ADVANCE(2898); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2928); + case 596: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(2909); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(2854); + if (lookahead == 'G') ADVANCE(2857); + if (lookahead == 'K') ADVANCE(2859); + if (lookahead == 'M') ADVANCE(2861); + if (lookahead == 'N') ADVANCE(2967); + if (lookahead == 'P') ADVANCE(2863); + if (lookahead == 'T') ADVANCE(2865); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2907); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(2832); + if (lookahead == 'f') ADVANCE(2915); + if (lookahead == 'g') ADVANCE(2873); + if (lookahead == 'h') ADVANCE(2955); + if (lookahead == 'k') ADVANCE(2875); + if (lookahead == 'm') ADVANCE(2878); + if (lookahead == 'n') ADVANCE(2963); + if (lookahead == 'o') ADVANCE(2830); + if (lookahead == 'p') ADVANCE(2881); + if (lookahead == 's') ADVANCE(2924); + if (lookahead == 't') ADVANCE(2883); + if (lookahead == 'u') ADVANCE(2964); + if (lookahead == 'w') ADVANCE(2935); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2965); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2934); + lookahead == 'i') ADVANCE(2970); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(566) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2876); + lookahead == ' ') SKIP(598) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2912); if (lookahead != 0 && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(2822); END_STATE(); - case 565: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1912); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 597: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(565) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(597) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 566: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'B') ADVANCE(1607); - if (lookahead == 'E') ADVANCE(1929); - if (lookahead == 'G') ADVANCE(1930); - if (lookahead == 'K') ADVANCE(1931); - if (lookahead == 'M') ADVANCE(1932); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == 'P') ADVANCE(1933); - if (lookahead == 'T') ADVANCE(1934); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1601); - if (lookahead == 'd') ADVANCE(1965); - if (lookahead == 'e') ADVANCE(1910); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'g') ADVANCE(1935); - if (lookahead == 'h') ADVANCE(2009); - if (lookahead == 'k') ADVANCE(1936); - if (lookahead == 'm') ADVANCE(1938); - if (lookahead == 'n') ADVANCE(2018); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 'p') ADVANCE(1939); - if (lookahead == 's') ADVANCE(1981); - if (lookahead == 't') ADVANCE(1940); - if (lookahead == 'u') ADVANCE(2019); - if (lookahead == 'w') ADVANCE(1993); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(2020); + case 598: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'B') ADVANCE(1640); + if (lookahead == 'E') ADVANCE(1963); + if (lookahead == 'G') ADVANCE(1964); + if (lookahead == 'K') ADVANCE(1965); + if (lookahead == 'M') ADVANCE(1966); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == 'P') ADVANCE(1967); + if (lookahead == 'T') ADVANCE(1968); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1634); + if (lookahead == 'd') ADVANCE(2001); + if (lookahead == 'e') ADVANCE(1943); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'g') ADVANCE(1971); + if (lookahead == 'h') ADVANCE(2046); + if (lookahead == 'k') ADVANCE(1972); + if (lookahead == 'm') ADVANCE(1974); + if (lookahead == 'n') ADVANCE(2056); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 'p') ADVANCE(1975); + if (lookahead == 's') ADVANCE(2017); + if (lookahead == 't') ADVANCE(1976); + if (lookahead == 'u') ADVANCE(2057); + if (lookahead == 'w') ADVANCE(2029); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(2058); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(566) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(598) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 567: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'E') ADVANCE(1961); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1906); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 599: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'E') ADVANCE(1997); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 568: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1912); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 600: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 569: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1964); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1912); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2006); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 601: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2000); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2043); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(569) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); + lookahead == ' ') SKIP(601) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 570: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1546); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(1117); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1001); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(996); - if (lookahead == 'f') ADVANCE(1005); - if (lookahead == 'n') ADVANCE(1104); - if (lookahead == 'o') ADVANCE(995); - if (lookahead == 't') ADVANCE(1077); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 602: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1579); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(1149); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1033); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1028); + if (lookahead == 'f') ADVANCE(1037); + if (lookahead == 'n') ADVANCE(1136); + if (lookahead == 'o') ADVANCE(1027); + if (lookahead == 't') ADVANCE(1109); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1127); + lookahead == 'i') ADVANCE(1159); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1560); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(1135); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(1167); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 571: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1483); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(669); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 603: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1516); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(701); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1493); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1526); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 572: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1963); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1912); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 604: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1999); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 573: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == 'N') ADVANCE(2689); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2617); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(2611); - if (lookahead == 'f') ADVANCE(2626); - if (lookahead == 'n') ADVANCE(2687); - if (lookahead == 'o') ADVANCE(2609); - if (lookahead == 't') ADVANCE(2677); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 605: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == 'N') ADVANCE(2725); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2654); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(2648); + if (lookahead == 'f') ADVANCE(2663); + if (lookahead == 'n') ADVANCE(2723); + if (lookahead == 'o') ADVANCE(2646); + if (lookahead == 't') ADVANCE(2714); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2693); + lookahead == 'i') ADVANCE(2728); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2607); + lookahead != ']') ADVANCE(2644); END_STATE(); - case 574: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(2039); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(1963); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(1912); - if (lookahead == 'f') ADVANCE(1966); - if (lookahead == 'n') ADVANCE(2033); - if (lookahead == 'o') ADVANCE(1908); - if (lookahead == 't') ADVANCE(2010); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 606: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(2077); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(1999); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'f') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(2071); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == 't') ADVANCE(2048); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2080); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2061); + lookahead != ']') ADVANCE(2099); END_STATE(); - case 575: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == '-') ADVANCE(1505); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == '0') ADVANCE(1484); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(2782); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2710); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(2701); - if (lookahead == 'f') ADVANCE(2719); - if (lookahead == 'n') ADVANCE(2780); - if (lookahead == 'o') ADVANCE(2699); - if (lookahead == 't') ADVANCE(2770); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 607: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1538); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '0') ADVANCE(1517); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(2816); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2745); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(2735); + if (lookahead == 'f') ADVANCE(2754); + if (lookahead == 'n') ADVANCE(2814); + if (lookahead == 'o') ADVANCE(2733); + if (lookahead == 't') ADVANCE(2805); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2786); + lookahead == 'i') ADVANCE(2819); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1494); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1527); if (lookahead != 0 && - lookahead != ']') ADVANCE(2697); + lookahead != ']') ADVANCE(2731); END_STATE(); - case 576: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1175); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1338); - if (lookahead == '+') ADVANCE(1375); - if (lookahead == '-') ADVANCE(1211); - if (lookahead == '.') ADVANCE(1281); - if (lookahead == '0') ADVANCE(2200); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(2578); - if (lookahead == 'N') ADVANCE(2568); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1888); - if (lookahead == '_') ADVANCE(2193); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2342); - if (lookahead == 'b') ADVANCE(2439); - if (lookahead == 'c') ADVANCE(2384); - if (lookahead == 'd') ADVANCE(2247); - if (lookahead == 'e') ADVANCE(2440); - if (lookahead == 'f') ADVANCE(2205); - if (lookahead == 'h') ADVANCE(2319); - if (lookahead == 'i') ADVANCE(2292); - if (lookahead == 'l') ADVANCE(2271); - if (lookahead == 'm') ADVANCE(2217); - if (lookahead == 'n') ADVANCE(2406); - if (lookahead == 'o') ADVANCE(2535); - if (lookahead == 'r') ADVANCE(2248); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 't') ADVANCE(2416); - if (lookahead == 'u') ADVANCE(2466); - if (lookahead == 'w') ADVANCE(2297); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 608: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1207); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1371); + if (lookahead == '+') ADVANCE(1408); + if (lookahead == '-') ADVANCE(1244); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '0') ADVANCE(2236); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(2615); + if (lookahead == 'N') ADVANCE(2605); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1921); + if (lookahead == '_') ADVANCE(2229); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2379); + if (lookahead == 'b') ADVANCE(2476); + if (lookahead == 'c') ADVANCE(2421); + if (lookahead == 'd') ADVANCE(2283); + if (lookahead == 'e') ADVANCE(2477); + if (lookahead == 'f') ADVANCE(2241); + if (lookahead == 'h') ADVANCE(2356); + if (lookahead == 'i') ADVANCE(2328); + if (lookahead == 'l') ADVANCE(2307); + if (lookahead == 'm') ADVANCE(2253); + if (lookahead == 'n') ADVANCE(2443); + if (lookahead == 'o') ADVANCE(2572); + if (lookahead == 'r') ADVANCE(2284); + if (lookahead == 's') ADVANCE(2423); + if (lookahead == 't') ADVANCE(2453); + if (lookahead == 'u') ADVANCE(2503); + if (lookahead == 'w') ADVANCE(2334); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(536) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2203); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2605); + lookahead == ' ') SKIP(568) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2239); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2642); if (lookahead != 0 && - lookahead != ']') ADVANCE(2606); + lookahead != ']') ADVANCE(2643); END_STATE(); - case 577: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1175); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1375); - if (lookahead == '-') ADVANCE(1211); - if (lookahead == '.') ADVANCE(1281); - if (lookahead == '0') ADVANCE(2200); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'I') ADVANCE(2578); - if (lookahead == 'N') ADVANCE(2568); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1888); - if (lookahead == '_') ADVANCE(2193); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(2342); - if (lookahead == 'b') ADVANCE(2439); - if (lookahead == 'c') ADVANCE(2384); - if (lookahead == 'd') ADVANCE(2247); - if (lookahead == 'e') ADVANCE(2440); - if (lookahead == 'f') ADVANCE(2205); - if (lookahead == 'h') ADVANCE(2319); - if (lookahead == 'i') ADVANCE(2292); - if (lookahead == 'l') ADVANCE(2271); - if (lookahead == 'm') ADVANCE(2217); - if (lookahead == 'n') ADVANCE(2406); - if (lookahead == 'o') ADVANCE(2535); - if (lookahead == 'r') ADVANCE(2248); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 't') ADVANCE(2416); - if (lookahead == 'u') ADVANCE(2466); - if (lookahead == 'w') ADVANCE(2297); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '}') ADVANCE(1270); + case 609: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1207); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1408); + if (lookahead == '-') ADVANCE(1244); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '0') ADVANCE(2236); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'I') ADVANCE(2615); + if (lookahead == 'N') ADVANCE(2605); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1921); + if (lookahead == '_') ADVANCE(2229); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(2379); + if (lookahead == 'b') ADVANCE(2476); + if (lookahead == 'c') ADVANCE(2421); + if (lookahead == 'd') ADVANCE(2283); + if (lookahead == 'e') ADVANCE(2477); + if (lookahead == 'f') ADVANCE(2241); + if (lookahead == 'h') ADVANCE(2356); + if (lookahead == 'i') ADVANCE(2328); + if (lookahead == 'l') ADVANCE(2307); + if (lookahead == 'm') ADVANCE(2253); + if (lookahead == 'n') ADVANCE(2443); + if (lookahead == 'o') ADVANCE(2572); + if (lookahead == 'r') ADVANCE(2284); + if (lookahead == 's') ADVANCE(2423); + if (lookahead == 't') ADVANCE(2453); + if (lookahead == 'u') ADVANCE(2503); + if (lookahead == 'w') ADVANCE(2334); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(556) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2203); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(2605); + lookahead == ' ') SKIP(588) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2239); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(2642); if (lookahead != 0 && - lookahead != ']') ADVANCE(2606); + lookahead != ']') ADVANCE(2643); END_STATE(); - case 578: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3140); - if (lookahead == '$') ADVANCE(1175); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1375); - if (lookahead == '-') ADVANCE(1211); - if (lookahead == '.') ADVANCE(1281); - if (lookahead == '0') ADVANCE(2200); - if (lookahead == ';') ADVANCE(620); - if (lookahead == 'N') ADVANCE(2569); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '_') ADVANCE(2204); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'e') ADVANCE(2153); - if (lookahead == 'f') ADVANCE(2210); - if (lookahead == 'n') ADVANCE(2516); - if (lookahead == 'o') ADVANCE(2151); - if (lookahead == 't') ADVANCE(2432); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1171); - if (lookahead == '}') ADVANCE(1270); + case 610: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3175); + if (lookahead == '$') ADVANCE(1207); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1408); + if (lookahead == '-') ADVANCE(1244); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '0') ADVANCE(2236); + if (lookahead == ';') ADVANCE(652); + if (lookahead == 'N') ADVANCE(2606); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '_') ADVANCE(2240); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'e') ADVANCE(2188); + if (lookahead == 'f') ADVANCE(2246); + if (lookahead == 'n') ADVANCE(2553); + if (lookahead == 'o') ADVANCE(2186); + if (lookahead == 't') ADVANCE(2469); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1203); + if (lookahead == '}') ADVANCE(1303); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2579); + lookahead == 'i') ADVANCE(2616); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(568) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2203); + lookahead == ' ') SKIP(600) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2239); if (lookahead != 0 && - lookahead != ']') ADVANCE(2606); + lookahead != ']') ADVANCE(2643); END_STATE(); - case 579: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '+') ADVANCE(1507); - if (lookahead == '-') ADVANCE(1502); - if (lookahead == '.') ADVANCE(1282); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1192); - if (lookahead == '=') ADVANCE(1467); - if (lookahead == '_') ADVANCE(291); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 611: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '+') ADVANCE(1540); + if (lookahead == '-') ADVANCE(1535); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1224); + if (lookahead == '=') ADVANCE(1500); + if (lookahead == '_') ADVANCE(326); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(580) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + lookahead == ' ') SKIP(612) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 580: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1172); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 612: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1204); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(580) + lookahead == ' ') SKIP(612) END_STATE(); - case 581: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 613: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(581) + lookahead == ' ') SKIP(613) END_STATE(); - case 582: - if (eof) ADVANCE(587); - if (lookahead == '\n') ADVANCE(1136); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '-') ADVANCE(1204); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 614: + if (eof) ADVANCE(619); + if (lookahead == '\n') ADVANCE(1168); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '-') ADVANCE(1236); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(581) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1135); + lookahead == ' ') SKIP(613) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(1167); END_STATE(); - case 583: - if (eof) ADVANCE(587); - if (lookahead == '!') ADVANCE(1864); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1169); - if (lookahead == '*') ADVANCE(1334); - if (lookahead == '+') ADVANCE(1370); - if (lookahead == ',') ADVANCE(1165); - if (lookahead == '-') ADVANCE(1209); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '/') ADVANCE(1355); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == ';') ADVANCE(620); - if (lookahead == '<') ADVANCE(1392); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '>') ADVANCE(1195); - if (lookahead == '?') ADVANCE(1347); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == ']') ADVANCE(1167); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(1277); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'b') ADVANCE(1606); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); - if (lookahead == 181) ADVANCE(969); + case 615: + if (eof) ADVANCE(619); + if (lookahead == '!') ADVANCE(1897); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1201); + if (lookahead == '*') ADVANCE(1368); + if (lookahead == '+') ADVANCE(1403); + if (lookahead == ',') ADVANCE(1197); + if (lookahead == '-') ADVANCE(1242); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '/') ADVANCE(1389); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == ';') ADVANCE(652); + if (lookahead == '<') ADVANCE(1425); + if (lookahead == '=') ADVANCE(634); + if (lookahead == '>') ADVANCE(1227); + if (lookahead == '?') ADVANCE(1380); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == 'B') ADVANCE(1641); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == ']') ADVANCE(1199); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(1310); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'b') ADVANCE(1639); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); + if (lookahead == 181) ADVANCE(1001); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(583) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(994); - if (lookahead != 0) ADVANCE(1885); + lookahead == ' ') SKIP(615) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1914); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(1026); + if (lookahead != 0) ADVANCE(1918); END_STATE(); - case 584: - if (eof) ADVANCE(587); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == ')') ADVANCE(1523); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '>') ADVANCE(1194); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 616: + if (eof) ADVANCE(619); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == ')') ADVANCE(1556); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(1226); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(585) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(617) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 585: - if (eof) ADVANCE(587); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3133); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == ':') ADVANCE(1161); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '>') ADVANCE(1194); - if (lookahead == '@') ADVANCE(1198); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); - if (lookahead == '|') ADVANCE(1170); - if (lookahead == '}') ADVANCE(1270); + case 617: + if (eof) ADVANCE(619); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3168); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == ':') ADVANCE(1193); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(1226); + if (lookahead == '@') ADVANCE(1230); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); + if (lookahead == '|') ADVANCE(1202); + if (lookahead == '}') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(585) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(617) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 586: - if (eof) ADVANCE(587); - if (lookahead == '"') ADVANCE(1836); - if (lookahead == '#') ADVANCE(3135); - if (lookahead == '$') ADVANCE(1173); - if (lookahead == '\'') ADVANCE(228); - if (lookahead == '(') ADVANCE(1168); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(1210); - if (lookahead == '.') ADVANCE(1278); - if (lookahead == '0') ADVANCE(1544); - if (lookahead == 'I') ADVANCE(867); - if (lookahead == 'N') ADVANCE(862); - if (lookahead == '[') ADVANCE(1164); - if (lookahead == '^') ADVANCE(1887); - if (lookahead == '_') ADVANCE(667); - if (lookahead == '`') ADVANCE(293); - if (lookahead == 'a') ADVANCE(761); - if (lookahead == 'b') ADVANCE(805); - if (lookahead == 'c') ADVANCE(781); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(807); - if (lookahead == 'f') ADVANCE(674); - if (lookahead == 'h') ADVANCE(745); - if (lookahead == 'i') ADVANCE(731); - if (lookahead == 'l') ADVANCE(702); - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 'o') ADVANCE(855); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 's') ADVANCE(784); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(821); - if (lookahead == 'w') ADVANCE(735); - if (lookahead == '{') ADVANCE(1269); + case 618: + if (eof) ADVANCE(619); + if (lookahead == '"') ADVANCE(1869); + if (lookahead == '#') ADVANCE(3170); + if (lookahead == '$') ADVANCE(1205); + if (lookahead == '\'') ADVANCE(270); + if (lookahead == '(') ADVANCE(1200); + if (lookahead == '+') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1243); + if (lookahead == '.') ADVANCE(1311); + if (lookahead == '0') ADVANCE(1577); + if (lookahead == 'I') ADVANCE(899); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == '[') ADVANCE(1196); + if (lookahead == '^') ADVANCE(1920); + if (lookahead == '_') ADVANCE(699); + if (lookahead == '`') ADVANCE(328); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'b') ADVANCE(837); + if (lookahead == 'c') ADVANCE(813); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'f') ADVANCE(706); + if (lookahead == 'h') ADVANCE(777); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'm') ADVANCE(709); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 'o') ADVANCE(887); + if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(829); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'w') ADVANCE(767); + if (lookahead == '{') ADVANCE(1302); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(586) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1558); - if (aux_sym_unquoted_token2_character_set_2(lookahead)) ADVANCE(871); + lookahead == ' ') SKIP(618) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 587: + case 619: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 588: + case 620: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 589: + case 621: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 590: + case 622: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(590); - if (lookahead == '#') ADVANCE(3134); + if (lookahead == '\n') ADVANCE(622); + if (lookahead == '#') ADVANCE(3169); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(3); - if (lookahead != 0) ADVANCE(4); + lookahead == ' ') ADVANCE(7); + if (lookahead != 0) ADVANCE(8); END_STATE(); - case 591: + case 623: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2286); + if (lookahead == '-') ADVANCE(2322); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 592: + case 624: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(724); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(871); + if (lookahead == '-') ADVANCE(756); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 593: + case 625: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2284); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2320); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 594: + case 626: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1030); + if (lookahead == '-') ADVANCE(1062); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1166); END_STATE(); - case 595: + case 627: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); - case 596: + case 628: ACCEPT_TOKEN(anon_sym_alias); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 597: + case 629: ACCEPT_TOKEN(anon_sym_alias); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 598: + case 630: ACCEPT_TOKEN(anon_sym_alias); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 599: + case 631: ACCEPT_TOKEN(anon_sym_alias); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 600: + case 632: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 601: + case 633: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '>') ADVANCE(1271); - if (lookahead == '~') ADVANCE(1416); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '>') ADVANCE(1304); + if (lookahead == '~') ADVANCE(1449); END_STATE(); - case 602: + case 634: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '~') ADVANCE(1416); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '~') ADVANCE(1449); END_STATE(); - case 603: + case 635: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(721); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(871); + if (lookahead == '-') ADVANCE(753); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 604: + case 636: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2277); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2313); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 605: + case 637: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2279); + if (lookahead == '-') ADVANCE(2315); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 606: + case 638: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1027); + if (lookahead == '-') ADVANCE(1059); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1166); END_STATE(); - case 607: + case 639: ACCEPT_TOKEN(anon_sym_let_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 608: + case 640: ACCEPT_TOKEN(anon_sym_let_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 609: + case 641: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 610: + case 642: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 611: + case 643: ACCEPT_TOKEN(anon_sym_mut); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 612: + case 644: ACCEPT_TOKEN(anon_sym_mut); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 613: + case 645: ACCEPT_TOKEN(anon_sym_mut); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 614: + case 646: ACCEPT_TOKEN(anon_sym_mut); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 615: + case 647: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 616: + case 648: ACCEPT_TOKEN(anon_sym_const); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 617: + case 649: ACCEPT_TOKEN(anon_sym_const); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); - END_STATE(); - case 618: - ACCEPT_TOKEN(anon_sym_const); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 619: - ACCEPT_TOKEN(anon_sym_const); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); - END_STATE(); - case 620: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 621: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(290); - if (lookahead == '-') ADVANCE(668); - if (lookahead == 'B') ADVANCE(1681); - if (lookahead == 'I') ADVANCE(648); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'i') ADVANCE(684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 622: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(290); - if (lookahead == '-') ADVANCE(668); - if (lookahead == 'B') ADVANCE(1675); - if (lookahead == 'I') ADVANCE(654); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'b') ADVANCE(1672); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 623: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(290); - if (lookahead == '-') ADVANCE(668); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 624: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(290); - if (lookahead == '-') ADVANCE(668); - if (lookahead == '_') ADVANCE(668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 625: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(1866); - if (lookahead == '-') ADVANCE(668); - if (lookahead == 'B') ADVANCE(1681); - if (lookahead == 'I') ADVANCE(648); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'i') ADVANCE(684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 626: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(1866); - if (lookahead == '-') ADVANCE(668); - if (lookahead == 'B') ADVANCE(1675); - if (lookahead == 'I') ADVANCE(654); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'b') ADVANCE(1672); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 627: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(1866); - if (lookahead == '-') ADVANCE(668); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 628: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(1866); - if (lookahead == '-') ADVANCE(668); - if (lookahead == '_') ADVANCE(668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 629: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(681); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(871); - END_STATE(); - case 630: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(857); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(871); - END_STATE(); - case 631: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(751); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(871); - END_STATE(); - case 632: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(858); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(871); - END_STATE(); - case 633: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1681); - if (lookahead == 'I') ADVANCE(648); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'i') ADVANCE(684); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 634: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1645); - if (lookahead == 'I') ADVANCE(649); - if (lookahead == 'b') ADVANCE(1642); - if (lookahead == 'i') ADVANCE(685); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 635: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1621); - if (lookahead == 'I') ADVANCE(650); - if (lookahead == 'b') ADVANCE(1618); - if (lookahead == 'i') ADVANCE(686); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 636: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1633); - if (lookahead == 'I') ADVANCE(651); - if (lookahead == 'b') ADVANCE(1630); - if (lookahead == 'i') ADVANCE(687); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 637: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1669); - if (lookahead == 'I') ADVANCE(652); - if (lookahead == 'b') ADVANCE(1666); - if (lookahead == 'i') ADVANCE(688); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 638: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1657); - if (lookahead == 'I') ADVANCE(653); - if (lookahead == 'b') ADVANCE(1654); - if (lookahead == 'i') ADVANCE(689); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 639: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1675); - if (lookahead == 'I') ADVANCE(654); - if (lookahead == 'b') ADVANCE(1672); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 640: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1675); - if (lookahead == 'I') ADVANCE(654); - if (lookahead == 'b') ADVANCE(1672); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 641: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1639); - if (lookahead == 'I') ADVANCE(656); - if (lookahead == 'b') ADVANCE(1636); - if (lookahead == 'i') ADVANCE(657); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 642: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1615); - if (lookahead == 'I') ADVANCE(658); - if (lookahead == 'b') ADVANCE(1612); - if (lookahead == 'i') ADVANCE(659); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 643: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1627); - if (lookahead == 'I') ADVANCE(660); - if (lookahead == 'a') ADVANCE(755); - if (lookahead == 'b') ADVANCE(1624); - if (lookahead == 'i') ADVANCE(661); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 's') ADVANCE(1585); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(871); - END_STATE(); - case 644: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1627); - if (lookahead == 'I') ADVANCE(660); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'b') ADVANCE(1624); - if (lookahead == 'i') ADVANCE(661); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 's') ADVANCE(1585); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(871); - END_STATE(); - case 645: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1663); - if (lookahead == 'I') ADVANCE(662); - if (lookahead == 'b') ADVANCE(1660); - if (lookahead == 'i') ADVANCE(663); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 646: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1651); - if (lookahead == 'I') ADVANCE(664); - if (lookahead == 'b') ADVANCE(1648); - if (lookahead == 'i') ADVANCE(665); - if (lookahead == 'r') ADVANCE(846); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 647: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1651); - if (lookahead == 'I') ADVANCE(664); - if (lookahead == 'b') ADVANCE(1648); - if (lookahead == 'i') ADVANCE(665); - if (lookahead == 'r') ADVANCE(859); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 648: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1807); - if (lookahead == 'b') ADVANCE(1804); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); - END_STATE(); - case 649: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1744); - if (lookahead == 'b') ADVANCE(1741); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 650: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1702); - if (lookahead == 'b') ADVANCE(1699); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(anon_sym_const); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 651: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1723); - if (lookahead == 'b') ADVANCE(1720); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(anon_sym_const); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 652: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1786); - if (lookahead == 'b') ADVANCE(1783); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 653: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1765); - if (lookahead == 'b') ADVANCE(1762); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(325); + if (lookahead == '-') ADVANCE(700); + if (lookahead == 'B') ADVANCE(1714); + if (lookahead == 'I') ADVANCE(680); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'b') ADVANCE(1711); + if (lookahead == 'i') ADVANCE(716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 654: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1795); - if (lookahead == 'b') ADVANCE(1798); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(325); + if (lookahead == '-') ADVANCE(700); + if (lookahead == 'B') ADVANCE(1708); + if (lookahead == 'I') ADVANCE(686); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'b') ADVANCE(1705); + if (lookahead == 'i') ADVANCE(687); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 655: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1792); - if (lookahead == 'b') ADVANCE(1789); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(325); + if (lookahead == '-') ADVANCE(700); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 656: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1732); - if (lookahead == 'b') ADVANCE(1735); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(325); + if (lookahead == '-') ADVANCE(700); + if (lookahead == '_') ADVANCE(700); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 657: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1729); - if (lookahead == 'b') ADVANCE(1726); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(1899); + if (lookahead == '-') ADVANCE(700); + if (lookahead == 'B') ADVANCE(1714); + if (lookahead == 'I') ADVANCE(680); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'b') ADVANCE(1711); + if (lookahead == 'i') ADVANCE(716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 658: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1690); - if (lookahead == 'b') ADVANCE(1693); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(1899); + if (lookahead == '-') ADVANCE(700); + if (lookahead == 'B') ADVANCE(1708); + if (lookahead == 'I') ADVANCE(686); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'b') ADVANCE(1705); + if (lookahead == 'i') ADVANCE(687); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 659: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1687); - if (lookahead == 'b') ADVANCE(1684); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(1899); + if (lookahead == '-') ADVANCE(700); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 660: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1711); - if (lookahead == 'b') ADVANCE(1714); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(1899); + if (lookahead == '-') ADVANCE(700); + if (lookahead == '_') ADVANCE(700); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 661: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1708); - if (lookahead == 'b') ADVANCE(1705); - if (lookahead == 'n') ADVANCE(1591); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '-') ADVANCE(713); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(903); END_STATE(); case 662: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1774); - if (lookahead == 'b') ADVANCE(1777); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '-') ADVANCE(889); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(903); END_STATE(); case 663: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1771); - if (lookahead == 'b') ADVANCE(1768); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '-') ADVANCE(783); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(903); END_STATE(); case 664: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1753); - if (lookahead == 'b') ADVANCE(1756); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '-') ADVANCE(890); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(903); END_STATE(); case 665: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1750); - if (lookahead == 'b') ADVANCE(1747); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1714); + if (lookahead == 'I') ADVANCE(680); + if (lookahead == 'b') ADVANCE(1711); + if (lookahead == 'i') ADVANCE(716); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 666: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N') ADVANCE(863); - if (lookahead == 'f') ADVANCE(1259); - if (lookahead == 'n') ADVANCE(1231); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1678); + if (lookahead == 'I') ADVANCE(681); + if (lookahead == 'b') ADVANCE(1675); + if (lookahead == 'i') ADVANCE(717); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 667: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '_') ADVANCE(667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(667); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1654); + if (lookahead == 'I') ADVANCE(682); + if (lookahead == 'b') ADVANCE(1651); + if (lookahead == 'i') ADVANCE(718); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 668: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '_') ADVANCE(668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1666); + if (lookahead == 'I') ADVANCE(683); + if (lookahead == 'b') ADVANCE(1663); + if (lookahead == 'i') ADVANCE(719); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 669: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '_') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1474); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1702); + if (lookahead == 'I') ADVANCE(684); + if (lookahead == 'b') ADVANCE(1699); + if (lookahead == 'i') ADVANCE(720); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 670: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(754); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1690); + if (lookahead == 'I') ADVANCE(685); + if (lookahead == 'b') ADVANCE(1687); + if (lookahead == 'i') ADVANCE(721); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 671: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(860); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1708); + if (lookahead == 'I') ADVANCE(686); + if (lookahead == 'b') ADVANCE(1705); + if (lookahead == 'i') ADVANCE(687); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 672: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(755); - if (lookahead == 'o') ADVANCE(697); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1708); + if (lookahead == 'I') ADVANCE(686); + if (lookahead == 'b') ADVANCE(1705); + if (lookahead == 'i') ADVANCE(687); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 673: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(755); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1672); + if (lookahead == 'I') ADVANCE(688); + if (lookahead == 'b') ADVANCE(1669); + if (lookahead == 'i') ADVANCE(689); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 674: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(766); - if (lookahead == 'o') ADVANCE(798); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1648); + if (lookahead == 'I') ADVANCE(690); + if (lookahead == 'b') ADVANCE(1645); + if (lookahead == 'i') ADVANCE(691); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 675: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(766); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1660); + if (lookahead == 'I') ADVANCE(692); + if (lookahead == 'a') ADVANCE(787); + if (lookahead == 'b') ADVANCE(1657); + if (lookahead == 'i') ADVANCE(693); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 's') ADVANCE(1618); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(903); END_STATE(); case 676: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(817); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1660); + if (lookahead == 'I') ADVANCE(692); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'b') ADVANCE(1657); + if (lookahead == 'i') ADVANCE(693); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 's') ADVANCE(1618); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(903); END_STATE(); case 677: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'o') ADVANCE(697); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1696); + if (lookahead == 'I') ADVANCE(694); + if (lookahead == 'b') ADVANCE(1693); + if (lookahead == 'i') ADVANCE(695); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 678: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1684); + if (lookahead == 'I') ADVANCE(696); + if (lookahead == 'b') ADVANCE(1681); + if (lookahead == 'i') ADVANCE(697); + if (lookahead == 'r') ADVANCE(878); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 679: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(829); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1684); + if (lookahead == 'I') ADVANCE(696); + if (lookahead == 'b') ADVANCE(1681); + if (lookahead == 'i') ADVANCE(697); + if (lookahead == 'r') ADVANCE(891); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 680: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(861); - if (lookahead == 'e') ADVANCE(732); - if (lookahead == 'o') ADVANCE(1254); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1840); + if (lookahead == 'b') ADVANCE(1837); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 681: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(779); - if (lookahead == 'o') ADVANCE(803); - if (lookahead == 's') ADVANCE(737); - if (lookahead == 'x') ADVANCE(794); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1777); + if (lookahead == 'b') ADVANCE(1774); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 682: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(815); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1735); + if (lookahead == 'b') ADVANCE(1732); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 683: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(842); - if (lookahead == 'o') ADVANCE(769); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1756); + if (lookahead == 'b') ADVANCE(1753); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 684: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1801); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1819); + if (lookahead == 'b') ADVANCE(1816); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 685: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1738); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1798); + if (lookahead == 'b') ADVANCE(1795); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 686: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1696); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1828); + if (lookahead == 'b') ADVANCE(1831); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 687: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1717); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1825); + if (lookahead == 'b') ADVANCE(1822); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 688: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1780); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1765); + if (lookahead == 'b') ADVANCE(1768); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 689: ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'B') ADVANCE(1762); if (lookahead == 'b') ADVANCE(1759); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 690: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(1588); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1723); + if (lookahead == 'b') ADVANCE(1726); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 691: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(736); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1720); + if (lookahead == 'b') ADVANCE(1717); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 692: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(740); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1744); + if (lookahead == 'b') ADVANCE(1747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 693: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(711); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1741); + if (lookahead == 'b') ADVANCE(1738); + if (lookahead == 'n') ADVANCE(1624); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 694: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1441); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1807); + if (lookahead == 'b') ADVANCE(1810); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 695: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1362); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1804); + if (lookahead == 'b') ADVANCE(1801); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 696: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1424); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1786); + if (lookahead == 'b') ADVANCE(1789); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 697: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(850); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1783); + if (lookahead == 'b') ADVANCE(1780); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 698: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(705); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'N') ADVANCE(895); + if (lookahead == 'f') ADVANCE(1291); + if (lookahead == 'n') ADVANCE(1264); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 699: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(820); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(699); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(699); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); case 700: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(732); - if (lookahead == 'o') ADVANCE(1254); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(700); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); case 701: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'i') ADVANCE(825); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(701); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1507); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); case 702: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(786); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 703: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(733); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(892); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 704: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1159); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(787); + if (lookahead == 'o') ADVANCE(729); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 705: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1316); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(787); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 706: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1528); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(798); + if (lookahead == 'o') ADVANCE(830); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 707: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1536); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(798); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 708: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1345); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(849); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 709: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1249); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'o') ADVANCE(729); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 710: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1154); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 711: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1303); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(861); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 712: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1223); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(893); + if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'o') ADVANCE(1286); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 713: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1263); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(811); + if (lookahead == 'o') ADVANCE(835); + if (lookahead == 's') ADVANCE(769); + if (lookahead == 'x') ADVANCE(826); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 714: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1246); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(847); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 715: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(670); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(874); + if (lookahead == 'o') ADVANCE(801); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 716: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(856); - if (lookahead == 'o') ADVANCE(831); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'b') ADVANCE(1834); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 717: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(856); - if (lookahead == 'o') ADVANCE(837); - if (lookahead == 's') ADVANCE(1576); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'b') ADVANCE(1771); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 718: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(856); - if (lookahead == 'o') ADVANCE(837); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'b') ADVANCE(1729); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 719: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(856); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'b') ADVANCE(1750); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 720: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(690); - if (lookahead == 'o') ADVANCE(845); - if (lookahead == 't') ADVANCE(682); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'b') ADVANCE(1813); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 721: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(773); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'b') ADVANCE(1792); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 722: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(812); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'c') ADVANCE(1621); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 723: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(774); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'c') ADVANCE(768); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 724: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(776); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'c') ADVANCE(772); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 725: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(778); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'c') ADVANCE(743); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 726: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(808); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'd') ADVANCE(1474); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 727: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(800); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'd') ADVANCE(1395); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 728: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(841); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'd') ADVANCE(1457); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 729: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(814); - if (lookahead == 'i') ADVANCE(764); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'd') ADVANCE(882); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 730: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(814); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'd') ADVANCE(737); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 731: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'f') ADVANCE(1259); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(863); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'd') ADVANCE(852); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 732: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'f') ADVANCE(1140); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'o') ADVANCE(1286); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 733: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'g') ADVANCE(748); - if (lookahead == 't') ADVANCE(848); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'i') ADVANCE(857); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 734: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(729); - if (lookahead == 'k') ADVANCE(1600); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 735: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(729); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(765); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 736: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1267); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1191); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 737: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(757); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1349); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 738: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1413); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1561); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 739: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1408); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1569); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 740: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1297); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1378); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 741: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(749); - if (lookahead == 'k') ADVANCE(1600); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1281); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 742: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(749); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1186); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 743: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(730); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1336); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 744: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(698); - if (lookahead == 'r') ADVANCE(1594); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1256); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 745: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(698); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1296); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 746: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(676); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1278); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 747: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(775); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(702); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 748: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(824); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(888); + if (lookahead == 'o') ADVANCE(863); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 749: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(764); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(888); + if (lookahead == 'o') ADVANCE(869); + if (lookahead == 's') ADVANCE(1609); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 750: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(834); - if (lookahead == 'r') ADVANCE(715); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(888); + if (lookahead == 'o') ADVANCE(869); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 751: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(772); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(888); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 752: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(839); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(722); + if (lookahead == 'o') ADVANCE(877); + if (lookahead == 't') ADVANCE(714); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 753: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(840); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(805); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 754: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'k') ADVANCE(1219); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(844); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 755: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'k') ADVANCE(714); - if (lookahead == 't') ADVANCE(691); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(806); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 756: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1519); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(808); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 757: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1378); - if (lookahead == 'r') ADVANCE(1383); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(810); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 758: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (lookahead == 's') ADVANCE(1332); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(840); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 759: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(832); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 760: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 's') ADVANCE(1332); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(873); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 761: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(746); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(846); + if (lookahead == 'i') ADVANCE(796); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 762: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(671); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(846); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 763: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(756); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'f') ADVANCE(1291); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 764: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(709); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'f') ADVANCE(1172); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 765: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(710); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'g') ADVANCE(780); + if (lookahead == 't') ADVANCE(880); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 766: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(823); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(761); + if (lookahead == 'k') ADVANCE(1633); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 767: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(761); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 768: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(1300); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 769: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(822); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(789); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 770: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1149); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(1446); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 771: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1300); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(1441); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 772: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1403); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(1330); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 773: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(851); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(781); + if (lookahead == 'k') ADVANCE(1633); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 774: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(852); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(781); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 775: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(849); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(762); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 776: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(853); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(730); + if (lookahead == 'r') ADVANCE(1627); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 777: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(730); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 778: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(854); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(708); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 779: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(696); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(807); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 780: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(838); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(856); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 781: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(769); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(796); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 782: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1254); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(866); + if (lookahead == 'r') ADVANCE(747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 783: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(845); - if (lookahead == 't') ADVANCE(682); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(804); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 784: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(845); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 785: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(795); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(872); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 786: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(798); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'k') ADVANCE(1252); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 787: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(831); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'k') ADVANCE(746); + if (lookahead == 't') ADVANCE(723); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 788: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(799); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(1552); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 789: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(813); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(1411); + if (lookahead == 'r') ADVANCE(1416); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 790: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(835); - if (lookahead == 's') ADVANCE(1576); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (lookahead == 's') ADVANCE(1365); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 791: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(835); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 792: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(780); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 's') ADVANCE(1365); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 793: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(802); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 794: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(804); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(703); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 795: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'p') ADVANCE(1242); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(788); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 796: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'p') ADVANCE(789); - if (lookahead == 't') ADVANCE(726); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(741); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 797: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(846); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(742); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 798: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1227); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(855); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 799: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1182); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 800: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1312); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 801: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1455); - if (lookahead == 'v') ADVANCE(722); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(854); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 802: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1448); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(1181); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 803: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1434); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(1333); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 804: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1429); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(1436); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 805: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(715); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(883); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 806: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(693); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(884); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 807: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(881); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 808: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(770); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(885); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 809: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(859); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 810: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(788); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(886); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 811: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(771); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(728); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 812: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(762); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(870); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 813: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(833); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(801); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 814: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(708); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(1286); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 815: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(844); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(877); + if (lookahead == 't') ADVANCE(714); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 816: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(847); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(877); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 817: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(598); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(827); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 818: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1581); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(830); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 819: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1579); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(863); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 820: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(630); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(831); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 821: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(704); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(845); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 822: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(832); - if (lookahead == 't') ADVANCE(747); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(867); + if (lookahead == 's') ADVANCE(1609); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 823: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(707); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(867); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 824: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(843); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(812); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 825: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(836); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(834); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 826: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(713); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(836); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 827: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(632); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'p') ADVANCE(1274); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 828: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(603); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'p') ADVANCE(821); + if (lookahead == 't') ADVANCE(758); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 829: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(691); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(878); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 830: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(613); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(1260); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 831: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1464); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(1214); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 832: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(618); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(1345); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 833: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(592); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(1488); + if (lookahead == 'v') ADVANCE(754); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 834: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(629); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(1481); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 835: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1459); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(1467); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 836: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1191); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(1462); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 837: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(631); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 838: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(747); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(725); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 839: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(738); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 840: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(739); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(802); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 841: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(848); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(891); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 842: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(692); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(820); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 843: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(727); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(803); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 844: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(827); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(794); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 845: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(806); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(865); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 846: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(706); - if (lookahead == 'y') ADVANCE(1293); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(740); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 847: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(706); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(876); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 848: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(811); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'r') ADVANCE(879); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 849: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(712); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(630); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 850: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(765); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(1614); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 851: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(609); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(1612); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 852: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1321); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(662); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 853: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1144); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(736); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 854: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1308); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(864); + if (lookahead == 't') ADVANCE(779); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 855: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(722); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(739); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 856: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'w') ADVANCE(1329); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(875); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 857: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'w') ADVANCE(752); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(868); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 858: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'w') ADVANCE(753); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(745); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 859: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(1293); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 's') ADVANCE(664); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 860: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(1325); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(635); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 861: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(1597); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(723); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 862: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(645); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 863: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(865); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(1497); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 864: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(869); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(650); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 865: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(868); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(624); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 866: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(871); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(661); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 867: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(863); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(1492); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 868: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(864); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(1223); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 869: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(870); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(663); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 870: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(871); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(779); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 871: ACCEPT_TOKEN(sym_cmd_identifier); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 't') ADVANCE(770); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 872: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(296); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 't') ADVANCE(771); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 873: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(350); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 't') ADVANCE(880); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 874: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(440); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 't') ADVANCE(724); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 875: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(390); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 't') ADVANCE(759); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 876: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(313); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 't') ADVANCE(859); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 877: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(379); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'u') ADVANCE(838); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 878: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(441); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'u') ADVANCE(738); + if (lookahead == 'y') ADVANCE(1326); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 879: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(392); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'u') ADVANCE(738); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 880: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(442); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'u') ADVANCE(843); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 881: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1680); - if (lookahead == 'I') ADVANCE(895); - if (lookahead == '_') ADVANCE(914); - if (lookahead == 'b') ADVANCE(1677); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1499); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'u') ADVANCE(744); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 882: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1680); - if (lookahead == 'I') ADVANCE(895); - if (lookahead == 'b') ADVANCE(1677); - if (lookahead == 'i') ADVANCE(921); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'u') ADVANCE(797); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 883: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1644); - if (lookahead == 'I') ADVANCE(896); - if (lookahead == 'b') ADVANCE(1641); - if (lookahead == 'i') ADVANCE(922); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'v') ADVANCE(641); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 884: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1620); - if (lookahead == 'I') ADVANCE(897); - if (lookahead == 'b') ADVANCE(1617); - if (lookahead == 'i') ADVANCE(923); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'v') ADVANCE(1354); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 885: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1632); - if (lookahead == 'I') ADVANCE(898); - if (lookahead == 'b') ADVANCE(1629); - if (lookahead == 'i') ADVANCE(924); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'v') ADVANCE(1176); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 886: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1668); - if (lookahead == 'I') ADVANCE(899); - if (lookahead == 'b') ADVANCE(1665); - if (lookahead == 'i') ADVANCE(925); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'v') ADVANCE(1341); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 887: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1656); - if (lookahead == 'I') ADVANCE(900); - if (lookahead == 'b') ADVANCE(1653); - if (lookahead == 'i') ADVANCE(926); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'v') ADVANCE(754); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 888: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1674); - if (lookahead == 'I') ADVANCE(901); - if (lookahead == '_') ADVANCE(914); - if (lookahead == 'b') ADVANCE(1671); - if (lookahead == 'i') ADVANCE(902); - if (lookahead == 'n') ADVANCE(930); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1499); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'w') ADVANCE(1362); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 889: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1674); - if (lookahead == 'I') ADVANCE(901); - if (lookahead == 'b') ADVANCE(1671); - if (lookahead == 'i') ADVANCE(902); - if (lookahead == 'n') ADVANCE(930); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'w') ADVANCE(784); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 890: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1638); - if (lookahead == 'I') ADVANCE(903); - if (lookahead == 'b') ADVANCE(1635); - if (lookahead == 'i') ADVANCE(904); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'w') ADVANCE(785); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 891: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1614); - if (lookahead == 'I') ADVANCE(905); - if (lookahead == 'b') ADVANCE(1611); - if (lookahead == 'i') ADVANCE(906); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'y') ADVANCE(1326); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 892: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1626); - if (lookahead == 'I') ADVANCE(907); - if (lookahead == 'b') ADVANCE(1623); - if (lookahead == 'i') ADVANCE(908); - if (lookahead == 'o') ADVANCE(929); - if (lookahead == 's') ADVANCE(1584); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'y') ADVANCE(1358); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 893: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1662); - if (lookahead == 'I') ADVANCE(909); - if (lookahead == 'b') ADVANCE(1659); - if (lookahead == 'i') ADVANCE(910); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'y') ADVANCE(1630); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 894: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1650); - if (lookahead == 'I') ADVANCE(911); - if (lookahead == 'b') ADVANCE(1647); - if (lookahead == 'i') ADVANCE(912); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 895: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1806); - if (lookahead == 'b') ADVANCE(1803); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(897); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 896: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1743); - if (lookahead == 'b') ADVANCE(1740); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(901); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 897: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1701); - if (lookahead == 'b') ADVANCE(1698); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(900); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 898: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1722); - if (lookahead == 'b') ADVANCE(1719); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(903); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 899: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1785); - if (lookahead == 'b') ADVANCE(1782); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 900: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1764); - if (lookahead == 'b') ADVANCE(1761); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(896); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 901: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1794); - if (lookahead == 'b') ADVANCE(1797); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(902); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 902: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1791); - if (lookahead == 'b') ADVANCE(1788); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(903); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 903: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1731); - if (lookahead == 'b') ADVANCE(1734); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(sym_cmd_identifier); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 904: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1728); - if (lookahead == 'b') ADVANCE(1725); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '-') ADVANCE(329); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 905: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1689); - if (lookahead == 'b') ADVANCE(1692); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '-') ADVANCE(384); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 906: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1686); - if (lookahead == 'b') ADVANCE(1683); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '-') ADVANCE(472); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 907: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1710); - if (lookahead == 'b') ADVANCE(1713); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '-') ADVANCE(422); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 908: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1707); - if (lookahead == 'b') ADVANCE(1704); - if (lookahead == 'n') ADVANCE(1590); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '-') ADVANCE(425); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 909: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1773); - if (lookahead == 'b') ADVANCE(1776); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '-') ADVANCE(348); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 910: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1770); - if (lookahead == 'b') ADVANCE(1767); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '-') ADVANCE(412); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 911: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1752); - if (lookahead == 'b') ADVANCE(1755); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '-') ADVANCE(473); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 912: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1749); - if (lookahead == 'b') ADVANCE(1746); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '-') ADVANCE(474); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 913: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(914); + if (lookahead == 'B') ADVANCE(1713); + if (lookahead == 'I') ADVANCE(927); + if (lookahead == '_') ADVANCE(946); + if (lookahead == 'b') ADVANCE(1710); + if (lookahead == 'i') ADVANCE(953); if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1499); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1532); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(914); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1499); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1713); + if (lookahead == 'I') ADVANCE(927); + if (lookahead == 'b') ADVANCE(1710); + if (lookahead == 'i') ADVANCE(953); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(915); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1475); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1677); + if (lookahead == 'I') ADVANCE(928); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'i') ADVANCE(954); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(916); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(916); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1653); + if (lookahead == 'I') ADVANCE(929); + if (lookahead == 'b') ADVANCE(1650); + if (lookahead == 'i') ADVANCE(955); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(984); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1665); + if (lookahead == 'I') ADVANCE(930); + if (lookahead == 'b') ADVANCE(1662); + if (lookahead == 'i') ADVANCE(956); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(941); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1701); + if (lookahead == 'I') ADVANCE(931); + if (lookahead == 'b') ADVANCE(1698); + if (lookahead == 'i') ADVANCE(957); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(964); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1689); + if (lookahead == 'I') ADVANCE(932); + if (lookahead == 'b') ADVANCE(1686); + if (lookahead == 'i') ADVANCE(958); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(968); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1707); + if (lookahead == 'I') ADVANCE(933); + if (lookahead == '_') ADVANCE(946); + if (lookahead == 'b') ADVANCE(1704); + if (lookahead == 'i') ADVANCE(934); + if (lookahead == 'n') ADVANCE(962); + if (lookahead == '+' || + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1532); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 921: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1800); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1707); + if (lookahead == 'I') ADVANCE(933); + if (lookahead == 'b') ADVANCE(1704); + if (lookahead == 'i') ADVANCE(934); + if (lookahead == 'n') ADVANCE(962); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 922: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1737); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1671); + if (lookahead == 'I') ADVANCE(935); + if (lookahead == 'b') ADVANCE(1668); + if (lookahead == 'i') ADVANCE(936); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 923: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1695); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1647); + if (lookahead == 'I') ADVANCE(937); + if (lookahead == 'b') ADVANCE(1644); + if (lookahead == 'i') ADVANCE(938); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 924: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1716); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1659); + if (lookahead == 'I') ADVANCE(939); + if (lookahead == 'b') ADVANCE(1656); + if (lookahead == 'i') ADVANCE(940); + if (lookahead == 'o') ADVANCE(961); + if (lookahead == 's') ADVANCE(1617); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 925: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1779); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1695); + if (lookahead == 'I') ADVANCE(941); + if (lookahead == 'b') ADVANCE(1692); + if (lookahead == 'i') ADVANCE(942); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 926: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1758); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1683); + if (lookahead == 'I') ADVANCE(943); + if (lookahead == 'b') ADVANCE(1680); + if (lookahead == 'i') ADVANCE(944); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 927: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1587); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1839); + if (lookahead == 'b') ADVANCE(1836); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 928: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(1439); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1776); + if (lookahead == 'b') ADVANCE(1773); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 929: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(1363); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1734); + if (lookahead == 'b') ADVANCE(1731); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 930: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(972); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1755); + if (lookahead == 'b') ADVANCE(1752); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 931: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(927); - if (lookahead == 't') ADVANCE(919); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1818); + if (lookahead == 'b') ADVANCE(1815); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 932: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1526); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1797); + if (lookahead == 'b') ADVANCE(1794); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 933: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1534); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1827); + if (lookahead == 'b') ADVANCE(1830); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 934: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(877); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1824); + if (lookahead == 'b') ADVANCE(1821); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 935: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(942); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1764); + if (lookahead == 'b') ADVANCE(1767); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 936: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(976); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1761); + if (lookahead == 'b') ADVANCE(1758); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(973); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1722); + if (lookahead == 'b') ADVANCE(1725); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1599); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1719); + if (lookahead == 'b') ADVANCE(1716); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1517); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1743); + if (lookahead == 'b') ADVANCE(1746); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(939); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1740); + if (lookahead == 'b') ADVANCE(1737); + if (lookahead == 'n') ADVANCE(1623); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(971); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1806); + if (lookahead == 'b') ADVANCE(1809); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(943); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1803); + if (lookahead == 'b') ADVANCE(1800); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(875); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1785); + if (lookahead == 'b') ADVANCE(1788); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(876); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1782); + if (lookahead == 'b') ADVANCE(1779); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(944); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(946); + if (lookahead == '+' || + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1532); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(958); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(946); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1532); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 947: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(928); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1508); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 948: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1236); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(948); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(948); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 949: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(930); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'a') ADVANCE(1016); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(1026); END_STATE(); case 950: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(934); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'a') ADVANCE(973); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(1026); END_STATE(); case 951: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(961); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'a') ADVANCE(996); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(1026); END_STATE(); case 952: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(929); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'a') ADVANCE(1000); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(1026); END_STATE(); case 953: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(977); - if (lookahead == 'u') ADVANCE(940); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(989); - if (sym_identifier_character_set_6(lookahead)) ADVANCE(994); + if (lookahead == 'b') ADVANCE(1833); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 954: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(963); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'b') ADVANCE(1770); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 955: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(967); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'b') ADVANCE(1728); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 956: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(979); - if (lookahead == 's') ADVANCE(1575); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'b') ADVANCE(1749); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 957: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(979); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'b') ADVANCE(1812); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 958: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(955); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'b') ADVANCE(1791); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 959: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1593); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'c') ADVANCE(1620); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 960: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1453); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'd') ADVANCE(1472); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 961: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1446); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'd') ADVANCE(1396); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 962: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(982); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'd') ADVANCE(1004); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 963: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1181); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(959); + if (lookahead == 't') ADVANCE(951); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 964: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(981); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(1559); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 965: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(954); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(1567); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 966: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(965); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(910); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 967: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(980); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(974); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 968: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(880); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'i') ADVANCE(1008); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 969: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1578); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'i') ADVANCE(1005); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 970: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1582); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'k') ADVANCE(1632); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 971: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(933); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'l') ADVANCE(1550); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 972: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(874); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'l') ADVANCE(971); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 973: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(978); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'l') ADVANCE(1003); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 974: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(878); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'l') ADVANCE(975); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 975: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(919); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'l') ADVANCE(907); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 976: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(872); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'l') ADVANCE(909); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 977: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1462); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'l') ADVANCE(976); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 978: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1190); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'm') ADVANCE(990); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 979: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(873); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'n') ADVANCE(960); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 980: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(879); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'n') ADVANCE(1268); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 981: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(974); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'n') ADVANCE(962); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 982: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(932); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'n') ADVANCE(966); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 983: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(945); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'o') ADVANCE(993); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 984: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1596); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'o') ADVANCE(961); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 985: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(1009); + if (lookahead == 'u') ADVANCE(972); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(989); - if (sym_identifier_character_set_6(lookahead)) ADVANCE(994); + lookahead == 'a') ADVANCE(1021); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(1026); END_STATE(); case 986: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(988); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'o') ADVANCE(995); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 987: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(992); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'o') ADVANCE(999); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 988: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(991); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'o') ADVANCE(1011); + if (lookahead == 's') ADVANCE(1608); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 989: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(994); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'o') ADVANCE(1011); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 990: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(986); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'p') ADVANCE(987); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 991: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(987); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'r') ADVANCE(1626); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 992: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(993); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'r') ADVANCE(1486); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 993: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(994); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'r') ADVANCE(1479); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 994: ACCEPT_TOKEN(sym_identifier); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'r') ADVANCE(1014); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 995: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'u') ADVANCE(1101); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(1213); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 996: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'r') ADVANCE(1078); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(1013); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 997: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == '+') ADVANCE(2003); - if (lookahead == '>') ADVANCE(1889); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(986); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 998: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == '+') ADVANCE(1985); - if (lookahead == '>') ADVANCE(1891); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(997); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 999: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == '-') ADVANCE(1135); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(999); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(1012); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1000: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == '_') ADVANCE(1000); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1000); - if (sym__long_flag_identifier_character_set_2(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(912); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1001: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == '_') ADVANCE(1001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1001); - if (sym__long_flag_identifier_character_set_2(lookahead)) ADVANCE(1135); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(1611); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1002: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'a') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1074); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(1615); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1003: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'a') ADVANCE(1044); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(965); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1004: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'a') ADVANCE(1115); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(906); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1005: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'a') ADVANCE(1046); - if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1135); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(1010); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1006: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'a') ADVANCE(1088); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(911); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1007: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'a') ADVANCE(1095); - if (lookahead == 'o') ADVANCE(1010); - if (lookahead == 'u') ADVANCE(1096); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(951); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1008: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'c') ADVANCE(1039); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(904); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1009: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'c') ADVANCE(1022); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1495); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1010: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'd') ADVANCE(1109); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1222); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1011: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'd') ADVANCE(1016); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(905); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1012: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1036); - if (lookahead == 'o') ADVANCE(1253); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(908); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1013: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1094); - if (lookahead == 'o') ADVANCE(1066); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1006); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1014: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1037); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(964); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1015: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1158); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(977); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1016: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1318); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(1629); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1017: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1525); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1021); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(1026); END_STATE(); case 1018: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1533); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1020); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1019: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1344); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1024); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1020: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1248); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1023); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1021: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1153); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1026); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1022: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1305); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1018); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1023: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1222); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1019); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1024: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1527); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1025); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1025: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1535); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1026); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1026: - ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1003); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 1027: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1059); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'u') ADVANCE(1133); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1028: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1085); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'r') ADVANCE(1110); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1029: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1060); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == '+') ADVANCE(2040); + if (lookahead == '>') ADVANCE(1922); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1030: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1062); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == '+') ADVANCE(2021); + if (lookahead == '>') ADVANCE(1924); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1031: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1063); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == '-') ADVANCE(1167); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1031); END_STATE(); case 1032: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1082); + if (lookahead == '_') ADVANCE(1032); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1032); + if (sym__long_flag_identifier_character_set_2(lookahead)) ADVANCE(1166); END_STATE(); case 1033: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1076); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == '_') ADVANCE(1033); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1033); + if (sym__long_flag_identifier_character_set_2(lookahead)) ADVANCE(1167); END_STATE(); case 1034: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'e') ADVANCE(1087); - if (lookahead == 'i') ADVANCE(1052); + if (lookahead == 'a') ADVANCE(1086); + if (lookahead == 'o') ADVANCE(1106); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1166); END_STATE(); case 1035: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'f') ADVANCE(1258); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1118); + if (lookahead == 'a') ADVANCE(1076); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1166); END_STATE(); case 1036: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'f') ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1147); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1166); END_STATE(); case 1037: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'g') ADVANCE(1043); - if (lookahead == 't') ADVANCE(1107); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 'a') ADVANCE(1078); + if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1167); END_STATE(); case 1038: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'h') ADVANCE(1034); + if (lookahead == 'a') ADVANCE(1120); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1166); END_STATE(); case 1039: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'h') ADVANCE(1266); + if (lookahead == 'a') ADVANCE(1127); + if (lookahead == 'o') ADVANCE(1042); + if (lookahead == 'u') ADVANCE(1128); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_3(lookahead)) ADVANCE(1166); END_STATE(); case 1040: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'i') ADVANCE(1011); + if (lookahead == 'c') ADVANCE(1071); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1041: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'i') ADVANCE(1006); + if (lookahead == 'c') ADVANCE(1054); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1042: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'i') ADVANCE(1061); + if (lookahead == 'd') ADVANCE(1141); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1043: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'i') ADVANCE(1093); + if (lookahead == 'd') ADVANCE(1048); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1044: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'k') ADVANCE(1218); + if (lookahead == 'e') ADVANCE(1068); + if (lookahead == 'o') ADVANCE(1285); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1045: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1516); + if (lookahead == 'e') ADVANCE(1126); + if (lookahead == 'o') ADVANCE(1098); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1046: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1089); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'e') ADVANCE(1069); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1047: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1518); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'e') ADVANCE(1190); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1048: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1331); + if (lookahead == 'e') ADVANCE(1351); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1049: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1558); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1050: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1004); + if (lookahead == 'e') ADVANCE(1566); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1051: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1047); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'e') ADVANCE(1377); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1052: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1020); + if (lookahead == 'e') ADVANCE(1280); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1053: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1021); + if (lookahead == 'e') ADVANCE(1185); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1054: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'l') ADVANCE(1092); + if (lookahead == 'e') ADVANCE(1338); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1055: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'n') ADVANCE(1091); + if (lookahead == 'e') ADVANCE(1255); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1056: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'n') ADVANCE(1148); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 'e') ADVANCE(1560); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1057: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'n') ADVANCE(1299); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 'e') ADVANCE(1568); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1058: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'n') ADVANCE(1238); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'e') ADVANCE(1035); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1059: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'n') ADVANCE(1110); + if (lookahead == 'e') ADVANCE(1091); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1060: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'n') ADVANCE(1111); + if (lookahead == 'e') ADVANCE(1117); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1061: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'n') ADVANCE(1108); + if (lookahead == 'e') ADVANCE(1092); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1062: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'n') ADVANCE(1112); + if (lookahead == 'e') ADVANCE(1094); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1063: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'n') ADVANCE(1113); + if (lookahead == 'e') ADVANCE(1095); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1064: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'o') ADVANCE(1055); + if (lookahead == 'e') ADVANCE(1114); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1065: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'o') ADVANCE(1105); + if (lookahead == 'e') ADVANCE(1108); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1066: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'o') ADVANCE(1071); + if (lookahead == 'e') ADVANCE(1119); + if (lookahead == 'i') ADVANCE(1084); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1067: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'o') ADVANCE(1100); - if (lookahead == 'u') ADVANCE(1051); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1126); - if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1135); + if (lookahead == 'f') ADVANCE(1290); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1150); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1068: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'o') ADVANCE(1097); - if (lookahead == 'u') ADVANCE(1049); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1124); + if (lookahead == 'f') ADVANCE(1171); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1069: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'o') ADVANCE(1075); + if (lookahead == 'g') ADVANCE(1075); + if (lookahead == 't') ADVANCE(1139); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1070: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'o') ADVANCE(1086); + if (lookahead == 'h') ADVANCE(1066); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1071: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'p') ADVANCE(1241); + if (lookahead == 'h') ADVANCE(1299); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1072: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'p') ADVANCE(1070); - if (lookahead == 't') ADVANCE(1032); + if (lookahead == 'i') ADVANCE(1043); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1073: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1106); + if (lookahead == 'i') ADVANCE(1038); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1074: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1226); + if (lookahead == 'i') ADVANCE(1093); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1075: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1180); + if (lookahead == 'i') ADVANCE(1125); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1076: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1311); + if (lookahead == 'k') ADVANCE(1251); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1077: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1103); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'l') ADVANCE(1549); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1078: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(997); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'l') ADVANCE(1121); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1079: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1026); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 'l') ADVANCE(1551); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1080: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1009); + if (lookahead == 'l') ADVANCE(1073); + if (lookahead == 's') ADVANCE(1364); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1081: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1083); - if (lookahead == 'x') ADVANCE(1072); + if (lookahead == 'l') ADVANCE(1077); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1082: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1056); + if (lookahead == 'l') ADVANCE(1036); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1083: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1069); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 'l') ADVANCE(1079); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1084: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1057); + if (lookahead == 'l') ADVANCE(1052); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1085: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1050); + if (lookahead == 'l') ADVANCE(1053); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1086: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1099); + if (lookahead == 'l') ADVANCE(1124); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1087: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'r') ADVANCE(1019); + if (lookahead == 'n') ADVANCE(1123); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1088: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 's') ADVANCE(597); + if (lookahead == 'n') ADVANCE(1180); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1089: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 's') ADVANCE(1025); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'n') ADVANCE(1332); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1090: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 's') ADVANCE(1015); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 'n') ADVANCE(1270); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1091: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 's') ADVANCE(1098); - if (lookahead == 't') ADVANCE(1042); + if (lookahead == 'n') ADVANCE(1142); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1092: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 's') ADVANCE(1018); + if (lookahead == 'n') ADVANCE(1143); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1093: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 's') ADVANCE(1102); + if (lookahead == 'n') ADVANCE(1140); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1094: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 't') ADVANCE(606); + if (lookahead == 'n') ADVANCE(1144); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1095: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 't') ADVANCE(1008); + if (lookahead == 'n') ADVANCE(1145); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1096: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 't') ADVANCE(612); + if (lookahead == 'o') ADVANCE(1087); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1097: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 't') ADVANCE(1461); + if (lookahead == 'o') ADVANCE(1137); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1098: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 't') ADVANCE(617); + if (lookahead == 'o') ADVANCE(1103); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1099: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 't') ADVANCE(594); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 'o') ADVANCE(1132); + if (lookahead == 'u') ADVANCE(1083); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1158); + if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1167); END_STATE(); case 1100: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 't') ADVANCE(1463); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'o') ADVANCE(1129); + if (lookahead == 'u') ADVANCE(1081); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1156); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1166); END_STATE(); case 1101: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 't') ADVANCE(998); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'o') ADVANCE(1107); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1102: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 't') ADVANCE(1033); + if (lookahead == 'o') ADVANCE(1118); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1103: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'u') ADVANCE(1024); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'p') ADVANCE(1273); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1104: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'u') ADVANCE(1051); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1126); - if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1135); + if (lookahead == 'p') ADVANCE(1102); + if (lookahead == 't') ADVANCE(1064); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1105: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'u') ADVANCE(1080); + if (lookahead == 'r') ADVANCE(1138); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1106: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'u') ADVANCE(1017); - if (lookahead == 'y') ADVANCE(1292); + if (lookahead == 'r') ADVANCE(1259); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1107: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'u') ADVANCE(1084); + if (lookahead == 'r') ADVANCE(1212); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1108: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'u') ADVANCE(1023); + if (lookahead == 'r') ADVANCE(1344); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1109: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'u') ADVANCE(1053); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 'r') ADVANCE(1135); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1110: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'v') ADVANCE(608); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 'r') ADVANCE(1029); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1111: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'v') ADVANCE(1320); + if (lookahead == 'r') ADVANCE(1058); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1112: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'v') ADVANCE(1143); + if (lookahead == 'r') ADVANCE(1041); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1113: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'v') ADVANCE(1307); + if (lookahead == 'r') ADVANCE(1115); + if (lookahead == 'x') ADVANCE(1104); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1114: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'v') ADVANCE(1028); + if (lookahead == 'r') ADVANCE(1088); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1115: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'y') ADVANCE(1324); + if (lookahead == 'r') ADVANCE(1101); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1116: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1124); + if (lookahead == 'r') ADVANCE(1089); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1117: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1126); - if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1135); + if (lookahead == 'r') ADVANCE(1082); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1118: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1122); + if (lookahead == 'r') ADVANCE(1131); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1119: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1123); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'r') ADVANCE(1051); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1120: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1130); + if (lookahead == 's') ADVANCE(629); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1121: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1131); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 's') ADVANCE(1057); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1122: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1128); + if (lookahead == 's') ADVANCE(1047); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1123: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1129); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 's') ADVANCE(1130); + if (lookahead == 't') ADVANCE(1074); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1124: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1134); + if (lookahead == 's') ADVANCE(1050); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1125: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1118); + if (lookahead == 's') ADVANCE(1134); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1126: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1135); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 't') ADVANCE(638); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1127: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1119); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 't') ADVANCE(1040); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1128: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1120); + if (lookahead == 't') ADVANCE(644); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1129: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1121); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 't') ADVANCE(1494); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1130: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1132); + if (lookahead == 't') ADVANCE(649); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1131: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1133); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 't') ADVANCE(626); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1132: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1134); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + if (lookahead == 't') ADVANCE(1496); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1133: ACCEPT_TOKEN(sym__long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1135); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 't') ADVANCE(1030); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1134: ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 't') ADVANCE(1065); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1135: ACCEPT_TOKEN(sym__long_flag_identifier); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (lookahead == 'u') ADVANCE(1056); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(1136); + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'u') ADVANCE(1083); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1158); + if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1167); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'u') ADVANCE(1112); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); case 1138: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'u') ADVANCE(1049); + if (lookahead == 'y') ADVANCE(1325); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1139: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'u') ADVANCE(1116); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1140: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'u') ADVANCE(1055); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1141: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'u') ADVANCE(1085); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1142: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'v') ADVANCE(640); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1143: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'v') ADVANCE(1353); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1144: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'v') ADVANCE(1175); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1145: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'v') ADVANCE(1340); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1146: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'v') ADVANCE(1060); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1147: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'y') ADVANCE(1357); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1148: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1156); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1166); + END_STATE(); + case 1149: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1158); + if (sym__long_flag_identifier_character_set_4(lookahead)) ADVANCE(1167); + END_STATE(); + case 1150: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1154); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1151: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1155); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); + END_STATE(); + case 1152: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1162); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1153: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1163); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); + END_STATE(); + case 1154: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1160); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1155: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1161); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); + END_STATE(); + case 1156: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1166); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1157: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1150); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1158: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1167); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); + END_STATE(); + case 1159: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1151); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); + END_STATE(); + case 1160: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1152); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1161: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1153); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); + END_STATE(); + case 1162: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1164); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1163: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1165); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); + END_STATE(); + case 1164: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1166); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1165: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1167); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); + END_STATE(); + case 1166: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); + END_STATE(); + case 1167: + ACCEPT_TOKEN(sym__long_flag_identifier); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); + END_STATE(); + case 1168: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(1168); + END_STATE(); + case 1169: + ACCEPT_TOKEN(anon_sym_def); + END_STATE(); + case 1170: ACCEPT_TOKEN(anon_sym_def); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1139: + case 1171: ACCEPT_TOKEN(anon_sym_def); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1140: + case 1172: ACCEPT_TOKEN(anon_sym_def); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1141: + case 1173: ACCEPT_TOKEN(anon_sym_def); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1142: + case 1174: ACCEPT_TOKEN(anon_sym_export_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1143: + case 1175: ACCEPT_TOKEN(anon_sym_export_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1144: + case 1176: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1145: + case 1177: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1146: + case 1178: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 1147: + case 1179: ACCEPT_TOKEN(anon_sym_extern); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1148: + case 1180: ACCEPT_TOKEN(anon_sym_extern); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1149: + case 1181: ACCEPT_TOKEN(anon_sym_extern); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1150: + case 1182: ACCEPT_TOKEN(anon_sym_extern); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1151: + case 1183: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 1152: + case 1184: ACCEPT_TOKEN(anon_sym_module); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1153: + case 1185: ACCEPT_TOKEN(anon_sym_module); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1154: + case 1186: ACCEPT_TOKEN(anon_sym_module); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1155: + case 1187: ACCEPT_TOKEN(anon_sym_module); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1156: + case 1188: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 1157: + case 1189: ACCEPT_TOKEN(anon_sym_use); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1158: + case 1190: ACCEPT_TOKEN(anon_sym_use); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1159: + case 1191: ACCEPT_TOKEN(anon_sym_use); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1160: + case 1192: ACCEPT_TOKEN(anon_sym_use); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1161: + case 1193: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 1162: + case 1194: ACCEPT_TOKEN(anon_sym_COLON); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1163: + case 1195: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 1164: + case 1196: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 1165: + case 1197: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 1166: + case 1198: ACCEPT_TOKEN(anon_sym_COMMA); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1167: + case 1199: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 1168: + case 1200: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 1169: + case 1201: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 1170: + case 1202: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 1171: + case 1203: ACCEPT_TOKEN(anon_sym_PIPE); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1172: + case 1204: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 1173: + case 1205: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1849); - if (lookahead == '\'') ADVANCE(1846); + if (lookahead == '"') ADVANCE(1882); + if (lookahead == '\'') ADVANCE(1879); END_STATE(); - case 1174: + case 1206: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1849); - if (lookahead == '\'') ADVANCE(1846); - if (!aux_sym__unquoted_in_list_token3_character_set_2(lookahead)) ADVANCE(3085); + if (lookahead == '"') ADVANCE(1882); + if (lookahead == '\'') ADVANCE(1879); + if (!aux_sym__unquoted_in_list_token3_character_set_2(lookahead)) ADVANCE(3120); END_STATE(); - case 1175: + case 1207: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1849); - if (lookahead == '\'') ADVANCE(1846); - if (!aux_sym_unquoted_token3_character_set_5(lookahead)) ADVANCE(2606); + if (lookahead == '"') ADVANCE(1882); + if (lookahead == '\'') ADVANCE(1879); + if (!aux_sym_unquoted_token3_character_set_5(lookahead)) ADVANCE(2643); END_STATE(); - case 1176: + case 1208: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1177: + case 1209: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1178: + case 1210: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 1179: + case 1211: ACCEPT_TOKEN(anon_sym_error); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1180: + case 1212: ACCEPT_TOKEN(anon_sym_error); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1181: + case 1213: ACCEPT_TOKEN(anon_sym_error); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1182: + case 1214: ACCEPT_TOKEN(anon_sym_error); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1183: + case 1215: ACCEPT_TOKEN(anon_sym_error); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1184: + case 1216: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 1185: + case 1217: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 1186: + case 1218: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 1187: + case 1219: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 1188: + case 1220: ACCEPT_TOKEN(anon_sym_list); END_STATE(); - case 1189: + case 1221: ACCEPT_TOKEN(anon_sym_list); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1190: + case 1222: ACCEPT_TOKEN(anon_sym_list); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1191: + case 1223: ACCEPT_TOKEN(anon_sym_list); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1192: + case 1224: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 1193: + case 1225: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1395); + if (lookahead == '=') ADVANCE(1428); END_STATE(); - case 1194: + case 1226: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 1195: + case 1227: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1398); + if (lookahead == '=') ADVANCE(1431); END_STATE(); - case 1196: + case 1228: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1400); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '=') ADVANCE(1433); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1197: + case 1229: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1399); + if (lookahead == '=') ADVANCE(1432); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1198: + case 1230: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 1199: + case 1231: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 1200: + case 1232: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1201: + case 1233: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 1202: + case 1234: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 1203: + case 1235: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1204: + case 1236: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 1205: + case 1237: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1202); + if (lookahead == '-') ADVANCE(1234); END_STATE(); - case 1206: + case 1238: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1203); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(1235); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1207: + case 1239: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(1340); + if (lookahead == '=') ADVANCE(1373); END_STATE(); - case 1208: + case 1240: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(1373); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1902); + END_STATE(); + case 1241: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); + lookahead == ':') ADVANCE(2643); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2556); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == 'i') ADVANCE(2593); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1209: + case 1242: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1869); + lookahead == 'i') ADVANCE(1902); END_STATE(); - case 1210: + case 1243: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(455); + lookahead == 'i') ADVANCE(487); END_STATE(); - case 1211: + case 1244: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2579); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + lookahead == 'i') ADVANCE(2616); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1212: + case 1245: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3063); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'i') ADVANCE(3098); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1213: + case 1246: ACCEPT_TOKEN(anon_sym_DASH); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1214: + case 1247: ACCEPT_TOKEN(aux_sym_param_short_flag_token1); END_STATE(); - case 1215: + case 1248: ACCEPT_TOKEN(aux_sym_param_short_flag_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1911); END_STATE(); - case 1216: + case 1249: ACCEPT_TOKEN(aux_sym_param_short_flag_token1); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1217: + case 1250: ACCEPT_TOKEN(anon_sym_break); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1218: + case 1251: ACCEPT_TOKEN(anon_sym_break); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1219: + case 1252: ACCEPT_TOKEN(anon_sym_break); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1220: + case 1253: ACCEPT_TOKEN(anon_sym_break); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1221: + case 1254: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1222: + case 1255: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1223: + case 1256: ACCEPT_TOKEN(anon_sym_continue); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1224: + case 1257: ACCEPT_TOKEN(anon_sym_continue); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1225: + case 1258: ACCEPT_TOKEN(anon_sym_for); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1226: + case 1259: ACCEPT_TOKEN(anon_sym_for); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1227: + case 1260: ACCEPT_TOKEN(anon_sym_for); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1228: + case 1261: ACCEPT_TOKEN(anon_sym_for); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1229: + case 1262: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 1230: + case 1263: ACCEPT_TOKEN(anon_sym_in); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2553); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); - END_STATE(); - case 1231: - ACCEPT_TOKEN(anon_sym_in); + lookahead == ':') ADVANCE(2643); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(865); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + lookahead == 'f') ADVANCE(2590); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1232: + case 1264: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1567); + lookahead == 'f') ADVANCE(897); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1233: + case 1265: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2575); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + lookahead == 'f') ADVANCE(1600); END_STATE(); - case 1234: + case 1266: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2574); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + lookahead == 'f') ADVANCE(2612); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1235: + case 1267: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1569); + lookahead == 'f') ADVANCE(2611); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1236: + case 1268: ACCEPT_TOKEN(anon_sym_in); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1237: + case 1269: ACCEPT_TOKEN(anon_sym_in); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); - case 1238: + case 1270: ACCEPT_TOKEN(anon_sym_in); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); - case 1239: + case 1271: ACCEPT_TOKEN(anon_sym_in); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1240: + case 1272: ACCEPT_TOKEN(anon_sym_loop); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1241: + case 1273: ACCEPT_TOKEN(anon_sym_loop); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1242: + case 1274: ACCEPT_TOKEN(anon_sym_loop); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1243: + case 1275: ACCEPT_TOKEN(anon_sym_loop); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1244: + case 1276: ACCEPT_TOKEN(anon_sym_make); END_STATE(); - case 1245: + case 1277: ACCEPT_TOKEN(anon_sym_make); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1246: + case 1278: ACCEPT_TOKEN(anon_sym_make); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1247: + case 1279: ACCEPT_TOKEN(anon_sym_while); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1248: + case 1280: ACCEPT_TOKEN(anon_sym_while); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1249: + case 1281: ACCEPT_TOKEN(anon_sym_while); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1250: + case 1282: ACCEPT_TOKEN(anon_sym_while); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1251: + case 1283: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 1252: + case 1284: ACCEPT_TOKEN(anon_sym_do); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1253: + case 1285: ACCEPT_TOKEN(anon_sym_do); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1254: + case 1286: ACCEPT_TOKEN(anon_sym_do); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1255: + case 1287: ACCEPT_TOKEN(anon_sym_do); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1256: + case 1288: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 1257: + case 1289: ACCEPT_TOKEN(anon_sym_if); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1258: + case 1290: ACCEPT_TOKEN(anon_sym_if); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1259: + case 1291: ACCEPT_TOKEN(anon_sym_if); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1260: + case 1292: ACCEPT_TOKEN(anon_sym_if); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1261: + case 1293: + ACCEPT_TOKEN(anon_sym_if); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); + END_STATE(); + case 1294: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 1262: + case 1295: ACCEPT_TOKEN(anon_sym_else); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1263: + case 1296: ACCEPT_TOKEN(anon_sym_else); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1264: + case 1297: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 1265: + case 1298: ACCEPT_TOKEN(anon_sym_match); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1266: + case 1299: ACCEPT_TOKEN(anon_sym_match); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1267: + case 1300: ACCEPT_TOKEN(anon_sym_match); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1268: + case 1301: ACCEPT_TOKEN(anon_sym_match); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1269: + case 1302: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 1270: + case 1303: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 1271: + case 1304: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 1272: + case 1305: ACCEPT_TOKEN(anon_sym_EQ_GT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1273: + case 1306: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(1509); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(1542); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(1026); END_STATE(); - case 1274: + case 1307: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(291); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 1275: + case 1308: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(292); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); - case 1276: + case 1309: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2204); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2240); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1277: + case 1310: ACCEPT_TOKEN(anon_sym__); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1278: + case 1311: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 1279: + case 1312: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1280: + case 1313: ACCEPT_TOKEN(anon_sym_DOT); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1281: + case 1314: ACCEPT_TOKEN(anon_sym_DOT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1282: + case 1315: ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); - case 1283: + case 1316: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(238); + if (lookahead == '.') ADVANCE(280); END_STATE(); - case 1284: + case 1317: ACCEPT_TOKEN(anon_sym_DOT2); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1860); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1893); END_STATE(); - case 1285: + case 1318: ACCEPT_TOKEN(anon_sym_DOT2); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1286: + case 1319: ACCEPT_TOKEN(anon_sym_DOT2); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1287: + case 1320: ACCEPT_TOKEN(anon_sym_DOT2); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 1288: + case 1321: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 1289: + case 1322: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1849); - if (lookahead == '\'') ADVANCE(1846); + if (lookahead == '"') ADVANCE(1882); + if (lookahead == '\'') ADVANCE(1879); END_STATE(); - case 1290: + case 1323: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 1291: + case 1324: ACCEPT_TOKEN(anon_sym_try); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1292: + case 1325: ACCEPT_TOKEN(anon_sym_try); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1293: + case 1326: ACCEPT_TOKEN(anon_sym_try); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1294: + case 1327: ACCEPT_TOKEN(anon_sym_try); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1295: + case 1328: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 1296: + case 1329: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1297: + case 1330: ACCEPT_TOKEN(anon_sym_catch); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1298: + case 1331: ACCEPT_TOKEN(anon_sym_return); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1299: + case 1332: ACCEPT_TOKEN(anon_sym_return); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1300: + case 1333: ACCEPT_TOKEN(anon_sym_return); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1301: + case 1334: ACCEPT_TOKEN(anon_sym_return); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1302: + case 1335: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2289); + if (lookahead == '-') ADVANCE(2325); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1303: + case 1336: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(725); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(871); + if (lookahead == '-') ADVANCE(757); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 1304: + case 1337: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2288); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2324); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1305: + case 1338: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1031); + if (lookahead == '-') ADVANCE(1063); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1166); END_STATE(); - case 1306: + case 1339: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1307: + case 1340: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1308: + case 1341: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1309: + case 1342: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1310: + case 1343: ACCEPT_TOKEN(anon_sym_register); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1311: + case 1344: ACCEPT_TOKEN(anon_sym_register); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1312: + case 1345: ACCEPT_TOKEN(anon_sym_register); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1313: + case 1346: ACCEPT_TOKEN(anon_sym_register); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1314: + case 1347: ACCEPT_TOKEN(anon_sym_hide); END_STATE(); - case 1315: + case 1348: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2283); + if (lookahead == '-') ADVANCE(2319); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1316: + case 1349: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(723); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(871); + if (lookahead == '-') ADVANCE(755); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 1317: + case 1350: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2282); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2318); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1318: + case 1351: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1029); + if (lookahead == '-') ADVANCE(1061); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1166); END_STATE(); - case 1319: + case 1352: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1320: + case 1353: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1321: + case 1354: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1322: + case 1355: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1323: + case 1356: ACCEPT_TOKEN(anon_sym_overlay); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1324: + case 1357: ACCEPT_TOKEN(anon_sym_overlay); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1325: + case 1358: ACCEPT_TOKEN(anon_sym_overlay); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1326: + case 1359: ACCEPT_TOKEN(anon_sym_overlay); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1327: + case 1360: ACCEPT_TOKEN(anon_sym_new); END_STATE(); - case 1328: + case 1361: ACCEPT_TOKEN(anon_sym_new); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1329: + case 1362: ACCEPT_TOKEN(anon_sym_new); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1330: + case 1363: ACCEPT_TOKEN(anon_sym_as); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1331: + case 1364: ACCEPT_TOKEN(anon_sym_as); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1332: + case 1365: ACCEPT_TOKEN(anon_sym_as); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1333: + case 1366: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 1334: + case 1367: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1348); + if (lookahead == '*') ADVANCE(1381); END_STATE(); - case 1335: + case 1368: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1348); - if (lookahead == '=') ADVANCE(1341); + if (lookahead == '*') ADVANCE(1381); + if (lookahead == '=') ADVANCE(1374); END_STATE(); - case 1336: + case 1369: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1350); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '*') ADVANCE(1383); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1337: + case 1370: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1349); + if (lookahead == '*') ADVANCE(1382); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1338: + case 1371: ACCEPT_TOKEN(anon_sym_STAR); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1339: + case 1372: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 1340: + case 1373: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 1341: + case 1374: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 1342: + case 1375: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 1343: + case 1376: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); - case 1344: + case 1377: ACCEPT_TOKEN(anon_sym_where); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1345: + case 1378: ACCEPT_TOKEN(anon_sym_where); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1346: + case 1379: ACCEPT_TOKEN(anon_sym_where); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1347: + case 1380: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 1348: + case 1381: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 1349: + case 1382: ACCEPT_TOKEN(anon_sym_STAR_STAR); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1350: + case 1383: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1351: + case 1384: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 1352: + case 1385: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '=') ADVANCE(1343); + if (lookahead == '=') ADVANCE(1376); END_STATE(); - case 1353: + case 1386: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1354: + case 1387: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1355: + case 1388: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1366); + if (lookahead == '/') ADVANCE(1399); END_STATE(); - case 1356: + case 1389: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1366); - if (lookahead == '=') ADVANCE(1342); + if (lookahead == '/') ADVANCE(1399); + if (lookahead == '=') ADVANCE(1375); END_STATE(); - case 1357: + case 1390: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1368); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '/') ADVANCE(1401); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1358: + case 1391: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1367); + if (lookahead == '/') ADVANCE(1400); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1359: + case 1392: ACCEPT_TOKEN(anon_sym_mod); END_STATE(); - case 1360: + case 1393: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(2351); + if (lookahead == 'u') ADVANCE(2388); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1361: + case 1394: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(2352); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'u') ADVANCE(2389); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1362: + case 1395: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(765); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'u') ADVANCE(797); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1363: + case 1396: ACCEPT_TOKEN(anon_sym_mod); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1364: + case 1397: ACCEPT_TOKEN(anon_sym_mod); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); - case 1365: + case 1398: ACCEPT_TOKEN(anon_sym_mod); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1366: + case 1399: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 1367: + case 1400: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1368: + case 1401: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1369: + case 1402: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 1370: + case 1403: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1351); + if (lookahead == '+') ADVANCE(1385); + if (lookahead == '=') ADVANCE(1372); END_STATE(); - case 1371: + case 1404: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1354); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '+') ADVANCE(1384); END_STATE(); - case 1372: + case 1405: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1353); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == '+') ADVANCE(1387); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1373: + case 1406: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1352); - if (lookahead == '=') ADVANCE(1339); + if (lookahead == '+') ADVANCE(1386); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1374: + case 1407: ACCEPT_TOKEN(anon_sym_PLUS); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1375: + case 1408: ACCEPT_TOKEN(anon_sym_PLUS); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1376: + case 1409: ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); - case 1377: + case 1410: ACCEPT_TOKEN(anon_sym_bit_DASHshl); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1378: + case 1411: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1379: + case 1412: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1380: + case 1413: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1381: + case 1414: ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); - case 1382: + case 1415: ACCEPT_TOKEN(anon_sym_bit_DASHshr); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1383: + case 1416: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1384: + case 1417: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1385: + case 1418: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1386: + case 1419: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 1387: + case 1420: ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1388: + case 1421: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1389: + case 1422: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 1390: + case 1423: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1391: + case 1424: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1392: + case 1425: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1395); + if (lookahead == '=') ADVANCE(1428); END_STATE(); - case 1393: + case 1426: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1397); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '=') ADVANCE(1430); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1394: + case 1427: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1396); + if (lookahead == '=') ADVANCE(1429); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1395: + case 1428: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 1396: + case 1429: ACCEPT_TOKEN(anon_sym_LT_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1397: + case 1430: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1398: + case 1431: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 1399: + case 1432: ACCEPT_TOKEN(anon_sym_GT_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1400: + case 1433: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1401: + case 1434: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 1402: + case 1435: ACCEPT_TOKEN(anon_sym_not_DASHin); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1403: + case 1436: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1404: + case 1437: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1405: + case 1438: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1406: + case 1439: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 1407: + case 1440: ACCEPT_TOKEN(anon_sym_starts_DASHwith); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1408: + case 1441: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1409: + case 1442: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1410: + case 1443: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1411: + case 1444: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 1412: + case 1445: ACCEPT_TOKEN(anon_sym_ends_DASHwith); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1413: + case 1446: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1414: + case 1447: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1415: + case 1448: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1416: + case 1449: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 1417: + case 1450: ACCEPT_TOKEN(anon_sym_EQ_TILDE); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1418: + case 1451: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1419: + case 1452: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 1420: + case 1453: ACCEPT_TOKEN(anon_sym_BANG_TILDE); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 1421: + case 1454: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1422: + case 1455: ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); - case 1423: + case 1456: ACCEPT_TOKEN(anon_sym_bit_DASHand); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1424: + case 1457: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1425: + case 1458: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1426: + case 1459: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1427: + case 1460: ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); - case 1428: + case 1461: ACCEPT_TOKEN(anon_sym_bit_DASHxor); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1429: + case 1462: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1430: + case 1463: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1431: + case 1464: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1432: + case 1465: ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); - case 1433: + case 1466: ACCEPT_TOKEN(anon_sym_bit_DASHor); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1434: + case 1467: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1435: + case 1468: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1436: + case 1469: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1437: + case 1470: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 1438: + case 1471: ACCEPT_TOKEN(anon_sym_and); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1439: + case 1472: ACCEPT_TOKEN(anon_sym_and); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1440: + case 1473: ACCEPT_TOKEN(anon_sym_and); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); - case 1441: + case 1474: ACCEPT_TOKEN(anon_sym_and); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1442: + case 1475: ACCEPT_TOKEN(anon_sym_and); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1443: + case 1476: ACCEPT_TOKEN(anon_sym_and); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1444: + case 1477: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 1445: + case 1478: ACCEPT_TOKEN(anon_sym_xor); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1446: + case 1479: ACCEPT_TOKEN(anon_sym_xor); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1447: + case 1480: ACCEPT_TOKEN(anon_sym_xor); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); - case 1448: + case 1481: ACCEPT_TOKEN(anon_sym_xor); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1449: + case 1482: ACCEPT_TOKEN(anon_sym_xor); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1450: + case 1483: ACCEPT_TOKEN(anon_sym_xor); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1451: + case 1484: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 1452: + case 1485: ACCEPT_TOKEN(anon_sym_or); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); - case 1453: + case 1486: ACCEPT_TOKEN(anon_sym_or); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1454: + case 1487: ACCEPT_TOKEN(anon_sym_or); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); - case 1455: + case 1488: ACCEPT_TOKEN(anon_sym_or); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1456: + case 1489: ACCEPT_TOKEN(anon_sym_or); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1457: + case 1490: ACCEPT_TOKEN(anon_sym_or); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1458: + case 1491: ACCEPT_TOKEN(anon_sym_not); END_STATE(); - case 1459: + case 1492: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(751); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(871); + if (lookahead == '-') ADVANCE(783); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(903); END_STATE(); - case 1460: + case 1493: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(2324); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2361); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1461: + case 1494: ACCEPT_TOKEN(anon_sym_not); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1462: + case 1495: ACCEPT_TOKEN(anon_sym_not); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1463: + case 1496: ACCEPT_TOKEN(anon_sym_not); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); - case 1464: + case 1497: ACCEPT_TOKEN(anon_sym_not); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1465: + case 1498: ACCEPT_TOKEN(anon_sym_not); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1466: + case 1499: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 1467: + case 1500: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 1468: + case 1501: ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '>') ADVANCE(1271); - if (lookahead == '~') ADVANCE(1416); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '>') ADVANCE(1304); + if (lookahead == '~') ADVANCE(1449); END_STATE(); - case 1469: + case 1502: ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '~') ADVANCE(1416); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '~') ADVANCE(1449); END_STATE(); - case 1470: + case 1503: ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '>') ADVANCE(1271); + if (lookahead == '>') ADVANCE(1304); END_STATE(); - case 1471: + case 1504: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(2053); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '-') ADVANCE(2091); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 1472: + case 1505: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3013); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '-') ADVANCE(3048); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 1473: + case 1506: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '-') ADVANCE(508); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 1474: + case 1507: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1474); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1507); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1507); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); - case 1475: + case 1508: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1475); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(1508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1508); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); - case 1476: + case 1509: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1476); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1476); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1857); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(1858); + if (lookahead == '_') ADVANCE(1509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1509); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1890); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(1891); END_STATE(); - case 1477: + case 1510: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1477); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1860); + if (lookahead == '_') ADVANCE(1510); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1510); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1893); END_STATE(); - case 1478: + case 1511: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1478); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (lookahead == '_') ADVANCE(1511); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1511); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 1479: + case 1512: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1479); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(1512); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1512); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1480: + case 1513: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1480); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1905); + if (lookahead == '_') ADVANCE(1513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1513); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1938); END_STATE(); - case 1481: + case 1514: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1481); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(1514); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1514); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1482: + case 1515: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1482); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3096); + if (lookahead == '_') ADVANCE(1515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1515); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3131); END_STATE(); - case 1483: + case 1516: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1488); + if (lookahead == '_') ADVANCE(1529); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1521); END_STATE(); - case 1484: + case 1517: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1490); + if (lookahead == '_') ADVANCE(1529); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1523); END_STATE(); - case 1485: + case 1518: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1492); + if (lookahead == '_') ADVANCE(1529); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1525); END_STATE(); - case 1486: + case 1519: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (lookahead == 'b') ADVANCE(1873); - if (lookahead == 'o') ADVANCE(1874); - if (lookahead == 'x') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '_') ADVANCE(1529); + if (lookahead == 'b') ADVANCE(1906); + if (lookahead == 'o') ADVANCE(1907); + if (lookahead == 'x') ADVANCE(1917); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 1487: + case 1520: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1473); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1506); END_STATE(); - case 1488: + case 1521: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1487); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1520); END_STATE(); - case 1489: + case 1522: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1471); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1504); END_STATE(); - case 1490: + case 1523: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1489); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1522); END_STATE(); - case 1491: + case 1524: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1472); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1505); END_STATE(); - case 1492: + case 1525: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1491); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1524); END_STATE(); - case 1493: + case 1526: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1488); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1521); END_STATE(); - case 1494: + case 1527: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1490); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1523); END_STATE(); - case 1495: + case 1528: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1492); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1525); END_STATE(); - case 1496: + case 1529: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '_') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 1497: + case 1530: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(1497); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1530); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); - case 1498: + case 1531: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(1498); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (lookahead == '_') ADVANCE(1531); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); - case 1499: + case 1532: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(1499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1499); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(1532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1532); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); - case 1500: + case 1533: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(1500); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1500); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(1533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1533); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1501: + case 1534: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(1501); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1501); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(1534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1534); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1502: + case 1535: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 1503: + case 1536: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1202); + if (lookahead == '-') ADVANCE(1234); END_STATE(); - case 1504: + case 1537: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1869); + lookahead == 'i') ADVANCE(1902); END_STATE(); - case 1505: + case 1538: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(455); + lookahead == 'i') ADVANCE(487); END_STATE(); - case 1506: + case 1539: ACCEPT_TOKEN(anon_sym_DASH2); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 1507: + case 1540: ACCEPT_TOKEN(anon_sym_PLUS2); END_STATE(); - case 1508: + case 1541: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1351); + if (lookahead == '+') ADVANCE(1385); + if (lookahead == '=') ADVANCE(1372); END_STATE(); - case 1509: + case 1542: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1509); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(1542); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(1026); END_STATE(); - case 1510: + case 1543: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1510); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '_') ADVANCE(1543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 1511: + case 1544: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1476); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1857); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(1858); + if (lookahead == '_') ADVANCE(1544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1509); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1890); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(1891); END_STATE(); - case 1512: + case 1545: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1480); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1905); + if (lookahead == '_') ADVANCE(1545); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1513); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1938); END_STATE(); - case 1513: + case 1546: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1477); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1860); + if (lookahead == '_') ADVANCE(1546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1510); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1893); END_STATE(); - case 1514: + case 1547: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1478); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (lookahead == '_') ADVANCE(1547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1511); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 1515: + case 1548: ACCEPT_TOKEN(anon_sym_null); END_STATE(); - case 1516: + case 1549: ACCEPT_TOKEN(anon_sym_null); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1517: + case 1550: ACCEPT_TOKEN(anon_sym_null); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1518: + case 1551: ACCEPT_TOKEN(anon_sym_null); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); - case 1519: + case 1552: ACCEPT_TOKEN(anon_sym_null); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1520: + case 1553: ACCEPT_TOKEN(anon_sym_null); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1521: + case 1554: ACCEPT_TOKEN(anon_sym_null); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1522: + case 1555: ACCEPT_TOKEN(anon_sym_null); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1523: + case 1556: ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); - case 1524: + case 1557: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 1525: + case 1558: ACCEPT_TOKEN(anon_sym_true); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1526: + case 1559: ACCEPT_TOKEN(anon_sym_true); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1527: + case 1560: ACCEPT_TOKEN(anon_sym_true); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); - case 1528: + case 1561: ACCEPT_TOKEN(anon_sym_true); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1529: + case 1562: ACCEPT_TOKEN(anon_sym_true); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1530: + case 1563: ACCEPT_TOKEN(anon_sym_true); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1531: + case 1564: ACCEPT_TOKEN(anon_sym_true); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1532: + case 1565: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 1533: + case 1566: ACCEPT_TOKEN(anon_sym_false); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(871); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1134); + lookahead == '?') ADVANCE(903); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1166); END_STATE(); - case 1534: + case 1567: ACCEPT_TOKEN(anon_sym_false); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1535: + case 1568: ACCEPT_TOKEN(anon_sym_false); - if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1135); + if (sym__long_flag_identifier_character_set_1(lookahead)) ADVANCE(1167); END_STATE(); - case 1536: + case 1569: ACCEPT_TOKEN(anon_sym_false); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1537: + case 1570: ACCEPT_TOKEN(anon_sym_false); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); - case 1538: + case 1571: ACCEPT_TOKEN(anon_sym_false); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1539: + case 1572: ACCEPT_TOKEN(anon_sym_false); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1540: + case 1573: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2053); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == '-') ADVANCE(2091); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); - case 1541: + case 1574: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3013); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == '-') ADVANCE(3048); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); - case 1542: + case 1575: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == '-') ADVANCE(508); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); - case 1543: + case 1576: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1883); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == '-') ADVANCE(1916); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); - case 1544: + case 1577: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1551); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1584); END_STATE(); - case 1545: + case 1578: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1553); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1586); END_STATE(); - case 1546: + case 1579: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); - case 1547: + case 1580: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1557); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1590); END_STATE(); - case 1548: + case 1581: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1873); - if (lookahead == 'o') ADVANCE(1874); - if (lookahead == 'x') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1906); + if (lookahead == 'o') ADVANCE(1907); + if (lookahead == 'x') ADVANCE(1917); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); - case 1549: + case 1582: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(464); - if (lookahead == 'o') ADVANCE(466); - if (lookahead == 'x') ADVANCE(488); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(496); + if (lookahead == 'o') ADVANCE(498); + if (lookahead == 'x') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); - case 1550: + case 1583: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1542); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1575); END_STATE(); - case 1551: + case 1584: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1550); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1583); END_STATE(); - case 1552: + case 1585: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1543); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1576); END_STATE(); - case 1553: + case 1586: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1552); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1585); END_STATE(); - case 1554: + case 1587: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1540); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1573); END_STATE(); - case 1555: + case 1588: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1554); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1587); END_STATE(); - case 1556: + case 1589: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1541); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1574); END_STATE(); - case 1557: + case 1590: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1556); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1589); END_STATE(); - case 1558: + case 1591: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1551); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1584); END_STATE(); - case 1559: + case 1592: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1553); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1586); END_STATE(); - case 1560: + case 1593: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); - case 1561: + case 1594: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1557); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1590); END_STATE(); - case 1562: + case 1595: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); - case 1563: + case 1596: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1596); END_STATE(); - case 1564: + case 1597: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1564); + lookahead == '_') ADVANCE(1597); END_STATE(); - case 1565: + case 1598: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1565); + lookahead == '_') ADVANCE(1598); END_STATE(); - case 1566: + case 1599: ACCEPT_TOKEN(aux_sym__val_number_token4); END_STATE(); - case 1567: + case 1600: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2044); + lookahead == 'i') ADVANCE(2082); END_STATE(); - case 1568: + case 1601: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3006); + lookahead == 'i') ADVANCE(3041); END_STATE(); - case 1569: + case 1602: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(459); + lookahead == 'i') ADVANCE(491); END_STATE(); - case 1570: + case 1603: ACCEPT_TOKEN(aux_sym__val_number_token5); END_STATE(); - case 1571: + case 1604: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1870); + lookahead == 'i') ADVANCE(1903); END_STATE(); - case 1572: + case 1605: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(456); + lookahead == 'i') ADVANCE(488); END_STATE(); - case 1573: + case 1606: ACCEPT_TOKEN(aux_sym__val_number_token6); END_STATE(); - case 1574: + case 1607: ACCEPT_TOKEN(anon_sym_ns); END_STATE(); - case 1575: + case 1608: ACCEPT_TOKEN(anon_sym_ns); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1576: + case 1609: ACCEPT_TOKEN(anon_sym_ns); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1577: + case 1610: ACCEPT_TOKEN(anon_sym_s); END_STATE(); - case 1578: + case 1611: ACCEPT_TOKEN(anon_sym_s); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1579: + case 1612: ACCEPT_TOKEN(anon_sym_s); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1580: + case 1613: ACCEPT_TOKEN(anon_sym_us); END_STATE(); - case 1581: + case 1614: ACCEPT_TOKEN(anon_sym_us); - if (lookahead == 'e') ADVANCE(1159); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(1191); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1582: + case 1615: ACCEPT_TOKEN(anon_sym_us); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1583: + case 1616: ACCEPT_TOKEN(anon_sym_ms); END_STATE(); - case 1584: + case 1617: ACCEPT_TOKEN(anon_sym_ms); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1585: + case 1618: ACCEPT_TOKEN(anon_sym_ms); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1586: + case 1619: ACCEPT_TOKEN(anon_sym_sec); END_STATE(); - case 1587: + case 1620: ACCEPT_TOKEN(anon_sym_sec); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1588: + case 1621: ACCEPT_TOKEN(anon_sym_sec); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1589: + case 1622: ACCEPT_TOKEN(anon_sym_min); END_STATE(); - case 1590: + case 1623: ACCEPT_TOKEN(anon_sym_min); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1591: + case 1624: ACCEPT_TOKEN(anon_sym_min); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1592: + case 1625: ACCEPT_TOKEN(anon_sym_hr); END_STATE(); - case 1593: + case 1626: ACCEPT_TOKEN(anon_sym_hr); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1594: + case 1627: ACCEPT_TOKEN(anon_sym_hr); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1595: + case 1628: ACCEPT_TOKEN(anon_sym_day); END_STATE(); - case 1596: + case 1629: ACCEPT_TOKEN(anon_sym_day); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1597: + case 1630: ACCEPT_TOKEN(anon_sym_day); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1598: + case 1631: ACCEPT_TOKEN(anon_sym_wk); END_STATE(); - case 1599: + case 1632: ACCEPT_TOKEN(anon_sym_wk); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1600: + case 1633: ACCEPT_TOKEN(anon_sym_wk); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1601: + case 1634: ACCEPT_TOKEN(anon_sym_b); END_STATE(); - case 1602: + case 1635: ACCEPT_TOKEN(anon_sym_b); - if (lookahead == 'i') ADVANCE(2025); + if (lookahead == 'i') ADVANCE(2063); END_STATE(); - case 1603: + case 1636: ACCEPT_TOKEN(anon_sym_b); - if (lookahead == 'i') ADVANCE(419); + if (lookahead == 'i') ADVANCE(1008); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1604: + case 1637: ACCEPT_TOKEN(anon_sym_b); - if (lookahead == 'i') ADVANCE(976); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'i') ADVANCE(451); END_STATE(); - case 1605: + case 1638: ACCEPT_TOKEN(anon_sym_b); - if (lookahead == 'i') ADVANCE(834); - if (lookahead == 'r') ADVANCE(715); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(866); + if (lookahead == 'r') ADVANCE(747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1606: + case 1639: ACCEPT_TOKEN(anon_sym_b); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1607: + case 1640: ACCEPT_TOKEN(anon_sym_B); END_STATE(); - case 1608: + case 1641: ACCEPT_TOKEN(anon_sym_B); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1609: + case 1642: ACCEPT_TOKEN(anon_sym_B); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1610: + case 1643: ACCEPT_TOKEN(anon_sym_kb); END_STATE(); - case 1611: + case 1644: ACCEPT_TOKEN(anon_sym_kb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1612: + case 1645: ACCEPT_TOKEN(anon_sym_kb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1613: + case 1646: ACCEPT_TOKEN(anon_sym_kB); END_STATE(); - case 1614: + case 1647: ACCEPT_TOKEN(anon_sym_kB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1615: + case 1648: ACCEPT_TOKEN(anon_sym_kB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1616: + case 1649: ACCEPT_TOKEN(anon_sym_Kb); END_STATE(); - case 1617: + case 1650: ACCEPT_TOKEN(anon_sym_Kb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1618: + case 1651: ACCEPT_TOKEN(anon_sym_Kb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1619: + case 1652: ACCEPT_TOKEN(anon_sym_KB); END_STATE(); - case 1620: + case 1653: ACCEPT_TOKEN(anon_sym_KB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1621: + case 1654: ACCEPT_TOKEN(anon_sym_KB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1622: + case 1655: ACCEPT_TOKEN(anon_sym_mb); END_STATE(); - case 1623: + case 1656: ACCEPT_TOKEN(anon_sym_mb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1624: + case 1657: ACCEPT_TOKEN(anon_sym_mb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1625: + case 1658: ACCEPT_TOKEN(anon_sym_mB); END_STATE(); - case 1626: + case 1659: ACCEPT_TOKEN(anon_sym_mB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1627: + case 1660: ACCEPT_TOKEN(anon_sym_mB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1628: + case 1661: ACCEPT_TOKEN(anon_sym_Mb); END_STATE(); - case 1629: + case 1662: ACCEPT_TOKEN(anon_sym_Mb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1630: + case 1663: ACCEPT_TOKEN(anon_sym_Mb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1631: + case 1664: ACCEPT_TOKEN(anon_sym_MB); END_STATE(); - case 1632: + case 1665: ACCEPT_TOKEN(anon_sym_MB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1633: + case 1666: ACCEPT_TOKEN(anon_sym_MB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1634: + case 1667: ACCEPT_TOKEN(anon_sym_gb); END_STATE(); - case 1635: + case 1668: ACCEPT_TOKEN(anon_sym_gb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1636: + case 1669: ACCEPT_TOKEN(anon_sym_gb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1637: + case 1670: ACCEPT_TOKEN(anon_sym_gB); END_STATE(); - case 1638: + case 1671: ACCEPT_TOKEN(anon_sym_gB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1639: + case 1672: ACCEPT_TOKEN(anon_sym_gB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1640: + case 1673: ACCEPT_TOKEN(anon_sym_Gb); END_STATE(); - case 1641: + case 1674: ACCEPT_TOKEN(anon_sym_Gb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1642: + case 1675: ACCEPT_TOKEN(anon_sym_Gb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1643: + case 1676: ACCEPT_TOKEN(anon_sym_GB); END_STATE(); - case 1644: + case 1677: ACCEPT_TOKEN(anon_sym_GB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1645: + case 1678: ACCEPT_TOKEN(anon_sym_GB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1646: + case 1679: ACCEPT_TOKEN(anon_sym_tb); END_STATE(); - case 1647: + case 1680: ACCEPT_TOKEN(anon_sym_tb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1648: + case 1681: ACCEPT_TOKEN(anon_sym_tb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1649: + case 1682: ACCEPT_TOKEN(anon_sym_tB); END_STATE(); - case 1650: + case 1683: ACCEPT_TOKEN(anon_sym_tB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1651: + case 1684: ACCEPT_TOKEN(anon_sym_tB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1652: + case 1685: ACCEPT_TOKEN(anon_sym_Tb); END_STATE(); - case 1653: + case 1686: ACCEPT_TOKEN(anon_sym_Tb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1654: + case 1687: ACCEPT_TOKEN(anon_sym_Tb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1655: + case 1688: ACCEPT_TOKEN(anon_sym_TB); END_STATE(); - case 1656: + case 1689: ACCEPT_TOKEN(anon_sym_TB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1657: + case 1690: ACCEPT_TOKEN(anon_sym_TB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1658: + case 1691: ACCEPT_TOKEN(anon_sym_pb); END_STATE(); - case 1659: + case 1692: ACCEPT_TOKEN(anon_sym_pb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1660: + case 1693: ACCEPT_TOKEN(anon_sym_pb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1661: + case 1694: ACCEPT_TOKEN(anon_sym_pB); END_STATE(); - case 1662: + case 1695: ACCEPT_TOKEN(anon_sym_pB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1663: + case 1696: ACCEPT_TOKEN(anon_sym_pB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1664: + case 1697: ACCEPT_TOKEN(anon_sym_Pb); END_STATE(); - case 1665: + case 1698: ACCEPT_TOKEN(anon_sym_Pb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1666: + case 1699: ACCEPT_TOKEN(anon_sym_Pb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1667: + case 1700: ACCEPT_TOKEN(anon_sym_PB); END_STATE(); - case 1668: + case 1701: ACCEPT_TOKEN(anon_sym_PB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1669: + case 1702: ACCEPT_TOKEN(anon_sym_PB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1670: + case 1703: ACCEPT_TOKEN(anon_sym_eb); END_STATE(); - case 1671: + case 1704: ACCEPT_TOKEN(anon_sym_eb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1672: + case 1705: ACCEPT_TOKEN(anon_sym_eb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1673: + case 1706: ACCEPT_TOKEN(anon_sym_eB); END_STATE(); - case 1674: + case 1707: ACCEPT_TOKEN(anon_sym_eB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1675: + case 1708: ACCEPT_TOKEN(anon_sym_eB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1676: + case 1709: ACCEPT_TOKEN(anon_sym_Eb); END_STATE(); - case 1677: + case 1710: ACCEPT_TOKEN(anon_sym_Eb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1678: + case 1711: ACCEPT_TOKEN(anon_sym_Eb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1679: + case 1712: ACCEPT_TOKEN(anon_sym_EB); END_STATE(); - case 1680: + case 1713: ACCEPT_TOKEN(anon_sym_EB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1681: + case 1714: ACCEPT_TOKEN(anon_sym_EB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1682: + case 1715: ACCEPT_TOKEN(anon_sym_kib); END_STATE(); - case 1683: + case 1716: ACCEPT_TOKEN(anon_sym_kib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1684: + case 1717: ACCEPT_TOKEN(anon_sym_kib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1685: + case 1718: ACCEPT_TOKEN(anon_sym_kiB); END_STATE(); - case 1686: + case 1719: ACCEPT_TOKEN(anon_sym_kiB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1687: + case 1720: ACCEPT_TOKEN(anon_sym_kiB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1688: + case 1721: ACCEPT_TOKEN(anon_sym_kIB); END_STATE(); - case 1689: + case 1722: ACCEPT_TOKEN(anon_sym_kIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1690: + case 1723: ACCEPT_TOKEN(anon_sym_kIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1691: + case 1724: ACCEPT_TOKEN(anon_sym_kIb); END_STATE(); - case 1692: + case 1725: ACCEPT_TOKEN(anon_sym_kIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1693: + case 1726: ACCEPT_TOKEN(anon_sym_kIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1694: + case 1727: ACCEPT_TOKEN(anon_sym_Kib); END_STATE(); - case 1695: + case 1728: ACCEPT_TOKEN(anon_sym_Kib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1696: + case 1729: ACCEPT_TOKEN(anon_sym_Kib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1697: + case 1730: ACCEPT_TOKEN(anon_sym_KIb); END_STATE(); - case 1698: + case 1731: ACCEPT_TOKEN(anon_sym_KIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1699: + case 1732: ACCEPT_TOKEN(anon_sym_KIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1700: + case 1733: ACCEPT_TOKEN(anon_sym_KIB); END_STATE(); - case 1701: + case 1734: ACCEPT_TOKEN(anon_sym_KIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1702: + case 1735: ACCEPT_TOKEN(anon_sym_KIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1703: + case 1736: ACCEPT_TOKEN(anon_sym_mib); END_STATE(); - case 1704: + case 1737: ACCEPT_TOKEN(anon_sym_mib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1705: + case 1738: ACCEPT_TOKEN(anon_sym_mib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1706: + case 1739: ACCEPT_TOKEN(anon_sym_miB); END_STATE(); - case 1707: + case 1740: ACCEPT_TOKEN(anon_sym_miB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1708: + case 1741: ACCEPT_TOKEN(anon_sym_miB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1709: + case 1742: ACCEPT_TOKEN(anon_sym_mIB); END_STATE(); - case 1710: + case 1743: ACCEPT_TOKEN(anon_sym_mIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1711: + case 1744: ACCEPT_TOKEN(anon_sym_mIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1712: + case 1745: ACCEPT_TOKEN(anon_sym_mIb); END_STATE(); - case 1713: + case 1746: ACCEPT_TOKEN(anon_sym_mIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1714: + case 1747: ACCEPT_TOKEN(anon_sym_mIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1715: + case 1748: ACCEPT_TOKEN(anon_sym_Mib); END_STATE(); - case 1716: + case 1749: ACCEPT_TOKEN(anon_sym_Mib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1717: + case 1750: ACCEPT_TOKEN(anon_sym_Mib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1718: + case 1751: ACCEPT_TOKEN(anon_sym_MIb); END_STATE(); - case 1719: + case 1752: ACCEPT_TOKEN(anon_sym_MIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1720: + case 1753: ACCEPT_TOKEN(anon_sym_MIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1721: + case 1754: ACCEPT_TOKEN(anon_sym_MIB); END_STATE(); - case 1722: + case 1755: ACCEPT_TOKEN(anon_sym_MIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1723: + case 1756: ACCEPT_TOKEN(anon_sym_MIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1724: + case 1757: ACCEPT_TOKEN(anon_sym_gib); END_STATE(); - case 1725: + case 1758: ACCEPT_TOKEN(anon_sym_gib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1726: + case 1759: ACCEPT_TOKEN(anon_sym_gib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1727: + case 1760: ACCEPT_TOKEN(anon_sym_giB); END_STATE(); - case 1728: + case 1761: ACCEPT_TOKEN(anon_sym_giB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1729: + case 1762: ACCEPT_TOKEN(anon_sym_giB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1730: + case 1763: ACCEPT_TOKEN(anon_sym_gIB); END_STATE(); - case 1731: + case 1764: ACCEPT_TOKEN(anon_sym_gIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1732: + case 1765: ACCEPT_TOKEN(anon_sym_gIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1733: + case 1766: ACCEPT_TOKEN(anon_sym_gIb); END_STATE(); - case 1734: + case 1767: ACCEPT_TOKEN(anon_sym_gIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1735: + case 1768: ACCEPT_TOKEN(anon_sym_gIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1736: + case 1769: ACCEPT_TOKEN(anon_sym_Gib); END_STATE(); - case 1737: + case 1770: ACCEPT_TOKEN(anon_sym_Gib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1738: + case 1771: ACCEPT_TOKEN(anon_sym_Gib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1739: + case 1772: ACCEPT_TOKEN(anon_sym_GIb); END_STATE(); - case 1740: + case 1773: ACCEPT_TOKEN(anon_sym_GIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1741: + case 1774: ACCEPT_TOKEN(anon_sym_GIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1742: + case 1775: ACCEPT_TOKEN(anon_sym_GIB); END_STATE(); - case 1743: + case 1776: ACCEPT_TOKEN(anon_sym_GIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1744: + case 1777: ACCEPT_TOKEN(anon_sym_GIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1745: + case 1778: ACCEPT_TOKEN(anon_sym_tib); END_STATE(); - case 1746: + case 1779: ACCEPT_TOKEN(anon_sym_tib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1747: + case 1780: ACCEPT_TOKEN(anon_sym_tib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1748: + case 1781: ACCEPT_TOKEN(anon_sym_tiB); END_STATE(); - case 1749: + case 1782: ACCEPT_TOKEN(anon_sym_tiB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1750: + case 1783: ACCEPT_TOKEN(anon_sym_tiB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1751: + case 1784: ACCEPT_TOKEN(anon_sym_tIB); END_STATE(); - case 1752: + case 1785: ACCEPT_TOKEN(anon_sym_tIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1753: + case 1786: ACCEPT_TOKEN(anon_sym_tIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1754: + case 1787: ACCEPT_TOKEN(anon_sym_tIb); END_STATE(); - case 1755: + case 1788: ACCEPT_TOKEN(anon_sym_tIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1756: + case 1789: ACCEPT_TOKEN(anon_sym_tIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1757: + case 1790: ACCEPT_TOKEN(anon_sym_Tib); END_STATE(); - case 1758: + case 1791: ACCEPT_TOKEN(anon_sym_Tib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1759: + case 1792: ACCEPT_TOKEN(anon_sym_Tib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1760: + case 1793: ACCEPT_TOKEN(anon_sym_TIb); END_STATE(); - case 1761: + case 1794: ACCEPT_TOKEN(anon_sym_TIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1762: + case 1795: ACCEPT_TOKEN(anon_sym_TIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1763: + case 1796: ACCEPT_TOKEN(anon_sym_TIB); END_STATE(); - case 1764: + case 1797: ACCEPT_TOKEN(anon_sym_TIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1765: + case 1798: ACCEPT_TOKEN(anon_sym_TIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1766: + case 1799: ACCEPT_TOKEN(anon_sym_pib); END_STATE(); - case 1767: + case 1800: ACCEPT_TOKEN(anon_sym_pib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1768: + case 1801: ACCEPT_TOKEN(anon_sym_pib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1769: + case 1802: ACCEPT_TOKEN(anon_sym_piB); END_STATE(); - case 1770: + case 1803: ACCEPT_TOKEN(anon_sym_piB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1771: + case 1804: ACCEPT_TOKEN(anon_sym_piB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1772: + case 1805: ACCEPT_TOKEN(anon_sym_pIB); END_STATE(); - case 1773: + case 1806: ACCEPT_TOKEN(anon_sym_pIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1774: + case 1807: ACCEPT_TOKEN(anon_sym_pIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1775: + case 1808: ACCEPT_TOKEN(anon_sym_pIb); END_STATE(); - case 1776: + case 1809: ACCEPT_TOKEN(anon_sym_pIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1777: + case 1810: ACCEPT_TOKEN(anon_sym_pIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1778: + case 1811: ACCEPT_TOKEN(anon_sym_Pib); END_STATE(); - case 1779: + case 1812: ACCEPT_TOKEN(anon_sym_Pib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1780: + case 1813: ACCEPT_TOKEN(anon_sym_Pib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1781: + case 1814: ACCEPT_TOKEN(anon_sym_PIb); END_STATE(); - case 1782: + case 1815: ACCEPT_TOKEN(anon_sym_PIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1783: + case 1816: ACCEPT_TOKEN(anon_sym_PIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1784: + case 1817: ACCEPT_TOKEN(anon_sym_PIB); END_STATE(); - case 1785: + case 1818: ACCEPT_TOKEN(anon_sym_PIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1786: + case 1819: ACCEPT_TOKEN(anon_sym_PIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1787: + case 1820: ACCEPT_TOKEN(anon_sym_eib); END_STATE(); - case 1788: + case 1821: ACCEPT_TOKEN(anon_sym_eib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1789: + case 1822: ACCEPT_TOKEN(anon_sym_eib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1790: + case 1823: ACCEPT_TOKEN(anon_sym_eiB); END_STATE(); - case 1791: + case 1824: ACCEPT_TOKEN(anon_sym_eiB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1792: + case 1825: ACCEPT_TOKEN(anon_sym_eiB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1793: + case 1826: ACCEPT_TOKEN(anon_sym_eIB); END_STATE(); - case 1794: + case 1827: ACCEPT_TOKEN(anon_sym_eIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1795: + case 1828: ACCEPT_TOKEN(anon_sym_eIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1796: + case 1829: ACCEPT_TOKEN(anon_sym_eIb); END_STATE(); - case 1797: + case 1830: ACCEPT_TOKEN(anon_sym_eIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1798: + case 1831: ACCEPT_TOKEN(anon_sym_eIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1799: + case 1832: ACCEPT_TOKEN(anon_sym_Eib); END_STATE(); - case 1800: + case 1833: ACCEPT_TOKEN(anon_sym_Eib); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1801: + case 1834: ACCEPT_TOKEN(anon_sym_Eib); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1802: + case 1835: ACCEPT_TOKEN(anon_sym_EIb); END_STATE(); - case 1803: + case 1836: ACCEPT_TOKEN(anon_sym_EIb); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1804: + case 1837: ACCEPT_TOKEN(anon_sym_EIb); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1805: + case 1838: ACCEPT_TOKEN(anon_sym_EIB); END_STATE(); - case 1806: + case 1839: ACCEPT_TOKEN(anon_sym_EIB); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); - case 1807: + case 1840: ACCEPT_TOKEN(anon_sym_EIB); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); - case 1808: + case 1841: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1564); + lookahead == '_') ADVANCE(1597); END_STATE(); - case 1809: + case 1842: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2586); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + lookahead == '_') ADVANCE(2623); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1810: + case 1843: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3067); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == '_') ADVANCE(3102); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1811: + case 1844: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1565); + lookahead == '_') ADVANCE(1598); END_STATE(); - case 1812: + case 1845: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2589); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + lookahead == '_') ADVANCE(2626); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1813: + case 1846: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3070); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == '_') ADVANCE(3105); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1814: + case 1847: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1596); END_STATE(); - case 1815: + case 1848: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2603); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2640); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 1816: + case 1849: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3084); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3119); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 1817: + case 1850: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1818: + case 1851: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1818); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1851); END_STATE(); - case 1819: + case 1852: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 1820: + case 1853: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(470); + if (lookahead == '.') ADVANCE(502); if (lookahead == '+' || - lookahead == '-') ADVANCE(239); + lookahead == '-') ADVANCE(281); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1819); + lookahead == 'z') ADVANCE(1852); END_STATE(); - case 1821: + case 1854: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2051); + if (lookahead == '.') ADVANCE(2089); if (lookahead == '+' || - lookahead == '-') ADVANCE(1920); + lookahead == '-') ADVANCE(1953); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1819); + lookahead == 'z') ADVANCE(1852); END_STATE(); - case 1822: + case 1855: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3015); + if (lookahead == '.') ADVANCE(3050); if (lookahead == '+' || - lookahead == '-') ADVANCE(2939); + lookahead == '-') ADVANCE(2974); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1819); + lookahead == 'z') ADVANCE(1852); END_STATE(); - case 1823: + case 1856: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1833); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(469); + if (lookahead == ':') ADVANCE(1866); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(501); END_STATE(); - case 1824: + case 1857: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1834); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2048); + if (lookahead == ':') ADVANCE(1867); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2086); END_STATE(); - case 1825: + case 1858: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1835); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3010); + if (lookahead == ':') ADVANCE(1868); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3045); END_STATE(); - case 1826: + case 1859: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2057); + if (lookahead == 'T') ADVANCE(2095); END_STATE(); - case 1827: + case 1860: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3019); + if (lookahead == 'T') ADVANCE(3054); END_STATE(); - case 1828: + case 1861: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1880); + if (lookahead == 'T') ADVANCE(1913); END_STATE(); - case 1829: + case 1862: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(479); + if (lookahead == 'T') ADVANCE(511); END_STATE(); - case 1830: + case 1863: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(239); + lookahead == '-') ADVANCE(281); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1830); + lookahead == 'z') ADVANCE(1852); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1863); END_STATE(); - case 1831: + case 1864: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(1920); + lookahead == '-') ADVANCE(1953); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1831); + lookahead == 'z') ADVANCE(1852); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1864); END_STATE(); - case 1832: + case 1865: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2939); + lookahead == '-') ADVANCE(2974); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1832); + lookahead == 'z') ADVANCE(1852); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1865); END_STATE(); - case 1833: + case 1866: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(469); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(501); END_STATE(); - case 1834: + case 1867: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2048); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2086); END_STATE(); - case 1835: + case 1868: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3010); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3045); END_STATE(); - case 1836: + case 1869: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1837: + case 1870: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1838); + if (lookahead == '#') ADVANCE(1871); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1837); + lookahead == ' ') ADVANCE(1870); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1838); + lookahead != '\\') ADVANCE(1871); END_STATE(); - case 1838: + case 1871: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1838); + lookahead != '\\') ADVANCE(1871); END_STATE(); - case 1839: + case 1872: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 1840: + case 1873: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 1841: + case 1874: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1842: + case 1875: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1843); + if (lookahead == '#') ADVANCE(1876); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1842); + lookahead == ' ') ADVANCE(1875); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1843); + lookahead != '\\') ADVANCE(1876); END_STATE(); - case 1843: + case 1876: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1843); + lookahead != '\\') ADVANCE(1876); END_STATE(); - case 1844: + case 1877: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1845); + if (lookahead == '#') ADVANCE(1878); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1844); + lookahead == ' ') ADVANCE(1877); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1845); + lookahead != '(') ADVANCE(1878); END_STATE(); - case 1845: + case 1878: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1845); + lookahead != '(') ADVANCE(1878); END_STATE(); - case 1846: + case 1879: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1847: + case 1880: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1848: + case 1881: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(1839); - if (lookahead != 0) ADVANCE(228); + if (lookahead == '\'') ADVANCE(1872); + if (lookahead != 0) ADVANCE(270); END_STATE(); - case 1849: + case 1882: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1850: + case 1883: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1851: + case 1884: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1852: + case 1885: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(3141); - if (lookahead == '-') ADVANCE(1506); - if (lookahead == '.') ADVANCE(1287); - if (lookahead == '_') ADVANCE(1511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1476); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1857); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(1858); + if (lookahead == '#') ADVANCE(3176); + if (lookahead == '-') ADVANCE(1539); + if (lookahead == '.') ADVANCE(1320); + if (lookahead == '_') ADVANCE(1544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1509); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1890); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(1891); END_STATE(); - case 1853: + case 1886: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(3141); - if (lookahead == '.') ADVANCE(1287); - if (lookahead == '_') ADVANCE(1514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1478); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (lookahead == '#') ADVANCE(3176); + if (lookahead == '.') ADVANCE(1320); + if (lookahead == '_') ADVANCE(1547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1511); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 1854: + case 1887: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(3141); - if (lookahead == '_') ADVANCE(1856); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1478); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (lookahead == '#') ADVANCE(3176); + if (lookahead == '_') ADVANCE(1889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1511); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 1855: + case 1888: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(3141); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (lookahead == '#') ADVANCE(3176); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 1856: + case 1889: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(1856); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1478); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (lookahead == '_') ADVANCE(1889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1511); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 1857: + case 1890: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1857); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(1858); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1890); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(1891); END_STATE(); - case 1858: + case 1891: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 1859: + case 1892: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(3137); - if (lookahead == '.') ADVANCE(1284); - if (lookahead == '_') ADVANCE(1513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1477); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1860); + if (lookahead == '#') ADVANCE(3172); + if (lookahead == '.') ADVANCE(1317); + if (lookahead == '_') ADVANCE(1546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1510); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1893); END_STATE(); - case 1860: + case 1893: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1860); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1893); END_STATE(); - case 1861: + case 1894: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '-') ADVANCE(1879); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (lookahead == '-') ADVANCE(1912); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1862: + case 1895: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '-') ADVANCE(1883); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (lookahead == '-') ADVANCE(1916); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1863: + case 1896: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == ':') ADVANCE(474); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(1885); + if (lookahead == ':') ADVANCE(506); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(1918); END_STATE(); - case 1864: + case 1897: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '=') ADVANCE(1389); - if (lookahead == '~') ADVANCE(1419); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (lookahead == '=') ADVANCE(1422); + if (lookahead == '~') ADVANCE(1452); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1865: + case 1898: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '~') ADVANCE(1416); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '~') ADVANCE(1449); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1866: + case 1899: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '_') ADVANCE(1866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (lookahead == '_') ADVANCE(1899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1867: + case 1900: ACCEPT_TOKEN(aux_sym__record_key_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1571); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + lookahead == 'f') ADVANCE(1604); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1868: + case 1901: ACCEPT_TOKEN(aux_sym__record_key_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1871); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + lookahead == 'i') ADVANCE(1904); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1869: + case 1902: ACCEPT_TOKEN(aux_sym__record_key_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1867); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + lookahead == 'n') ADVANCE(1900); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1870: + case 1903: ACCEPT_TOKEN(aux_sym__record_key_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1868); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + lookahead == 'n') ADVANCE(1901); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1871: + case 1904: ACCEPT_TOKEN(aux_sym__record_key_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1872); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + lookahead == 't') ADVANCE(1905); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1872: + case 1905: ACCEPT_TOKEN(aux_sym__record_key_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1570); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + lookahead == 'y') ADVANCE(1603); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1873: + case 1906: ACCEPT_TOKEN(aux_sym__record_key_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1564); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + lookahead == '_') ADVANCE(1597); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1874: + case 1907: ACCEPT_TOKEN(aux_sym__record_key_token2); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1565); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + lookahead == '_') ADVANCE(1598); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1875: + case 1908: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1862); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1895); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1876: + case 1909: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1828); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1861); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1877: + case 1910: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1863); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1896); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1878: + case 1911: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1908); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1879: + case 1912: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1876); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1909); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1880: + case 1913: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1877); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1910); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1881: + case 1914: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1911); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1882: + case 1915: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1861); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1894); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1883: + case 1916: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1915); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1884: + case 1917: ACCEPT_TOKEN(aux_sym__record_key_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1563); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1596); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1885: + case 1918: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1885); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1918); END_STATE(); - case 1886: + case 1919: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1886); - END_STATE(); - case 1887: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 1888: - ACCEPT_TOKEN(anon_sym_CARET); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 1889: - ACCEPT_TOKEN(anon_sym_err_GT); - END_STATE(); - case 1890: - ACCEPT_TOKEN(anon_sym_err_GT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 1891: - ACCEPT_TOKEN(anon_sym_out_GT); - END_STATE(); - case 1892: - ACCEPT_TOKEN(anon_sym_out_GT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 1893: - ACCEPT_TOKEN(anon_sym_e_GT); - END_STATE(); - case 1894: - ACCEPT_TOKEN(anon_sym_e_GT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 1895: - ACCEPT_TOKEN(anon_sym_o_GT); - END_STATE(); - case 1896: - ACCEPT_TOKEN(anon_sym_o_GT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 1897: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - END_STATE(); - case 1898: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 1899: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - END_STATE(); - case 1900: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 1901: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - END_STATE(); - case 1902: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 1903: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - END_STATE(); - case 1904: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 1905: - ACCEPT_TOKEN(aux_sym_short_flag_token1); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1905); - END_STATE(); - case 1906: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(1960); - if (lookahead == '-') ADVANCE(1962); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == '_') ADVANCE(1962); - if (lookahead == 'r') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1907: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'r') ADVANCE(1451); - if (lookahead == 'u') ADVANCE(2028); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1908: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'u') ADVANCE(2028); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1909: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(1947); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(1948); - if (lookahead == 'n') ADVANCE(1979); - if (lookahead == 'r') ADVANCE(2011); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1910: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(1947); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(1948); - if (lookahead == 'r') ADVANCE(2011); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1911: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'n') ADVANCE(1979); - if (lookahead == 'r') ADVANCE(2011); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1912: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'r') ADVANCE(2011); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1913: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2003); - if (lookahead == '>') ADVANCE(1889); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1914: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(1985); - if (lookahead == '>') ADVANCE(1891); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1915: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(1967); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1916: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(1990); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1917: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2036); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1918: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2055); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); - END_STATE(); - case 1919: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2037); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1919); END_STATE(); case 1920: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2047); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2052); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1921: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2058); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_CARET); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 1922: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2060); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_err_GT); END_STATE(); case 1923: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(1389); - if (lookahead == '~') ADVANCE(1419); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_err_GT); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 1924: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '~') ADVANCE(1416); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_out_GT); END_STATE(); case 1925: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1903); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_out_GT); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 1926: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1901); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_e_GT); END_STATE(); case 1927: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1897); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_e_GT); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 1928: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1899); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_o_GT); END_STATE(); case 1929: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(1941); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(1969); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_o_GT); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 1930: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1643); - if (lookahead == 'I') ADVANCE(1942); - if (lookahead == 'b') ADVANCE(1640); - if (lookahead == 'i') ADVANCE(1970); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); END_STATE(); case 1931: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1619); - if (lookahead == 'I') ADVANCE(1943); - if (lookahead == 'b') ADVANCE(1616); - if (lookahead == 'i') ADVANCE(1971); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 1932: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1631); - if (lookahead == 'I') ADVANCE(1944); - if (lookahead == 'b') ADVANCE(1628); - if (lookahead == 'i') ADVANCE(1972); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); END_STATE(); case 1933: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1667); - if (lookahead == 'I') ADVANCE(1945); - if (lookahead == 'b') ADVANCE(1664); - if (lookahead == 'i') ADVANCE(1973); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 1934: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1655); - if (lookahead == 'I') ADVANCE(1946); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'i') ADVANCE(1974); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); END_STATE(); case 1935: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1637); - if (lookahead == 'I') ADVANCE(1949); - if (lookahead == 'b') ADVANCE(1634); - if (lookahead == 'i') ADVANCE(1950); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 1936: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1613); - if (lookahead == 'I') ADVANCE(1951); - if (lookahead == 'b') ADVANCE(1610); - if (lookahead == 'i') ADVANCE(1952); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); END_STATE(); case 1937: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(1953); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 'o') ADVANCE(1977); - if (lookahead == 's') ADVANCE(1583); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 1938: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(1953); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 's') ADVANCE(1583); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + ACCEPT_TOKEN(aux_sym_short_flag_token1); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1938); END_STATE(); case 1939: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1661); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == 'b') ADVANCE(1658); - if (lookahead == 'i') ADVANCE(1956); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '+') ADVANCE(1996); + if (lookahead == '-') ADVANCE(1998); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'r') ADVANCE(2049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1940: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1649); - if (lookahead == 'I') ADVANCE(1957); - if (lookahead == 'b') ADVANCE(1646); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == 'r') ADVANCE(2034); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'r') ADVANCE(1484); + if (lookahead == 'u') ADVANCE(2066); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1941: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1805); - if (lookahead == 'b') ADVANCE(1802); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'u') ADVANCE(2066); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1942: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1742); - if (lookahead == 'b') ADVANCE(1739); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == 'r') ADVANCE(2049); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1943: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1700); - if (lookahead == 'b') ADVANCE(1697); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'r') ADVANCE(2049); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1944: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1721); - if (lookahead == 'b') ADVANCE(1718); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == 'r') ADVANCE(2049); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1945: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1784); - if (lookahead == 'b') ADVANCE(1781); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'r') ADVANCE(2049); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1946: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1763); - if (lookahead == 'b') ADVANCE(1760); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '+') ADVANCE(2040); + if (lookahead == '>') ADVANCE(1922); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1947: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1793); - if (lookahead == 'b') ADVANCE(1796); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '+') ADVANCE(2021); + if (lookahead == '>') ADVANCE(1924); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1948: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1790); - if (lookahead == 'b') ADVANCE(1787); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '-') ADVANCE(2003); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1949: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1730); - if (lookahead == 'b') ADVANCE(1733); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '-') ADVANCE(2026); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1950: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1727); - if (lookahead == 'b') ADVANCE(1724); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '-') ADVANCE(2074); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1951: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1688); - if (lookahead == 'b') ADVANCE(1691); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '-') ADVANCE(2093); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1952: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1685); - if (lookahead == 'b') ADVANCE(1682); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '-') ADVANCE(2075); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1953: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1709); - if (lookahead == 'b') ADVANCE(1712); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '2') ADVANCE(2085); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2090); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1954: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1706); - if (lookahead == 'b') ADVANCE(1703); - if (lookahead == 'n') ADVANCE(1589); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == ':') ADVANCE(2096); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1955: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1772); - if (lookahead == 'b') ADVANCE(1775); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == ':') ADVANCE(2098); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1956: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1769); - if (lookahead == 'b') ADVANCE(1766); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '=') ADVANCE(1422); + if (lookahead == '~') ADVANCE(1452); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1957: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1751); - if (lookahead == 'b') ADVANCE(1754); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '~') ADVANCE(1449); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1958: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B') ADVANCE(1748); - if (lookahead == 'b') ADVANCE(1745); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '>') ADVANCE(1936); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1959: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N') ADVANCE(2040); - if (lookahead == 'n') ADVANCE(1232); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '>') ADVANCE(1934); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1960: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(1962); - if (lookahead == 'o') ADVANCE(1925); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '>') ADVANCE(1930); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1961: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(1962); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '>') ADVANCE(1932); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1962: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(1962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(1977); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(2005); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1963: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(1977); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(2005); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1964: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(1964); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1676); + if (lookahead == 'I') ADVANCE(1978); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'i') ADVANCE(2006); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1965: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2038); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1652); + if (lookahead == 'I') ADVANCE(1979); + if (lookahead == 'b') ADVANCE(1649); + if (lookahead == 'i') ADVANCE(2007); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1966: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(1997); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1664); + if (lookahead == 'I') ADVANCE(1980); + if (lookahead == 'b') ADVANCE(1661); + if (lookahead == 'i') ADVANCE(2008); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1967: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2000); - if (lookahead == 'o') ADVANCE(2013); - if (lookahead == 's') ADVANCE(1986); - if (lookahead == 'x') ADVANCE(2005); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1700); + if (lookahead == 'I') ADVANCE(1981); + if (lookahead == 'b') ADVANCE(1697); + if (lookahead == 'i') ADVANCE(2009); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1968: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2015); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1688); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == 'b') ADVANCE(1685); + if (lookahead == 'i') ADVANCE(2010); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1969: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(1799); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1970: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(1736); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'n') ADVANCE(2015); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1971: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(1694); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1670); + if (lookahead == 'I') ADVANCE(1985); + if (lookahead == 'b') ADVANCE(1667); + if (lookahead == 'i') ADVANCE(1986); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1972: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(1715); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1646); + if (lookahead == 'I') ADVANCE(1987); + if (lookahead == 'b') ADVANCE(1643); + if (lookahead == 'i') ADVANCE(1988); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1973: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(1778); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1989); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(1990); + if (lookahead == 'o') ADVANCE(2013); + if (lookahead == 's') ADVANCE(1616); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1974: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(1757); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1989); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(1990); + if (lookahead == 's') ADVANCE(1616); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1975: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'c') ADVANCE(1586); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1694); + if (lookahead == 'I') ADVANCE(1991); + if (lookahead == 'b') ADVANCE(1691); + if (lookahead == 'i') ADVANCE(1992); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1976: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(1437); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1682); + if (lookahead == 'I') ADVANCE(1993); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'i') ADVANCE(1994); + if (lookahead == 'r') ADVANCE(2072); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1977: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(1359); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1838); + if (lookahead == 'b') ADVANCE(1835); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1978: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(1422); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1775); + if (lookahead == 'b') ADVANCE(1772); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1979: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(2022); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1733); + if (lookahead == 'b') ADVANCE(1730); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1980: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1975); - if (lookahead == 't') ADVANCE(1968); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1754); + if (lookahead == 'b') ADVANCE(1751); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1981: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1975); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1817); + if (lookahead == 'b') ADVANCE(1814); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1982: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1524); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1796); + if (lookahead == 'b') ADVANCE(1793); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1983: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1532); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1826); + if (lookahead == 'b') ADVANCE(1829); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1984: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1926); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1823); + if (lookahead == 'b') ADVANCE(1820); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1985: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2017); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1763); + if (lookahead == 'b') ADVANCE(1766); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1986: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(1995); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1760); + if (lookahead == 'b') ADVANCE(1757); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1987: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(1411); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1721); + if (lookahead == 'b') ADVANCE(1724); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1988: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(1406); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1718); + if (lookahead == 'b') ADVANCE(1715); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1989: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2025); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1742); + if (lookahead == 'b') ADVANCE(1745); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1990: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(1999); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1739); + if (lookahead == 'b') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(1622); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1991: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2029); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1805); + if (lookahead == 'b') ADVANCE(1808); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1992: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2031); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1802); + if (lookahead == 'b') ADVANCE(1799); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'k') ADVANCE(1598); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1784); + if (lookahead == 'b') ADVANCE(1787); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1515); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'B') ADVANCE(1781); + if (lookahead == 'b') ADVANCE(1778); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1376); - if (lookahead == 'r') ADVANCE(1381); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'N') ADVANCE(2078); + if (lookahead == 'n') ADVANCE(1265); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1994); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'o') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2021); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(1976); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '_') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(1401); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(1978); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(1925); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'a') ADVANCE(2076); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2012); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'a') ADVANCE(2033); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2035); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'a') ADVANCE(2037); + if (lookahead == 'o') ADVANCE(2051); + if (lookahead == 's') ADVANCE(2022); + if (lookahead == 'x') ADVANCE(2042); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(1977); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'a') ADVANCE(2053); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2014); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'b') ADVANCE(1832); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2026); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'b') ADVANCE(1769); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2027); - if (lookahead == 's') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'b') ADVANCE(1727); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2027); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'b') ADVANCE(1748); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1592); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'b') ADVANCE(1811); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2034); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'b') ADVANCE(1790); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1913); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'c') ADVANCE(1619); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1444); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'd') ADVANCE(1470); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1432); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'd') ADVANCE(1392); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1427); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'd') ADVANCE(1455); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2032); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'd') ADVANCE(2060); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1928); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'e') ADVANCE(2011); + if (lookahead == 't') ADVANCE(2004); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2016); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'e') ADVANCE(2011); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'e') ADVANCE(1557); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(1580); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'e') ADVANCE(1565); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(1577); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'e') ADVANCE(1959); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(1983); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'e') ADVANCE(2055); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(1917); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'h') ADVANCE(2031); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(1919); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'h') ADVANCE(1444); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1968); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'h') ADVANCE(1439); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1915); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'i') ADVANCE(2063); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1458); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'i') ADVANCE(2035); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1916); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'i') ADVANCE(2067); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1914); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'i') ADVANCE(2069); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1987); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'k') ADVANCE(1631); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1927); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'l') ADVANCE(1548); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1988); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'l') ADVANCE(1409); + if (lookahead == 'r') ADVANCE(1414); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2023); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'l') ADVANCE(2030); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'l') ADVANCE(2059); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(1982); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'n') ADVANCE(2012); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2030); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'n') ADVANCE(1434); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'w') ADVANCE(1991); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'n') ADVANCE(2015); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'w') ADVANCE(1992); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'n') ADVANCE(2014); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'y') ADVANCE(1595); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'o') ADVANCE(1958); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'o') ADVANCE(2050); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1567); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'o') ADVANCE(2073); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2045); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'o') ADVANCE(2013); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2040); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'o') ADVANCE(2052); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1573); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'o') ADVANCE(2064); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2041); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'o') ADVANCE(2065); + if (lookahead == 's') ADVANCE(1607); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2046); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'o') ADVANCE(2065); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1566); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(1625); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1824); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(1484); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1819); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(2072); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1922); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(1946); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1821); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(1477); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1831); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(1465); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1824); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(1460); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(2070); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1826); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(1961); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2054); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 'r') ADVANCE(2054); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1918); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 's') ADVANCE(1607); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2049); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 's') ADVANCE(1613); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2050); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 's') ADVANCE(1610); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1921); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 's') ADVANCE(2019); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 's') ADVANCE(1950); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2061); + if (lookahead == 's') ADVANCE(1952); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2062: - ACCEPT_TOKEN(aux_sym_unquoted_token2); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2004); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2063: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'r') ADVANCE(1451); - if (lookahead == 'u') ADVANCE(2028); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(1948); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2064: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'u') ADVANCE(2028); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(1491); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2065: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'n') ADVANCE(1979); - if (lookahead == 'r') ADVANCE(2011); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(1949); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2066: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'r') ADVANCE(2011); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(1947); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2067: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(1389); - if (lookahead == '~') ADVANCE(1419); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2023); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2068: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '>') ADVANCE(1271); - if (lookahead == '~') ADVANCE(1416); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(1960); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2069: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '~') ADVANCE(1416); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2024); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2070: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(863); - if (lookahead == 'f') ADVANCE(1259); - if (lookahead == 'n') ADVANCE(1231); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2061); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2071: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(2040); - if (lookahead == 'n') ADVANCE(1232); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2072: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(452); - if (lookahead == 'n') ADVANCE(1235); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2018); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2073: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(291); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2068); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2074: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'w') ADVANCE(2027); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2075: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(915); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1475); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'w') ADVANCE(2028); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2076: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1474); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'y') ADVANCE(1628); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2077: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(755); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2078: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1997); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1600); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2079: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(361); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2083); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2080: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(766); - if (lookahead == 'o') ADVANCE(798); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2078); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2081: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'o') ADVANCE(697); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); - END_STATE(); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); + END_STATE(); case 2082: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2079); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2083: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(842); - if (lookahead == 'o') ADVANCE(769); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2084); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2084: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(732); - if (lookahead == 'o') ADVANCE(1254); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1599); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2085: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'i') ADVANCE(825); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1857); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2086: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1852); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2087: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(733); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1955); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2088: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(856); - if (lookahead == 'o') ADVANCE(837); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1854); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2089: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(1259); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(863); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1864); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2090: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(729); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2091: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(749); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2094); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2092: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(698); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1859); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2093: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(2025); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2092); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2094: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(419); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1951); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2095: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(976); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2087); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2096: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(834); - if (lookahead == 'r') ADVANCE(715); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2088); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2097: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (lookahead == 's') ADVANCE(1332); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1954); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2098: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2097); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2099: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(746); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2099); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1976); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'r') ADVANCE(1484); + if (lookahead == 'u') ADVANCE(2066); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(314); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'u') ADVANCE(2066); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(928); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == 'r') ADVANCE(2049); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1236); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'r') ADVANCE(2049); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1229); + if (lookahead == '=') ADVANCE(1422); + if (lookahead == '~') ADVANCE(1452); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(318); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '>') ADVANCE(1304); + if (lookahead == '~') ADVANCE(1449); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(930); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '~') ADVANCE(1449); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '>') ADVANCE(1304); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(769); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'N') ADVANCE(895); + if (lookahead == 'f') ADVANCE(1291); + if (lookahead == 'n') ADVANCE(1264); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(845); - if (lookahead == 't') ADVANCE(682); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'N') ADVANCE(2078); + if (lookahead == 'n') ADVANCE(1265); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(845); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(396); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(961); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1508); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(2012); + if (lookahead == '_') ADVANCE(701); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1507); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1977); + if (lookahead == 'a') ADVANCE(787); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(315); + if (lookahead == 'a') ADVANCE(2033); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(929); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'a') ADVANCE(798); + if (lookahead == 'o') ADVANCE(830); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(798); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'o') ADVANCE(729); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(831); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(835); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(874); + if (lookahead == 'o') ADVANCE(801); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(802); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'o') ADVANCE(1286); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(2027); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'i') ADVANCE(857); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(423); - if (lookahead == 'u') ADVANCE(360); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'e') ADVANCE(765); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(979); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(888); + if (lookahead == 'o') ADVANCE(869); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(846); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'f') ADVANCE(1291); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1455); - if (lookahead == 'v') ADVANCE(722); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'f') ADVANCE(1288); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1451); + if (lookahead == 'h') ADVANCE(761); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2034); + if (lookahead == 'h') ADVANCE(781); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(434); + if (lookahead == 'i') ADVANCE(730); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1453); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'i') ADVANCE(2063); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(715); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(1008); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(451); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(859); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(866); + if (lookahead == 'r') ADVANCE(747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(1578); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (lookahead == 's') ADVANCE(1365); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(704); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(1968); + if (lookahead == 'l') ADVANCE(778); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(297); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(919); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'n') ADVANCE(2012); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'n') ADVANCE(960); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'v') ADVANCE(722); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(1268); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'n') ADVANCE(1262); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(2015); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'n') ADVANCE(962); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(863); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(349); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2040); + if (lookahead == 'n') ADVANCE(353); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(452); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'o') ADVANCE(801); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(877); + if (lookahead == 't') ADVANCE(714); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2150: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2272); - if (lookahead == '>') ADVANCE(1896); - if (lookahead == 'r') ADVANCE(1457); - if (lookahead == 'u') ADVANCE(2500); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(877); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2151: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2272); - if (lookahead == '>') ADVANCE(1896); - if (lookahead == 'u') ADVANCE(2500); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(993); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2152: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2390); - if (lookahead == '>') ADVANCE(1894); - if (lookahead == 'n') ADVANCE(2236); - if (lookahead == 'r') ADVANCE(2433); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(2050); END_STATE(); case 2153: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2390); - if (lookahead == '>') ADVANCE(1894); - if (lookahead == 'r') ADVANCE(2433); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(2013); END_STATE(); case 2154: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2391); - if (lookahead == '>') ADVANCE(1890); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(961); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2155: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2280); - if (lookahead == '>') ADVANCE(1892); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(830); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2156: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2211); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(863); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2157: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2597); - if (lookahead == '_') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2204); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(350); END_STATE(); case 2158: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2537); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 2159: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2213); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(429); END_STATE(); case 2160: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2223); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(867); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2161: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2223); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(834); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2162: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2539); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(2065); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2163: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2539); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(1011); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2164: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2538); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(878); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2165: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2316); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(1488); + if (lookahead == 'v') ADVANCE(754); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2166: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2316); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(1484); END_STATE(); case 2167: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2325); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(2072); END_STATE(); case 2168: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2598); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(1486); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2169: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2540); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2170: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2542); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2171: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2542); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(891); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2172: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2541); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(1611); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2173: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(1200); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(736); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2174: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(2173); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(2004); END_STATE(); case 2175: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(2595); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2176); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(951); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2176: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '2') ADVANCE(2587); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2596); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 2177: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':') ADVANCE(2588); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2590); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2178: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':') ADVANCE(2600); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'v') ADVANCE(754); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2179: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':') ADVANCE(2602); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2180: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1391); - if (lookahead == '~') ADVANCE(1421); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2181: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1388); - if (lookahead == '>') ADVANCE(1272); - if (lookahead == '~') ADVANCE(1418); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2182: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1388); - if (lookahead == '~') ADVANCE(1418); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2078); END_STATE(); case 2183: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1390); - if (lookahead == '~') ADVANCE(1420); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2184: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1387); - if (lookahead == '~') ADVANCE(1417); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(1904); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '+') ADVANCE(2308); + if (lookahead == '>') ADVANCE(1929); + if (lookahead == 'r') ADVANCE(1490); + if (lookahead == 'u') ADVANCE(2537); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(1902); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '+') ADVANCE(2308); + if (lookahead == '>') ADVANCE(1929); + if (lookahead == 'u') ADVANCE(2537); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(1898); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '+') ADVANCE(2427); + if (lookahead == '>') ADVANCE(1927); + if (lookahead == 'n') ADVANCE(2272); + if (lookahead == 'r') ADVANCE(2470); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2188: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(1900); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '+') ADVANCE(2427); + if (lookahead == '>') ADVANCE(1927); + if (lookahead == 'r') ADVANCE(2470); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(2570); - if (lookahead == 'f') ADVANCE(1260); - if (lookahead == 'n') ADVANCE(1233); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '+') ADVANCE(2428); + if (lookahead == '>') ADVANCE(1923); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(2571); - if (lookahead == 'n') ADVANCE(1234); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '+') ADVANCE(2316); + if (lookahead == '>') ADVANCE(1925); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(2548); - if (lookahead == 'f') ADVANCE(1257); - if (lookahead == 'n') ADVANCE(1230); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == '-') ADVANCE(2247); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'T') ADVANCE(2599); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2634); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2240); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2193); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2193); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2574); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2194); + if (lookahead == '-') ADVANCE(2249); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2194); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2195: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2196); - if (lookahead == 'b') ADVANCE(2563); - if (lookahead == 'o') ADVANCE(2564); - if (lookahead == 'x') ADVANCE(2565); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2196); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == '-') ADVANCE(2259); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2196: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2196); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2196); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == '-') ADVANCE(2259); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2197: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2198); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2198); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1501); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2576); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2198: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2198); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1501); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2576); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2199: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1481); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2575); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2200: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2204); - if (lookahead == 'b') ADVANCE(1809); - if (lookahead == 'o') ADVANCE(1812); - if (lookahead == 'x') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2202); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2353); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2201: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2157); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2353); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2202: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2201); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2362); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2203: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2202); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2635); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2204: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2204); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2577); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2205: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2353); - if (lookahead == 'o') ADVANCE(2417); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2579); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2206: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2333); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2579); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2207: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2543); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '-') ADVANCE(2578); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_1(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2208: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2335); - if (lookahead == 'o') ADVANCE(2233); - if (lookahead == 'u') ADVANCE(2490); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == '.') ADVANCE(1232); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2209: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2334); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == '.') ADVANCE(2208); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2210: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2344); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '.') ADVANCE(2632); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2211); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2211: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2382); - if (lookahead == 'o') ADVANCE(2420); - if (lookahead == 's') ADVANCE(2299); - if (lookahead == 'x') ADVANCE(2408); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '2') ADVANCE(2624); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2633); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2212: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2488); - if (lookahead == 'o') ADVANCE(2360); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == ':') ADVANCE(2625); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2627); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2213: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2383); - if (lookahead == 'o') ADVANCE(2428); - if (lookahead == 's') ADVANCE(2304); - if (lookahead == 'x') ADVANCE(2407); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == ':') ADVANCE(2637); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2214: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2545); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == ':') ADVANCE(2639); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2215: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2460); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '=') ADVANCE(1424); + if (lookahead == '~') ADVANCE(1454); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2216: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2482); - if (lookahead == 'o') ADVANCE(2230); - if (lookahead == 'u') ADVANCE(2483); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '=') ADVANCE(1421); + if (lookahead == '>') ADVANCE(1305); + if (lookahead == '~') ADVANCE(1451); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2217: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2482); - if (lookahead == 'o') ADVANCE(2243); - if (lookahead == 'u') ADVANCE(2483); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '=') ADVANCE(1421); + if (lookahead == '~') ADVANCE(1451); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2218: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2447); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == '=') ADVANCE(1423); + if (lookahead == '~') ADVANCE(1453); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2219: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2461); + if (lookahead == '=') ADVANCE(1420); + if (lookahead == '~') ADVANCE(1450); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2220: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2449); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '>') ADVANCE(1937); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2221: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2450); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '>') ADVANCE(1935); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2222: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2452); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == '>') ADVANCE(1931); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2223: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2381); - if (lookahead == 'o') ADVANCE(2435); - if (lookahead == 's') ADVANCE(2307); - if (lookahead == 'x') ADVANCE(2403); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '>') ADVANCE(1933); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2224: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2298); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '>') ADVANCE(1305); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2225: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2302); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'N') ADVANCE(2607); + if (lookahead == 'f') ADVANCE(1292); + if (lookahead == 'n') ADVANCE(1266); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2226: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2303); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'N') ADVANCE(2608); + if (lookahead == 'n') ADVANCE(1267); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2227: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2267); + if (lookahead == 'N') ADVANCE(2585); + if (lookahead == 'f') ADVANCE(1289); + if (lookahead == 'n') ADVANCE(1263); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2228: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2256); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'T') ADVANCE(2636); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2229: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1442); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2229); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2230: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1361); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2230); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2230); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2231: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1425); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2232); + if (lookahead == 'b') ADVANCE(2600); + if (lookahead == 'o') ADVANCE(2601); + if (lookahead == 'x') ADVANCE(2602); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2232); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2232: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1438); + if (lookahead == '_') ADVANCE(2232); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2232); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2233: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1360); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == '_') ADVANCE(2234); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1534); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2234: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1423); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == '_') ADVANCE(2234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1534); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2235: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1443); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2235); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1514); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2236: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2467); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2240); + if (lookahead == 'b') ADVANCE(1842); + if (lookahead == 'o') ADVANCE(1845); + if (lookahead == 'x') ADVANCE(1848); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2237: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1365); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2192); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2238: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1426); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2239: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1440); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2240: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2465); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2240); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2241: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1364); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2390); + if (lookahead == 'o') ADVANCE(2454); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2242: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2462); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2370); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2243: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2526); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2580); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2244: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2463); + if (lookahead == 'a') ADVANCE(2372); + if (lookahead == 'o') ADVANCE(2269); + if (lookahead == 'u') ADVANCE(2527); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2245: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2250); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2371); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2246: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2263); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'a') ADVANCE(2381); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2247: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2293); - if (lookahead == 'o') ADVANCE(1255); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2419); + if (lookahead == 'o') ADVANCE(2457); + if (lookahead == 's') ADVANCE(2336); + if (lookahead == 'x') ADVANCE(2445); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2248: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2295); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2525); + if (lookahead == 'o') ADVANCE(2397); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2249: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1160); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2420); + if (lookahead == 'o') ADVANCE(2465); + if (lookahead == 's') ADVANCE(2341); + if (lookahead == 'x') ADVANCE(2444); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2250: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1317); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2582); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2251: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1529); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2497); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2252: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1537); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2519); + if (lookahead == 'o') ADVANCE(2266); + if (lookahead == 'u') ADVANCE(2520); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2253: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1346); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2519); + if (lookahead == 'o') ADVANCE(2279); + if (lookahead == 'u') ADVANCE(2520); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2254: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1250); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2484); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2255: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1155); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2498); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2256: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1304); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2486); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2257: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1224); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'a') ADVANCE(2487); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2258: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2294); - if (lookahead == 'o') ADVANCE(1252); + if (lookahead == 'a') ADVANCE(2489); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2259: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2536); - if (lookahead == 'o') ADVANCE(2498); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2554); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'a') ADVANCE(2418); + if (lookahead == 'o') ADVANCE(2472); + if (lookahead == 's') ADVANCE(2344); + if (lookahead == 'x') ADVANCE(2440); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2260: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2296); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'c') ADVANCE(2335); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2261: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1157); + if (lookahead == 'c') ADVANCE(2339); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2262: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1262); + if (lookahead == 'c') ADVANCE(2340); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2263: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1315); + if (lookahead == 'c') ADVANCE(2303); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2264: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1245); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'c') ADVANCE(2292); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2265: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1247); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'd') ADVANCE(1475); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2266: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1152); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'd') ADVANCE(1394); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2267: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1302); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'd') ADVANCE(1458); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2268: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1221); + if (lookahead == 'd') ADVANCE(1471); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2269: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1531); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(1393); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2270: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1539); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2271: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2481); - if (lookahead == 'o') ADVANCE(2387); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(1476); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2272: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2186); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(2504); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2273: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2206); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(1398); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2274: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2489); - if (lookahead == 'i') ADVANCE(2470); - if (lookahead == 'o') ADVANCE(2389); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'd') ADVANCE(1459); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2275: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2209); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'd') ADVANCE(1473); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2276: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2448); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(2502); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2277: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2357); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(1397); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2278: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2443); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'd') ADVANCE(2499); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2279: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2362); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'd') ADVANCE(2563); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2280: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2456); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(2500); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2281: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2457); - if (lookahead == 'i') ADVANCE(2350); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(2286); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2282: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2372); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'd') ADVANCE(2299); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2283: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2374); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'e') ADVANCE(2329); + if (lookahead == 'o') ADVANCE(1287); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2284: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2377); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2332); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2285: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2445); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'e') ADVANCE(1192); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2286: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2378); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'e') ADVANCE(1350); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2287: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2444); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1562); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2288: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2379); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1570); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2289: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2380); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'e') ADVANCE(1379); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2290: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2430); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'e') ADVANCE(1282); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2291: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2422); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1187); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2292: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(1260); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2570); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1337); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2293: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(1141); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1257); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2294: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(1138); + if (lookahead == 'e') ADVANCE(2330); + if (lookahead == 'o') ADVANCE(1284); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2295: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'g') ADVANCE(2323); - if (lookahead == 't') ADVANCE(2523); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2573); + if (lookahead == 'o') ADVANCE(2535); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2591); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2296: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'g') ADVANCE(2332); - if (lookahead == 't') ADVANCE(2522); + if (lookahead == 'e') ADVANCE(2333); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2297: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2281); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1189); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2298: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1268); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1295); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2299: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2337); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1348); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2300: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1414); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1277); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2301: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1409); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(1279); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2302: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1296); + if (lookahead == 'e') ADVANCE(1184); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2303: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1265); + if (lookahead == 'e') ADVANCE(1335); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2304: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2338); + if (lookahead == 'e') ADVANCE(1254); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2305: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1412); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'e') ADVANCE(1564); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2306: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1407); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'e') ADVANCE(1572); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2307: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2340); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2518); + if (lookahead == 'o') ADVANCE(2424); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2308: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1415); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2221); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2309: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1410); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2242); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2310: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2313); + if (lookahead == 'e') ADVANCE(2526); + if (lookahead == 'i') ADVANCE(2507); + if (lookahead == 'o') ADVANCE(2426); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2311: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2480); - if (lookahead == 'r') ADVANCE(2273); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2245); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2312: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2487); - if (lookahead == 'r') ADVANCE(2275); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'e') ADVANCE(2485); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2313: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2349); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'e') ADVANCE(2394); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2314: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2215); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2480); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2315: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2219); + if (lookahead == 'e') ADVANCE(2399); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2316: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2366); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2493); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2317: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2497); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2494); + if (lookahead == 'i') ADVANCE(2387); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2318: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2496); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2409); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2319: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2245); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2411); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2320: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2371); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2414); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2321: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2246); + if (lookahead == 'e') ADVANCE(2482); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2322: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2373); + if (lookahead == 'e') ADVANCE(2415); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2323: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2474); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2481); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2324: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2358); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2416); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2325: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2363); + if (lookahead == 'e') ADVANCE(2417); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2326: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2501); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2467); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2327: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2505); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2459); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2328: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2506); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'f') ADVANCE(1292); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2607); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2329: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2508); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'f') ADVANCE(1173); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2330: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2507); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'f') ADVANCE(1170); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2331: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2509); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'f') ADVANCE(1293); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2332: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2475); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'g') ADVANCE(2360); + if (lookahead == 't') ADVANCE(2560); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2333: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'k') ADVANCE(1220); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'g') ADVANCE(2369); + if (lookahead == 't') ADVANCE(2559); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2334: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'k') ADVANCE(1217); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'h') ADVANCE(2317); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2335: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'k') ADVANCE(2264); - if (lookahead == 't') ADVANCE(2226); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'h') ADVANCE(1301); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2336: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1520); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(2374); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2337: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1379); - if (lookahead == 'r') ADVANCE(1384); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(1447); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2338: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1382); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'h') ADVANCE(1442); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2339: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1522); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(1329); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2340: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1380); - if (lookahead == 'r') ADVANCE(1385); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(1298); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2341: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2314); - if (lookahead == 'n') ADVANCE(2229); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(2375); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2342: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2314); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(1445); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2343: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2315); - if (lookahead == 'n') ADVANCE(2232); - if (lookahead == 's') ADVANCE(1330); + if (lookahead == 'h') ADVANCE(1440); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2344: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2464); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(2377); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2345: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2336); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(1448); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2346: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2339); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(1443); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2347: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2207); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'h') ADVANCE(2350); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2348: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2214); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'i') ADVANCE(2517); + if (lookahead == 'r') ADVANCE(2309); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2349: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2265); + if (lookahead == 'i') ADVANCE(2524); + if (lookahead == 'r') ADVANCE(2311); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2350: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2254); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2386); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2351: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2266); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'i') ADVANCE(2251); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2352: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2255); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2255); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2353: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2473); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2403); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2354: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2469); - if (lookahead == 'n') ADVANCE(2244); - if (lookahead == 'r') ADVANCE(2459); - if (lookahead == 'x') ADVANCE(2414); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'i') ADVANCE(2534); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2355: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2471); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2533); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2356: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1150); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2281); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2357: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2527); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2408); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2358: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1404); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2282); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2359: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1301); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2410); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2360: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2472); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'i') ADVANCE(2511); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2361: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1147); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'i') ADVANCE(2395); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2362: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2531); + if (lookahead == 'i') ADVANCE(2400); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2363: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1402); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'i') ADVANCE(2538); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2364: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1298); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'i') ADVANCE(2542); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2365: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2235); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2543); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2366: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1405); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2545); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2367: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2239); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2544); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2368: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1237); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2546); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2369: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1239); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'i') ADVANCE(2512); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2370: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2242); - if (lookahead == 'r') ADVANCE(2458); - if (lookahead == 'x') ADVANCE(2413); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'k') ADVANCE(1253); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2371: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2525); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'k') ADVANCE(1250); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2372: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2528); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'k') ADVANCE(2300); + if (lookahead == 't') ADVANCE(2262); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2373: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2524); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'l') ADVANCE(1553); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2374: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2532); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'l') ADVANCE(1412); + if (lookahead == 'r') ADVANCE(1417); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2375: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2236); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(1410); + if (lookahead == 'r') ADVANCE(1415); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2376: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2240); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(1555); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2377: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2529); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(1413); + if (lookahead == 'r') ADVANCE(1418); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2378: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2533); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'l') ADVANCE(2351); + if (lookahead == 'n') ADVANCE(2265); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2379: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2530); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(2351); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2380: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2534); + if (lookahead == 'l') ADVANCE(2352); + if (lookahead == 'n') ADVANCE(2268); + if (lookahead == 's') ADVANCE(1363); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2381: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2238); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(2501); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2382: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2231); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(2373); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2383: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2234); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'l') ADVANCE(2376); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2384: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2355); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(2243); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2385: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2519); - if (lookahead == 't') ADVANCE(2221); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(2250); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2386: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2519); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(2301); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2387: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2411); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(2290); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2388: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2520); - if (lookahead == 't') ADVANCE(2222); + if (lookahead == 'l') ADVANCE(2302); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2389: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2412); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'l') ADVANCE(2291); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2390: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2185); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(2510); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2391: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2521); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'l') ADVANCE(2506); + if (lookahead == 'n') ADVANCE(2280); + if (lookahead == 'r') ADVANCE(2496); + if (lookahead == 'x') ADVANCE(2451); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2392: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2438); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2508); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2393: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2425); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'n') ADVANCE(1182); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2394: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2503); - if (lookahead == 'u') ADVANCE(2346); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2577); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2564); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2395: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2503); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(1437); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2396: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2434); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(1334); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2397: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2237); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2509); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2398: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2502); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(1179); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2399: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2241); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2568); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2400: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2418); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(1435); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2401: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2426); + if (lookahead == 'n') ADVANCE(1331); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2402: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2484); - if (lookahead == 'u') ADVANCE(2345); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2576); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2271); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2403: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2436); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(1438); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2404: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2427); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'n') ADVANCE(2275); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2405: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2419); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(1269); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2406: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2494); - if (lookahead == 'u') ADVANCE(2345); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2576); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(1271); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2407: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2429); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'n') ADVANCE(2278); + if (lookahead == 'r') ADVANCE(2495); + if (lookahead == 'x') ADVANCE(2450); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2408: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2421); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2562); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2409: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2454); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2565); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2410: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2455); + if (lookahead == 'n') ADVANCE(2561); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2411: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'p') ADVANCE(1243); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2569); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2412: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'p') ADVANCE(1240); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'n') ADVANCE(2272); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2413: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'p') ADVANCE(2409); - if (lookahead == 't') ADVANCE(2287); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2276); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2414: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'p') ADVANCE(2410); - if (lookahead == 't') ADVANCE(2285); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'n') ADVANCE(2566); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2415: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1456); - if (lookahead == 'v') ADVANCE(2276); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2570); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2416: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2518); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2567); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2417: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1228); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2571); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2418: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1449); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2274); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2419: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1183); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2267); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2420: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1435); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'n') ADVANCE(2270); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2421: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1430); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2392); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2422: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1313); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2556); + if (lookahead == 't') ADVANCE(2257); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2423: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1452); - if (lookahead == 'v') ADVANCE(2278); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'o') ADVANCE(2556); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2424: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2544); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'o') ADVANCE(2448); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2425: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1225); + if (lookahead == 'o') ADVANCE(2557); + if (lookahead == 't') ADVANCE(2258); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2426: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1445); + if (lookahead == 'o') ADVANCE(2449); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2427: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1179); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'o') ADVANCE(2220); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2428: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1433); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'o') ADVANCE(2558); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2429: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1428); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'o') ADVANCE(2475); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2430: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1310); + if (lookahead == 'o') ADVANCE(2462); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2431: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1457); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2540); + if (lookahead == 'u') ADVANCE(2383); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2614); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2432: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2517); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2540); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2433: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2154); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2471); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2434: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1450); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2273); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2435: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1436); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2539); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2436: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1431); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2277); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2437: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1454); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2455); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2438: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1447); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2463); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2439: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2273); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2521); + if (lookahead == 'u') ADVANCE(2382); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2613); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2440: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2458); - if (lookahead == 'x') ADVANCE(2413); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2473); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2441: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2228); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2464); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2442: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2227); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'o') ADVANCE(2456); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2443: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2348); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'o') ADVANCE(2531); + if (lookahead == 'u') ADVANCE(2382); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2613); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2444: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2356); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2466); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2445: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2361); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'o') ADVANCE(2458); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2446: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2188); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2491); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2447: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2513); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'o') ADVANCE(2492); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2448: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2347); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'p') ADVANCE(1275); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2449: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2512); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'p') ADVANCE(1272); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2450: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2514); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'p') ADVANCE(2446); + if (lookahead == 't') ADVANCE(2323); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2451: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2359); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'p') ADVANCE(2447); + if (lookahead == 't') ADVANCE(2321); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2452: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2515); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(1489); + if (lookahead == 'v') ADVANCE(2312); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2453: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2364); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(2555); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2454: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2486); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1261); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2455: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2493); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(1482); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2456: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2446); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1215); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2457: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2253); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1468); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2458: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2405); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1463); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2459: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2404); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(1346); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2460: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(599); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1485); + if (lookahead == 'v') ADVANCE(2314); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2461: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(596); + if (lookahead == 'r') ADVANCE(2581); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2462: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2158); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1258); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2463: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2164); + if (lookahead == 'r') ADVANCE(1478); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2464: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2270); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1211); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2465: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2162); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1466); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2466: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2249); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1461); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2467: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2163); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1343); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2468: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2261); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(1490); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2469: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2262); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(2554); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2470: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2491); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(2189); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2471: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2485); - if (lookahead == 't') ADVANCE(2320); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1483); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2472: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2492); - if (lookahead == 't') ADVANCE(2322); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(1469); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2473: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2252); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1464); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2474: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2510); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(1487); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2475: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2511); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(1480); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2476: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2169); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2309); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2477: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2172); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(2495); + if (lookahead == 'x') ADVANCE(2450); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2478: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2170); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2264); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2479: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2171); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2263); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2480: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2156); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2385); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2481: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(604); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2393); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2482: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2224); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2398); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2483: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(614); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2223); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2484: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1460); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2550); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2485: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(619); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2384); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2486: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(593); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2549); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2487: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2159); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(2551); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2488: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2225); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(2396); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2489: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(605); + if (lookahead == 'r') ADVANCE(2552); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2490: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(611); + if (lookahead == 'r') ADVANCE(2401); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2491: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1189); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(2523); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2492: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(616); + if (lookahead == 'r') ADVANCE(2530); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2493: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(591); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'r') ADVANCE(2483); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2494: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1465); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2289); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2495: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2218); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2442); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2496: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2160); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 'r') ADVANCE(2441); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2497: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2161); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(631); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2498: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2167); + if (lookahead == 's') ADVANCE(628); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2499: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2220); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2193); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2500: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2155); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2501: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2308); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2306); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2502: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2165); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2197); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2503: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2166); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2285); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2504: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2187); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2198); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2505: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2309); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2297); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2506: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2300); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2298); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2507: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2301); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2528); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2508: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2305); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 's') ADVANCE(2522); + if (lookahead == 't') ADVANCE(2357); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2509: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2306); + if (lookahead == 's') ADVANCE(2529); + if (lookahead == 't') ADVANCE(2359); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2510: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2291); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2288); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2511: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2290); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 's') ADVANCE(2547); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2512: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2479); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2548); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2513: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2478); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2204); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2514: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2476); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2207); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2515: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2477); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 's') ADVANCE(2205); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2516: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2346); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2577); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 's') ADVANCE(2206); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2517: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2269); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2191); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2518: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2251); - if (lookahead == 'y') ADVANCE(1294); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(636); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2519: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2441); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2260); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2520: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2442); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(646); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2521: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2504); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(1493); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2522: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2453); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(651); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2523: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2451); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(625); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2524: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2268); + if (lookahead == 't') ADVANCE(2194); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2525: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2257); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2261); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2526: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2352); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(637); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2527: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(610); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(643); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2528: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1322); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(1221); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2529: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1145); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(648); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2530: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1309); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(623); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2531: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(607); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(1498); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2532: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1319); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2254); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2533: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1142); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2195); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2534: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1306); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2196); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2535: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(2276); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2202); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2536: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(1328); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2256); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2537: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2328); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2190); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2538: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2329); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2345); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2539: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2326); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2200); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2540: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2330); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2201); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2541: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2331); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2222); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2542: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2327); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2346); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2543: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'y') ADVANCE(1326); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2337); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2544: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'y') ADVANCE(1291); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2338); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2545: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'y') ADVANCE(1323); + if (lookahead == 't') ADVANCE(2342); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2546: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2176); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2606); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2546); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 't') ADVANCE(2343); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2547: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2554); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2327); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2548: ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 't') ADVANCE(2326); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2553); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2549: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2552); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2516); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2550: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2559); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2515); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2551: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2560); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 't') ADVANCE(2513); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2552: ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 't') ADVANCE(2514); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2558); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2553: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2557); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'u') ADVANCE(2383); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2614); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2554: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2566); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'u') ADVANCE(2305); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2555: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2548); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'u') ADVANCE(2287); + if (lookahead == 'y') ADVANCE(1327); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2556: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2549); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 'u') ADVANCE(2478); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2557: ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'u') ADVANCE(2479); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2550); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2558: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2551); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 'u') ADVANCE(2541); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2559: ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'u') ADVANCE(2490); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2561); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2560: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2562); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 'u') ADVANCE(2488); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2561: ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'u') ADVANCE(2304); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2566); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2562: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2567); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 'u') ADVANCE(2293); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2563: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2563); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 'u') ADVANCE(2389); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2564: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2564); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 'v') ADVANCE(642); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2565: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2565); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 'v') ADVANCE(1355); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2566: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2566); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2567); + if (lookahead == 'v') ADVANCE(1177); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2567: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + if (lookahead == 'v') ADVANCE(1342); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2568: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2576); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'v') ADVANCE(639); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2569: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2577); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'v') ADVANCE(1352); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2570: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2575); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'v') ADVANCE(1174); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2571: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2574); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'v') ADVANCE(1339); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2572: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2582); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'v') ADVANCE(2312); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2573: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2583); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'w') ADVANCE(1361); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2574: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2581); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'w') ADVANCE(2365); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2575: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2580); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'w') ADVANCE(2366); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2576: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2605); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'w') ADVANCE(2363); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2577: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'w') ADVANCE(2367); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2578: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2570); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'w') ADVANCE(2368); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2579: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2571); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'w') ADVANCE(2364); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2580: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2572); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'y') ADVANCE(1359); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2581: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2573); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'y') ADVANCE(1324); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2582: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2584); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'y') ADVANCE(1356); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2583: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2585); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2211); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2583); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2584: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2605); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2591); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2585: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2590); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2586: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2586); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2589); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2587: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2177); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2596); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2588: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2590); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2597); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2589: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2589); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2595); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2590: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2594); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2591: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2168); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2603); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2592: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2192); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2585); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2179); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2586); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2594: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2175); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2587); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2595: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2546); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2588); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2177); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2598); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2599); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2603); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2604); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2600); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2178); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2601); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); - END_STATE(); - case 2603: - ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2603); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2602); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); + END_STATE(); + case 2603: + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2603); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2604); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2604); - if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2606); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2605); - if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2606); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2613); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2614); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2607: - ACCEPT_TOKEN(aux_sym_unquoted_token4); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2612); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2608: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'r') ADVANCE(1451); - if (lookahead == 'u') ADVANCE(2028); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2611); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2609: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'u') ADVANCE(2028); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2619); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2610: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'n') ADVANCE(1979); - if (lookahead == 'r') ADVANCE(2011); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2620); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2611: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'r') ADVANCE(2011); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2618); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2612: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(1389); - if (lookahead == '~') ADVANCE(1419); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2617); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2613: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(863); - if (lookahead == 'f') ADVANCE(1259); - if (lookahead == 'n') ADVANCE(1231); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2642); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2614: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(2040); - if (lookahead == 'n') ADVANCE(1232); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2615: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(452); - if (lookahead == 'n') ADVANCE(1235); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2607); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2616: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(667); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2608); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2617: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2609); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2618: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1964); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2610); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2619: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1551); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2621); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2620: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2622); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2621: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1873); - if (lookahead == 'o') ADVANCE(1874); - if (lookahead == 'x') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2642); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2622: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1551); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2623: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2623); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2624: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2212); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2625: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(755); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2627); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2626: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1997); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2626); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2627: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(361); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2628: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(766); - if (lookahead == 'o') ADVANCE(798); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2203); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2629: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'o') ADVANCE(697); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2228); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2630: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2214); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2631: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(842); - if (lookahead == 'o') ADVANCE(769); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2210); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2632: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(732); - if (lookahead == 'o') ADVANCE(1254); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2583); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2633: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'i') ADVANCE(825); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2212); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2634: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2628); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2635: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(733); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2629); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2636: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(856); - if (lookahead == 'o') ADVANCE(837); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2630); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2637: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(1259); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(863); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2631); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2638: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(729); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2213); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2639: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(749); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2638); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2640: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(698); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2640); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2641: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(2025); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(2641); + if (!aux_sym_unquoted_token3_character_set_6(lookahead)) ADVANCE(2643); END_STATE(); case 2642: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(419); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(2642); + if (!aux_sym_unquoted_token3_character_set_2(lookahead)) ADVANCE(2643); END_STATE(); case 2643: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(976); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(834); - if (lookahead == 'r') ADVANCE(715); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (lookahead == 's') ADVANCE(1332); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'r') ADVANCE(1484); + if (lookahead == 'u') ADVANCE(2066); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'u') ADVANCE(2066); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(746); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == 'r') ADVANCE(2049); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'r') ADVANCE(2049); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1976); + if (lookahead == '=') ADVANCE(1422); + if (lookahead == '~') ADVANCE(1452); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(314); + if (lookahead == 'N') ADVANCE(895); + if (lookahead == 'f') ADVANCE(1291); + if (lookahead == 'n') ADVANCE(1264); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(928); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'N') ADVANCE(2078); + if (lookahead == 'n') ADVANCE(1265); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1236); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(699); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(699); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1229); + if (lookahead == '_') ADVANCE(326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(318); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(930); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1584); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(769); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(845); - if (lookahead == 't') ADVANCE(682); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1906); + if (lookahead == 'o') ADVANCE(1907); + if (lookahead == 'x') ADVANCE(1917); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(845); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1584); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(396); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(961); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(2012); + if (lookahead == 'a') ADVANCE(787); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1977); + if (lookahead == 'a') ADVANCE(2033); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(315); + if (lookahead == 'a') ADVANCE(798); + if (lookahead == 'o') ADVANCE(830); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(929); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'o') ADVANCE(729); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(798); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(831); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(874); + if (lookahead == 'o') ADVANCE(801); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(835); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'o') ADVANCE(1286); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(802); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'i') ADVANCE(857); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(2027); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'e') ADVANCE(765); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2672: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(423); - if (lookahead == 'u') ADVANCE(360); + if (lookahead == 'e') ADVANCE(888); + if (lookahead == 'o') ADVANCE(869); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2673: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(979); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'f') ADVANCE(1291); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(846); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'f') ADVANCE(1288); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1455); - if (lookahead == 'v') ADVANCE(722); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(761); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1451); + if (lookahead == 'h') ADVANCE(781); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2034); + if (lookahead == 'i') ADVANCE(730); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(434); + if (lookahead == 'i') ADVANCE(2063); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1453); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'i') ADVANCE(1008); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(715); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(451); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(866); + if (lookahead == 'r') ADVANCE(747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(859); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (lookahead == 's') ADVANCE(1365); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2683: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(704); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2684: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(1968); + if (lookahead == 'l') ADVANCE(778); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2685: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(297); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2686: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(919); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'n') ADVANCE(2012); END_STATE(); case 2687: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'n') ADVANCE(960); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(722); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(1268); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'n') ADVANCE(1262); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(2015); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'n') ADVANCE(962); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(863); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(349); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2040); + if (lookahead == 'n') ADVANCE(353); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(452); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'o') ADVANCE(801); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(877); + if (lookahead == 't') ADVANCE(714); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2697: - ACCEPT_TOKEN(aux_sym_unquoted_token5); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(877); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2698: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'r') ADVANCE(1451); - if (lookahead == 'u') ADVANCE(2028); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(993); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2699: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'u') ADVANCE(2028); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(2050); END_STATE(); case 2700: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'n') ADVANCE(1979); - if (lookahead == 'r') ADVANCE(2011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(2013); END_STATE(); case 2701: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'r') ADVANCE(2011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(961); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2702: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '.') ADVANCE(238); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(830); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2703: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(1389); - if (lookahead == '~') ADVANCE(1419); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(863); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2704: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '>') ADVANCE(1271); - if (lookahead == '~') ADVANCE(1416); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(350); END_STATE(); case 2705: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '~') ADVANCE(1416); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 2706: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(863); - if (lookahead == 'f') ADVANCE(1259); - if (lookahead == 'n') ADVANCE(1231); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(429); END_STATE(); case 2707: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(2040); - if (lookahead == 'n') ADVANCE(1232); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(867); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2708: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(452); - if (lookahead == 'n') ADVANCE(1235); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(834); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2709: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(667); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(2065); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2710: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(1011); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2711: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1964); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(878); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2712: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1551); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(1488); + if (lookahead == 'v') ADVANCE(754); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2713: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(1484); END_STATE(); case 2714: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1873); - if (lookahead == 'o') ADVANCE(1874); - if (lookahead == 'x') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(2072); END_STATE(); case 2715: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1551); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(1486); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2716: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2717: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2718: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(755); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(891); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2719: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1997); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(736); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2720: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(361); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(2004); END_STATE(); case 2721: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(766); - if (lookahead == 'o') ADVANCE(798); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(951); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2722: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'o') ADVANCE(697); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 2723: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2724: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(842); - if (lookahead == 'o') ADVANCE(769); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'v') ADVANCE(754); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2725: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(732); - if (lookahead == 'o') ADVANCE(1254); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2726: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'i') ADVANCE(825); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2727: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2728: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(733); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2078); END_STATE(); case 2729: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(856); - if (lookahead == 'o') ADVANCE(837); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2730: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'f') ADVANCE(1259); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(863); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2731: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'h') ADVANCE(729); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); END_STATE(); case 2732: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'h') ADVANCE(749); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'r') ADVANCE(1484); + if (lookahead == 'u') ADVANCE(2066); END_STATE(); case 2733: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(698); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'u') ADVANCE(2066); END_STATE(); case 2734: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(2025); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == 'r') ADVANCE(2049); END_STATE(); case 2735: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(419); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'r') ADVANCE(2049); END_STATE(); case 2736: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(976); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '.') ADVANCE(280); END_STATE(); case 2737: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(834); - if (lookahead == 'r') ADVANCE(715); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '=') ADVANCE(1422); + if (lookahead == '~') ADVANCE(1452); END_STATE(); case 2738: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (lookahead == 's') ADVANCE(1332); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '>') ADVANCE(1304); + if (lookahead == '~') ADVANCE(1449); END_STATE(); case 2739: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '~') ADVANCE(1449); END_STATE(); case 2740: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(746); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '>') ADVANCE(1304); END_STATE(); case 2741: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'N') ADVANCE(895); + if (lookahead == 'f') ADVANCE(1291); + if (lookahead == 'n') ADVANCE(1264); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2742: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1976); + if (lookahead == 'N') ADVANCE(2078); + if (lookahead == 'n') ADVANCE(1265); END_STATE(); case 2743: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(314); + if (lookahead == '_') ADVANCE(699); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(699); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); case 2744: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(928); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 2745: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1236); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 2746: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1229); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 2747: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(318); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1584); END_STATE(); case 2748: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(930); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); case 2749: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1906); + if (lookahead == 'o') ADVANCE(1907); + if (lookahead == 'x') ADVANCE(1917); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 2750: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(769); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1584); END_STATE(); case 2751: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(845); - if (lookahead == 't') ADVANCE(682); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); case 2752: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(845); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 2753: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(396); + if (lookahead == 'a') ADVANCE(787); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2754: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(961); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'a') ADVANCE(2033); END_STATE(); case 2755: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(2012); + if (lookahead == 'a') ADVANCE(798); + if (lookahead == 'o') ADVANCE(830); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2756: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1977); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'o') ADVANCE(729); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2757: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(315); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2758: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(929); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'a') ADVANCE(874); + if (lookahead == 'o') ADVANCE(801); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2759: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(798); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'o') ADVANCE(1286); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2760: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(831); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'i') ADVANCE(857); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2761: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(835); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2762: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(802); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(765); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2763: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(2027); - if (lookahead == 'u') ADVANCE(1996); + if (lookahead == 'e') ADVANCE(888); + if (lookahead == 'o') ADVANCE(869); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2764: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'f') ADVANCE(1291); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2765: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(423); - if (lookahead == 'u') ADVANCE(360); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'f') ADVANCE(1288); END_STATE(); case 2766: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(979); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'h') ADVANCE(761); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2767: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(846); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(781); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2768: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1455); - if (lookahead == 'v') ADVANCE(722); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'i') ADVANCE(730); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2769: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1451); + if (lookahead == 'i') ADVANCE(2063); END_STATE(); case 2770: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2034); + if (lookahead == 'i') ADVANCE(1008); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2771: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(434); + if (lookahead == 'i') ADVANCE(451); END_STATE(); case 2772: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1453); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'i') ADVANCE(866); + if (lookahead == 'r') ADVANCE(747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2773: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(715); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (lookahead == 's') ADVANCE(1365); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2774: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2775: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(859); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2776: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(704); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2777: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(1968); + if (lookahead == 'n') ADVANCE(2012); END_STATE(); case 2778: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(297); + if (lookahead == 'n') ADVANCE(960); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2779: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(919); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'n') ADVANCE(1268); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2780: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'n') ADVANCE(1262); END_STATE(); case 2781: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'v') ADVANCE(722); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(2015); END_STATE(); case 2782: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'n') ADVANCE(962); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2783: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(349); END_STATE(); case 2784: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'n') ADVANCE(353); END_STATE(); case 2785: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(863); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2786: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2040); + if (lookahead == 'o') ADVANCE(801); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2787: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(452); + if (lookahead == 'o') ADVANCE(877); + if (lookahead == 't') ADVANCE(714); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2788: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'o') ADVANCE(877); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2789: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'o') ADVANCE(993); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2790: - ACCEPT_TOKEN(aux_sym_unquoted_token6); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(2050); END_STATE(); case 2791: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(290); - if (lookahead == '-') ADVANCE(668); - if (lookahead == 'B') ADVANCE(1681); - if (lookahead == 'I') ADVANCE(648); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'i') ADVANCE(684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(2013); END_STATE(); case 2792: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(290); - if (lookahead == '-') ADVANCE(668); - if (lookahead == 'B') ADVANCE(1675); - if (lookahead == 'I') ADVANCE(654); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'b') ADVANCE(1672); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(961); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2793: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(1866); - if (lookahead == '-') ADVANCE(668); - if (lookahead == 'B') ADVANCE(1681); - if (lookahead == 'I') ADVANCE(648); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'i') ADVANCE(684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(830); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2794: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(1866); - if (lookahead == '-') ADVANCE(668); - if (lookahead == 'B') ADVANCE(1675); - if (lookahead == 'I') ADVANCE(654); - if (lookahead == '_') ADVANCE(668); - if (lookahead == 'b') ADVANCE(1672); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1497); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(863); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2795: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(1960); - if (lookahead == '-') ADVANCE(1962); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(1947); - if (lookahead == '_') ADVANCE(1962); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(1948); - if (lookahead == 'n') ADVANCE(1979); - if (lookahead == 'r') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(350); END_STATE(); case 2796: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(1960); - if (lookahead == '-') ADVANCE(1962); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(1947); - if (lookahead == '_') ADVANCE(1962); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(1948); - if (lookahead == 'r') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 2797: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'r') ADVANCE(1451); - if (lookahead == 'u') ADVANCE(2028); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(429); END_STATE(); case 2798: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(1984); - if (lookahead == '>') ADVANCE(1895); - if (lookahead == 'u') ADVANCE(2028); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(867); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2799: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(1947); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(1948); - if (lookahead == 'n') ADVANCE(1979); - if (lookahead == 'r') ADVANCE(2011); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(834); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2800: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2001); - if (lookahead == '>') ADVANCE(1893); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(1947); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(1948); - if (lookahead == 'r') ADVANCE(2011); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(2065); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2801: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(238); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'o') ADVANCE(1011); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2802: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(1389); - if (lookahead == '~') ADVANCE(1419); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'r') ADVANCE(878); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2803: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '>') ADVANCE(1271); - if (lookahead == '~') ADVANCE(1416); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'r') ADVANCE(1488); + if (lookahead == 'v') ADVANCE(754); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2804: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(1386); - if (lookahead == '~') ADVANCE(1416); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'r') ADVANCE(1484); END_STATE(); case 2805: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1681); - if (lookahead == 'I') ADVANCE(648); - if (lookahead == 'b') ADVANCE(1678); - if (lookahead == 'i') ADVANCE(684); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'r') ADVANCE(2072); END_STATE(); case 2806: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1645); - if (lookahead == 'I') ADVANCE(649); - if (lookahead == 'b') ADVANCE(1642); - if (lookahead == 'i') ADVANCE(685); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'r') ADVANCE(1486); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2807: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1621); - if (lookahead == 'I') ADVANCE(650); - if (lookahead == 'b') ADVANCE(1618); - if (lookahead == 'i') ADVANCE(686); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'r') ADVANCE(747); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2808: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1633); - if (lookahead == 'I') ADVANCE(651); - if (lookahead == 'b') ADVANCE(1630); - if (lookahead == 'i') ADVANCE(687); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2809: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1669); - if (lookahead == 'I') ADVANCE(652); - if (lookahead == 'b') ADVANCE(1666); - if (lookahead == 'i') ADVANCE(688); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'r') ADVANCE(891); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2810: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1657); - if (lookahead == 'I') ADVANCE(653); - if (lookahead == 'b') ADVANCE(1654); - if (lookahead == 'i') ADVANCE(689); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 's') ADVANCE(736); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2811: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1675); - if (lookahead == 'I') ADVANCE(654); - if (lookahead == 'b') ADVANCE(1672); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 't') ADVANCE(2004); END_STATE(); case 2812: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1675); - if (lookahead == 'I') ADVANCE(654); - if (lookahead == 'b') ADVANCE(1672); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'n') ADVANCE(699); - if (lookahead == 'r') ADVANCE(810); - if (lookahead == 'x') ADVANCE(796); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 't') ADVANCE(951); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2813: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1639); - if (lookahead == 'I') ADVANCE(656); - if (lookahead == 'b') ADVANCE(1636); - if (lookahead == 'i') ADVANCE(657); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 2814: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1615); - if (lookahead == 'I') ADVANCE(658); - if (lookahead == 'b') ADVANCE(1612); - if (lookahead == 'i') ADVANCE(659); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2815: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1627); - if (lookahead == 'I') ADVANCE(660); - if (lookahead == 'a') ADVANCE(755); - if (lookahead == 'b') ADVANCE(1624); - if (lookahead == 'i') ADVANCE(661); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 's') ADVANCE(1585); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'v') ADVANCE(754); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2816: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1627); - if (lookahead == 'I') ADVANCE(660); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'b') ADVANCE(1624); - if (lookahead == 'i') ADVANCE(661); - if (lookahead == 'o') ADVANCE(695); - if (lookahead == 's') ADVANCE(1585); - if (lookahead == 'u') ADVANCE(830); - if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2817: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1663); - if (lookahead == 'I') ADVANCE(662); - if (lookahead == 'b') ADVANCE(1660); - if (lookahead == 'i') ADVANCE(663); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2818: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1651); - if (lookahead == 'I') ADVANCE(664); - if (lookahead == 'b') ADVANCE(1648); - if (lookahead == 'i') ADVANCE(665); - if (lookahead == 'r') ADVANCE(846); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2819: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1651); - if (lookahead == 'I') ADVANCE(664); - if (lookahead == 'b') ADVANCE(1648); - if (lookahead == 'i') ADVANCE(665); - if (lookahead == 'r') ADVANCE(859); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2078); END_STATE(); case 2820: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(1941); - if (lookahead == '_') ADVANCE(1962); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(1969); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2821: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(1941); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(1969); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2822: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(268); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(304); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); END_STATE(); case 2823: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(268); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(304); + if (lookahead == '+') ADVANCE(325); + if (lookahead == '-') ADVANCE(700); + if (lookahead == 'B') ADVANCE(1714); + if (lookahead == 'I') ADVANCE(680); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'b') ADVANCE(1711); + if (lookahead == 'i') ADVANCE(716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 2824: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1643); - if (lookahead == 'I') ADVANCE(1942); - if (lookahead == 'b') ADVANCE(1640); - if (lookahead == 'i') ADVANCE(1970); + if (lookahead == '+') ADVANCE(325); + if (lookahead == '-') ADVANCE(700); + if (lookahead == 'B') ADVANCE(1708); + if (lookahead == 'I') ADVANCE(686); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'b') ADVANCE(1705); + if (lookahead == 'i') ADVANCE(687); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 2825: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1643); - if (lookahead == 'I') ADVANCE(269); - if (lookahead == 'b') ADVANCE(1640); - if (lookahead == 'i') ADVANCE(305); + if (lookahead == '+') ADVANCE(1899); + if (lookahead == '-') ADVANCE(700); + if (lookahead == 'B') ADVANCE(1714); + if (lookahead == 'I') ADVANCE(680); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'b') ADVANCE(1711); + if (lookahead == 'i') ADVANCE(716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 2826: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1619); - if (lookahead == 'I') ADVANCE(1943); - if (lookahead == 'b') ADVANCE(1616); - if (lookahead == 'i') ADVANCE(1971); + if (lookahead == '+') ADVANCE(1899); + if (lookahead == '-') ADVANCE(700); + if (lookahead == 'B') ADVANCE(1708); + if (lookahead == 'I') ADVANCE(686); + if (lookahead == '_') ADVANCE(700); + if (lookahead == 'b') ADVANCE(1705); + if (lookahead == 'i') ADVANCE(687); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1530); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(903); END_STATE(); case 2827: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1619); - if (lookahead == 'I') ADVANCE(270); - if (lookahead == 'b') ADVANCE(1616); - if (lookahead == 'i') ADVANCE(306); + if (lookahead == '+') ADVANCE(1996); + if (lookahead == '-') ADVANCE(1998); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == 'r') ADVANCE(2049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 2828: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1631); - if (lookahead == 'I') ADVANCE(1944); - if (lookahead == 'b') ADVANCE(1628); - if (lookahead == 'i') ADVANCE(1972); + if (lookahead == '+') ADVANCE(1996); + if (lookahead == '-') ADVANCE(1998); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'r') ADVANCE(2049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 2829: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1631); - if (lookahead == 'I') ADVANCE(271); - if (lookahead == 'b') ADVANCE(1628); - if (lookahead == 'i') ADVANCE(307); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'r') ADVANCE(1484); + if (lookahead == 'u') ADVANCE(2066); END_STATE(); case 2830: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1667); - if (lookahead == 'I') ADVANCE(1945); - if (lookahead == 'b') ADVANCE(1664); - if (lookahead == 'i') ADVANCE(1973); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1928); + if (lookahead == 'u') ADVANCE(2066); END_STATE(); case 2831: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1667); - if (lookahead == 'I') ADVANCE(272); - if (lookahead == 'b') ADVANCE(1664); - if (lookahead == 'i') ADVANCE(308); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == 'r') ADVANCE(2049); END_STATE(); case 2832: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1655); - if (lookahead == 'I') ADVANCE(1946); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'i') ADVANCE(1974); + if (lookahead == '+') ADVANCE(2038); + if (lookahead == '>') ADVANCE(1926); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'r') ADVANCE(2049); END_STATE(); case 2833: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1655); - if (lookahead == 'I') ADVANCE(273); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'i') ADVANCE(309); + if (lookahead == '.') ADVANCE(280); END_STATE(); case 2834: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(274); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(275); - if (lookahead == 'n') ADVANCE(318); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (lookahead == '=') ADVANCE(1422); + if (lookahead == '~') ADVANCE(1452); END_STATE(); case 2835: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(274); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(275); - if (lookahead == 'n') ADVANCE(318); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '>') ADVANCE(1304); + if (lookahead == '~') ADVANCE(1449); END_STATE(); case 2836: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1637); - if (lookahead == 'I') ADVANCE(1949); - if (lookahead == 'b') ADVANCE(1634); - if (lookahead == 'i') ADVANCE(1950); + if (lookahead == '=') ADVANCE(1419); + if (lookahead == '~') ADVANCE(1449); END_STATE(); case 2837: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1637); - if (lookahead == 'I') ADVANCE(276); - if (lookahead == 'b') ADVANCE(1634); - if (lookahead == 'i') ADVANCE(277); + if (lookahead == '>') ADVANCE(1304); END_STATE(); case 2838: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1613); - if (lookahead == 'I') ADVANCE(1951); - if (lookahead == 'b') ADVANCE(1610); - if (lookahead == 'i') ADVANCE(1952); + if (lookahead == 'B') ADVANCE(1714); + if (lookahead == 'I') ADVANCE(680); + if (lookahead == 'b') ADVANCE(1711); + if (lookahead == 'i') ADVANCE(716); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2839: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1613); - if (lookahead == 'I') ADVANCE(278); - if (lookahead == 'b') ADVANCE(1610); - if (lookahead == 'i') ADVANCE(279); + if (lookahead == 'B') ADVANCE(1678); + if (lookahead == 'I') ADVANCE(681); + if (lookahead == 'b') ADVANCE(1675); + if (lookahead == 'i') ADVANCE(717); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2840: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(1953); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 'o') ADVANCE(1977); - if (lookahead == 's') ADVANCE(1583); + if (lookahead == 'B') ADVANCE(1654); + if (lookahead == 'I') ADVANCE(682); + if (lookahead == 'b') ADVANCE(1651); + if (lookahead == 'i') ADVANCE(718); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2841: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(1953); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 's') ADVANCE(1583); + if (lookahead == 'B') ADVANCE(1666); + if (lookahead == 'I') ADVANCE(683); + if (lookahead == 'b') ADVANCE(1663); + if (lookahead == 'i') ADVANCE(719); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2842: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(280); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(281); - if (lookahead == 'o') ADVANCE(315); - if (lookahead == 's') ADVANCE(1583); + if (lookahead == 'B') ADVANCE(1702); + if (lookahead == 'I') ADVANCE(684); + if (lookahead == 'b') ADVANCE(1699); + if (lookahead == 'i') ADVANCE(720); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2843: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1661); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == 'b') ADVANCE(1658); - if (lookahead == 'i') ADVANCE(1956); + if (lookahead == 'B') ADVANCE(1690); + if (lookahead == 'I') ADVANCE(685); + if (lookahead == 'b') ADVANCE(1687); + if (lookahead == 'i') ADVANCE(721); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2844: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1661); - if (lookahead == 'I') ADVANCE(282); - if (lookahead == 'b') ADVANCE(1658); - if (lookahead == 'i') ADVANCE(283); + if (lookahead == 'B') ADVANCE(1708); + if (lookahead == 'I') ADVANCE(686); + if (lookahead == 'b') ADVANCE(1705); + if (lookahead == 'i') ADVANCE(687); + if (lookahead == 'l') ADVANCE(858); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2845: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1649); - if (lookahead == 'I') ADVANCE(1957); - if (lookahead == 'b') ADVANCE(1646); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == 'r') ADVANCE(2034); + if (lookahead == 'B') ADVANCE(1708); + if (lookahead == 'I') ADVANCE(686); + if (lookahead == 'b') ADVANCE(1705); + if (lookahead == 'i') ADVANCE(687); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'x') ADVANCE(828); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2846: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1649); - if (lookahead == 'I') ADVANCE(284); - if (lookahead == 'b') ADVANCE(1646); - if (lookahead == 'i') ADVANCE(285); + if (lookahead == 'B') ADVANCE(1672); + if (lookahead == 'I') ADVANCE(688); + if (lookahead == 'b') ADVANCE(1669); + if (lookahead == 'i') ADVANCE(689); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2847: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1649); - if (lookahead == 'I') ADVANCE(284); - if (lookahead == 'b') ADVANCE(1646); - if (lookahead == 'i') ADVANCE(285); - if (lookahead == 'r') ADVANCE(434); + if (lookahead == 'B') ADVANCE(1648); + if (lookahead == 'I') ADVANCE(690); + if (lookahead == 'b') ADVANCE(1645); + if (lookahead == 'i') ADVANCE(691); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2848: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1680); - if (lookahead == 'I') ADVANCE(895); - if (lookahead == '_') ADVANCE(914); - if (lookahead == 'b') ADVANCE(1677); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1499); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1660); + if (lookahead == 'I') ADVANCE(692); + if (lookahead == 'a') ADVANCE(787); + if (lookahead == 'b') ADVANCE(1657); + if (lookahead == 'i') ADVANCE(693); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 's') ADVANCE(1618); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(903); END_STATE(); case 2849: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1680); - if (lookahead == 'I') ADVANCE(895); - if (lookahead == 'b') ADVANCE(1677); - if (lookahead == 'i') ADVANCE(921); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1660); + if (lookahead == 'I') ADVANCE(692); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'b') ADVANCE(1657); + if (lookahead == 'i') ADVANCE(693); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 's') ADVANCE(1618); + if (lookahead == 'u') ADVANCE(862); + if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(903); END_STATE(); case 2850: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1644); - if (lookahead == 'I') ADVANCE(896); - if (lookahead == 'b') ADVANCE(1641); - if (lookahead == 'i') ADVANCE(922); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1696); + if (lookahead == 'I') ADVANCE(694); + if (lookahead == 'b') ADVANCE(1693); + if (lookahead == 'i') ADVANCE(695); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2851: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1620); - if (lookahead == 'I') ADVANCE(897); - if (lookahead == 'b') ADVANCE(1617); - if (lookahead == 'i') ADVANCE(923); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1684); + if (lookahead == 'I') ADVANCE(696); + if (lookahead == 'b') ADVANCE(1681); + if (lookahead == 'i') ADVANCE(697); + if (lookahead == 'r') ADVANCE(878); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2852: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1632); - if (lookahead == 'I') ADVANCE(898); - if (lookahead == 'b') ADVANCE(1629); - if (lookahead == 'i') ADVANCE(924); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1684); + if (lookahead == 'I') ADVANCE(696); + if (lookahead == 'b') ADVANCE(1681); + if (lookahead == 'i') ADVANCE(697); + if (lookahead == 'r') ADVANCE(891); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2853: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1668); - if (lookahead == 'I') ADVANCE(899); - if (lookahead == 'b') ADVANCE(1665); - if (lookahead == 'i') ADVANCE(925); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(1977); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(2005); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 2854: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1656); - if (lookahead == 'I') ADVANCE(900); - if (lookahead == 'b') ADVANCE(1653); - if (lookahead == 'i') ADVANCE(926); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(1977); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(2005); END_STATE(); case 2855: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1674); - if (lookahead == 'I') ADVANCE(901); - if (lookahead == '_') ADVANCE(914); - if (lookahead == 'b') ADVANCE(1671); - if (lookahead == 'i') ADVANCE(902); - if (lookahead == 'n') ADVANCE(930); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == '_') ADVANCE(325); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(339); if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1499); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 2856: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1674); - if (lookahead == 'I') ADVANCE(901); - if (lookahead == 'b') ADVANCE(1671); - if (lookahead == 'i') ADVANCE(902); - if (lookahead == 'n') ADVANCE(930); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(339); END_STATE(); case 2857: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1638); - if (lookahead == 'I') ADVANCE(903); - if (lookahead == 'b') ADVANCE(1635); - if (lookahead == 'i') ADVANCE(904); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1676); + if (lookahead == 'I') ADVANCE(1978); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'i') ADVANCE(2006); END_STATE(); case 2858: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1614); - if (lookahead == 'I') ADVANCE(905); - if (lookahead == 'b') ADVANCE(1611); - if (lookahead == 'i') ADVANCE(906); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1676); + if (lookahead == 'I') ADVANCE(308); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'i') ADVANCE(340); END_STATE(); case 2859: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1626); - if (lookahead == 'I') ADVANCE(907); - if (lookahead == 'b') ADVANCE(1623); - if (lookahead == 'i') ADVANCE(908); - if (lookahead == 'o') ADVANCE(929); - if (lookahead == 's') ADVANCE(1584); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1652); + if (lookahead == 'I') ADVANCE(1979); + if (lookahead == 'b') ADVANCE(1649); + if (lookahead == 'i') ADVANCE(2007); END_STATE(); case 2860: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1662); - if (lookahead == 'I') ADVANCE(909); - if (lookahead == 'b') ADVANCE(1659); - if (lookahead == 'i') ADVANCE(910); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1652); + if (lookahead == 'I') ADVANCE(309); + if (lookahead == 'b') ADVANCE(1649); + if (lookahead == 'i') ADVANCE(341); END_STATE(); case 2861: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'B') ADVANCE(1650); - if (lookahead == 'I') ADVANCE(911); - if (lookahead == 'b') ADVANCE(1647); - if (lookahead == 'i') ADVANCE(912); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1664); + if (lookahead == 'I') ADVANCE(1980); + if (lookahead == 'b') ADVANCE(1661); + if (lookahead == 'i') ADVANCE(2008); END_STATE(); case 2862: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(863); - if (lookahead == 'f') ADVANCE(1259); - if (lookahead == 'n') ADVANCE(1231); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1664); + if (lookahead == 'I') ADVANCE(310); + if (lookahead == 'b') ADVANCE(1661); + if (lookahead == 'i') ADVANCE(342); END_STATE(); case 2863: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(2040); - if (lookahead == 'n') ADVANCE(1232); + if (lookahead == 'B') ADVANCE(1700); + if (lookahead == 'I') ADVANCE(1981); + if (lookahead == 'b') ADVANCE(1697); + if (lookahead == 'i') ADVANCE(2009); END_STATE(); case 2864: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(452); - if (lookahead == 'n') ADVANCE(1235); + if (lookahead == 'B') ADVANCE(1700); + if (lookahead == 'I') ADVANCE(311); + if (lookahead == 'b') ADVANCE(1697); + if (lookahead == 'i') ADVANCE(343); END_STATE(); case 2865: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(667); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1688); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == 'b') ADVANCE(1685); + if (lookahead == 'i') ADVANCE(2010); END_STATE(); case 2866: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(290); - if (lookahead == '+' || - lookahead == '-') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (lookahead == 'B') ADVANCE(1688); + if (lookahead == 'I') ADVANCE(312); + if (lookahead == 'b') ADVANCE(1685); + if (lookahead == 'i') ADVANCE(344); END_STATE(); case 2867: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(291); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 2868: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(1983); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1984); + if (lookahead == 'n') ADVANCE(2015); END_STATE(); case 2869: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(915); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1475); - if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(313); + if (lookahead == '_') ADVANCE(325); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(314); + if (lookahead == 'n') ADVANCE(353); + if (lookahead == '+' || + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 2870: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1474); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(313); + if (lookahead == '_') ADVANCE(325); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(314); + if (lookahead == '+' || + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 2871: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1964); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(313); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(314); END_STATE(); case 2872: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1551); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(313); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(314); + if (lookahead == 'n') ADVANCE(353); END_STATE(); case 2873: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); + if (lookahead == 'B') ADVANCE(1670); + if (lookahead == 'I') ADVANCE(1985); + if (lookahead == 'b') ADVANCE(1667); + if (lookahead == 'i') ADVANCE(1986); END_STATE(); case 2874: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1873); - if (lookahead == 'o') ADVANCE(1874); - if (lookahead == 'x') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == 'B') ADVANCE(1670); + if (lookahead == 'I') ADVANCE(315); + if (lookahead == 'b') ADVANCE(1667); + if (lookahead == 'i') ADVANCE(316); END_STATE(); case 2875: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1551); + if (lookahead == 'B') ADVANCE(1646); + if (lookahead == 'I') ADVANCE(1987); + if (lookahead == 'b') ADVANCE(1643); + if (lookahead == 'i') ADVANCE(1988); END_STATE(); case 2876: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); + if (lookahead == 'B') ADVANCE(1646); + if (lookahead == 'I') ADVANCE(317); + if (lookahead == 'b') ADVANCE(1643); + if (lookahead == 'i') ADVANCE(318); END_STATE(); case 2877: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1989); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(1990); + if (lookahead == 'o') ADVANCE(2013); + if (lookahead == 's') ADVANCE(1616); END_STATE(); case 2878: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(2038); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1989); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(1990); + if (lookahead == 's') ADVANCE(1616); END_STATE(); case 2879: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1997); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(319); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(320); + if (lookahead == 'o') ADVANCE(350); + if (lookahead == 's') ADVANCE(1616); END_STATE(); case 2880: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(444); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(319); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(320); + if (lookahead == 's') ADVANCE(1616); END_STATE(); case 2881: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(361); + if (lookahead == 'B') ADVANCE(1694); + if (lookahead == 'I') ADVANCE(1991); + if (lookahead == 'b') ADVANCE(1691); + if (lookahead == 'i') ADVANCE(1992); END_STATE(); case 2882: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(984); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1694); + if (lookahead == 'I') ADVANCE(321); + if (lookahead == 'b') ADVANCE(1691); + if (lookahead == 'i') ADVANCE(322); END_STATE(); case 2883: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(766); - if (lookahead == 'o') ADVANCE(798); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1682); + if (lookahead == 'I') ADVANCE(1993); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'i') ADVANCE(1994); + if (lookahead == 'r') ADVANCE(2072); END_STATE(); case 2884: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(861); - if (lookahead == 'e') ADVANCE(732); - if (lookahead == 'o') ADVANCE(1254); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1682); + if (lookahead == 'I') ADVANCE(323); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'i') ADVANCE(324); END_STATE(); case 2885: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(842); - if (lookahead == 'o') ADVANCE(769); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1713); + if (lookahead == 'I') ADVANCE(927); + if (lookahead == '_') ADVANCE(946); + if (lookahead == 'b') ADVANCE(1710); + if (lookahead == 'i') ADVANCE(953); + if (lookahead == '+' || + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1532); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 2886: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'i') ADVANCE(825); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1713); + if (lookahead == 'I') ADVANCE(927); + if (lookahead == 'b') ADVANCE(1710); + if (lookahead == 'i') ADVANCE(953); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2887: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(828); - if (lookahead == 'o') ADVANCE(785); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1677); + if (lookahead == 'I') ADVANCE(928); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'i') ADVANCE(954); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2888: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(733); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1653); + if (lookahead == 'I') ADVANCE(929); + if (lookahead == 'b') ADVANCE(1650); + if (lookahead == 'i') ADVANCE(955); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2889: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1975); + if (lookahead == 'B') ADVANCE(1665); + if (lookahead == 'I') ADVANCE(930); + if (lookahead == 'b') ADVANCE(1662); + if (lookahead == 'i') ADVANCE(956); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2890: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1975); - if (lookahead == 't') ADVANCE(1968); + if (lookahead == 'B') ADVANCE(1701); + if (lookahead == 'I') ADVANCE(931); + if (lookahead == 'b') ADVANCE(1698); + if (lookahead == 'i') ADVANCE(957); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2891: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(310); - if (lookahead == 't') ADVANCE(297); + if (lookahead == 'B') ADVANCE(1689); + if (lookahead == 'I') ADVANCE(932); + if (lookahead == 'b') ADVANCE(1686); + if (lookahead == 'i') ADVANCE(958); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2892: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(927); - if (lookahead == 't') ADVANCE(919); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'B') ADVANCE(1707); + if (lookahead == 'I') ADVANCE(933); + if (lookahead == '_') ADVANCE(946); + if (lookahead == 'b') ADVANCE(1704); + if (lookahead == 'i') ADVANCE(934); + if (lookahead == 'n') ADVANCE(962); + if (lookahead == '+' || + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1532); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 2893: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(856); - if (lookahead == 'o') ADVANCE(837); - if (lookahead == 's') ADVANCE(1576); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1707); + if (lookahead == 'I') ADVANCE(933); + if (lookahead == 'b') ADVANCE(1704); + if (lookahead == 'i') ADVANCE(934); + if (lookahead == 'n') ADVANCE(962); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2894: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(690); - if (lookahead == 'o') ADVANCE(845); - if (lookahead == 't') ADVANCE(682); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1671); + if (lookahead == 'I') ADVANCE(935); + if (lookahead == 'b') ADVANCE(1668); + if (lookahead == 'i') ADVANCE(936); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2895: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(729); - if (lookahead == 'k') ADVANCE(1600); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1647); + if (lookahead == 'I') ADVANCE(937); + if (lookahead == 'b') ADVANCE(1644); + if (lookahead == 'i') ADVANCE(938); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2896: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(749); - if (lookahead == 'k') ADVANCE(1600); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1659); + if (lookahead == 'I') ADVANCE(939); + if (lookahead == 'b') ADVANCE(1656); + if (lookahead == 'i') ADVANCE(940); + if (lookahead == 'o') ADVANCE(961); + if (lookahead == 's') ADVANCE(1617); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2897: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(698); - if (lookahead == 'r') ADVANCE(1594); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'B') ADVANCE(1695); + if (lookahead == 'I') ADVANCE(941); + if (lookahead == 'b') ADVANCE(1692); + if (lookahead == 'i') ADVANCE(942); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2898: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(1598); + if (lookahead == 'B') ADVANCE(1683); + if (lookahead == 'I') ADVANCE(943); + if (lookahead == 'b') ADVANCE(1680); + if (lookahead == 'i') ADVANCE(944); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2899: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(1599); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'N') ADVANCE(895); + if (lookahead == 'f') ADVANCE(1291); + if (lookahead == 'n') ADVANCE(1264); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2900: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (lookahead == 's') ADVANCE(1332); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'N') ADVANCE(2078); + if (lookahead == 'n') ADVANCE(1265); END_STATE(); case 2901: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'n') ADVANCE(694); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(699); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(699); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); case 2902: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1976); + if (lookahead == '_') ADVANCE(325); + if (lookahead == '+' || + lookahead == '-') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); case 2903: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(314); + if (lookahead == '_') ADVANCE(326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 2904: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(928); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); case 2905: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1236); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1508); + if (aux_sym_short_flag_token1_character_set_1(lookahead)) ADVANCE(1026); END_STATE(); case 2906: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1229); + if (lookahead == '_') ADVANCE(701); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1507); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(903); END_STATE(); case 2907: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(769); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 2908: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(396); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1584); END_STATE(); case 2909: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(961); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); case 2910: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(2012); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1906); + if (lookahead == 'o') ADVANCE(1907); + if (lookahead == 'x') ADVANCE(1917); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 2911: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(798); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1584); END_STATE(); case 2912: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(835); - if (lookahead == 's') ADVANCE(1576); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); case 2913: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(802); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); case 2914: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(2027); - if (lookahead == 's') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'a') ADVANCE(2076); END_STATE(); case 2915: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(423); - if (lookahead == 's') ADVANCE(1574); + if (lookahead == 'a') ADVANCE(2033); END_STATE(); case 2916: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(423); - if (lookahead == 's') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(360); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'a') ADVANCE(1016); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(1026); END_STATE(); case 2917: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(979); - if (lookahead == 's') ADVANCE(1575); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'a') ADVANCE(476); END_STATE(); case 2918: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1455); - if (lookahead == 'v') ADVANCE(722); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'a') ADVANCE(798); + if (lookahead == 'o') ADVANCE(830); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2919: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1592); + if (lookahead == 'a') ADVANCE(893); + if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'o') ADVANCE(1286); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2920: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1451); + if (lookahead == 'a') ADVANCE(874); + if (lookahead == 'o') ADVANCE(801); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(903); END_STATE(); case 2921: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1593); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'i') ADVANCE(857); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2922: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1453); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'o') ADVANCE(817); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2923: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1578); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(765); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2924: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1581); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(2011); END_STATE(); case 2925: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1579); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'e') ADVANCE(2011); + if (lookahead == 't') ADVANCE(2004); END_STATE(); case 2926: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(1996); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'e') ADVANCE(959); + if (lookahead == 't') ADVANCE(951); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2927: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1580); + if (lookahead == 'e') ADVANCE(345); END_STATE(); case 2928: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1577); + if (lookahead == 'e') ADVANCE(345); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 2929: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1582); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'e') ADVANCE(888); + if (lookahead == 'o') ADVANCE(869); + if (lookahead == 's') ADVANCE(1609); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2930: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2043); + if (lookahead == 'e') ADVANCE(722); + if (lookahead == 'o') ADVANCE(877); + if (lookahead == 't') ADVANCE(714); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2931: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(871); + if (lookahead == 'f') ADVANCE(1288); END_STATE(); case 2932: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(457); + if (lookahead == 'h') ADVANCE(761); + if (lookahead == 'k') ADVANCE(1633); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2933: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(863); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'h') ADVANCE(781); + if (lookahead == 'k') ADVANCE(1633); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2934: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2040); + if (lookahead == 'i') ADVANCE(730); + if (lookahead == 'r') ADVANCE(1627); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2935: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(452); + if (lookahead == 'k') ADVANCE(1631); END_STATE(); case 2936: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(994); + if (lookahead == 'k') ADVANCE(1632); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2937: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(871); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (lookahead == 's') ADVANCE(1365); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2938: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(3017); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'l') ADVANCE(778); + if (lookahead == 'n') ADVANCE(726); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2939: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(3009); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3016); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'n') ADVANCE(2012); END_STATE(); case 2940: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3020); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'n') ADVANCE(960); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2941: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3022); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'n') ADVANCE(1268); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2942: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(2954); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(2978); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'n') ADVANCE(1262); END_STATE(); case 2943: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1643); - if (lookahead == 'I') ADVANCE(2955); - if (lookahead == 'b') ADVANCE(1640); - if (lookahead == 'i') ADVANCE(2979); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'n') ADVANCE(349); END_STATE(); case 2944: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1619); - if (lookahead == 'I') ADVANCE(2956); - if (lookahead == 'b') ADVANCE(1616); - if (lookahead == 'i') ADVANCE(2980); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(801); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2945: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1631); - if (lookahead == 'I') ADVANCE(2957); - if (lookahead == 'b') ADVANCE(1628); - if (lookahead == 'i') ADVANCE(2981); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(993); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2946: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1667); - if (lookahead == 'I') ADVANCE(2958); - if (lookahead == 'b') ADVANCE(1664); - if (lookahead == 'i') ADVANCE(2982); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(2050); END_STATE(); case 2947: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1655); - if (lookahead == 'I') ADVANCE(2959); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'i') ADVANCE(2983); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(830); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2948: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(2960); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(2961); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(455); + if (lookahead == 's') ADVANCE(1607); END_STATE(); case 2949: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1637); - if (lookahead == 'I') ADVANCE(2962); - if (lookahead == 'b') ADVANCE(1634); - if (lookahead == 'i') ADVANCE(2963); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(429); END_STATE(); case 2950: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1613); - if (lookahead == 'I') ADVANCE(2964); - if (lookahead == 'b') ADVANCE(1610); - if (lookahead == 'i') ADVANCE(2965); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(867); + if (lookahead == 's') ADVANCE(1609); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2951: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(2966); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(2967); - if (lookahead == 's') ADVANCE(1583); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(834); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2952: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1661); - if (lookahead == 'I') ADVANCE(2968); - if (lookahead == 'b') ADVANCE(1658); - if (lookahead == 'i') ADVANCE(2969); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(2065); + if (lookahead == 's') ADVANCE(1607); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2953: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1649); - if (lookahead == 'I') ADVANCE(2970); - if (lookahead == 'b') ADVANCE(1646); - if (lookahead == 'i') ADVANCE(2971); - if (lookahead == 'r') ADVANCE(2999); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'o') ADVANCE(1011); + if (lookahead == 's') ADVANCE(1608); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2954: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1805); - if (lookahead == 'b') ADVANCE(1802); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'r') ADVANCE(1488); + if (lookahead == 'v') ADVANCE(754); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2955: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1742); - if (lookahead == 'b') ADVANCE(1739); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'r') ADVANCE(1625); END_STATE(); case 2956: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1700); - if (lookahead == 'b') ADVANCE(1697); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'r') ADVANCE(1484); END_STATE(); case 2957: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1721); - if (lookahead == 'b') ADVANCE(1718); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'r') ADVANCE(1626); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2958: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1784); - if (lookahead == 'b') ADVANCE(1781); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'r') ADVANCE(1486); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2959: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1763); - if (lookahead == 'b') ADVANCE(1760); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 's') ADVANCE(1611); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2960: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1793); - if (lookahead == 'b') ADVANCE(1796); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 's') ADVANCE(1614); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2961: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1790); - if (lookahead == 'b') ADVANCE(1787); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 's') ADVANCE(1612); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2962: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1730); - if (lookahead == 'b') ADVANCE(1733); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 's') ADVANCE(1607); END_STATE(); case 2963: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1727); - if (lookahead == 'b') ADVANCE(1724); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 's') ADVANCE(1607); + if (lookahead == 'u') ADVANCE(2032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2964: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1688); - if (lookahead == 'b') ADVANCE(1691); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 's') ADVANCE(1613); END_STATE(); case 2965: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1685); - if (lookahead == 'b') ADVANCE(1682); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 's') ADVANCE(1610); END_STATE(); case 2966: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1709); - if (lookahead == 'b') ADVANCE(1712); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 's') ADVANCE(1615); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2967: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1706); - if (lookahead == 'b') ADVANCE(1703); - if (lookahead == 'n') ADVANCE(1589); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2081); END_STATE(); case 2968: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1772); - if (lookahead == 'b') ADVANCE(1775); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(903); END_STATE(); case 2969: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1769); - if (lookahead == 'b') ADVANCE(1766); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2970: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1751); - if (lookahead == 'b') ADVANCE(1754); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2078); END_STATE(); case 2971: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B') ADVANCE(1748); - if (lookahead == 'b') ADVANCE(1745); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (aux_sym_short_flag_token1_character_set_2(lookahead)) ADVANCE(1026); END_STATE(); case 2972: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2973); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (aux_sym_unquoted_token3_character_set_3(lookahead)) ADVANCE(903); END_STATE(); case 2973: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == '-') ADVANCE(3052); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2974: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == '2') ADVANCE(3044); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3051); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2975: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == ':') ADVANCE(3055); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2976: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(3000); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == ':') ADVANCE(3057); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2977: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2991); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(2989); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(3013); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2978: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'b') ADVANCE(1799); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1676); + if (lookahead == 'I') ADVANCE(2990); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'i') ADVANCE(3014); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2979: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'b') ADVANCE(1736); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1652); + if (lookahead == 'I') ADVANCE(2991); + if (lookahead == 'b') ADVANCE(1649); + if (lookahead == 'i') ADVANCE(3015); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2980: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'b') ADVANCE(1694); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1664); + if (lookahead == 'I') ADVANCE(2992); + if (lookahead == 'b') ADVANCE(1661); + if (lookahead == 'i') ADVANCE(3016); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2981: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'b') ADVANCE(1715); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1700); + if (lookahead == 'I') ADVANCE(2993); + if (lookahead == 'b') ADVANCE(1697); + if (lookahead == 'i') ADVANCE(3017); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2982: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'b') ADVANCE(1778); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1688); + if (lookahead == 'I') ADVANCE(2994); + if (lookahead == 'b') ADVANCE(1685); + if (lookahead == 'i') ADVANCE(3018); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2983: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'b') ADVANCE(1757); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(2995); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(2996); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2984: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'c') ADVANCE(1586); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1670); + if (lookahead == 'I') ADVANCE(2997); + if (lookahead == 'b') ADVANCE(1667); + if (lookahead == 'i') ADVANCE(2998); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2985: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1524); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1646); + if (lookahead == 'I') ADVANCE(2999); + if (lookahead == 'b') ADVANCE(1643); + if (lookahead == 'i') ADVANCE(3000); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2986: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1532); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(3001); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(3002); + if (lookahead == 's') ADVANCE(1616); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2987: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2984); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1694); + if (lookahead == 'I') ADVANCE(3003); + if (lookahead == 'b') ADVANCE(1691); + if (lookahead == 'i') ADVANCE(3004); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2988: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'k') ADVANCE(1598); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1682); + if (lookahead == 'I') ADVANCE(3005); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'i') ADVANCE(3006); + if (lookahead == 'r') ADVANCE(3034); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2989: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1515); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1838); + if (lookahead == 'b') ADVANCE(1835); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2990: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2989); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1775); + if (lookahead == 'b') ADVANCE(1772); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2991: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2997); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1733); + if (lookahead == 'b') ADVANCE(1730); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2992: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(1592); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1754); + if (lookahead == 'b') ADVANCE(1751); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2993: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2999); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1817); + if (lookahead == 'b') ADVANCE(1814); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2994: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(2990); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1796); + if (lookahead == 'b') ADVANCE(1793); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2995: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(1580); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1826); + if (lookahead == 'b') ADVANCE(1829); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2996: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(1577); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1823); + if (lookahead == 'b') ADVANCE(1820); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2997: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2986); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1763); + if (lookahead == 'b') ADVANCE(1766); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2998: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2990); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1760); + if (lookahead == 'b') ADVANCE(1757); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 2999: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2985); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1721); + if (lookahead == 'b') ADVANCE(1724); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3000: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'y') ADVANCE(1595); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1718); + if (lookahead == 'b') ADVANCE(1715); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3001: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1742); + if (lookahead == 'b') ADVANCE(1745); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3002: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1568); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1739); + if (lookahead == 'b') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(1622); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3003: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3007); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1805); + if (lookahead == 'b') ADVANCE(1808); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3004: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1573); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1802); + if (lookahead == 'b') ADVANCE(1799); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3005: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3002); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1784); + if (lookahead == 'b') ADVANCE(1787); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3006: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3003); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'B') ADVANCE(1781); + if (lookahead == 'b') ADVANCE(1778); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3007: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3008); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == '_') ADVANCE(3008); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3008); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3008: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1566); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == '_') ADVANCE(3008); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3009: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1825); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == '_') ADVANCE(3009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3010: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1819); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == '_') ADVANCE(3010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3011: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2938); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'a') ADVANCE(3035); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3012: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2941); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'a') ADVANCE(3026); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3013: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3011); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'b') ADVANCE(1832); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3014: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1822); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'b') ADVANCE(1769); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3015: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1832); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'b') ADVANCE(1727); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3016: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1825); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'b') ADVANCE(1748); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3017: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3018); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'b') ADVANCE(1811); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3018: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1827); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'b') ADVANCE(1790); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3019: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3012); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'c') ADVANCE(1619); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3020: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3014); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'e') ADVANCE(1557); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3021: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2940); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'e') ADVANCE(1565); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3022: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3021); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'e') ADVANCE(3019); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3023: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3023); + if (lookahead == 'k') ADVANCE(1631); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3024: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(1548); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3025: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(3024); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3026: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(2991); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(3032); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3027: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(2999); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(1625); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); END_STATE(); case 3028: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(3034); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3029: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 's') ADVANCE(1607); + if (lookahead == 'u') ADVANCE(3025); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3039); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3030: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 's') ADVANCE(1613); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3031: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 's') ADVANCE(1610); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3032: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 's') ADVANCE(3021); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3033: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(3025); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3039); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3034: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(3020); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3035: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'y') ADVANCE(1628); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3036: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3039); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3037: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1601); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3038: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3042); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3039: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1606); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3040: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3037); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3041: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3038); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3042: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3043); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3043: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1599); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3044: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1858); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3045: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1852); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3046: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2973); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3047: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2976); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3048: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3046); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3049: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1855); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3050: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1865); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3051: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1858); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3052: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3053); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3053: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1860); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3054: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3047); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3055: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3049); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3056: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2975); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3057: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3056); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3058: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3058); + END_STATE(); + case 3059: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(2990); + END_STATE(); + case 3060: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(3009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); + END_STATE(); + case 3061: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'a') ADVANCE(3026); + END_STATE(); + case 3062: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(3034); + END_STATE(); + case 3063: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(3025); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); + lookahead == 'a') ADVANCE(3039); END_STATE(); - case 3029: + case 3064: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); + lookahead == 'a') ADVANCE(3039); END_STATE(); - case 3030: + case 3065: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3002); + lookahead == 'n') ADVANCE(3037); END_STATE(); - case 3031: + case 3066: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '-') ADVANCE(3078); - if (lookahead == '_') ADVANCE(3040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3040); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '-') ADVANCE(3113); + if (lookahead == '_') ADVANCE(3075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3075); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3032: + case 3067: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '-') ADVANCE(3079); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '-') ADVANCE(3114); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3033: + case 3068: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(3076); + if (lookahead == '.') ADVANCE(3111); if (lookahead == '+' || - lookahead == '-') ADVANCE(3034); + lookahead == '-') ADVANCE(3069); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3085); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'z') ADVANCE(3120); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3034: + case 3069: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '2') ADVANCE(3068); + if (lookahead == '2') ADVANCE(3103); if (lookahead == '0' || - lookahead == '1') ADVANCE(3077); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == '1') ADVANCE(3112); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3035: + case 3070: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(3069); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3071); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == ':') ADVANCE(3104); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3106); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3036: + case 3071: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(3081); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == ':') ADVANCE(3116); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3037: + case 3072: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(3083); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == ':') ADVANCE(3118); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3038: + case 3073: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'T') ADVANCE(3080); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 'T') ADVANCE(3115); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3039: + case 3074: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3040); - if (lookahead == 'b') ADVANCE(1810); - if (lookahead == 'o') ADVANCE(1813); - if (lookahead == 'x') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3042); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(3075); + if (lookahead == 'b') ADVANCE(1843); + if (lookahead == 'o') ADVANCE(1846); + if (lookahead == 'x') ADVANCE(1849); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3077); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3040: + case 3075: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3040); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(3075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3075); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3041: + case 3076: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3031); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(3075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3066); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3042: + case 3077: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3041); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(3075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3076); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3043: + case 3078: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3042); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(3075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3077); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3044: + case 3079: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3045); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1500); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(3079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1512); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3045: + case 3080: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1500); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(3081); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1533); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3046: + case 3081: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1479); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == '_') ADVANCE(3081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1533); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3047: + case 3082: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'a') ADVANCE(3050); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 'a') ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3048: + case 3083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(1530); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 'e') ADVANCE(1563); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3049: + case 3084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(1538); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 'e') ADVANCE(1571); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3050: + case 3085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(3054); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 'l') ADVANCE(3089); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3051: + case 3086: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(1521); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 'l') ADVANCE(1554); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3052: + case 3087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(3051); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 'l') ADVANCE(3086); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3053: + case 3088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(3055); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 'r') ADVANCE(3090); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3054: + case 3089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 's') ADVANCE(3049); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 's') ADVANCE(3084); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3055: + case 3090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(3048); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (lookahead == 'u') ADVANCE(3083); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3056: + case 3091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(3052); + if (lookahead == 'u') ADVANCE(3087); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3062); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'a') ADVANCE(3097); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3057: + case 3092: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '+' || - lookahead == '-') ADVANCE(3034); + lookahead == '-') ADVANCE(3069); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3085); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3057); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'z') ADVANCE(3120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3092); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3058: + case 3093: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3062); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'a') ADVANCE(3097); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3059: + case 3094: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3061); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'f') ADVANCE(3096); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3060: + case 3095: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3065); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'i') ADVANCE(3100); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3061: + case 3096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3064); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'i') ADVANCE(3099); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3062: + case 3097: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3085); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'n') ADVANCE(3120); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3063: + case 3098: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3059); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'n') ADVANCE(3094); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3064: + case 3099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3060); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'n') ADVANCE(3095); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3065: + case 3100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3066); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 't') ADVANCE(3101); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3066: + case 3101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3085); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == 'y') ADVANCE(3120); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3067: + case 3102: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3067); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == '_') ADVANCE(3102); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3068: + case 3103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3035); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3070); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3069: + case 3104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3071); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3106); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3070: + case 3105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3070); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + lookahead == '_') ADVANCE(3105); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3071: + case 3106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3085); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3120); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3072: + case 3107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3032); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3067); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3073: + case 3108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3038); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3073); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3074: + case 3109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3037); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3072); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3075: + case 3110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3033); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3068); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3076: + case 3111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3057); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3092); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3077: + case 3112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3035); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3070); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3078: + case 3113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3072); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3107); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3079: + case 3114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3073); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3108); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3080: + case 3115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3074); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3109); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3081: + case 3116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3075); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3110); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3082: + case 3117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3036); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3071); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3083: + case 3118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3082); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3117); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3084: + case 3119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3084); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3119); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3085: + case 3120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3086: + case 3121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); END_STATE(); - case 3087: + case 3122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(2974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '_') ADVANCE(3009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 3088: + case 3123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(2991); + if (lookahead == 'a') ADVANCE(3026); END_STATE(); - case 3089: + case 3124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(2999); + if (lookahead == 'r') ADVANCE(3034); END_STATE(); - case 3090: + case 3125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(2990); + if (lookahead == 'u') ADVANCE(3025); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); + lookahead == 'a') ADVANCE(3039); END_STATE(); - case 3091: + case 3126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); + lookahead == 'a') ADVANCE(3039); END_STATE(); - case 3092: + case 3127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3002); + lookahead == 'n') ADVANCE(3037); END_STATE(); - case 3093: + case 3128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '#') ADVANCE(3139); - if (lookahead == '_') ADVANCE(3095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1482); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3096); + if (lookahead == '#') ADVANCE(3174); + if (lookahead == '_') ADVANCE(3130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1515); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3131); END_STATE(); - case 3094: + case 3129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '#') ADVANCE(3139); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3096); + if (lookahead == '#') ADVANCE(3174); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3131); END_STATE(); - case 3095: + case 3130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '_') ADVANCE(3095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1482); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3096); + if (lookahead == '_') ADVANCE(3130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1515); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3131); END_STATE(); - case 3096: + case 3131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3096); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3131); END_STATE(); - case 3097: + case 3132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); END_STATE(); - case 3098: + case 3133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(2974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '_') ADVANCE(3009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 3099: + case 3134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'a') ADVANCE(2991); + if (lookahead == 'a') ADVANCE(3026); END_STATE(); - case 3100: + case 3135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'r') ADVANCE(2999); + if (lookahead == 'r') ADVANCE(3034); END_STATE(); - case 3101: + case 3136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'u') ADVANCE(2990); + if (lookahead == 'u') ADVANCE(3025); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); + lookahead == 'a') ADVANCE(3039); END_STATE(); - case 3102: + case 3137: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); + lookahead == 'a') ADVANCE(3039); END_STATE(); - case 3103: + case 3138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3002); + lookahead == 'n') ADVANCE(3037); END_STATE(); - case 3104: + case 3139: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); END_STATE(); - case 3105: + case 3140: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(2954); - if (lookahead == '_') ADVANCE(2973); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(2978); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(2989); + if (lookahead == '_') ADVANCE(3008); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(3013); if (lookahead == '+' || - lookahead == '-') ADVANCE(2973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + lookahead == '-') ADVANCE(3008); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); - case 3106: + case 3141: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1679); - if (lookahead == 'I') ADVANCE(2954); - if (lookahead == 'b') ADVANCE(1676); - if (lookahead == 'i') ADVANCE(2978); + if (lookahead == 'B') ADVANCE(1712); + if (lookahead == 'I') ADVANCE(2989); + if (lookahead == 'b') ADVANCE(1709); + if (lookahead == 'i') ADVANCE(3013); END_STATE(); - case 3107: + case 3142: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1643); - if (lookahead == 'I') ADVANCE(2955); - if (lookahead == 'b') ADVANCE(1640); - if (lookahead == 'i') ADVANCE(2979); + if (lookahead == 'B') ADVANCE(1676); + if (lookahead == 'I') ADVANCE(2990); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'i') ADVANCE(3014); END_STATE(); - case 3108: + case 3143: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1619); - if (lookahead == 'I') ADVANCE(2956); - if (lookahead == 'b') ADVANCE(1616); - if (lookahead == 'i') ADVANCE(2980); + if (lookahead == 'B') ADVANCE(1652); + if (lookahead == 'I') ADVANCE(2991); + if (lookahead == 'b') ADVANCE(1649); + if (lookahead == 'i') ADVANCE(3015); END_STATE(); - case 3109: + case 3144: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1631); - if (lookahead == 'I') ADVANCE(2957); - if (lookahead == 'b') ADVANCE(1628); - if (lookahead == 'i') ADVANCE(2981); + if (lookahead == 'B') ADVANCE(1664); + if (lookahead == 'I') ADVANCE(2992); + if (lookahead == 'b') ADVANCE(1661); + if (lookahead == 'i') ADVANCE(3016); END_STATE(); - case 3110: + case 3145: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1667); - if (lookahead == 'I') ADVANCE(2958); - if (lookahead == 'b') ADVANCE(1664); - if (lookahead == 'i') ADVANCE(2982); + if (lookahead == 'B') ADVANCE(1700); + if (lookahead == 'I') ADVANCE(2993); + if (lookahead == 'b') ADVANCE(1697); + if (lookahead == 'i') ADVANCE(3017); END_STATE(); - case 3111: + case 3146: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1655); - if (lookahead == 'I') ADVANCE(2959); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'i') ADVANCE(2983); + if (lookahead == 'B') ADVANCE(1688); + if (lookahead == 'I') ADVANCE(2994); + if (lookahead == 'b') ADVANCE(1685); + if (lookahead == 'i') ADVANCE(3018); END_STATE(); - case 3112: + case 3147: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(2960); - if (lookahead == '_') ADVANCE(2973); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(2961); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(2995); + if (lookahead == '_') ADVANCE(3008); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(2996); if (lookahead == '+' || - lookahead == '-') ADVANCE(2973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + lookahead == '-') ADVANCE(3008); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1531); END_STATE(); - case 3113: + case 3148: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1673); - if (lookahead == 'I') ADVANCE(2960); - if (lookahead == 'b') ADVANCE(1670); - if (lookahead == 'i') ADVANCE(2961); + if (lookahead == 'B') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(2995); + if (lookahead == 'b') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(2996); END_STATE(); - case 3114: + case 3149: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1637); - if (lookahead == 'I') ADVANCE(2962); - if (lookahead == 'b') ADVANCE(1634); - if (lookahead == 'i') ADVANCE(2963); + if (lookahead == 'B') ADVANCE(1670); + if (lookahead == 'I') ADVANCE(2997); + if (lookahead == 'b') ADVANCE(1667); + if (lookahead == 'i') ADVANCE(2998); END_STATE(); - case 3115: + case 3150: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1613); - if (lookahead == 'I') ADVANCE(2964); - if (lookahead == 'b') ADVANCE(1610); - if (lookahead == 'i') ADVANCE(2965); + if (lookahead == 'B') ADVANCE(1646); + if (lookahead == 'I') ADVANCE(2999); + if (lookahead == 'b') ADVANCE(1643); + if (lookahead == 'i') ADVANCE(3000); END_STATE(); - case 3116: + case 3151: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1625); - if (lookahead == 'I') ADVANCE(2966); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == 'i') ADVANCE(2967); - if (lookahead == 's') ADVANCE(1583); + if (lookahead == 'B') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(3001); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'i') ADVANCE(3002); + if (lookahead == 's') ADVANCE(1616); END_STATE(); - case 3117: + case 3152: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1661); - if (lookahead == 'I') ADVANCE(2968); - if (lookahead == 'b') ADVANCE(1658); - if (lookahead == 'i') ADVANCE(2969); + if (lookahead == 'B') ADVANCE(1694); + if (lookahead == 'I') ADVANCE(3003); + if (lookahead == 'b') ADVANCE(1691); + if (lookahead == 'i') ADVANCE(3004); END_STATE(); - case 3118: + case 3153: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'B') ADVANCE(1649); - if (lookahead == 'I') ADVANCE(2970); - if (lookahead == 'b') ADVANCE(1646); - if (lookahead == 'i') ADVANCE(2971); - if (lookahead == 'r') ADVANCE(2999); + if (lookahead == 'B') ADVANCE(1682); + if (lookahead == 'I') ADVANCE(3005); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'i') ADVANCE(3006); + if (lookahead == 'r') ADVANCE(3034); END_STATE(); - case 3119: + case 3154: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(2974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1496); + if (lookahead == '_') ADVANCE(3009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1529); END_STATE(); - case 3120: + case 3155: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(2975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1562); + if (lookahead == '_') ADVANCE(3010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1595); END_STATE(); - case 3121: + case 3156: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(1562); - if (lookahead == 'b') ADVANCE(1808); - if (lookahead == 'o') ADVANCE(1811); - if (lookahead == 'x') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1557); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'b') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(1844); + if (lookahead == 'x') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1590); END_STATE(); - case 3122: + case 3157: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1557); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1590); END_STATE(); - case 3123: + case 3158: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'a') ADVANCE(3000); + if (lookahead == 'a') ADVANCE(3035); END_STATE(); - case 3124: + case 3159: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'a') ADVANCE(2991); + if (lookahead == 'a') ADVANCE(3026); END_STATE(); - case 3125: + case 3160: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(2984); + if (lookahead == 'e') ADVANCE(3019); END_STATE(); - case 3126: + case 3161: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'k') ADVANCE(1598); + if (lookahead == 'k') ADVANCE(1631); END_STATE(); - case 3127: + case 3162: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(1592); + if (lookahead == 'r') ADVANCE(1625); END_STATE(); - case 3128: + case 3163: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 's') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(2990); + if (lookahead == 's') ADVANCE(1607); + if (lookahead == 'u') ADVANCE(3025); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); + lookahead == 'a') ADVANCE(3039); END_STATE(); - case 3129: + case 3164: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 's') ADVANCE(1580); + if (lookahead == 's') ADVANCE(1613); END_STATE(); - case 3130: + case 3165: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 's') ADVANCE(1577); + if (lookahead == 's') ADVANCE(1610); END_STATE(); - case 3131: + case 3166: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3004); + lookahead == 'a') ADVANCE(3039); END_STATE(); - case 3132: + case 3167: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3002); + lookahead == 'n') ADVANCE(3037); END_STATE(); - case 3133: + case 3168: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 3134: + case 3169: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(589); - if (lookahead != 0) ADVANCE(4); + if (lookahead == '\n') ADVANCE(621); + if (lookahead != 0) ADVANCE(8); END_STATE(); - case 3135: + case 3170: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(588); + if (lookahead == '!') ADVANCE(620); END_STATE(); - case 3136: + case 3171: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == ',' || - lookahead == ':') ADVANCE(2606); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2567); + lookahead == ':') ADVANCE(2643); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2604); END_STATE(); - case 3137: + case 3172: ACCEPT_TOKEN(anon_sym_POUND); - if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1860); + if (!aux_sym__record_key_token1_character_set_1(lookahead)) ADVANCE(1893); END_STATE(); - case 3138: + case 3173: ACCEPT_TOKEN(anon_sym_POUND); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3085); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3120); END_STATE(); - case 3139: + case 3174: ACCEPT_TOKEN(anon_sym_POUND); - if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3096); + if (!aux_sym__unquoted_in_list_token3_character_set_3(lookahead)) ADVANCE(3131); END_STATE(); - case 3140: + case 3175: ACCEPT_TOKEN(anon_sym_POUND); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2606); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(2643); END_STATE(); - case 3141: + case 3176: ACCEPT_TOKEN(anon_sym_POUND); - if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1858); + if (!aux_sym_unquoted_token3_character_set_4(lookahead)) ADVANCE(1891); END_STATE(); - case 3142: + case 3177: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(3144); + lookahead != '\n') ADVANCE(3179); END_STATE(); - case 3143: + case 3178: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(3142); + if (lookahead == '#') ADVANCE(3177); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(3143); + lookahead == ' ') ADVANCE(3178); if (lookahead != 0 && - lookahead != '\n') ADVANCE(3144); + lookahead != '\n') ADVANCE(3179); END_STATE(); - case 3144: + case 3179: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(3144); + lookahead != '\n') ADVANCE(3179); END_STATE(); default: return false; @@ -65177,6143 +66606,6214 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 586}, - [2] = {.lex_state = 493}, - [3] = {.lex_state = 493}, - [4] = {.lex_state = 508}, - [5] = {.lex_state = 494}, - [6] = {.lex_state = 494}, - [7] = {.lex_state = 493}, - [8] = {.lex_state = 494}, - [9] = {.lex_state = 508}, - [10] = {.lex_state = 493}, - [11] = {.lex_state = 494}, - [12] = {.lex_state = 494}, - [13] = {.lex_state = 508}, - [14] = {.lex_state = 508}, - [15] = {.lex_state = 494}, - [16] = {.lex_state = 495}, - [17] = {.lex_state = 507}, - [18] = {.lex_state = 495}, - [19] = {.lex_state = 495}, - [20] = {.lex_state = 495}, - [21] = {.lex_state = 507}, - [22] = {.lex_state = 507}, - [23] = {.lex_state = 495}, - [24] = {.lex_state = 507}, - [25] = {.lex_state = 507}, - [26] = {.lex_state = 494}, - [27] = {.lex_state = 494}, - [28] = {.lex_state = 494}, - [29] = {.lex_state = 494}, - [30] = {.lex_state = 495}, - [31] = {.lex_state = 499}, - [32] = {.lex_state = 506}, - [33] = {.lex_state = 506}, - [34] = {.lex_state = 506}, - [35] = {.lex_state = 507}, - [36] = {.lex_state = 495}, - [37] = {.lex_state = 495}, - [38] = {.lex_state = 495}, - [39] = {.lex_state = 506}, - [40] = {.lex_state = 506}, - [41] = {.lex_state = 507}, - [42] = {.lex_state = 507}, - [43] = {.lex_state = 507}, - [44] = {.lex_state = 495}, - [45] = {.lex_state = 507}, - [46] = {.lex_state = 511}, - [47] = {.lex_state = 506}, - [48] = {.lex_state = 511}, - [49] = {.lex_state = 499}, - [50] = {.lex_state = 511}, - [51] = {.lex_state = 506}, - [52] = {.lex_state = 506}, - [53] = {.lex_state = 506}, - [54] = {.lex_state = 506}, - [55] = {.lex_state = 511}, - [56] = {.lex_state = 511}, - [57] = {.lex_state = 511}, - [58] = {.lex_state = 23}, - [59] = {.lex_state = 23}, - [60] = {.lex_state = 24}, - [61] = {.lex_state = 24}, - [62] = {.lex_state = 18}, - [63] = {.lex_state = 18}, - [64] = {.lex_state = 24}, - [65] = {.lex_state = 24}, - [66] = {.lex_state = 24}, - [67] = {.lex_state = 16}, - [68] = {.lex_state = 25}, - [69] = {.lex_state = 16}, - [70] = {.lex_state = 16}, - [71] = {.lex_state = 16}, - [72] = {.lex_state = 25}, - [73] = {.lex_state = 25}, - [74] = {.lex_state = 25}, - [75] = {.lex_state = 25}, - [76] = {.lex_state = 16}, - [77] = {.lex_state = 15}, - [78] = {.lex_state = 15}, - [79] = {.lex_state = 15}, - [80] = {.lex_state = 15}, - [81] = {.lex_state = 15}, - [82] = {.lex_state = 26}, - [83] = {.lex_state = 21}, - [84] = {.lex_state = 21}, - [85] = {.lex_state = 21}, - [86] = {.lex_state = 136}, - [87] = {.lex_state = 136}, - [88] = {.lex_state = 136}, - [89] = {.lex_state = 136}, - [90] = {.lex_state = 136}, - [91] = {.lex_state = 136}, - [92] = {.lex_state = 136}, - [93] = {.lex_state = 136}, - [94] = {.lex_state = 136}, - [95] = {.lex_state = 136}, - [96] = {.lex_state = 136}, - [97] = {.lex_state = 136}, - [98] = {.lex_state = 136}, - [99] = {.lex_state = 136}, - [100] = {.lex_state = 136}, - [101] = {.lex_state = 496}, - [102] = {.lex_state = 496}, - [103] = {.lex_state = 497}, - [104] = {.lex_state = 496}, - [105] = {.lex_state = 497}, - [106] = {.lex_state = 497}, - [107] = {.lex_state = 497}, - [108] = {.lex_state = 497}, - [109] = {.lex_state = 496}, - [110] = {.lex_state = 497}, - [111] = {.lex_state = 498}, - [112] = {.lex_state = 498}, - [113] = {.lex_state = 498}, - [114] = {.lex_state = 497}, - [115] = {.lex_state = 498}, - [116] = {.lex_state = 498}, - [117] = {.lex_state = 497}, - [118] = {.lex_state = 498}, - [119] = {.lex_state = 497}, - [120] = {.lex_state = 497}, - [121] = {.lex_state = 500}, - [122] = {.lex_state = 498}, - [123] = {.lex_state = 500}, - [124] = {.lex_state = 498}, - [125] = {.lex_state = 498}, - [126] = {.lex_state = 498}, - [127] = {.lex_state = 498}, - [128] = {.lex_state = 498}, - [129] = {.lex_state = 500}, - [130] = {.lex_state = 522}, - [131] = {.lex_state = 522}, - [132] = {.lex_state = 500}, - [133] = {.lex_state = 522}, - [134] = {.lex_state = 522}, - [135] = {.lex_state = 522}, - [136] = {.lex_state = 522}, - [137] = {.lex_state = 584}, - [138] = {.lex_state = 584}, - [139] = {.lex_state = 584}, - [140] = {.lex_state = 584}, - [141] = {.lex_state = 584}, - [142] = {.lex_state = 584}, - [143] = {.lex_state = 584}, - [144] = {.lex_state = 584}, - [145] = {.lex_state = 584}, - [146] = {.lex_state = 584}, - [147] = {.lex_state = 584}, - [148] = {.lex_state = 584}, - [149] = {.lex_state = 584}, - [150] = {.lex_state = 584}, - [151] = {.lex_state = 584}, - [152] = {.lex_state = 584}, - [153] = {.lex_state = 584}, - [154] = {.lex_state = 584}, - [155] = {.lex_state = 584}, - [156] = {.lex_state = 584}, - [157] = {.lex_state = 584}, - [158] = {.lex_state = 584}, - [159] = {.lex_state = 584}, - [160] = {.lex_state = 584}, - [161] = {.lex_state = 584}, - [162] = {.lex_state = 584}, - [163] = {.lex_state = 584}, - [164] = {.lex_state = 584}, - [165] = {.lex_state = 584}, - [166] = {.lex_state = 584}, - [167] = {.lex_state = 584}, - [168] = {.lex_state = 584}, - [169] = {.lex_state = 584}, - [170] = {.lex_state = 584}, - [171] = {.lex_state = 584}, - [172] = {.lex_state = 584}, - [173] = {.lex_state = 584}, - [174] = {.lex_state = 584}, - [175] = {.lex_state = 584}, - [176] = {.lex_state = 584}, - [177] = {.lex_state = 584}, - [178] = {.lex_state = 584}, - [179] = {.lex_state = 584}, - [180] = {.lex_state = 584}, - [181] = {.lex_state = 584}, - [182] = {.lex_state = 584}, - [183] = {.lex_state = 584}, - [184] = {.lex_state = 584}, - [185] = {.lex_state = 584}, - [186] = {.lex_state = 584}, - [187] = {.lex_state = 584}, - [188] = {.lex_state = 584}, - [189] = {.lex_state = 584}, - [190] = {.lex_state = 584}, - [191] = {.lex_state = 584}, - [192] = {.lex_state = 584}, - [193] = {.lex_state = 584}, - [194] = {.lex_state = 584}, - [195] = {.lex_state = 584}, - [196] = {.lex_state = 584}, - [197] = {.lex_state = 584}, - [198] = {.lex_state = 584}, - [199] = {.lex_state = 584}, - [200] = {.lex_state = 584}, - [201] = {.lex_state = 584}, - [202] = {.lex_state = 584}, - [203] = {.lex_state = 584}, - [204] = {.lex_state = 584}, - [205] = {.lex_state = 584}, - [206] = {.lex_state = 584}, - [207] = {.lex_state = 584}, - [208] = {.lex_state = 584}, - [209] = {.lex_state = 584}, - [210] = {.lex_state = 584}, - [211] = {.lex_state = 584}, - [212] = {.lex_state = 584}, - [213] = {.lex_state = 584}, - [214] = {.lex_state = 584}, - [215] = {.lex_state = 584}, - [216] = {.lex_state = 584}, - [217] = {.lex_state = 584}, - [218] = {.lex_state = 584}, - [219] = {.lex_state = 584}, - [220] = {.lex_state = 584}, - [221] = {.lex_state = 584}, - [222] = {.lex_state = 584}, - [223] = {.lex_state = 584}, - [224] = {.lex_state = 584}, - [225] = {.lex_state = 584}, - [226] = {.lex_state = 584}, - [227] = {.lex_state = 584}, - [228] = {.lex_state = 584}, - [229] = {.lex_state = 584}, - [230] = {.lex_state = 584}, - [231] = {.lex_state = 584}, - [232] = {.lex_state = 584}, - [233] = {.lex_state = 27}, - [234] = {.lex_state = 584}, - [235] = {.lex_state = 27}, - [236] = {.lex_state = 584}, - [237] = {.lex_state = 28}, - [238] = {.lex_state = 28}, - [239] = {.lex_state = 28}, - [240] = {.lex_state = 60}, - [241] = {.lex_state = 60}, - [242] = {.lex_state = 28}, - [243] = {.lex_state = 28}, - [244] = {.lex_state = 29}, - [245] = {.lex_state = 59}, - [246] = {.lex_state = 59}, - [247] = {.lex_state = 29}, - [248] = {.lex_state = 59}, - [249] = {.lex_state = 59}, - [250] = {.lex_state = 59}, - [251] = {.lex_state = 29}, - [252] = {.lex_state = 29}, - [253] = {.lex_state = 29}, - [254] = {.lex_state = 59}, - [255] = {.lex_state = 30}, - [256] = {.lex_state = 59}, - [257] = {.lex_state = 59}, - [258] = {.lex_state = 59}, - [259] = {.lex_state = 59}, - [260] = {.lex_state = 63}, - [261] = {.lex_state = 63}, - [262] = {.lex_state = 63}, - [263] = {.lex_state = 584}, - [264] = {.lex_state = 584}, - [265] = {.lex_state = 544}, - [266] = {.lex_state = 544}, - [267] = {.lex_state = 547}, - [268] = {.lex_state = 547}, - [269] = {.lex_state = 544}, - [270] = {.lex_state = 547}, - [271] = {.lex_state = 547}, - [272] = {.lex_state = 544}, - [273] = {.lex_state = 547}, - [274] = {.lex_state = 548}, - [275] = {.lex_state = 547}, - [276] = {.lex_state = 548}, - [277] = {.lex_state = 548}, - [278] = {.lex_state = 547}, - [279] = {.lex_state = 548}, - [280] = {.lex_state = 548}, - [281] = {.lex_state = 547}, - [282] = {.lex_state = 547}, - [283] = {.lex_state = 547}, - [284] = {.lex_state = 564}, - [285] = {.lex_state = 548}, - [286] = {.lex_state = 548}, - [287] = {.lex_state = 548}, - [288] = {.lex_state = 548}, - [289] = {.lex_state = 548}, - [290] = {.lex_state = 566}, - [291] = {.lex_state = 31}, - [292] = {.lex_state = 68}, - [293] = {.lex_state = 31}, - [294] = {.lex_state = 566}, - [295] = {.lex_state = 566}, - [296] = {.lex_state = 564}, - [297] = {.lex_state = 68}, - [298] = {.lex_state = 566}, - [299] = {.lex_state = 566}, - [300] = {.lex_state = 32}, - [301] = {.lex_state = 69}, - [302] = {.lex_state = 32}, - [303] = {.lex_state = 32}, - [304] = {.lex_state = 69}, - [305] = {.lex_state = 32}, - [306] = {.lex_state = 39}, - [307] = {.lex_state = 566}, - [308] = {.lex_state = 69}, - [309] = {.lex_state = 69}, - [310] = {.lex_state = 34}, - [311] = {.lex_state = 32}, + [1] = {.lex_state = 618}, + [2] = {.lex_state = 525}, + [3] = {.lex_state = 525}, + [4] = {.lex_state = 525}, + [5] = {.lex_state = 526}, + [6] = {.lex_state = 526}, + [7] = {.lex_state = 525}, + [8] = {.lex_state = 540}, + [9] = {.lex_state = 526}, + [10] = {.lex_state = 526}, + [11] = {.lex_state = 540}, + [12] = {.lex_state = 526}, + [13] = {.lex_state = 527}, + [14] = {.lex_state = 539}, + [15] = {.lex_state = 527}, + [16] = {.lex_state = 526}, + [17] = {.lex_state = 526}, + [18] = {.lex_state = 539}, + [19] = {.lex_state = 540}, + [20] = {.lex_state = 527}, + [21] = {.lex_state = 540}, + [22] = {.lex_state = 526}, + [23] = {.lex_state = 539}, + [24] = {.lex_state = 527}, + [25] = {.lex_state = 539}, + [26] = {.lex_state = 526}, + [27] = {.lex_state = 527}, + [28] = {.lex_state = 526}, + [29] = {.lex_state = 539}, + [30] = {.lex_state = 538}, + [31] = {.lex_state = 539}, + [32] = {.lex_state = 539}, + [33] = {.lex_state = 539}, + [34] = {.lex_state = 538}, + [35] = {.lex_state = 538}, + [36] = {.lex_state = 539}, + [37] = {.lex_state = 527}, + [38] = {.lex_state = 539}, + [39] = {.lex_state = 527}, + [40] = {.lex_state = 531}, + [41] = {.lex_state = 527}, + [42] = {.lex_state = 538}, + [43] = {.lex_state = 527}, + [44] = {.lex_state = 527}, + [45] = {.lex_state = 538}, + [46] = {.lex_state = 538}, + [47] = {.lex_state = 543}, + [48] = {.lex_state = 543}, + [49] = {.lex_state = 543}, + [50] = {.lex_state = 538}, + [51] = {.lex_state = 538}, + [52] = {.lex_state = 538}, + [53] = {.lex_state = 531}, + [54] = {.lex_state = 538}, + [55] = {.lex_state = 543}, + [56] = {.lex_state = 543}, + [57] = {.lex_state = 543}, + [58] = {.lex_state = 28}, + [59] = {.lex_state = 28}, + [60] = {.lex_state = 29}, + [61] = {.lex_state = 29}, + [62] = {.lex_state = 29}, + [63] = {.lex_state = 29}, + [64] = {.lex_state = 22}, + [65] = {.lex_state = 29}, + [66] = {.lex_state = 22}, + [67] = {.lex_state = 20}, + [68] = {.lex_state = 20}, + [69] = {.lex_state = 30}, + [70] = {.lex_state = 30}, + [71] = {.lex_state = 30}, + [72] = {.lex_state = 20}, + [73] = {.lex_state = 18}, + [74] = {.lex_state = 20}, + [75] = {.lex_state = 18}, + [76] = {.lex_state = 30}, + [77] = {.lex_state = 30}, + [78] = {.lex_state = 18}, + [79] = {.lex_state = 20}, + [80] = {.lex_state = 18}, + [81] = {.lex_state = 31}, + [82] = {.lex_state = 18}, + [83] = {.lex_state = 26}, + [84] = {.lex_state = 26}, + [85] = {.lex_state = 26}, + [86] = {.lex_state = 143}, + [87] = {.lex_state = 143}, + [88] = {.lex_state = 143}, + [89] = {.lex_state = 143}, + [90] = {.lex_state = 143}, + [91] = {.lex_state = 143}, + [92] = {.lex_state = 143}, + [93] = {.lex_state = 143}, + [94] = {.lex_state = 143}, + [95] = {.lex_state = 143}, + [96] = {.lex_state = 143}, + [97] = {.lex_state = 143}, + [98] = {.lex_state = 143}, + [99] = {.lex_state = 143}, + [100] = {.lex_state = 143}, + [101] = {.lex_state = 143}, + [102] = {.lex_state = 528}, + [103] = {.lex_state = 528}, + [104] = {.lex_state = 529}, + [105] = {.lex_state = 529}, + [106] = {.lex_state = 529}, + [107] = {.lex_state = 529}, + [108] = {.lex_state = 528}, + [109] = {.lex_state = 529}, + [110] = {.lex_state = 528}, + [111] = {.lex_state = 529}, + [112] = {.lex_state = 529}, + [113] = {.lex_state = 530}, + [114] = {.lex_state = 530}, + [115] = {.lex_state = 530}, + [116] = {.lex_state = 530}, + [117] = {.lex_state = 529}, + [118] = {.lex_state = 530}, + [119] = {.lex_state = 529}, + [120] = {.lex_state = 530}, + [121] = {.lex_state = 529}, + [122] = {.lex_state = 530}, + [123] = {.lex_state = 530}, + [124] = {.lex_state = 530}, + [125] = {.lex_state = 530}, + [126] = {.lex_state = 532}, + [127] = {.lex_state = 530}, + [128] = {.lex_state = 532}, + [129] = {.lex_state = 530}, + [130] = {.lex_state = 532}, + [131] = {.lex_state = 532}, + [132] = {.lex_state = 554}, + [133] = {.lex_state = 554}, + [134] = {.lex_state = 554}, + [135] = {.lex_state = 554}, + [136] = {.lex_state = 554}, + [137] = {.lex_state = 554}, + [138] = {.lex_state = 616}, + [139] = {.lex_state = 616}, + [140] = {.lex_state = 616}, + [141] = {.lex_state = 616}, + [142] = {.lex_state = 616}, + [143] = {.lex_state = 616}, + [144] = {.lex_state = 616}, + [145] = {.lex_state = 616}, + [146] = {.lex_state = 616}, + [147] = {.lex_state = 616}, + [148] = {.lex_state = 616}, + [149] = {.lex_state = 616}, + [150] = {.lex_state = 616}, + [151] = {.lex_state = 616}, + [152] = {.lex_state = 616}, + [153] = {.lex_state = 616}, + [154] = {.lex_state = 616}, + [155] = {.lex_state = 616}, + [156] = {.lex_state = 616}, + [157] = {.lex_state = 616}, + [158] = {.lex_state = 616}, + [159] = {.lex_state = 616}, + [160] = {.lex_state = 616}, + [161] = {.lex_state = 616}, + [162] = {.lex_state = 616}, + [163] = {.lex_state = 616}, + [164] = {.lex_state = 616}, + [165] = {.lex_state = 616}, + [166] = {.lex_state = 616}, + [167] = {.lex_state = 616}, + [168] = {.lex_state = 616}, + [169] = {.lex_state = 616}, + [170] = {.lex_state = 616}, + [171] = {.lex_state = 616}, + [172] = {.lex_state = 616}, + [173] = {.lex_state = 616}, + [174] = {.lex_state = 616}, + [175] = {.lex_state = 616}, + [176] = {.lex_state = 616}, + [177] = {.lex_state = 616}, + [178] = {.lex_state = 616}, + [179] = {.lex_state = 616}, + [180] = {.lex_state = 616}, + [181] = {.lex_state = 616}, + [182] = {.lex_state = 616}, + [183] = {.lex_state = 616}, + [184] = {.lex_state = 616}, + [185] = {.lex_state = 616}, + [186] = {.lex_state = 616}, + [187] = {.lex_state = 616}, + [188] = {.lex_state = 616}, + [189] = {.lex_state = 616}, + [190] = {.lex_state = 616}, + [191] = {.lex_state = 616}, + [192] = {.lex_state = 616}, + [193] = {.lex_state = 616}, + [194] = {.lex_state = 616}, + [195] = {.lex_state = 616}, + [196] = {.lex_state = 616}, + [197] = {.lex_state = 616}, + [198] = {.lex_state = 616}, + [199] = {.lex_state = 616}, + [200] = {.lex_state = 616}, + [201] = {.lex_state = 616}, + [202] = {.lex_state = 616}, + [203] = {.lex_state = 616}, + [204] = {.lex_state = 616}, + [205] = {.lex_state = 616}, + [206] = {.lex_state = 616}, + [207] = {.lex_state = 616}, + [208] = {.lex_state = 616}, + [209] = {.lex_state = 616}, + [210] = {.lex_state = 616}, + [211] = {.lex_state = 616}, + [212] = {.lex_state = 616}, + [213] = {.lex_state = 616}, + [214] = {.lex_state = 32}, + [215] = {.lex_state = 32}, + [216] = {.lex_state = 616}, + [217] = {.lex_state = 616}, + [218] = {.lex_state = 616}, + [219] = {.lex_state = 616}, + [220] = {.lex_state = 616}, + [221] = {.lex_state = 616}, + [222] = {.lex_state = 616}, + [223] = {.lex_state = 616}, + [224] = {.lex_state = 616}, + [225] = {.lex_state = 616}, + [226] = {.lex_state = 616}, + [227] = {.lex_state = 616}, + [228] = {.lex_state = 616}, + [229] = {.lex_state = 616}, + [230] = {.lex_state = 616}, + [231] = {.lex_state = 616}, + [232] = {.lex_state = 616}, + [233] = {.lex_state = 616}, + [234] = {.lex_state = 616}, + [235] = {.lex_state = 616}, + [236] = {.lex_state = 90}, + [237] = {.lex_state = 33}, + [238] = {.lex_state = 616}, + [239] = {.lex_state = 33}, + [240] = {.lex_state = 33}, + [241] = {.lex_state = 90}, + [242] = {.lex_state = 33}, + [243] = {.lex_state = 616}, + [244] = {.lex_state = 33}, + [245] = {.lex_state = 93}, + [246] = {.lex_state = 93}, + [247] = {.lex_state = 93}, + [248] = {.lex_state = 34}, + [249] = {.lex_state = 34}, + [250] = {.lex_state = 93}, + [251] = {.lex_state = 34}, + [252] = {.lex_state = 34}, + [253] = {.lex_state = 93}, + [254] = {.lex_state = 34}, + [255] = {.lex_state = 92}, + [256] = {.lex_state = 92}, + [257] = {.lex_state = 92}, + [258] = {.lex_state = 35}, + [259] = {.lex_state = 92}, + [260] = {.lex_state = 92}, + [261] = {.lex_state = 96}, + [262] = {.lex_state = 96}, + [263] = {.lex_state = 96}, + [264] = {.lex_state = 616}, + [265] = {.lex_state = 616}, + [266] = {.lex_state = 576}, + [267] = {.lex_state = 576}, + [268] = {.lex_state = 579}, + [269] = {.lex_state = 579}, + [270] = {.lex_state = 576}, + [271] = {.lex_state = 576}, + [272] = {.lex_state = 579}, + [273] = {.lex_state = 579}, + [274] = {.lex_state = 579}, + [275] = {.lex_state = 580}, + [276] = {.lex_state = 579}, + [277] = {.lex_state = 580}, + [278] = {.lex_state = 579}, + [279] = {.lex_state = 580}, + [280] = {.lex_state = 580}, + [281] = {.lex_state = 580}, + [282] = {.lex_state = 579}, + [283] = {.lex_state = 579}, + [284] = {.lex_state = 579}, + [285] = {.lex_state = 580}, + [286] = {.lex_state = 596}, + [287] = {.lex_state = 580}, + [288] = {.lex_state = 580}, + [289] = {.lex_state = 580}, + [290] = {.lex_state = 580}, + [291] = {.lex_state = 36}, + [292] = {.lex_state = 65}, + [293] = {.lex_state = 596}, + [294] = {.lex_state = 36}, + [295] = {.lex_state = 598}, + [296] = {.lex_state = 598}, + [297] = {.lex_state = 65}, + [298] = {.lex_state = 598}, + [299] = {.lex_state = 44}, + [300] = {.lex_state = 39}, + [301] = {.lex_state = 598}, + [302] = {.lex_state = 68}, + [303] = {.lex_state = 68}, + [304] = {.lex_state = 37}, + [305] = {.lex_state = 44}, + [306] = {.lex_state = 598}, + [307] = {.lex_state = 68}, + [308] = {.lex_state = 68}, + [309] = {.lex_state = 37}, + [310] = {.lex_state = 37}, + [311] = {.lex_state = 37}, [312] = {.lex_state = 39}, - [313] = {.lex_state = 34}, - [314] = {.lex_state = 69}, - [315] = {.lex_state = 67}, - [316] = {.lex_state = 35}, - [317] = {.lex_state = 42}, - [318] = {.lex_state = 35}, - [319] = {.lex_state = 33}, - [320] = {.lex_state = 67}, - [321] = {.lex_state = 33}, + [313] = {.lex_state = 598}, + [314] = {.lex_state = 68}, + [315] = {.lex_state = 37}, + [316] = {.lex_state = 40}, + [317] = {.lex_state = 38}, + [318] = {.lex_state = 38}, + [319] = {.lex_state = 67}, + [320] = {.lex_state = 45}, + [321] = {.lex_state = 67}, [322] = {.lex_state = 40}, - [323] = {.lex_state = 33}, + [323] = {.lex_state = 38}, [324] = {.lex_state = 40}, - [325] = {.lex_state = 33}, - [326] = {.lex_state = 40}, - [327] = {.lex_state = 40}, - [328] = {.lex_state = 67}, - [329] = {.lex_state = 42}, - [330] = {.lex_state = 35}, - [331] = {.lex_state = 35}, - [332] = {.lex_state = 33}, - [333] = {.lex_state = 40}, - [334] = {.lex_state = 35}, - [335] = {.lex_state = 67}, - [336] = {.lex_state = 513}, + [325] = {.lex_state = 40}, + [326] = {.lex_state = 67}, + [327] = {.lex_state = 547}, + [328] = {.lex_state = 45}, + [329] = {.lex_state = 547}, + [330] = {.lex_state = 38}, + [331] = {.lex_state = 47}, + [332] = {.lex_state = 45}, + [333] = {.lex_state = 67}, + [334] = {.lex_state = 40}, + [335] = {.lex_state = 45}, + [336] = {.lex_state = 45}, [337] = {.lex_state = 67}, - [338] = {.lex_state = 513}, - [339] = {.lex_state = 37}, - [340] = {.lex_state = 43}, - [341] = {.lex_state = 67}, - [342] = {.lex_state = 513}, - [343] = {.lex_state = 513}, - [344] = {.lex_state = 501}, - [345] = {.lex_state = 41}, - [346] = {.lex_state = 67}, - [347] = {.lex_state = 43}, - [348] = {.lex_state = 41}, - [349] = {.lex_state = 43}, - [350] = {.lex_state = 513}, - [351] = {.lex_state = 43}, - [352] = {.lex_state = 41}, - [353] = {.lex_state = 513}, - [354] = {.lex_state = 43}, - [355] = {.lex_state = 36}, - [356] = {.lex_state = 36}, - [357] = {.lex_state = 36}, - [358] = {.lex_state = 513}, - [359] = {.lex_state = 67}, + [338] = {.lex_state = 47}, + [339] = {.lex_state = 38}, + [340] = {.lex_state = 46}, + [341] = {.lex_state = 48}, + [342] = {.lex_state = 42}, + [343] = {.lex_state = 48}, + [344] = {.lex_state = 48}, + [345] = {.lex_state = 547}, + [346] = {.lex_state = 547}, + [347] = {.lex_state = 41}, + [348] = {.lex_state = 46}, + [349] = {.lex_state = 547}, + [350] = {.lex_state = 547}, + [351] = {.lex_state = 46}, + [352] = {.lex_state = 547}, + [353] = {.lex_state = 67}, + [354] = {.lex_state = 46}, + [355] = {.lex_state = 41}, + [356] = {.lex_state = 533}, + [357] = {.lex_state = 41}, + [358] = {.lex_state = 67}, + [359] = {.lex_state = 48}, [360] = {.lex_state = 41}, - [361] = {.lex_state = 36}, - [362] = {.lex_state = 501}, - [363] = {.lex_state = 41}, - [364] = {.lex_state = 513}, - [365] = {.lex_state = 36}, - [366] = {.lex_state = 502}, - [367] = {.lex_state = 45}, - [368] = {.lex_state = 513}, - [369] = {.lex_state = 502}, - [370] = {.lex_state = 502}, - [371] = {.lex_state = 513}, - [372] = {.lex_state = 501}, - [373] = {.lex_state = 513}, - [374] = {.lex_state = 502}, - [375] = {.lex_state = 513}, - [376] = {.lex_state = 38}, - [377] = {.lex_state = 44}, - [378] = {.lex_state = 502}, - [379] = {.lex_state = 513}, - [380] = {.lex_state = 44}, - [381] = {.lex_state = 44}, - [382] = {.lex_state = 513}, - [383] = {.lex_state = 65}, - [384] = {.lex_state = 513}, - [385] = {.lex_state = 44}, - [386] = {.lex_state = 513}, - [387] = {.lex_state = 513}, - [388] = {.lex_state = 501}, - [389] = {.lex_state = 44}, - [390] = {.lex_state = 513}, - [391] = {.lex_state = 65}, - [392] = {.lex_state = 503}, - [393] = {.lex_state = 65}, - [394] = {.lex_state = 503}, - [395] = {.lex_state = 65}, - [396] = {.lex_state = 513}, - [397] = {.lex_state = 513}, - [398] = {.lex_state = 502}, - [399] = {.lex_state = 513}, - [400] = {.lex_state = 503}, - [401] = {.lex_state = 46}, - [402] = {.lex_state = 503}, - [403] = {.lex_state = 513}, - [404] = {.lex_state = 502}, - [405] = {.lex_state = 65}, - [406] = {.lex_state = 502}, - [407] = {.lex_state = 502}, - [408] = {.lex_state = 503}, - [409] = {.lex_state = 502}, - [410] = {.lex_state = 513}, - [411] = {.lex_state = 47}, - [412] = {.lex_state = 65}, - [413] = {.lex_state = 513}, - [414] = {.lex_state = 513}, - [415] = {.lex_state = 513}, - [416] = {.lex_state = 503}, - [417] = {.lex_state = 513}, - [418] = {.lex_state = 503}, - [419] = {.lex_state = 503}, - [420] = {.lex_state = 65}, - [421] = {.lex_state = 47}, - [422] = {.lex_state = 65}, - [423] = {.lex_state = 65}, - [424] = {.lex_state = 513}, - [425] = {.lex_state = 503}, - [426] = {.lex_state = 513}, - [427] = {.lex_state = 504}, - [428] = {.lex_state = 513}, - [429] = {.lex_state = 503}, - [430] = {.lex_state = 513}, - [431] = {.lex_state = 65}, - [432] = {.lex_state = 48}, - [433] = {.lex_state = 513}, - [434] = {.lex_state = 65}, - [435] = {.lex_state = 513}, - [436] = {.lex_state = 119}, - [437] = {.lex_state = 65}, - [438] = {.lex_state = 51}, - [439] = {.lex_state = 51}, - [440] = {.lex_state = 54}, - [441] = {.lex_state = 54}, - [442] = {.lex_state = 513}, - [443] = {.lex_state = 65}, - [444] = {.lex_state = 48}, - [445] = {.lex_state = 48}, - [446] = {.lex_state = 48}, - [447] = {.lex_state = 48}, - [448] = {.lex_state = 119}, - [449] = {.lex_state = 504}, - [450] = {.lex_state = 52}, - [451] = {.lex_state = 49}, - [452] = {.lex_state = 117}, - [453] = {.lex_state = 55}, - [454] = {.lex_state = 52}, - [455] = {.lex_state = 55}, - [456] = {.lex_state = 49}, - [457] = {.lex_state = 117}, - [458] = {.lex_state = 117}, - [459] = {.lex_state = 52}, - [460] = {.lex_state = 55}, - [461] = {.lex_state = 55}, - [462] = {.lex_state = 49}, - [463] = {.lex_state = 52}, - [464] = {.lex_state = 513}, - [465] = {.lex_state = 65}, - [466] = {.lex_state = 49}, - [467] = {.lex_state = 117}, - [468] = {.lex_state = 49}, - [469] = {.lex_state = 65}, - [470] = {.lex_state = 52}, - [471] = {.lex_state = 55}, - [472] = {.lex_state = 117}, - [473] = {.lex_state = 53}, - [474] = {.lex_state = 56}, - [475] = {.lex_state = 50}, - [476] = {.lex_state = 53}, - [477] = {.lex_state = 65}, - [478] = {.lex_state = 118}, - [479] = {.lex_state = 118}, - [480] = {.lex_state = 162}, - [481] = {.lex_state = 118}, - [482] = {.lex_state = 53}, - [483] = {.lex_state = 56}, - [484] = {.lex_state = 56}, - [485] = {.lex_state = 118}, - [486] = {.lex_state = 162}, - [487] = {.lex_state = 53}, - [488] = {.lex_state = 65}, - [489] = {.lex_state = 56}, - [490] = {.lex_state = 53}, - [491] = {.lex_state = 118}, - [492] = {.lex_state = 56}, - [493] = {.lex_state = 65}, - [494] = {.lex_state = 160}, - [495] = {.lex_state = 160}, - [496] = {.lex_state = 58}, - [497] = {.lex_state = 160}, - [498] = {.lex_state = 65}, - [499] = {.lex_state = 160}, - [500] = {.lex_state = 57}, - [501] = {.lex_state = 127}, - [502] = {.lex_state = 160}, - [503] = {.lex_state = 131}, - [504] = {.lex_state = 161}, - [505] = {.lex_state = 131}, - [506] = {.lex_state = 161}, - [507] = {.lex_state = 161}, - [508] = {.lex_state = 131}, - [509] = {.lex_state = 161}, - [510] = {.lex_state = 161}, - [511] = {.lex_state = 131}, - [512] = {.lex_state = 167}, - [513] = {.lex_state = 131}, - [514] = {.lex_state = 524}, - [515] = {.lex_state = 524}, - [516] = {.lex_state = 505}, - [517] = {.lex_state = 505}, - [518] = {.lex_state = 505}, - [519] = {.lex_state = 505}, - [520] = {.lex_state = 505}, - [521] = {.lex_state = 505}, - [522] = {.lex_state = 505}, - [523] = {.lex_state = 505}, - [524] = {.lex_state = 490}, - [525] = {.lex_state = 505}, - [526] = {.lex_state = 505}, - [527] = {.lex_state = 505}, - [528] = {.lex_state = 505}, - [529] = {.lex_state = 505}, - [530] = {.lex_state = 505}, - [531] = {.lex_state = 505}, - [532] = {.lex_state = 505}, - [533] = {.lex_state = 505}, - [534] = {.lex_state = 505}, - [535] = {.lex_state = 505}, - [536] = {.lex_state = 505}, - [537] = {.lex_state = 505}, - [538] = {.lex_state = 505}, - [539] = {.lex_state = 505}, - [540] = {.lex_state = 505}, - [541] = {.lex_state = 505}, - [542] = {.lex_state = 505}, - [543] = {.lex_state = 505}, - [544] = {.lex_state = 505}, - [545] = {.lex_state = 505}, - [546] = {.lex_state = 505}, - [547] = {.lex_state = 490}, - [548] = {.lex_state = 505}, - [549] = {.lex_state = 505}, - [550] = {.lex_state = 505}, - [551] = {.lex_state = 505}, - [552] = {.lex_state = 505}, - [553] = {.lex_state = 505}, - [554] = {.lex_state = 505}, - [555] = {.lex_state = 527}, - [556] = {.lex_state = 505}, - [557] = {.lex_state = 505}, - [558] = {.lex_state = 505}, - [559] = {.lex_state = 505}, - [560] = {.lex_state = 505}, - [561] = {.lex_state = 505}, - [562] = {.lex_state = 505}, - [563] = {.lex_state = 505}, - [564] = {.lex_state = 530}, - [565] = {.lex_state = 512}, - [566] = {.lex_state = 512}, - [567] = {.lex_state = 512}, - [568] = {.lex_state = 512}, - [569] = {.lex_state = 512}, - [570] = {.lex_state = 512}, - [571] = {.lex_state = 512}, - [572] = {.lex_state = 512}, - [573] = {.lex_state = 512}, - [574] = {.lex_state = 512}, - [575] = {.lex_state = 512}, - [576] = {.lex_state = 512}, - [577] = {.lex_state = 512}, - [578] = {.lex_state = 512}, - [579] = {.lex_state = 512}, - [580] = {.lex_state = 512}, - [581] = {.lex_state = 512}, - [582] = {.lex_state = 512}, - [583] = {.lex_state = 512}, - [584] = {.lex_state = 512}, - [585] = {.lex_state = 530}, - [586] = {.lex_state = 512}, - [587] = {.lex_state = 512}, - [588] = {.lex_state = 512}, - [589] = {.lex_state = 512}, - [590] = {.lex_state = 512}, - [591] = {.lex_state = 512}, - [592] = {.lex_state = 512}, - [593] = {.lex_state = 512}, - [594] = {.lex_state = 527}, - [595] = {.lex_state = 512}, - [596] = {.lex_state = 512}, - [597] = {.lex_state = 512}, - [598] = {.lex_state = 512}, - [599] = {.lex_state = 512}, - [600] = {.lex_state = 512}, - [601] = {.lex_state = 512}, - [602] = {.lex_state = 512}, - [603] = {.lex_state = 512}, - [604] = {.lex_state = 512}, - [605] = {.lex_state = 512}, - [606] = {.lex_state = 512}, - [607] = {.lex_state = 512}, - [608] = {.lex_state = 512}, - [609] = {.lex_state = 512}, - [610] = {.lex_state = 512}, - [611] = {.lex_state = 512}, - [612] = {.lex_state = 512}, - [613] = {.lex_state = 512}, - [614] = {.lex_state = 512}, - [615] = {.lex_state = 512}, - [616] = {.lex_state = 512}, - [617] = {.lex_state = 512}, - [618] = {.lex_state = 512}, - [619] = {.lex_state = 512}, - [620] = {.lex_state = 505}, - [621] = {.lex_state = 512}, - [622] = {.lex_state = 512}, - [623] = {.lex_state = 512}, - [624] = {.lex_state = 512}, - [625] = {.lex_state = 505}, - [626] = {.lex_state = 512}, - [627] = {.lex_state = 512}, - [628] = {.lex_state = 505}, - [629] = {.lex_state = 512}, - [630] = {.lex_state = 505}, - [631] = {.lex_state = 505}, - [632] = {.lex_state = 505}, - [633] = {.lex_state = 512}, - [634] = {.lex_state = 512}, - [635] = {.lex_state = 512}, - [636] = {.lex_state = 505}, - [637] = {.lex_state = 512}, - [638] = {.lex_state = 512}, - [639] = {.lex_state = 512}, - [640] = {.lex_state = 512}, - [641] = {.lex_state = 512}, - [642] = {.lex_state = 512}, - [643] = {.lex_state = 512}, - [644] = {.lex_state = 512}, - [645] = {.lex_state = 512}, - [646] = {.lex_state = 512}, - [647] = {.lex_state = 512}, - [648] = {.lex_state = 512}, - [649] = {.lex_state = 512}, - [650] = {.lex_state = 512}, - [651] = {.lex_state = 512}, - [652] = {.lex_state = 512}, - [653] = {.lex_state = 512}, - [654] = {.lex_state = 512}, - [655] = {.lex_state = 512}, - [656] = {.lex_state = 512}, - [657] = {.lex_state = 512}, - [658] = {.lex_state = 512}, - [659] = {.lex_state = 512}, - [660] = {.lex_state = 512}, - [661] = {.lex_state = 512}, - [662] = {.lex_state = 512}, - [663] = {.lex_state = 512}, - [664] = {.lex_state = 512}, - [665] = {.lex_state = 512}, - [666] = {.lex_state = 512}, - [667] = {.lex_state = 512}, - [668] = {.lex_state = 512}, - [669] = {.lex_state = 512}, - [670] = {.lex_state = 512}, - [671] = {.lex_state = 512}, - [672] = {.lex_state = 512}, - [673] = {.lex_state = 512}, - [674] = {.lex_state = 512}, - [675] = {.lex_state = 512}, - [676] = {.lex_state = 512}, - [677] = {.lex_state = 512}, - [678] = {.lex_state = 512}, - [679] = {.lex_state = 512}, - [680] = {.lex_state = 512}, - [681] = {.lex_state = 512}, - [682] = {.lex_state = 512}, - [683] = {.lex_state = 512}, - [684] = {.lex_state = 512}, - [685] = {.lex_state = 512}, - [686] = {.lex_state = 512}, - [687] = {.lex_state = 512}, - [688] = {.lex_state = 512}, - [689] = {.lex_state = 512}, - [690] = {.lex_state = 512}, - [691] = {.lex_state = 512}, - [692] = {.lex_state = 512}, - [693] = {.lex_state = 512}, - [694] = {.lex_state = 512}, - [695] = {.lex_state = 512}, - [696] = {.lex_state = 512}, - [697] = {.lex_state = 512}, - [698] = {.lex_state = 512}, - [699] = {.lex_state = 512}, - [700] = {.lex_state = 89}, - [701] = {.lex_state = 190}, - [702] = {.lex_state = 190}, - [703] = {.lex_state = 17}, - [704] = {.lex_state = 5}, - [705] = {.lex_state = 17}, - [706] = {.lex_state = 17}, - [707] = {.lex_state = 17}, - [708] = {.lex_state = 17}, - [709] = {.lex_state = 17}, - [710] = {.lex_state = 190}, - [711] = {.lex_state = 17}, - [712] = {.lex_state = 190}, - [713] = {.lex_state = 190}, - [714] = {.lex_state = 17}, - [715] = {.lex_state = 17}, - [716] = {.lex_state = 17}, - [717] = {.lex_state = 190}, - [718] = {.lex_state = 17}, - [719] = {.lex_state = 17}, - [720] = {.lex_state = 17}, - [721] = {.lex_state = 17}, - [722] = {.lex_state = 17}, - [723] = {.lex_state = 190}, - [724] = {.lex_state = 190}, - [725] = {.lex_state = 190}, - [726] = {.lex_state = 14}, - [727] = {.lex_state = 190}, - [728] = {.lex_state = 14}, - [729] = {.lex_state = 190}, - [730] = {.lex_state = 190}, - [731] = {.lex_state = 14}, - [732] = {.lex_state = 14}, - [733] = {.lex_state = 17}, - [734] = {.lex_state = 98}, - [735] = {.lex_state = 17}, - [736] = {.lex_state = 17}, - [737] = {.lex_state = 115}, - [738] = {.lex_state = 17}, - [739] = {.lex_state = 17}, - [740] = {.lex_state = 190}, - [741] = {.lex_state = 17}, - [742] = {.lex_state = 190}, - [743] = {.lex_state = 190}, - [744] = {.lex_state = 190}, - [745] = {.lex_state = 17}, - [746] = {.lex_state = 22}, - [747] = {.lex_state = 22}, - [748] = {.lex_state = 22}, - [749] = {.lex_state = 22}, - [750] = {.lex_state = 22}, - [751] = {.lex_state = 22}, - [752] = {.lex_state = 22}, - [753] = {.lex_state = 22}, - [754] = {.lex_state = 22}, - [755] = {.lex_state = 22}, - [756] = {.lex_state = 22}, - [757] = {.lex_state = 22}, - [758] = {.lex_state = 22}, - [759] = {.lex_state = 22}, - [760] = {.lex_state = 22}, - [761] = {.lex_state = 22}, - [762] = {.lex_state = 22}, - [763] = {.lex_state = 22}, - [764] = {.lex_state = 22}, - [765] = {.lex_state = 22}, - [766] = {.lex_state = 22}, - [767] = {.lex_state = 22}, - [768] = {.lex_state = 22}, - [769] = {.lex_state = 22}, - [770] = {.lex_state = 22}, - [771] = {.lex_state = 22}, - [772] = {.lex_state = 22}, - [773] = {.lex_state = 22}, - [774] = {.lex_state = 22}, - [775] = {.lex_state = 22}, - [776] = {.lex_state = 22}, - [777] = {.lex_state = 22}, - [778] = {.lex_state = 22}, - [779] = {.lex_state = 22}, - [780] = {.lex_state = 22}, - [781] = {.lex_state = 22}, - [782] = {.lex_state = 22}, - [783] = {.lex_state = 22}, - [784] = {.lex_state = 22}, - [785] = {.lex_state = 22}, - [786] = {.lex_state = 22}, - [787] = {.lex_state = 22}, - [788] = {.lex_state = 22}, - [789] = {.lex_state = 22}, - [790] = {.lex_state = 22}, - [791] = {.lex_state = 22}, - [792] = {.lex_state = 22}, - [793] = {.lex_state = 22}, - [794] = {.lex_state = 22}, - [795] = {.lex_state = 22}, - [796] = {.lex_state = 22}, - [797] = {.lex_state = 22}, - [798] = {.lex_state = 22}, - [799] = {.lex_state = 22}, - [800] = {.lex_state = 22}, - [801] = {.lex_state = 22}, - [802] = {.lex_state = 22}, - [803] = {.lex_state = 22}, - [804] = {.lex_state = 22}, - [805] = {.lex_state = 22}, - [806] = {.lex_state = 22}, - [807] = {.lex_state = 22}, - [808] = {.lex_state = 22}, - [809] = {.lex_state = 138}, - [810] = {.lex_state = 138}, - [811] = {.lex_state = 138}, - [812] = {.lex_state = 138}, - [813] = {.lex_state = 138}, - [814] = {.lex_state = 138}, - [815] = {.lex_state = 138}, - [816] = {.lex_state = 138}, - [817] = {.lex_state = 138}, - [818] = {.lex_state = 138}, - [819] = {.lex_state = 138}, - [820] = {.lex_state = 138}, - [821] = {.lex_state = 138}, - [822] = {.lex_state = 138}, - [823] = {.lex_state = 138}, - [824] = {.lex_state = 138}, - [825] = {.lex_state = 138}, - [826] = {.lex_state = 138}, - [827] = {.lex_state = 138}, - [828] = {.lex_state = 138}, - [829] = {.lex_state = 138}, - [830] = {.lex_state = 138}, - [831] = {.lex_state = 138}, - [832] = {.lex_state = 138}, - [833] = {.lex_state = 138}, - [834] = {.lex_state = 138}, - [835] = {.lex_state = 138}, - [836] = {.lex_state = 571}, - [837] = {.lex_state = 571}, - [838] = {.lex_state = 571}, - [839] = {.lex_state = 571}, - [840] = {.lex_state = 571}, - [841] = {.lex_state = 571}, - [842] = {.lex_state = 571}, - [843] = {.lex_state = 525}, - [844] = {.lex_state = 571}, - [845] = {.lex_state = 571}, - [846] = {.lex_state = 571}, - [847] = {.lex_state = 571}, - [848] = {.lex_state = 571}, - [849] = {.lex_state = 571}, - [850] = {.lex_state = 571}, - [851] = {.lex_state = 571}, - [852] = {.lex_state = 571}, - [853] = {.lex_state = 571}, - [854] = {.lex_state = 571}, - [855] = {.lex_state = 571}, - [856] = {.lex_state = 525}, - [857] = {.lex_state = 571}, - [858] = {.lex_state = 571}, - [859] = {.lex_state = 571}, - [860] = {.lex_state = 571}, - [861] = {.lex_state = 571}, - [862] = {.lex_state = 571}, - [863] = {.lex_state = 571}, - [864] = {.lex_state = 491}, - [865] = {.lex_state = 571}, - [866] = {.lex_state = 520}, - [867] = {.lex_state = 568}, - [868] = {.lex_state = 520}, - [869] = {.lex_state = 520}, - [870] = {.lex_state = 535}, - [871] = {.lex_state = 520}, - [872] = {.lex_state = 568}, - [873] = {.lex_state = 568}, - [874] = {.lex_state = 571}, - [875] = {.lex_state = 571}, - [876] = {.lex_state = 568}, - [877] = {.lex_state = 535}, - [878] = {.lex_state = 569}, - [879] = {.lex_state = 520}, - [880] = {.lex_state = 571}, - [881] = {.lex_state = 571}, - [882] = {.lex_state = 2}, - [883] = {.lex_state = 520}, - [884] = {.lex_state = 571}, - [885] = {.lex_state = 571}, - [886] = {.lex_state = 520}, - [887] = {.lex_state = 520}, - [888] = {.lex_state = 520}, - [889] = {.lex_state = 535}, - [890] = {.lex_state = 520}, - [891] = {.lex_state = 520}, - [892] = {.lex_state = 568}, - [893] = {.lex_state = 571}, - [894] = {.lex_state = 520}, - [895] = {.lex_state = 520}, - [896] = {.lex_state = 571}, - [897] = {.lex_state = 520}, - [898] = {.lex_state = 520}, - [899] = {.lex_state = 571}, - [900] = {.lex_state = 520}, - [901] = {.lex_state = 520}, - [902] = {.lex_state = 568}, - [903] = {.lex_state = 520}, - [904] = {.lex_state = 520}, - [905] = {.lex_state = 520}, - [906] = {.lex_state = 520}, - [907] = {.lex_state = 535}, - [908] = {.lex_state = 519}, - [909] = {.lex_state = 535}, - [910] = {.lex_state = 568}, - [911] = {.lex_state = 568}, - [912] = {.lex_state = 520}, - [913] = {.lex_state = 519}, - [914] = {.lex_state = 568}, - [915] = {.lex_state = 520}, - [916] = {.lex_state = 520}, - [917] = {.lex_state = 568}, - [918] = {.lex_state = 534}, - [919] = {.lex_state = 568}, - [920] = {.lex_state = 568}, - [921] = {.lex_state = 535}, - [922] = {.lex_state = 568}, - [923] = {.lex_state = 568}, - [924] = {.lex_state = 520}, - [925] = {.lex_state = 520}, - [926] = {.lex_state = 520}, - [927] = {.lex_state = 520}, - [928] = {.lex_state = 569}, - [929] = {.lex_state = 491}, - [930] = {.lex_state = 520}, - [931] = {.lex_state = 519}, - [932] = {.lex_state = 520}, - [933] = {.lex_state = 568}, - [934] = {.lex_state = 519}, - [935] = {.lex_state = 520}, - [936] = {.lex_state = 568}, - [937] = {.lex_state = 557}, - [938] = {.lex_state = 557}, - [939] = {.lex_state = 519}, - [940] = {.lex_state = 557}, - [941] = {.lex_state = 543}, - [942] = {.lex_state = 528}, - [943] = {.lex_state = 519}, - [944] = {.lex_state = 520}, - [945] = {.lex_state = 519}, - [946] = {.lex_state = 568}, - [947] = {.lex_state = 557}, - [948] = {.lex_state = 552}, - [949] = {.lex_state = 552}, - [950] = {.lex_state = 520}, - [951] = {.lex_state = 531}, - [952] = {.lex_state = 520}, - [953] = {.lex_state = 520}, - [954] = {.lex_state = 557}, - [955] = {.lex_state = 534}, - [956] = {.lex_state = 520}, - [957] = {.lex_state = 568}, - [958] = {.lex_state = 519}, - [959] = {.lex_state = 520}, - [960] = {.lex_state = 568}, - [961] = {.lex_state = 523}, - [962] = {.lex_state = 523}, - [963] = {.lex_state = 552}, - [964] = {.lex_state = 531}, - [965] = {.lex_state = 520}, - [966] = {.lex_state = 523}, - [967] = {.lex_state = 523}, - [968] = {.lex_state = 523}, - [969] = {.lex_state = 523}, - [970] = {.lex_state = 523}, - [971] = {.lex_state = 557}, - [972] = {.lex_state = 557}, - [973] = {.lex_state = 557}, - [974] = {.lex_state = 523}, - [975] = {.lex_state = 523}, - [976] = {.lex_state = 523}, - [977] = {.lex_state = 520}, - [978] = {.lex_state = 523}, - [979] = {.lex_state = 523}, - [980] = {.lex_state = 523}, - [981] = {.lex_state = 520}, - [982] = {.lex_state = 523}, - [983] = {.lex_state = 533}, - [984] = {.lex_state = 520}, - [985] = {.lex_state = 523}, - [986] = {.lex_state = 523}, - [987] = {.lex_state = 520}, - [988] = {.lex_state = 523}, - [989] = {.lex_state = 523}, - [990] = {.lex_state = 523}, - [991] = {.lex_state = 523}, - [992] = {.lex_state = 523}, - [993] = {.lex_state = 523}, - [994] = {.lex_state = 523}, - [995] = {.lex_state = 523}, - [996] = {.lex_state = 523}, - [997] = {.lex_state = 523}, - [998] = {.lex_state = 523}, - [999] = {.lex_state = 523}, - [1000] = {.lex_state = 523}, - [1001] = {.lex_state = 523}, - [1002] = {.lex_state = 528}, - [1003] = {.lex_state = 523}, - [1004] = {.lex_state = 523}, - [1005] = {.lex_state = 523}, - [1006] = {.lex_state = 523}, - [1007] = {.lex_state = 523}, - [1008] = {.lex_state = 557}, - [1009] = {.lex_state = 523}, - [1010] = {.lex_state = 523}, - [1011] = {.lex_state = 523}, - [1012] = {.lex_state = 543}, - [1013] = {.lex_state = 523}, - [1014] = {.lex_state = 523}, - [1015] = {.lex_state = 523}, - [1016] = {.lex_state = 523}, - [1017] = {.lex_state = 520}, - [1018] = {.lex_state = 523}, - [1019] = {.lex_state = 557}, - [1020] = {.lex_state = 523}, - [1021] = {.lex_state = 523}, - [1022] = {.lex_state = 523}, - [1023] = {.lex_state = 523}, - [1024] = {.lex_state = 523}, - [1025] = {.lex_state = 523}, - [1026] = {.lex_state = 523}, - [1027] = {.lex_state = 523}, - [1028] = {.lex_state = 523}, - [1029] = {.lex_state = 520}, - [1030] = {.lex_state = 523}, - [1031] = {.lex_state = 523}, - [1032] = {.lex_state = 523}, - [1033] = {.lex_state = 523}, - [1034] = {.lex_state = 523}, - [1035] = {.lex_state = 523}, - [1036] = {.lex_state = 523}, - [1037] = {.lex_state = 523}, - [1038] = {.lex_state = 523}, - [1039] = {.lex_state = 523}, - [1040] = {.lex_state = 523}, - [1041] = {.lex_state = 538}, - [1042] = {.lex_state = 523}, - [1043] = {.lex_state = 538}, - [1044] = {.lex_state = 523}, - [1045] = {.lex_state = 523}, - [1046] = {.lex_state = 523}, - [1047] = {.lex_state = 523}, - [1048] = {.lex_state = 523}, - [1049] = {.lex_state = 523}, - [1050] = {.lex_state = 523}, - [1051] = {.lex_state = 523}, - [1052] = {.lex_state = 523}, - [1053] = {.lex_state = 523}, - [1054] = {.lex_state = 523}, - [1055] = {.lex_state = 541}, - [1056] = {.lex_state = 523}, - [1057] = {.lex_state = 523}, - [1058] = {.lex_state = 523}, - [1059] = {.lex_state = 523}, - [1060] = {.lex_state = 523}, - [1061] = {.lex_state = 523}, - [1062] = {.lex_state = 523}, - [1063] = {.lex_state = 538}, - [1064] = {.lex_state = 523}, - [1065] = {.lex_state = 523}, - [1066] = {.lex_state = 523}, - [1067] = {.lex_state = 523}, - [1068] = {.lex_state = 523}, - [1069] = {.lex_state = 523}, - [1070] = {.lex_state = 523}, - [1071] = {.lex_state = 523}, - [1072] = {.lex_state = 523}, - [1073] = {.lex_state = 523}, - [1074] = {.lex_state = 523}, - [1075] = {.lex_state = 523}, - [1076] = {.lex_state = 538}, - [1077] = {.lex_state = 538}, - [1078] = {.lex_state = 523}, - [1079] = {.lex_state = 533}, - [1080] = {.lex_state = 523}, - [1081] = {.lex_state = 523}, - [1082] = {.lex_state = 538}, - [1083] = {.lex_state = 538}, - [1084] = {.lex_state = 538}, - [1085] = {.lex_state = 523}, - [1086] = {.lex_state = 523}, - [1087] = {.lex_state = 523}, - [1088] = {.lex_state = 523}, - [1089] = {.lex_state = 523}, - [1090] = {.lex_state = 538}, - [1091] = {.lex_state = 523}, - [1092] = {.lex_state = 523}, - [1093] = {.lex_state = 523}, - [1094] = {.lex_state = 523}, - [1095] = {.lex_state = 523}, - [1096] = {.lex_state = 523}, - [1097] = {.lex_state = 542}, - [1098] = {.lex_state = 523}, - [1099] = {.lex_state = 523}, - [1100] = {.lex_state = 523}, - [1101] = {.lex_state = 523}, - [1102] = {.lex_state = 523}, - [1103] = {.lex_state = 523}, - [1104] = {.lex_state = 523}, - [1105] = {.lex_state = 523}, - [1106] = {.lex_state = 523}, - [1107] = {.lex_state = 523}, - [1108] = {.lex_state = 523}, - [1109] = {.lex_state = 523}, - [1110] = {.lex_state = 538}, - [1111] = {.lex_state = 523}, - [1112] = {.lex_state = 523}, - [1113] = {.lex_state = 523}, - [1114] = {.lex_state = 523}, - [1115] = {.lex_state = 523}, - [1116] = {.lex_state = 523}, - [1117] = {.lex_state = 541}, - [1118] = {.lex_state = 538}, - [1119] = {.lex_state = 540}, - [1120] = {.lex_state = 156}, - [1121] = {.lex_state = 156}, - [1122] = {.lex_state = 170}, - [1123] = {.lex_state = 540}, - [1124] = {.lex_state = 156}, - [1125] = {.lex_state = 156}, - [1126] = {.lex_state = 537}, - [1127] = {.lex_state = 540}, - [1128] = {.lex_state = 535}, - [1129] = {.lex_state = 538}, - [1130] = {.lex_state = 540}, - [1131] = {.lex_state = 170}, - [1132] = {.lex_state = 538}, - [1133] = {.lex_state = 538}, - [1134] = {.lex_state = 538}, - [1135] = {.lex_state = 541}, - [1136] = {.lex_state = 170}, - [1137] = {.lex_state = 540}, - [1138] = {.lex_state = 156}, - [1139] = {.lex_state = 170}, - [1140] = {.lex_state = 156}, - [1141] = {.lex_state = 156}, - [1142] = {.lex_state = 156}, - [1143] = {.lex_state = 538}, - [1144] = {.lex_state = 538}, - [1145] = {.lex_state = 538}, - [1146] = {.lex_state = 156}, - [1147] = {.lex_state = 170}, - [1148] = {.lex_state = 540}, - [1149] = {.lex_state = 170}, - [1150] = {.lex_state = 561}, - [1151] = {.lex_state = 538}, - [1152] = {.lex_state = 540}, - [1153] = {.lex_state = 561}, - [1154] = {.lex_state = 538}, - [1155] = {.lex_state = 156}, - [1156] = {.lex_state = 156}, - [1157] = {.lex_state = 156}, - [1158] = {.lex_state = 542}, - [1159] = {.lex_state = 558}, - [1160] = {.lex_state = 538}, - [1161] = {.lex_state = 156}, - [1162] = {.lex_state = 156}, - [1163] = {.lex_state = 541}, - [1164] = {.lex_state = 156}, - [1165] = {.lex_state = 156}, - [1166] = {.lex_state = 156}, - [1167] = {.lex_state = 538}, - [1168] = {.lex_state = 576}, - [1169] = {.lex_state = 538}, - [1170] = {.lex_state = 538}, - [1171] = {.lex_state = 156}, - [1172] = {.lex_state = 156}, - [1173] = {.lex_state = 538}, - [1174] = {.lex_state = 538}, - [1175] = {.lex_state = 156}, - [1176] = {.lex_state = 555}, - [1177] = {.lex_state = 535}, - [1178] = {.lex_state = 535}, - [1179] = {.lex_state = 558}, - [1180] = {.lex_state = 538}, - [1181] = {.lex_state = 538}, - [1182] = {.lex_state = 538}, - [1183] = {.lex_state = 540}, - [1184] = {.lex_state = 538}, - [1185] = {.lex_state = 535}, - [1186] = {.lex_state = 538}, - [1187] = {.lex_state = 540}, - [1188] = {.lex_state = 535}, - [1189] = {.lex_state = 535}, - [1190] = {.lex_state = 535}, - [1191] = {.lex_state = 538}, - [1192] = {.lex_state = 557}, - [1193] = {.lex_state = 538}, - [1194] = {.lex_state = 538}, - [1195] = {.lex_state = 535}, - [1196] = {.lex_state = 130}, - [1197] = {.lex_state = 538}, - [1198] = {.lex_state = 538}, - [1199] = {.lex_state = 538}, - [1200] = {.lex_state = 538}, - [1201] = {.lex_state = 538}, - [1202] = {.lex_state = 540}, - [1203] = {.lex_state = 538}, - [1204] = {.lex_state = 538}, - [1205] = {.lex_state = 538}, - [1206] = {.lex_state = 540}, - [1207] = {.lex_state = 555}, - [1208] = {.lex_state = 540}, - [1209] = {.lex_state = 555}, - [1210] = {.lex_state = 535}, - [1211] = {.lex_state = 535}, - [1212] = {.lex_state = 576}, - [1213] = {.lex_state = 540}, - [1214] = {.lex_state = 535}, - [1215] = {.lex_state = 557}, - [1216] = {.lex_state = 538}, - [1217] = {.lex_state = 130}, - [1218] = {.lex_state = 557}, - [1219] = {.lex_state = 535}, - [1220] = {.lex_state = 535}, - [1221] = {.lex_state = 557}, - [1222] = {.lex_state = 538}, - [1223] = {.lex_state = 535}, - [1224] = {.lex_state = 142}, - [1225] = {.lex_state = 577}, - [1226] = {.lex_state = 535}, - [1227] = {.lex_state = 562}, - [1228] = {.lex_state = 561}, - [1229] = {.lex_state = 561}, - [1230] = {.lex_state = 535}, - [1231] = {.lex_state = 540}, - [1232] = {.lex_state = 535}, - [1233] = {.lex_state = 535}, - [1234] = {.lex_state = 535}, - [1235] = {.lex_state = 535}, - [1236] = {.lex_state = 537}, - [1237] = {.lex_state = 535}, - [1238] = {.lex_state = 538}, - [1239] = {.lex_state = 535}, - [1240] = {.lex_state = 538}, - [1241] = {.lex_state = 535}, - [1242] = {.lex_state = 535}, - [1243] = {.lex_state = 535}, - [1244] = {.lex_state = 171}, - [1245] = {.lex_state = 535}, - [1246] = {.lex_state = 535}, - [1247] = {.lex_state = 171}, - [1248] = {.lex_state = 535}, - [1249] = {.lex_state = 577}, - [1250] = {.lex_state = 535}, - [1251] = {.lex_state = 171}, - [1252] = {.lex_state = 538}, - [1253] = {.lex_state = 535}, - [1254] = {.lex_state = 535}, - [1255] = {.lex_state = 535}, - [1256] = {.lex_state = 535}, - [1257] = {.lex_state = 535}, - [1258] = {.lex_state = 535}, - [1259] = {.lex_state = 538}, - [1260] = {.lex_state = 535}, - [1261] = {.lex_state = 535}, - [1262] = {.lex_state = 569}, - [1263] = {.lex_state = 569}, - [1264] = {.lex_state = 569}, - [1265] = {.lex_state = 569}, - [1266] = {.lex_state = 535}, - [1267] = {.lex_state = 535}, - [1268] = {.lex_state = 171}, - [1269] = {.lex_state = 171}, - [1270] = {.lex_state = 538}, - [1271] = {.lex_state = 538}, - [1272] = {.lex_state = 538}, - [1273] = {.lex_state = 535}, - [1274] = {.lex_state = 535}, - [1275] = {.lex_state = 555}, - [1276] = {.lex_state = 535}, - [1277] = {.lex_state = 535}, - [1278] = {.lex_state = 535}, - [1279] = {.lex_state = 535}, - [1280] = {.lex_state = 535}, - [1281] = {.lex_state = 569}, - [1282] = {.lex_state = 535}, - [1283] = {.lex_state = 535}, - [1284] = {.lex_state = 555}, - [1285] = {.lex_state = 535}, - [1286] = {.lex_state = 535}, - [1287] = {.lex_state = 555}, - [1288] = {.lex_state = 535}, - [1289] = {.lex_state = 535}, - [1290] = {.lex_state = 535}, - [1291] = {.lex_state = 535}, - [1292] = {.lex_state = 535}, - [1293] = {.lex_state = 535}, - [1294] = {.lex_state = 535}, - [1295] = {.lex_state = 535}, - [1296] = {.lex_state = 535}, - [1297] = {.lex_state = 535}, - [1298] = {.lex_state = 569}, - [1299] = {.lex_state = 569}, - [1300] = {.lex_state = 535}, - [1301] = {.lex_state = 535}, - [1302] = {.lex_state = 535}, - [1303] = {.lex_state = 535}, - [1304] = {.lex_state = 535}, - [1305] = {.lex_state = 535}, - [1306] = {.lex_state = 535}, - [1307] = {.lex_state = 535}, - [1308] = {.lex_state = 535}, - [1309] = {.lex_state = 535}, - [1310] = {.lex_state = 535}, - [1311] = {.lex_state = 535}, - [1312] = {.lex_state = 535}, - [1313] = {.lex_state = 535}, - [1314] = {.lex_state = 535}, - [1315] = {.lex_state = 535}, - [1316] = {.lex_state = 535}, - [1317] = {.lex_state = 535}, - [1318] = {.lex_state = 535}, - [1319] = {.lex_state = 535}, - [1320] = {.lex_state = 535}, - [1321] = {.lex_state = 535}, - [1322] = {.lex_state = 535}, - [1323] = {.lex_state = 535}, - [1324] = {.lex_state = 535}, - [1325] = {.lex_state = 535}, - [1326] = {.lex_state = 535}, - [1327] = {.lex_state = 535}, - [1328] = {.lex_state = 535}, - [1329] = {.lex_state = 535}, - [1330] = {.lex_state = 535}, - [1331] = {.lex_state = 535}, - [1332] = {.lex_state = 535}, - [1333] = {.lex_state = 535}, - [1334] = {.lex_state = 535}, - [1335] = {.lex_state = 535}, - [1336] = {.lex_state = 535}, - [1337] = {.lex_state = 569}, - [1338] = {.lex_state = 569}, - [1339] = {.lex_state = 569}, - [1340] = {.lex_state = 535}, - [1341] = {.lex_state = 535}, - [1342] = {.lex_state = 535}, - [1343] = {.lex_state = 535}, - [1344] = {.lex_state = 535}, - [1345] = {.lex_state = 535}, - [1346] = {.lex_state = 535}, - [1347] = {.lex_state = 535}, - [1348] = {.lex_state = 535}, - [1349] = {.lex_state = 535}, - [1350] = {.lex_state = 535}, - [1351] = {.lex_state = 538}, - [1352] = {.lex_state = 535}, - [1353] = {.lex_state = 535}, - [1354] = {.lex_state = 569}, - [1355] = {.lex_state = 569}, - [1356] = {.lex_state = 562}, - [1357] = {.lex_state = 535}, - [1358] = {.lex_state = 569}, - [1359] = {.lex_state = 535}, - [1360] = {.lex_state = 171}, - [1361] = {.lex_state = 535}, - [1362] = {.lex_state = 535}, - [1363] = {.lex_state = 535}, - [1364] = {.lex_state = 535}, - [1365] = {.lex_state = 535}, - [1366] = {.lex_state = 535}, - [1367] = {.lex_state = 535}, - [1368] = {.lex_state = 535}, - [1369] = {.lex_state = 171}, - [1370] = {.lex_state = 569}, - [1371] = {.lex_state = 569}, - [1372] = {.lex_state = 535}, - [1373] = {.lex_state = 569}, - [1374] = {.lex_state = 569}, - [1375] = {.lex_state = 535}, - [1376] = {.lex_state = 535}, - [1377] = {.lex_state = 535}, - [1378] = {.lex_state = 535}, - [1379] = {.lex_state = 171}, - [1380] = {.lex_state = 569}, - [1381] = {.lex_state = 535}, - [1382] = {.lex_state = 535}, - [1383] = {.lex_state = 535}, - [1384] = {.lex_state = 535}, - [1385] = {.lex_state = 569}, - [1386] = {.lex_state = 535}, - [1387] = {.lex_state = 535}, - [1388] = {.lex_state = 535}, - [1389] = {.lex_state = 535}, - [1390] = {.lex_state = 535}, - [1391] = {.lex_state = 535}, - [1392] = {.lex_state = 535}, - [1393] = {.lex_state = 535}, - [1394] = {.lex_state = 535}, - [1395] = {.lex_state = 535}, - [1396] = {.lex_state = 535}, - [1397] = {.lex_state = 535}, - [1398] = {.lex_state = 538}, - [1399] = {.lex_state = 535}, - [1400] = {.lex_state = 535}, - [1401] = {.lex_state = 535}, - [1402] = {.lex_state = 535}, - [1403] = {.lex_state = 557}, - [1404] = {.lex_state = 171}, - [1405] = {.lex_state = 535}, - [1406] = {.lex_state = 535}, - [1407] = {.lex_state = 535}, - [1408] = {.lex_state = 535}, - [1409] = {.lex_state = 171}, - [1410] = {.lex_state = 535}, - [1411] = {.lex_state = 535}, - [1412] = {.lex_state = 535}, - [1413] = {.lex_state = 538}, - [1414] = {.lex_state = 538}, - [1415] = {.lex_state = 535}, - [1416] = {.lex_state = 535}, - [1417] = {.lex_state = 535}, - [1418] = {.lex_state = 535}, - [1419] = {.lex_state = 535}, - [1420] = {.lex_state = 171}, - [1421] = {.lex_state = 569}, - [1422] = {.lex_state = 569}, - [1423] = {.lex_state = 569}, - [1424] = {.lex_state = 569}, - [1425] = {.lex_state = 171}, - [1426] = {.lex_state = 535}, - [1427] = {.lex_state = 535}, - [1428] = {.lex_state = 535}, - [1429] = {.lex_state = 538}, - [1430] = {.lex_state = 557}, - [1431] = {.lex_state = 538}, - [1432] = {.lex_state = 535}, - [1433] = {.lex_state = 535}, - [1434] = {.lex_state = 538}, - [1435] = {.lex_state = 535}, - [1436] = {.lex_state = 535}, - [1437] = {.lex_state = 535}, - [1438] = {.lex_state = 535}, - [1439] = {.lex_state = 557}, - [1440] = {.lex_state = 535}, - [1441] = {.lex_state = 557}, - [1442] = {.lex_state = 535}, - [1443] = {.lex_state = 535}, - [1444] = {.lex_state = 535}, - [1445] = {.lex_state = 535}, - [1446] = {.lex_state = 535}, - [1447] = {.lex_state = 535}, - [1448] = {.lex_state = 535}, - [1449] = {.lex_state = 535}, - [1450] = {.lex_state = 535}, - [1451] = {.lex_state = 535}, - [1452] = {.lex_state = 538}, - [1453] = {.lex_state = 535}, - [1454] = {.lex_state = 535}, - [1455] = {.lex_state = 535}, - [1456] = {.lex_state = 538}, - [1457] = {.lex_state = 535}, - [1458] = {.lex_state = 535}, - [1459] = {.lex_state = 569}, - [1460] = {.lex_state = 569}, - [1461] = {.lex_state = 535}, - [1462] = {.lex_state = 535}, - [1463] = {.lex_state = 535}, - [1464] = {.lex_state = 535}, - [1465] = {.lex_state = 535}, - [1466] = {.lex_state = 535}, - [1467] = {.lex_state = 535}, - [1468] = {.lex_state = 535}, - [1469] = {.lex_state = 535}, - [1470] = {.lex_state = 535}, - [1471] = {.lex_state = 535}, - [1472] = {.lex_state = 569}, - [1473] = {.lex_state = 535}, - [1474] = {.lex_state = 535}, - [1475] = {.lex_state = 535}, - [1476] = {.lex_state = 535}, - [1477] = {.lex_state = 569}, - [1478] = {.lex_state = 535}, - [1479] = {.lex_state = 535}, - [1480] = {.lex_state = 535}, - [1481] = {.lex_state = 535}, - [1482] = {.lex_state = 535}, - [1483] = {.lex_state = 569}, - [1484] = {.lex_state = 535}, - [1485] = {.lex_state = 535}, - [1486] = {.lex_state = 535}, - [1487] = {.lex_state = 535}, - [1488] = {.lex_state = 535}, - [1489] = {.lex_state = 535}, - [1490] = {.lex_state = 535}, - [1491] = {.lex_state = 535}, - [1492] = {.lex_state = 535}, - [1493] = {.lex_state = 535}, - [1494] = {.lex_state = 535}, - [1495] = {.lex_state = 535}, - [1496] = {.lex_state = 535}, - [1497] = {.lex_state = 535}, - [1498] = {.lex_state = 535}, - [1499] = {.lex_state = 535}, - [1500] = {.lex_state = 535}, - [1501] = {.lex_state = 569}, - [1502] = {.lex_state = 569}, - [1503] = {.lex_state = 569}, - [1504] = {.lex_state = 569}, - [1505] = {.lex_state = 569}, - [1506] = {.lex_state = 535}, - [1507] = {.lex_state = 535}, - [1508] = {.lex_state = 535}, - [1509] = {.lex_state = 535}, - [1510] = {.lex_state = 535}, - [1511] = {.lex_state = 535}, - [1512] = {.lex_state = 535}, - [1513] = {.lex_state = 535}, - [1514] = {.lex_state = 535}, - [1515] = {.lex_state = 535}, - [1516] = {.lex_state = 535}, - [1517] = {.lex_state = 535}, - [1518] = {.lex_state = 535}, - [1519] = {.lex_state = 535}, - [1520] = {.lex_state = 535}, - [1521] = {.lex_state = 535}, - [1522] = {.lex_state = 535}, - [1523] = {.lex_state = 535}, - [1524] = {.lex_state = 535}, - [1525] = {.lex_state = 535}, - [1526] = {.lex_state = 535}, - [1527] = {.lex_state = 535}, - [1528] = {.lex_state = 535}, - [1529] = {.lex_state = 535}, - [1530] = {.lex_state = 535}, - [1531] = {.lex_state = 535}, - [1532] = {.lex_state = 535}, - [1533] = {.lex_state = 535}, - [1534] = {.lex_state = 535}, - [1535] = {.lex_state = 535}, - [1536] = {.lex_state = 535}, - [1537] = {.lex_state = 535}, - [1538] = {.lex_state = 569}, - [1539] = {.lex_state = 535}, - [1540] = {.lex_state = 535}, - [1541] = {.lex_state = 535}, - [1542] = {.lex_state = 535}, - [1543] = {.lex_state = 569}, - [1544] = {.lex_state = 569}, - [1545] = {.lex_state = 569}, - [1546] = {.lex_state = 535}, - [1547] = {.lex_state = 569}, - [1548] = {.lex_state = 535}, - [1549] = {.lex_state = 535}, - [1550] = {.lex_state = 535}, - [1551] = {.lex_state = 535}, - [1552] = {.lex_state = 535}, - [1553] = {.lex_state = 535}, - [1554] = {.lex_state = 535}, - [1555] = {.lex_state = 535}, - [1556] = {.lex_state = 535}, - [1557] = {.lex_state = 569}, - [1558] = {.lex_state = 569}, - [1559] = {.lex_state = 569}, - [1560] = {.lex_state = 535}, - [1561] = {.lex_state = 569}, - [1562] = {.lex_state = 535}, - [1563] = {.lex_state = 535}, - [1564] = {.lex_state = 569}, - [1565] = {.lex_state = 535}, - [1566] = {.lex_state = 569}, - [1567] = {.lex_state = 569}, - [1568] = {.lex_state = 535}, - [1569] = {.lex_state = 535}, - [1570] = {.lex_state = 535}, - [1571] = {.lex_state = 535}, - [1572] = {.lex_state = 535}, - [1573] = {.lex_state = 535}, - [1574] = {.lex_state = 535}, - [1575] = {.lex_state = 535}, - [1576] = {.lex_state = 535}, - [1577] = {.lex_state = 535}, - [1578] = {.lex_state = 535}, - [1579] = {.lex_state = 535}, - [1580] = {.lex_state = 535}, - [1581] = {.lex_state = 535}, - [1582] = {.lex_state = 535}, - [1583] = {.lex_state = 535}, - [1584] = {.lex_state = 535}, - [1585] = {.lex_state = 535}, - [1586] = {.lex_state = 569}, - [1587] = {.lex_state = 535}, - [1588] = {.lex_state = 569}, - [1589] = {.lex_state = 569}, - [1590] = {.lex_state = 535}, - [1591] = {.lex_state = 535}, - [1592] = {.lex_state = 535}, - [1593] = {.lex_state = 535}, - [1594] = {.lex_state = 535}, - [1595] = {.lex_state = 535}, - [1596] = {.lex_state = 535}, - [1597] = {.lex_state = 535}, - [1598] = {.lex_state = 535}, - [1599] = {.lex_state = 535}, - [1600] = {.lex_state = 535}, - [1601] = {.lex_state = 535}, - [1602] = {.lex_state = 535}, - [1603] = {.lex_state = 535}, - [1604] = {.lex_state = 535}, - [1605] = {.lex_state = 535}, - [1606] = {.lex_state = 535}, - [1607] = {.lex_state = 535}, - [1608] = {.lex_state = 535}, - [1609] = {.lex_state = 535}, - [1610] = {.lex_state = 569}, - [1611] = {.lex_state = 535}, - [1612] = {.lex_state = 535}, - [1613] = {.lex_state = 535}, - [1614] = {.lex_state = 535}, - [1615] = {.lex_state = 535}, - [1616] = {.lex_state = 535}, - [1617] = {.lex_state = 535}, - [1618] = {.lex_state = 535}, - [1619] = {.lex_state = 535}, - [1620] = {.lex_state = 535}, - [1621] = {.lex_state = 569}, - [1622] = {.lex_state = 535}, - [1623] = {.lex_state = 535}, - [1624] = {.lex_state = 535}, - [1625] = {.lex_state = 535}, - [1626] = {.lex_state = 535}, - [1627] = {.lex_state = 535}, - [1628] = {.lex_state = 535}, - [1629] = {.lex_state = 535}, - [1630] = {.lex_state = 535}, - [1631] = {.lex_state = 535}, - [1632] = {.lex_state = 535}, - [1633] = {.lex_state = 535}, - [1634] = {.lex_state = 535}, - [1635] = {.lex_state = 535}, - [1636] = {.lex_state = 535}, - [1637] = {.lex_state = 535}, - [1638] = {.lex_state = 535}, - [1639] = {.lex_state = 535}, - [1640] = {.lex_state = 535}, - [1641] = {.lex_state = 535}, - [1642] = {.lex_state = 535}, - [1643] = {.lex_state = 535}, - [1644] = {.lex_state = 535}, - [1645] = {.lex_state = 535}, - [1646] = {.lex_state = 535}, - [1647] = {.lex_state = 535}, - [1648] = {.lex_state = 535}, - [1649] = {.lex_state = 535}, - [1650] = {.lex_state = 535}, - [1651] = {.lex_state = 535}, - [1652] = {.lex_state = 584}, - [1653] = {.lex_state = 584}, - [1654] = {.lex_state = 90}, - [1655] = {.lex_state = 584}, - [1656] = {.lex_state = 130}, - [1657] = {.lex_state = 152}, - [1658] = {.lex_state = 152}, - [1659] = {.lex_state = 152}, - [1660] = {.lex_state = 152}, - [1661] = {.lex_state = 130}, - [1662] = {.lex_state = 130}, - [1663] = {.lex_state = 130}, - [1664] = {.lex_state = 130}, - [1665] = {.lex_state = 125}, - [1666] = {.lex_state = 130}, - [1667] = {.lex_state = 152}, - [1668] = {.lex_state = 152}, - [1669] = {.lex_state = 130}, - [1670] = {.lex_state = 125}, - [1671] = {.lex_state = 130}, - [1672] = {.lex_state = 125}, - [1673] = {.lex_state = 130}, - [1674] = {.lex_state = 153}, - [1675] = {.lex_state = 130}, - [1676] = {.lex_state = 130}, - [1677] = {.lex_state = 130}, - [1678] = {.lex_state = 130}, - [1679] = {.lex_state = 125}, - [1680] = {.lex_state = 130}, - [1681] = {.lex_state = 130}, - [1682] = {.lex_state = 130}, - [1683] = {.lex_state = 130}, - [1684] = {.lex_state = 130}, - [1685] = {.lex_state = 125}, - [1686] = {.lex_state = 130}, - [1687] = {.lex_state = 130}, - [1688] = {.lex_state = 130}, - [1689] = {.lex_state = 130}, - [1690] = {.lex_state = 152}, - [1691] = {.lex_state = 125}, - [1692] = {.lex_state = 130}, - [1693] = {.lex_state = 152}, - [1694] = {.lex_state = 130}, - [1695] = {.lex_state = 130}, - [1696] = {.lex_state = 130}, - [1697] = {.lex_state = 130}, - [1698] = {.lex_state = 152}, - [1699] = {.lex_state = 130}, - [1700] = {.lex_state = 130}, - [1701] = {.lex_state = 125}, - [1702] = {.lex_state = 153}, - [1703] = {.lex_state = 125}, - [1704] = {.lex_state = 137}, + [361] = {.lex_state = 41}, + [362] = {.lex_state = 67}, + [363] = {.lex_state = 533}, + [364] = {.lex_state = 46}, + [365] = {.lex_state = 547}, + [366] = {.lex_state = 48}, + [367] = {.lex_state = 43}, + [368] = {.lex_state = 534}, + [369] = {.lex_state = 547}, + [370] = {.lex_state = 534}, + [371] = {.lex_state = 534}, + [372] = {.lex_state = 534}, + [373] = {.lex_state = 50}, + [374] = {.lex_state = 547}, + [375] = {.lex_state = 547}, + [376] = {.lex_state = 49}, + [377] = {.lex_state = 547}, + [378] = {.lex_state = 547}, + [379] = {.lex_state = 547}, + [380] = {.lex_state = 533}, + [381] = {.lex_state = 547}, + [382] = {.lex_state = 49}, + [383] = {.lex_state = 547}, + [384] = {.lex_state = 49}, + [385] = {.lex_state = 49}, + [386] = {.lex_state = 533}, + [387] = {.lex_state = 49}, + [388] = {.lex_state = 534}, + [389] = {.lex_state = 547}, + [390] = {.lex_state = 547}, + [391] = {.lex_state = 547}, + [392] = {.lex_state = 534}, + [393] = {.lex_state = 535}, + [394] = {.lex_state = 547}, + [395] = {.lex_state = 534}, + [396] = {.lex_state = 535}, + [397] = {.lex_state = 535}, + [398] = {.lex_state = 547}, + [399] = {.lex_state = 534}, + [400] = {.lex_state = 534}, + [401] = {.lex_state = 535}, + [402] = {.lex_state = 535}, + [403] = {.lex_state = 547}, + [404] = {.lex_state = 547}, + [405] = {.lex_state = 534}, + [406] = {.lex_state = 51}, + [407] = {.lex_state = 535}, + [408] = {.lex_state = 547}, + [409] = {.lex_state = 547}, + [410] = {.lex_state = 52}, + [411] = {.lex_state = 547}, + [412] = {.lex_state = 535}, + [413] = {.lex_state = 64}, + [414] = {.lex_state = 547}, + [415] = {.lex_state = 52}, + [416] = {.lex_state = 535}, + [417] = {.lex_state = 547}, + [418] = {.lex_state = 64}, + [419] = {.lex_state = 547}, + [420] = {.lex_state = 535}, + [421] = {.lex_state = 547}, + [422] = {.lex_state = 547}, + [423] = {.lex_state = 535}, + [424] = {.lex_state = 536}, + [425] = {.lex_state = 59}, + [426] = {.lex_state = 53}, + [427] = {.lex_state = 64}, + [428] = {.lex_state = 536}, + [429] = {.lex_state = 128}, + [430] = {.lex_state = 547}, + [431] = {.lex_state = 547}, + [432] = {.lex_state = 64}, + [433] = {.lex_state = 64}, + [434] = {.lex_state = 64}, + [435] = {.lex_state = 64}, + [436] = {.lex_state = 64}, + [437] = {.lex_state = 128}, + [438] = {.lex_state = 64}, + [439] = {.lex_state = 56}, + [440] = {.lex_state = 53}, + [441] = {.lex_state = 547}, + [442] = {.lex_state = 53}, + [443] = {.lex_state = 59}, + [444] = {.lex_state = 56}, + [445] = {.lex_state = 53}, + [446] = {.lex_state = 53}, + [447] = {.lex_state = 126}, + [448] = {.lex_state = 52}, + [449] = {.lex_state = 126}, + [450] = {.lex_state = 126}, + [451] = {.lex_state = 547}, + [452] = {.lex_state = 57}, + [453] = {.lex_state = 60}, + [454] = {.lex_state = 126}, + [455] = {.lex_state = 64}, + [456] = {.lex_state = 60}, + [457] = {.lex_state = 64}, + [458] = {.lex_state = 126}, + [459] = {.lex_state = 57}, + [460] = {.lex_state = 57}, + [461] = {.lex_state = 54}, + [462] = {.lex_state = 54}, + [463] = {.lex_state = 64}, + [464] = {.lex_state = 64}, + [465] = {.lex_state = 54}, + [466] = {.lex_state = 54}, + [467] = {.lex_state = 60}, + [468] = {.lex_state = 60}, + [469] = {.lex_state = 60}, + [470] = {.lex_state = 54}, + [471] = {.lex_state = 64}, + [472] = {.lex_state = 57}, + [473] = {.lex_state = 57}, + [474] = {.lex_state = 58}, + [475] = {.lex_state = 127}, + [476] = {.lex_state = 61}, + [477] = {.lex_state = 58}, + [478] = {.lex_state = 173}, + [479] = {.lex_state = 61}, + [480] = {.lex_state = 55}, + [481] = {.lex_state = 58}, + [482] = {.lex_state = 127}, + [483] = {.lex_state = 61}, + [484] = {.lex_state = 127}, + [485] = {.lex_state = 58}, + [486] = {.lex_state = 61}, + [487] = {.lex_state = 58}, + [488] = {.lex_state = 61}, + [489] = {.lex_state = 173}, + [490] = {.lex_state = 61}, + [491] = {.lex_state = 127}, + [492] = {.lex_state = 127}, + [493] = {.lex_state = 134}, + [494] = {.lex_state = 64}, + [495] = {.lex_state = 167}, + [496] = {.lex_state = 167}, + [497] = {.lex_state = 167}, + [498] = {.lex_state = 63}, + [499] = {.lex_state = 167}, + [500] = {.lex_state = 62}, + [501] = {.lex_state = 167}, + [502] = {.lex_state = 52}, + [503] = {.lex_state = 138}, + [504] = {.lex_state = 168}, + [505] = {.lex_state = 168}, + [506] = {.lex_state = 168}, + [507] = {.lex_state = 138}, + [508] = {.lex_state = 138}, + [509] = {.lex_state = 168}, + [510] = {.lex_state = 168}, + [511] = {.lex_state = 138}, + [512] = {.lex_state = 175}, + [513] = {.lex_state = 138}, + [514] = {.lex_state = 556}, + [515] = {.lex_state = 2}, + [516] = {.lex_state = 2}, + [517] = {.lex_state = 2}, + [518] = {.lex_state = 2}, + [519] = {.lex_state = 556}, + [520] = {.lex_state = 1}, + [521] = {.lex_state = 537}, + [522] = {.lex_state = 537}, + [523] = {.lex_state = 537}, + [524] = {.lex_state = 537}, + [525] = {.lex_state = 1}, + [526] = {.lex_state = 1}, + [527] = {.lex_state = 522}, + [528] = {.lex_state = 537}, + [529] = {.lex_state = 537}, + [530] = {.lex_state = 537}, + [531] = {.lex_state = 1}, + [532] = {.lex_state = 537}, + [533] = {.lex_state = 537}, + [534] = {.lex_state = 537}, + [535] = {.lex_state = 537}, + [536] = {.lex_state = 537}, + [537] = {.lex_state = 537}, + [538] = {.lex_state = 537}, + [539] = {.lex_state = 537}, + [540] = {.lex_state = 537}, + [541] = {.lex_state = 522}, + [542] = {.lex_state = 537}, + [543] = {.lex_state = 537}, + [544] = {.lex_state = 2}, + [545] = {.lex_state = 537}, + [546] = {.lex_state = 537}, + [547] = {.lex_state = 537}, + [548] = {.lex_state = 537}, + [549] = {.lex_state = 537}, + [550] = {.lex_state = 537}, + [551] = {.lex_state = 537}, + [552] = {.lex_state = 2}, + [553] = {.lex_state = 537}, + [554] = {.lex_state = 2}, + [555] = {.lex_state = 537}, + [556] = {.lex_state = 537}, + [557] = {.lex_state = 537}, + [558] = {.lex_state = 537}, + [559] = {.lex_state = 537}, + [560] = {.lex_state = 2}, + [561] = {.lex_state = 537}, + [562] = {.lex_state = 537}, + [563] = {.lex_state = 2}, + [564] = {.lex_state = 537}, + [565] = {.lex_state = 537}, + [566] = {.lex_state = 537}, + [567] = {.lex_state = 537}, + [568] = {.lex_state = 559}, + [569] = {.lex_state = 537}, + [570] = {.lex_state = 537}, + [571] = {.lex_state = 537}, + [572] = {.lex_state = 537}, + [573] = {.lex_state = 537}, + [574] = {.lex_state = 537}, + [575] = {.lex_state = 537}, + [576] = {.lex_state = 537}, + [577] = {.lex_state = 562}, + [578] = {.lex_state = 544}, + [579] = {.lex_state = 544}, + [580] = {.lex_state = 544}, + [581] = {.lex_state = 544}, + [582] = {.lex_state = 544}, + [583] = {.lex_state = 544}, + [584] = {.lex_state = 537}, + [585] = {.lex_state = 544}, + [586] = {.lex_state = 544}, + [587] = {.lex_state = 544}, + [588] = {.lex_state = 544}, + [589] = {.lex_state = 544}, + [590] = {.lex_state = 544}, + [591] = {.lex_state = 544}, + [592] = {.lex_state = 544}, + [593] = {.lex_state = 559}, + [594] = {.lex_state = 544}, + [595] = {.lex_state = 544}, + [596] = {.lex_state = 544}, + [597] = {.lex_state = 544}, + [598] = {.lex_state = 544}, + [599] = {.lex_state = 537}, + [600] = {.lex_state = 544}, + [601] = {.lex_state = 544}, + [602] = {.lex_state = 544}, + [603] = {.lex_state = 544}, + [604] = {.lex_state = 544}, + [605] = {.lex_state = 544}, + [606] = {.lex_state = 537}, + [607] = {.lex_state = 544}, + [608] = {.lex_state = 544}, + [609] = {.lex_state = 544}, + [610] = {.lex_state = 537}, + [611] = {.lex_state = 544}, + [612] = {.lex_state = 544}, + [613] = {.lex_state = 544}, + [614] = {.lex_state = 544}, + [615] = {.lex_state = 544}, + [616] = {.lex_state = 544}, + [617] = {.lex_state = 544}, + [618] = {.lex_state = 544}, + [619] = {.lex_state = 544}, + [620] = {.lex_state = 544}, + [621] = {.lex_state = 562}, + [622] = {.lex_state = 544}, + [623] = {.lex_state = 544}, + [624] = {.lex_state = 544}, + [625] = {.lex_state = 537}, + [626] = {.lex_state = 544}, + [627] = {.lex_state = 544}, + [628] = {.lex_state = 544}, + [629] = {.lex_state = 544}, + [630] = {.lex_state = 544}, + [631] = {.lex_state = 544}, + [632] = {.lex_state = 544}, + [633] = {.lex_state = 544}, + [634] = {.lex_state = 544}, + [635] = {.lex_state = 544}, + [636] = {.lex_state = 544}, + [637] = {.lex_state = 544}, + [638] = {.lex_state = 544}, + [639] = {.lex_state = 544}, + [640] = {.lex_state = 544}, + [641] = {.lex_state = 544}, + [642] = {.lex_state = 544}, + [643] = {.lex_state = 537}, + [644] = {.lex_state = 544}, + [645] = {.lex_state = 544}, + [646] = {.lex_state = 544}, + [647] = {.lex_state = 544}, + [648] = {.lex_state = 544}, + [649] = {.lex_state = 537}, + [650] = {.lex_state = 544}, + [651] = {.lex_state = 544}, + [652] = {.lex_state = 544}, + [653] = {.lex_state = 544}, + [654] = {.lex_state = 544}, + [655] = {.lex_state = 544}, + [656] = {.lex_state = 544}, + [657] = {.lex_state = 544}, + [658] = {.lex_state = 544}, + [659] = {.lex_state = 544}, + [660] = {.lex_state = 544}, + [661] = {.lex_state = 544}, + [662] = {.lex_state = 544}, + [663] = {.lex_state = 544}, + [664] = {.lex_state = 544}, + [665] = {.lex_state = 544}, + [666] = {.lex_state = 544}, + [667] = {.lex_state = 544}, + [668] = {.lex_state = 544}, + [669] = {.lex_state = 544}, + [670] = {.lex_state = 544}, + [671] = {.lex_state = 544}, + [672] = {.lex_state = 544}, + [673] = {.lex_state = 544}, + [674] = {.lex_state = 544}, + [675] = {.lex_state = 544}, + [676] = {.lex_state = 544}, + [677] = {.lex_state = 544}, + [678] = {.lex_state = 544}, + [679] = {.lex_state = 544}, + [680] = {.lex_state = 544}, + [681] = {.lex_state = 544}, + [682] = {.lex_state = 544}, + [683] = {.lex_state = 544}, + [684] = {.lex_state = 544}, + [685] = {.lex_state = 544}, + [686] = {.lex_state = 544}, + [687] = {.lex_state = 544}, + [688] = {.lex_state = 544}, + [689] = {.lex_state = 544}, + [690] = {.lex_state = 544}, + [691] = {.lex_state = 544}, + [692] = {.lex_state = 544}, + [693] = {.lex_state = 544}, + [694] = {.lex_state = 544}, + [695] = {.lex_state = 544}, + [696] = {.lex_state = 544}, + [697] = {.lex_state = 544}, + [698] = {.lex_state = 544}, + [699] = {.lex_state = 544}, + [700] = {.lex_state = 544}, + [701] = {.lex_state = 544}, + [702] = {.lex_state = 544}, + [703] = {.lex_state = 544}, + [704] = {.lex_state = 544}, + [705] = {.lex_state = 544}, + [706] = {.lex_state = 544}, + [707] = {.lex_state = 544}, + [708] = {.lex_state = 544}, + [709] = {.lex_state = 544}, + [710] = {.lex_state = 544}, + [711] = {.lex_state = 544}, + [712] = {.lex_state = 544}, + [713] = {.lex_state = 234}, + [714] = {.lex_state = 234}, + [715] = {.lex_state = 98}, + [716] = {.lex_state = 235}, + [717] = {.lex_state = 235}, + [718] = {.lex_state = 236}, + [719] = {.lex_state = 236}, + [720] = {.lex_state = 236}, + [721] = {.lex_state = 236}, + [722] = {.lex_state = 236}, + [723] = {.lex_state = 238}, + [724] = {.lex_state = 237}, + [725] = {.lex_state = 21}, + [726] = {.lex_state = 238}, + [727] = {.lex_state = 21}, + [728] = {.lex_state = 237}, + [729] = {.lex_state = 21}, + [730] = {.lex_state = 238}, + [731] = {.lex_state = 9}, + [732] = {.lex_state = 21}, + [733] = {.lex_state = 21}, + [734] = {.lex_state = 237}, + [735] = {.lex_state = 238}, + [736] = {.lex_state = 21}, + [737] = {.lex_state = 237}, + [738] = {.lex_state = 21}, + [739] = {.lex_state = 21}, + [740] = {.lex_state = 21}, + [741] = {.lex_state = 21}, + [742] = {.lex_state = 21}, + [743] = {.lex_state = 21}, + [744] = {.lex_state = 21}, + [745] = {.lex_state = 237}, + [746] = {.lex_state = 21}, + [747] = {.lex_state = 21}, + [748] = {.lex_state = 238}, + [749] = {.lex_state = 19}, + [750] = {.lex_state = 239}, + [751] = {.lex_state = 19}, + [752] = {.lex_state = 19}, + [753] = {.lex_state = 239}, + [754] = {.lex_state = 239}, + [755] = {.lex_state = 239}, + [756] = {.lex_state = 19}, + [757] = {.lex_state = 239}, + [758] = {.lex_state = 246}, + [759] = {.lex_state = 21}, + [760] = {.lex_state = 21}, + [761] = {.lex_state = 21}, + [762] = {.lex_state = 247}, + [763] = {.lex_state = 234}, + [764] = {.lex_state = 124}, + [765] = {.lex_state = 234}, + [766] = {.lex_state = 21}, + [767] = {.lex_state = 21}, + [768] = {.lex_state = 115}, + [769] = {.lex_state = 234}, + [770] = {.lex_state = 21}, + [771] = {.lex_state = 21}, + [772] = {.lex_state = 27}, + [773] = {.lex_state = 27}, + [774] = {.lex_state = 27}, + [775] = {.lex_state = 27}, + [776] = {.lex_state = 27}, + [777] = {.lex_state = 27}, + [778] = {.lex_state = 27}, + [779] = {.lex_state = 27}, + [780] = {.lex_state = 27}, + [781] = {.lex_state = 27}, + [782] = {.lex_state = 27}, + [783] = {.lex_state = 27}, + [784] = {.lex_state = 27}, + [785] = {.lex_state = 27}, + [786] = {.lex_state = 27}, + [787] = {.lex_state = 27}, + [788] = {.lex_state = 27}, + [789] = {.lex_state = 27}, + [790] = {.lex_state = 27}, + [791] = {.lex_state = 27}, + [792] = {.lex_state = 27}, + [793] = {.lex_state = 27}, + [794] = {.lex_state = 27}, + [795] = {.lex_state = 27}, + [796] = {.lex_state = 27}, + [797] = {.lex_state = 27}, + [798] = {.lex_state = 27}, + [799] = {.lex_state = 27}, + [800] = {.lex_state = 27}, + [801] = {.lex_state = 27}, + [802] = {.lex_state = 27}, + [803] = {.lex_state = 27}, + [804] = {.lex_state = 27}, + [805] = {.lex_state = 27}, + [806] = {.lex_state = 27}, + [807] = {.lex_state = 27}, + [808] = {.lex_state = 27}, + [809] = {.lex_state = 27}, + [810] = {.lex_state = 27}, + [811] = {.lex_state = 27}, + [812] = {.lex_state = 27}, + [813] = {.lex_state = 27}, + [814] = {.lex_state = 27}, + [815] = {.lex_state = 27}, + [816] = {.lex_state = 27}, + [817] = {.lex_state = 27}, + [818] = {.lex_state = 27}, + [819] = {.lex_state = 27}, + [820] = {.lex_state = 27}, + [821] = {.lex_state = 27}, + [822] = {.lex_state = 27}, + [823] = {.lex_state = 27}, + [824] = {.lex_state = 27}, + [825] = {.lex_state = 27}, + [826] = {.lex_state = 27}, + [827] = {.lex_state = 27}, + [828] = {.lex_state = 27}, + [829] = {.lex_state = 27}, + [830] = {.lex_state = 27}, + [831] = {.lex_state = 27}, + [832] = {.lex_state = 27}, + [833] = {.lex_state = 27}, + [834] = {.lex_state = 27}, + [835] = {.lex_state = 145}, + [836] = {.lex_state = 145}, + [837] = {.lex_state = 145}, + [838] = {.lex_state = 145}, + [839] = {.lex_state = 145}, + [840] = {.lex_state = 145}, + [841] = {.lex_state = 145}, + [842] = {.lex_state = 145}, + [843] = {.lex_state = 145}, + [844] = {.lex_state = 145}, + [845] = {.lex_state = 145}, + [846] = {.lex_state = 145}, + [847] = {.lex_state = 145}, + [848] = {.lex_state = 145}, + [849] = {.lex_state = 145}, + [850] = {.lex_state = 145}, + [851] = {.lex_state = 145}, + [852] = {.lex_state = 145}, + [853] = {.lex_state = 145}, + [854] = {.lex_state = 145}, + [855] = {.lex_state = 145}, + [856] = {.lex_state = 145}, + [857] = {.lex_state = 145}, + [858] = {.lex_state = 145}, + [859] = {.lex_state = 145}, + [860] = {.lex_state = 145}, + [861] = {.lex_state = 145}, + [862] = {.lex_state = 603}, + [863] = {.lex_state = 603}, + [864] = {.lex_state = 603}, + [865] = {.lex_state = 603}, + [866] = {.lex_state = 603}, + [867] = {.lex_state = 603}, + [868] = {.lex_state = 557}, + [869] = {.lex_state = 603}, + [870] = {.lex_state = 603}, + [871] = {.lex_state = 603}, + [872] = {.lex_state = 603}, + [873] = {.lex_state = 603}, + [874] = {.lex_state = 603}, + [875] = {.lex_state = 603}, + [876] = {.lex_state = 603}, + [877] = {.lex_state = 603}, + [878] = {.lex_state = 603}, + [879] = {.lex_state = 603}, + [880] = {.lex_state = 603}, + [881] = {.lex_state = 603}, + [882] = {.lex_state = 603}, + [883] = {.lex_state = 603}, + [884] = {.lex_state = 557}, + [885] = {.lex_state = 603}, + [886] = {.lex_state = 603}, + [887] = {.lex_state = 603}, + [888] = {.lex_state = 552}, + [889] = {.lex_state = 603}, + [890] = {.lex_state = 552}, + [891] = {.lex_state = 603}, + [892] = {.lex_state = 603}, + [893] = {.lex_state = 567}, + [894] = {.lex_state = 603}, + [895] = {.lex_state = 600}, + [896] = {.lex_state = 523}, + [897] = {.lex_state = 603}, + [898] = {.lex_state = 600}, + [899] = {.lex_state = 552}, + [900] = {.lex_state = 552}, + [901] = {.lex_state = 603}, + [902] = {.lex_state = 603}, + [903] = {.lex_state = 600}, + [904] = {.lex_state = 552}, + [905] = {.lex_state = 601}, + [906] = {.lex_state = 603}, + [907] = {.lex_state = 567}, + [908] = {.lex_state = 552}, + [909] = {.lex_state = 552}, + [910] = {.lex_state = 552}, + [911] = {.lex_state = 600}, + [912] = {.lex_state = 552}, + [913] = {.lex_state = 552}, + [914] = {.lex_state = 552}, + [915] = {.lex_state = 600}, + [916] = {.lex_state = 603}, + [917] = {.lex_state = 603}, + [918] = {.lex_state = 552}, + [919] = {.lex_state = 603}, + [920] = {.lex_state = 567}, + [921] = {.lex_state = 552}, + [922] = {.lex_state = 552}, + [923] = {.lex_state = 552}, + [924] = {.lex_state = 6}, + [925] = {.lex_state = 603}, + [926] = {.lex_state = 552}, + [927] = {.lex_state = 552}, + [928] = {.lex_state = 567}, + [929] = {.lex_state = 552}, + [930] = {.lex_state = 600}, + [931] = {.lex_state = 600}, + [932] = {.lex_state = 600}, + [933] = {.lex_state = 567}, + [934] = {.lex_state = 552}, + [935] = {.lex_state = 551}, + [936] = {.lex_state = 600}, + [937] = {.lex_state = 552}, + [938] = {.lex_state = 600}, + [939] = {.lex_state = 552}, + [940] = {.lex_state = 552}, + [941] = {.lex_state = 523}, + [942] = {.lex_state = 600}, + [943] = {.lex_state = 551}, + [944] = {.lex_state = 567}, + [945] = {.lex_state = 552}, + [946] = {.lex_state = 566}, + [947] = {.lex_state = 552}, + [948] = {.lex_state = 600}, + [949] = {.lex_state = 601}, + [950] = {.lex_state = 600}, + [951] = {.lex_state = 552}, + [952] = {.lex_state = 600}, + [953] = {.lex_state = 552}, + [954] = {.lex_state = 552}, + [955] = {.lex_state = 551}, + [956] = {.lex_state = 552}, + [957] = {.lex_state = 600}, + [958] = {.lex_state = 552}, + [959] = {.lex_state = 551}, + [960] = {.lex_state = 552}, + [961] = {.lex_state = 575}, + [962] = {.lex_state = 600}, + [963] = {.lex_state = 551}, + [964] = {.lex_state = 552}, + [965] = {.lex_state = 551}, + [966] = {.lex_state = 560}, + [967] = {.lex_state = 552}, + [968] = {.lex_state = 552}, + [969] = {.lex_state = 584}, + [970] = {.lex_state = 566}, + [971] = {.lex_state = 563}, + [972] = {.lex_state = 589}, + [973] = {.lex_state = 552}, + [974] = {.lex_state = 552}, + [975] = {.lex_state = 600}, + [976] = {.lex_state = 600}, + [977] = {.lex_state = 589}, + [978] = {.lex_state = 584}, + [979] = {.lex_state = 551}, + [980] = {.lex_state = 589}, + [981] = {.lex_state = 589}, + [982] = {.lex_state = 551}, + [983] = {.lex_state = 552}, + [984] = {.lex_state = 589}, + [985] = {.lex_state = 600}, + [986] = {.lex_state = 552}, + [987] = {.lex_state = 555}, + [988] = {.lex_state = 555}, + [989] = {.lex_state = 575}, + [990] = {.lex_state = 555}, + [991] = {.lex_state = 555}, + [992] = {.lex_state = 560}, + [993] = {.lex_state = 584}, + [994] = {.lex_state = 555}, + [995] = {.lex_state = 555}, + [996] = {.lex_state = 555}, + [997] = {.lex_state = 589}, + [998] = {.lex_state = 552}, + [999] = {.lex_state = 589}, + [1000] = {.lex_state = 555}, + [1001] = {.lex_state = 555}, + [1002] = {.lex_state = 555}, + [1003] = {.lex_state = 555}, + [1004] = {.lex_state = 555}, + [1005] = {.lex_state = 552}, + [1006] = {.lex_state = 555}, + [1007] = {.lex_state = 555}, + [1008] = {.lex_state = 552}, + [1009] = {.lex_state = 555}, + [1010] = {.lex_state = 555}, + [1011] = {.lex_state = 555}, + [1012] = {.lex_state = 552}, + [1013] = {.lex_state = 555}, + [1014] = {.lex_state = 555}, + [1015] = {.lex_state = 589}, + [1016] = {.lex_state = 555}, + [1017] = {.lex_state = 555}, + [1018] = {.lex_state = 555}, + [1019] = {.lex_state = 555}, + [1020] = {.lex_state = 563}, + [1021] = {.lex_state = 555}, + [1022] = {.lex_state = 555}, + [1023] = {.lex_state = 552}, + [1024] = {.lex_state = 589}, + [1025] = {.lex_state = 555}, + [1026] = {.lex_state = 555}, + [1027] = {.lex_state = 555}, + [1028] = {.lex_state = 555}, + [1029] = {.lex_state = 555}, + [1030] = {.lex_state = 555}, + [1031] = {.lex_state = 555}, + [1032] = {.lex_state = 555}, + [1033] = {.lex_state = 555}, + [1034] = {.lex_state = 555}, + [1035] = {.lex_state = 555}, + [1036] = {.lex_state = 555}, + [1037] = {.lex_state = 555}, + [1038] = {.lex_state = 555}, + [1039] = {.lex_state = 555}, + [1040] = {.lex_state = 565}, + [1041] = {.lex_state = 555}, + [1042] = {.lex_state = 555}, + [1043] = {.lex_state = 555}, + [1044] = {.lex_state = 555}, + [1045] = {.lex_state = 555}, + [1046] = {.lex_state = 555}, + [1047] = {.lex_state = 555}, + [1048] = {.lex_state = 555}, + [1049] = {.lex_state = 555}, + [1050] = {.lex_state = 555}, + [1051] = {.lex_state = 552}, + [1052] = {.lex_state = 555}, + [1053] = {.lex_state = 552}, + [1054] = {.lex_state = 555}, + [1055] = {.lex_state = 555}, + [1056] = {.lex_state = 555}, + [1057] = {.lex_state = 555}, + [1058] = {.lex_state = 555}, + [1059] = {.lex_state = 555}, + [1060] = {.lex_state = 555}, + [1061] = {.lex_state = 555}, + [1062] = {.lex_state = 555}, + [1063] = {.lex_state = 555}, + [1064] = {.lex_state = 589}, + [1065] = {.lex_state = 555}, + [1066] = {.lex_state = 555}, + [1067] = {.lex_state = 555}, + [1068] = {.lex_state = 555}, + [1069] = {.lex_state = 555}, + [1070] = {.lex_state = 555}, + [1071] = {.lex_state = 570}, + [1072] = {.lex_state = 555}, + [1073] = {.lex_state = 555}, + [1074] = {.lex_state = 555}, + [1075] = {.lex_state = 555}, + [1076] = {.lex_state = 555}, + [1077] = {.lex_state = 555}, + [1078] = {.lex_state = 570}, + [1079] = {.lex_state = 555}, + [1080] = {.lex_state = 555}, + [1081] = {.lex_state = 555}, + [1082] = {.lex_state = 555}, + [1083] = {.lex_state = 555}, + [1084] = {.lex_state = 555}, + [1085] = {.lex_state = 555}, + [1086] = {.lex_state = 555}, + [1087] = {.lex_state = 555}, + [1088] = {.lex_state = 555}, + [1089] = {.lex_state = 555}, + [1090] = {.lex_state = 565}, + [1091] = {.lex_state = 570}, + [1092] = {.lex_state = 555}, + [1093] = {.lex_state = 555}, + [1094] = {.lex_state = 573}, + [1095] = {.lex_state = 555}, + [1096] = {.lex_state = 555}, + [1097] = {.lex_state = 555}, + [1098] = {.lex_state = 555}, + [1099] = {.lex_state = 555}, + [1100] = {.lex_state = 555}, + [1101] = {.lex_state = 555}, + [1102] = {.lex_state = 555}, + [1103] = {.lex_state = 555}, + [1104] = {.lex_state = 555}, + [1105] = {.lex_state = 163}, + [1106] = {.lex_state = 163}, + [1107] = {.lex_state = 555}, + [1108] = {.lex_state = 570}, + [1109] = {.lex_state = 555}, + [1110] = {.lex_state = 573}, + [1111] = {.lex_state = 555}, + [1112] = {.lex_state = 555}, + [1113] = {.lex_state = 163}, + [1114] = {.lex_state = 555}, + [1115] = {.lex_state = 555}, + [1116] = {.lex_state = 555}, + [1117] = {.lex_state = 574}, + [1118] = {.lex_state = 555}, + [1119] = {.lex_state = 555}, + [1120] = {.lex_state = 555}, + [1121] = {.lex_state = 163}, + [1122] = {.lex_state = 555}, + [1123] = {.lex_state = 555}, + [1124] = {.lex_state = 555}, + [1125] = {.lex_state = 555}, + [1126] = {.lex_state = 555}, + [1127] = {.lex_state = 570}, + [1128] = {.lex_state = 570}, + [1129] = {.lex_state = 555}, + [1130] = {.lex_state = 555}, + [1131] = {.lex_state = 163}, + [1132] = {.lex_state = 555}, + [1133] = {.lex_state = 555}, + [1134] = {.lex_state = 570}, + [1135] = {.lex_state = 555}, + [1136] = {.lex_state = 555}, + [1137] = {.lex_state = 555}, + [1138] = {.lex_state = 555}, + [1139] = {.lex_state = 555}, + [1140] = {.lex_state = 570}, + [1141] = {.lex_state = 555}, + [1142] = {.lex_state = 555}, + [1143] = {.lex_state = 555}, + [1144] = {.lex_state = 555}, + [1145] = {.lex_state = 570}, + [1146] = {.lex_state = 570}, + [1147] = {.lex_state = 570}, + [1148] = {.lex_state = 555}, + [1149] = {.lex_state = 555}, + [1150] = {.lex_state = 572}, + [1151] = {.lex_state = 572}, + [1152] = {.lex_state = 570}, + [1153] = {.lex_state = 608}, + [1154] = {.lex_state = 570}, + [1155] = {.lex_state = 570}, + [1156] = {.lex_state = 570}, + [1157] = {.lex_state = 570}, + [1158] = {.lex_state = 184}, + [1159] = {.lex_state = 569}, + [1160] = {.lex_state = 574}, + [1161] = {.lex_state = 163}, + [1162] = {.lex_state = 184}, + [1163] = {.lex_state = 163}, + [1164] = {.lex_state = 163}, + [1165] = {.lex_state = 572}, + [1166] = {.lex_state = 184}, + [1167] = {.lex_state = 570}, + [1168] = {.lex_state = 572}, + [1169] = {.lex_state = 572}, + [1170] = {.lex_state = 163}, + [1171] = {.lex_state = 573}, + [1172] = {.lex_state = 163}, + [1173] = {.lex_state = 570}, + [1174] = {.lex_state = 163}, + [1175] = {.lex_state = 163}, + [1176] = {.lex_state = 137}, + [1177] = {.lex_state = 570}, + [1178] = {.lex_state = 163}, + [1179] = {.lex_state = 163}, + [1180] = {.lex_state = 184}, + [1181] = {.lex_state = 137}, + [1182] = {.lex_state = 163}, + [1183] = {.lex_state = 184}, + [1184] = {.lex_state = 570}, + [1185] = {.lex_state = 570}, + [1186] = {.lex_state = 163}, + [1187] = {.lex_state = 570}, + [1188] = {.lex_state = 593}, + [1189] = {.lex_state = 163}, + [1190] = {.lex_state = 184}, + [1191] = {.lex_state = 593}, + [1192] = {.lex_state = 570}, + [1193] = {.lex_state = 163}, + [1194] = {.lex_state = 163}, + [1195] = {.lex_state = 567}, + [1196] = {.lex_state = 572}, + [1197] = {.lex_state = 163}, + [1198] = {.lex_state = 573}, + [1199] = {.lex_state = 163}, + [1200] = {.lex_state = 163}, + [1201] = {.lex_state = 570}, + [1202] = {.lex_state = 163}, + [1203] = {.lex_state = 570}, + [1204] = {.lex_state = 590}, + [1205] = {.lex_state = 572}, + [1206] = {.lex_state = 570}, + [1207] = {.lex_state = 609}, + [1208] = {.lex_state = 567}, + [1209] = {.lex_state = 570}, + [1210] = {.lex_state = 570}, + [1211] = {.lex_state = 570}, + [1212] = {.lex_state = 570}, + [1213] = {.lex_state = 567}, + [1214] = {.lex_state = 570}, + [1215] = {.lex_state = 594}, + [1216] = {.lex_state = 567}, + [1217] = {.lex_state = 567}, + [1218] = {.lex_state = 572}, + [1219] = {.lex_state = 572}, + [1220] = {.lex_state = 572}, + [1221] = {.lex_state = 570}, + [1222] = {.lex_state = 569}, + [1223] = {.lex_state = 570}, + [1224] = {.lex_state = 570}, + [1225] = {.lex_state = 570}, + [1226] = {.lex_state = 567}, + [1227] = {.lex_state = 572}, + [1228] = {.lex_state = 567}, + [1229] = {.lex_state = 572}, + [1230] = {.lex_state = 567}, + [1231] = {.lex_state = 570}, + [1232] = {.lex_state = 589}, + [1233] = {.lex_state = 570}, + [1234] = {.lex_state = 589}, + [1235] = {.lex_state = 590}, + [1236] = {.lex_state = 567}, + [1237] = {.lex_state = 570}, + [1238] = {.lex_state = 570}, + [1239] = {.lex_state = 570}, + [1240] = {.lex_state = 567}, + [1241] = {.lex_state = 570}, + [1242] = {.lex_state = 567}, + [1243] = {.lex_state = 567}, + [1244] = {.lex_state = 587}, + [1245] = {.lex_state = 570}, + [1246] = {.lex_state = 567}, + [1247] = {.lex_state = 570}, + [1248] = {.lex_state = 567}, + [1249] = {.lex_state = 589}, + [1250] = {.lex_state = 567}, + [1251] = {.lex_state = 589}, + [1252] = {.lex_state = 572}, + [1253] = {.lex_state = 593}, + [1254] = {.lex_state = 608}, + [1255] = {.lex_state = 570}, + [1256] = {.lex_state = 593}, + [1257] = {.lex_state = 567}, + [1258] = {.lex_state = 567}, + [1259] = {.lex_state = 567}, + [1260] = {.lex_state = 587}, + [1261] = {.lex_state = 572}, + [1262] = {.lex_state = 567}, + [1263] = {.lex_state = 570}, + [1264] = {.lex_state = 567}, + [1265] = {.lex_state = 150}, + [1266] = {.lex_state = 587}, + [1267] = {.lex_state = 567}, + [1268] = {.lex_state = 567}, + [1269] = {.lex_state = 570}, + [1270] = {.lex_state = 570}, + [1271] = {.lex_state = 570}, + [1272] = {.lex_state = 567}, + [1273] = {.lex_state = 567}, + [1274] = {.lex_state = 567}, + [1275] = {.lex_state = 570}, + [1276] = {.lex_state = 567}, + [1277] = {.lex_state = 589}, + [1278] = {.lex_state = 567}, + [1279] = {.lex_state = 567}, + [1280] = {.lex_state = 567}, + [1281] = {.lex_state = 567}, + [1282] = {.lex_state = 567}, + [1283] = {.lex_state = 567}, + [1284] = {.lex_state = 589}, + [1285] = {.lex_state = 567}, + [1286] = {.lex_state = 567}, + [1287] = {.lex_state = 567}, + [1288] = {.lex_state = 567}, + [1289] = {.lex_state = 567}, + [1290] = {.lex_state = 567}, + [1291] = {.lex_state = 567}, + [1292] = {.lex_state = 567}, + [1293] = {.lex_state = 567}, + [1294] = {.lex_state = 567}, + [1295] = {.lex_state = 567}, + [1296] = {.lex_state = 567}, + [1297] = {.lex_state = 567}, + [1298] = {.lex_state = 567}, + [1299] = {.lex_state = 567}, + [1300] = {.lex_state = 567}, + [1301] = {.lex_state = 594}, + [1302] = {.lex_state = 589}, + [1303] = {.lex_state = 567}, + [1304] = {.lex_state = 567}, + [1305] = {.lex_state = 567}, + [1306] = {.lex_state = 567}, + [1307] = {.lex_state = 567}, + [1308] = {.lex_state = 567}, + [1309] = {.lex_state = 567}, + [1310] = {.lex_state = 567}, + [1311] = {.lex_state = 567}, + [1312] = {.lex_state = 570}, + [1313] = {.lex_state = 567}, + [1314] = {.lex_state = 570}, + [1315] = {.lex_state = 601}, + [1316] = {.lex_state = 567}, + [1317] = {.lex_state = 567}, + [1318] = {.lex_state = 601}, + [1319] = {.lex_state = 601}, + [1320] = {.lex_state = 567}, + [1321] = {.lex_state = 567}, + [1322] = {.lex_state = 567}, + [1323] = {.lex_state = 570}, + [1324] = {.lex_state = 567}, + [1325] = {.lex_state = 567}, + [1326] = {.lex_state = 567}, + [1327] = {.lex_state = 567}, + [1328] = {.lex_state = 567}, + [1329] = {.lex_state = 601}, + [1330] = {.lex_state = 601}, + [1331] = {.lex_state = 601}, + [1332] = {.lex_state = 567}, + [1333] = {.lex_state = 567}, + [1334] = {.lex_state = 601}, + [1335] = {.lex_state = 567}, + [1336] = {.lex_state = 601}, + [1337] = {.lex_state = 567}, + [1338] = {.lex_state = 567}, + [1339] = {.lex_state = 567}, + [1340] = {.lex_state = 567}, + [1341] = {.lex_state = 567}, + [1342] = {.lex_state = 567}, + [1343] = {.lex_state = 567}, + [1344] = {.lex_state = 567}, + [1345] = {.lex_state = 601}, + [1346] = {.lex_state = 567}, + [1347] = {.lex_state = 567}, + [1348] = {.lex_state = 567}, + [1349] = {.lex_state = 567}, + [1350] = {.lex_state = 567}, + [1351] = {.lex_state = 567}, + [1352] = {.lex_state = 567}, + [1353] = {.lex_state = 567}, + [1354] = {.lex_state = 567}, + [1355] = {.lex_state = 567}, + [1356] = {.lex_state = 185}, + [1357] = {.lex_state = 567}, + [1358] = {.lex_state = 185}, + [1359] = {.lex_state = 185}, + [1360] = {.lex_state = 567}, + [1361] = {.lex_state = 567}, + [1362] = {.lex_state = 567}, + [1363] = {.lex_state = 567}, + [1364] = {.lex_state = 567}, + [1365] = {.lex_state = 601}, + [1366] = {.lex_state = 567}, + [1367] = {.lex_state = 567}, + [1368] = {.lex_state = 185}, + [1369] = {.lex_state = 567}, + [1370] = {.lex_state = 567}, + [1371] = {.lex_state = 567}, + [1372] = {.lex_state = 570}, + [1373] = {.lex_state = 570}, + [1374] = {.lex_state = 567}, + [1375] = {.lex_state = 601}, + [1376] = {.lex_state = 567}, + [1377] = {.lex_state = 185}, + [1378] = {.lex_state = 567}, + [1379] = {.lex_state = 567}, + [1380] = {.lex_state = 601}, + [1381] = {.lex_state = 601}, + [1382] = {.lex_state = 567}, + [1383] = {.lex_state = 185}, + [1384] = {.lex_state = 567}, + [1385] = {.lex_state = 567}, + [1386] = {.lex_state = 567}, + [1387] = {.lex_state = 567}, + [1388] = {.lex_state = 185}, + [1389] = {.lex_state = 570}, + [1390] = {.lex_state = 567}, + [1391] = {.lex_state = 570}, + [1392] = {.lex_state = 567}, + [1393] = {.lex_state = 601}, + [1394] = {.lex_state = 587}, + [1395] = {.lex_state = 567}, + [1396] = {.lex_state = 567}, + [1397] = {.lex_state = 587}, + [1398] = {.lex_state = 567}, + [1399] = {.lex_state = 567}, + [1400] = {.lex_state = 567}, + [1401] = {.lex_state = 567}, + [1402] = {.lex_state = 567}, + [1403] = {.lex_state = 185}, + [1404] = {.lex_state = 567}, + [1405] = {.lex_state = 567}, + [1406] = {.lex_state = 601}, + [1407] = {.lex_state = 601}, + [1408] = {.lex_state = 601}, + [1409] = {.lex_state = 567}, + [1410] = {.lex_state = 567}, + [1411] = {.lex_state = 567}, + [1412] = {.lex_state = 567}, + [1413] = {.lex_state = 567}, + [1414] = {.lex_state = 587}, + [1415] = {.lex_state = 185}, + [1416] = {.lex_state = 567}, + [1417] = {.lex_state = 567}, + [1418] = {.lex_state = 567}, + [1419] = {.lex_state = 185}, + [1420] = {.lex_state = 570}, + [1421] = {.lex_state = 570}, + [1422] = {.lex_state = 567}, + [1423] = {.lex_state = 567}, + [1424] = {.lex_state = 567}, + [1425] = {.lex_state = 567}, + [1426] = {.lex_state = 567}, + [1427] = {.lex_state = 570}, + [1428] = {.lex_state = 567}, + [1429] = {.lex_state = 567}, + [1430] = {.lex_state = 567}, + [1431] = {.lex_state = 185}, + [1432] = {.lex_state = 567}, + [1433] = {.lex_state = 185}, + [1434] = {.lex_state = 567}, + [1435] = {.lex_state = 567}, + [1436] = {.lex_state = 567}, + [1437] = {.lex_state = 567}, + [1438] = {.lex_state = 567}, + [1439] = {.lex_state = 567}, + [1440] = {.lex_state = 567}, + [1441] = {.lex_state = 601}, + [1442] = {.lex_state = 601}, + [1443] = {.lex_state = 601}, + [1444] = {.lex_state = 567}, + [1445] = {.lex_state = 567}, + [1446] = {.lex_state = 567}, + [1447] = {.lex_state = 567}, + [1448] = {.lex_state = 567}, + [1449] = {.lex_state = 567}, + [1450] = {.lex_state = 567}, + [1451] = {.lex_state = 567}, + [1452] = {.lex_state = 609}, + [1453] = {.lex_state = 567}, + [1454] = {.lex_state = 567}, + [1455] = {.lex_state = 567}, + [1456] = {.lex_state = 589}, + [1457] = {.lex_state = 570}, + [1458] = {.lex_state = 567}, + [1459] = {.lex_state = 601}, + [1460] = {.lex_state = 567}, + [1461] = {.lex_state = 567}, + [1462] = {.lex_state = 567}, + [1463] = {.lex_state = 567}, + [1464] = {.lex_state = 567}, + [1465] = {.lex_state = 567}, + [1466] = {.lex_state = 567}, + [1467] = {.lex_state = 567}, + [1468] = {.lex_state = 567}, + [1469] = {.lex_state = 567}, + [1470] = {.lex_state = 567}, + [1471] = {.lex_state = 567}, + [1472] = {.lex_state = 567}, + [1473] = {.lex_state = 567}, + [1474] = {.lex_state = 567}, + [1475] = {.lex_state = 567}, + [1476] = {.lex_state = 567}, + [1477] = {.lex_state = 567}, + [1478] = {.lex_state = 567}, + [1479] = {.lex_state = 567}, + [1480] = {.lex_state = 601}, + [1481] = {.lex_state = 567}, + [1482] = {.lex_state = 567}, + [1483] = {.lex_state = 601}, + [1484] = {.lex_state = 567}, + [1485] = {.lex_state = 567}, + [1486] = {.lex_state = 567}, + [1487] = {.lex_state = 567}, + [1488] = {.lex_state = 601}, + [1489] = {.lex_state = 601}, + [1490] = {.lex_state = 567}, + [1491] = {.lex_state = 567}, + [1492] = {.lex_state = 567}, + [1493] = {.lex_state = 567}, + [1494] = {.lex_state = 567}, + [1495] = {.lex_state = 567}, + [1496] = {.lex_state = 567}, + [1497] = {.lex_state = 567}, + [1498] = {.lex_state = 567}, + [1499] = {.lex_state = 567}, + [1500] = {.lex_state = 567}, + [1501] = {.lex_state = 567}, + [1502] = {.lex_state = 567}, + [1503] = {.lex_state = 567}, + [1504] = {.lex_state = 567}, + [1505] = {.lex_state = 567}, + [1506] = {.lex_state = 567}, + [1507] = {.lex_state = 567}, + [1508] = {.lex_state = 567}, + [1509] = {.lex_state = 601}, + [1510] = {.lex_state = 601}, + [1511] = {.lex_state = 567}, + [1512] = {.lex_state = 601}, + [1513] = {.lex_state = 601}, + [1514] = {.lex_state = 567}, + [1515] = {.lex_state = 567}, + [1516] = {.lex_state = 567}, + [1517] = {.lex_state = 567}, + [1518] = {.lex_state = 567}, + [1519] = {.lex_state = 601}, + [1520] = {.lex_state = 567}, + [1521] = {.lex_state = 601}, + [1522] = {.lex_state = 567}, + [1523] = {.lex_state = 567}, + [1524] = {.lex_state = 567}, + [1525] = {.lex_state = 567}, + [1526] = {.lex_state = 567}, + [1527] = {.lex_state = 567}, + [1528] = {.lex_state = 601}, + [1529] = {.lex_state = 567}, + [1530] = {.lex_state = 601}, + [1531] = {.lex_state = 601}, + [1532] = {.lex_state = 567}, + [1533] = {.lex_state = 567}, + [1534] = {.lex_state = 567}, + [1535] = {.lex_state = 567}, + [1536] = {.lex_state = 567}, + [1537] = {.lex_state = 567}, + [1538] = {.lex_state = 601}, + [1539] = {.lex_state = 601}, + [1540] = {.lex_state = 601}, + [1541] = {.lex_state = 567}, + [1542] = {.lex_state = 567}, + [1543] = {.lex_state = 567}, + [1544] = {.lex_state = 567}, + [1545] = {.lex_state = 567}, + [1546] = {.lex_state = 567}, + [1547] = {.lex_state = 567}, + [1548] = {.lex_state = 567}, + [1549] = {.lex_state = 567}, + [1550] = {.lex_state = 567}, + [1551] = {.lex_state = 567}, + [1552] = {.lex_state = 567}, + [1553] = {.lex_state = 567}, + [1554] = {.lex_state = 567}, + [1555] = {.lex_state = 567}, + [1556] = {.lex_state = 567}, + [1557] = {.lex_state = 567}, + [1558] = {.lex_state = 567}, + [1559] = {.lex_state = 567}, + [1560] = {.lex_state = 567}, + [1561] = {.lex_state = 567}, + [1562] = {.lex_state = 567}, + [1563] = {.lex_state = 567}, + [1564] = {.lex_state = 567}, + [1565] = {.lex_state = 567}, + [1566] = {.lex_state = 567}, + [1567] = {.lex_state = 567}, + [1568] = {.lex_state = 601}, + [1569] = {.lex_state = 601}, + [1570] = {.lex_state = 601}, + [1571] = {.lex_state = 567}, + [1572] = {.lex_state = 601}, + [1573] = {.lex_state = 601}, + [1574] = {.lex_state = 567}, + [1575] = {.lex_state = 567}, + [1576] = {.lex_state = 567}, + [1577] = {.lex_state = 567}, + [1578] = {.lex_state = 567}, + [1579] = {.lex_state = 567}, + [1580] = {.lex_state = 567}, + [1581] = {.lex_state = 567}, + [1582] = {.lex_state = 567}, + [1583] = {.lex_state = 567}, + [1584] = {.lex_state = 567}, + [1585] = {.lex_state = 567}, + [1586] = {.lex_state = 567}, + [1587] = {.lex_state = 567}, + [1588] = {.lex_state = 567}, + [1589] = {.lex_state = 567}, + [1590] = {.lex_state = 567}, + [1591] = {.lex_state = 567}, + [1592] = {.lex_state = 567}, + [1593] = {.lex_state = 567}, + [1594] = {.lex_state = 567}, + [1595] = {.lex_state = 567}, + [1596] = {.lex_state = 567}, + [1597] = {.lex_state = 567}, + [1598] = {.lex_state = 567}, + [1599] = {.lex_state = 567}, + [1600] = {.lex_state = 567}, + [1601] = {.lex_state = 601}, + [1602] = {.lex_state = 601}, + [1603] = {.lex_state = 567}, + [1604] = {.lex_state = 601}, + [1605] = {.lex_state = 567}, + [1606] = {.lex_state = 567}, + [1607] = {.lex_state = 567}, + [1608] = {.lex_state = 567}, + [1609] = {.lex_state = 567}, + [1610] = {.lex_state = 567}, + [1611] = {.lex_state = 567}, + [1612] = {.lex_state = 567}, + [1613] = {.lex_state = 567}, + [1614] = {.lex_state = 567}, + [1615] = {.lex_state = 567}, + [1616] = {.lex_state = 567}, + [1617] = {.lex_state = 567}, + [1618] = {.lex_state = 567}, + [1619] = {.lex_state = 567}, + [1620] = {.lex_state = 567}, + [1621] = {.lex_state = 567}, + [1622] = {.lex_state = 567}, + [1623] = {.lex_state = 567}, + [1624] = {.lex_state = 567}, + [1625] = {.lex_state = 567}, + [1626] = {.lex_state = 567}, + [1627] = {.lex_state = 567}, + [1628] = {.lex_state = 567}, + [1629] = {.lex_state = 567}, + [1630] = {.lex_state = 567}, + [1631] = {.lex_state = 567}, + [1632] = {.lex_state = 567}, + [1633] = {.lex_state = 567}, + [1634] = {.lex_state = 567}, + [1635] = {.lex_state = 567}, + [1636] = {.lex_state = 567}, + [1637] = {.lex_state = 567}, + [1638] = {.lex_state = 567}, + [1639] = {.lex_state = 567}, + [1640] = {.lex_state = 601}, + [1641] = {.lex_state = 567}, + [1642] = {.lex_state = 567}, + [1643] = {.lex_state = 567}, + [1644] = {.lex_state = 567}, + [1645] = {.lex_state = 567}, + [1646] = {.lex_state = 567}, + [1647] = {.lex_state = 567}, + [1648] = {.lex_state = 567}, + [1649] = {.lex_state = 567}, + [1650] = {.lex_state = 567}, + [1651] = {.lex_state = 601}, + [1652] = {.lex_state = 601}, + [1653] = {.lex_state = 601}, + [1654] = {.lex_state = 601}, + [1655] = {.lex_state = 567}, + [1656] = {.lex_state = 567}, + [1657] = {.lex_state = 567}, + [1658] = {.lex_state = 567}, + [1659] = {.lex_state = 567}, + [1660] = {.lex_state = 567}, + [1661] = {.lex_state = 567}, + [1662] = {.lex_state = 567}, + [1663] = {.lex_state = 567}, + [1664] = {.lex_state = 567}, + [1665] = {.lex_state = 567}, + [1666] = {.lex_state = 567}, + [1667] = {.lex_state = 567}, + [1668] = {.lex_state = 567}, + [1669] = {.lex_state = 567}, + [1670] = {.lex_state = 567}, + [1671] = {.lex_state = 567}, + [1672] = {.lex_state = 567}, + [1673] = {.lex_state = 567}, + [1674] = {.lex_state = 567}, + [1675] = {.lex_state = 567}, + [1676] = {.lex_state = 567}, + [1677] = {.lex_state = 567}, + [1678] = {.lex_state = 567}, + [1679] = {.lex_state = 567}, + [1680] = {.lex_state = 567}, + [1681] = {.lex_state = 616}, + [1682] = {.lex_state = 99}, + [1683] = {.lex_state = 159}, + [1684] = {.lex_state = 159}, + [1685] = {.lex_state = 159}, + [1686] = {.lex_state = 616}, + [1687] = {.lex_state = 159}, + [1688] = {.lex_state = 616}, + [1689] = {.lex_state = 94}, + [1690] = {.lex_state = 137}, + [1691] = {.lex_state = 159}, + [1692] = {.lex_state = 137}, + [1693] = {.lex_state = 94}, + [1694] = {.lex_state = 137}, + [1695] = {.lex_state = 94}, + [1696] = {.lex_state = 137}, + [1697] = {.lex_state = 161}, + [1698] = {.lex_state = 137}, + [1699] = {.lex_state = 137}, + [1700] = {.lex_state = 149}, + [1701] = {.lex_state = 149}, + [1702] = {.lex_state = 137}, + [1703] = {.lex_state = 137}, + [1704] = {.lex_state = 149}, [1705] = {.lex_state = 137}, - [1706] = {.lex_state = 137}, - [1707] = {.lex_state = 137}, - [1708] = {.lex_state = 137}, + [1706] = {.lex_state = 158}, + [1707] = {.lex_state = 159}, + [1708] = {.lex_state = 94}, [1709] = {.lex_state = 137}, [1710] = {.lex_state = 137}, - [1711] = {.lex_state = 59}, - [1712] = {.lex_state = 137}, - [1713] = {.lex_state = 137}, + [1711] = {.lex_state = 10}, + [1712] = {.lex_state = 94}, + [1713] = {.lex_state = 159}, [1714] = {.lex_state = 137}, [1715] = {.lex_state = 137}, - [1716] = {.lex_state = 137}, - [1717] = {.lex_state = 137}, + [1716] = {.lex_state = 149}, + [1717] = {.lex_state = 159}, [1718] = {.lex_state = 137}, - [1719] = {.lex_state = 137}, - [1720] = {.lex_state = 137}, - [1721] = {.lex_state = 137}, - [1722] = {.lex_state = 137}, + [1719] = {.lex_state = 94}, + [1720] = {.lex_state = 94}, + [1721] = {.lex_state = 94}, + [1722] = {.lex_state = 94}, [1723] = {.lex_state = 137}, - [1724] = {.lex_state = 137}, + [1724] = {.lex_state = 94}, [1725] = {.lex_state = 137}, [1726] = {.lex_state = 137}, [1727] = {.lex_state = 137}, - [1728] = {.lex_state = 137}, - [1729] = {.lex_state = 137}, + [1728] = {.lex_state = 94}, + [1729] = {.lex_state = 159}, [1730] = {.lex_state = 137}, - [1731] = {.lex_state = 137}, - [1732] = {.lex_state = 137}, - [1733] = {.lex_state = 137}, - [1734] = {.lex_state = 137}, + [1731] = {.lex_state = 149}, + [1732] = {.lex_state = 94}, + [1733] = {.lex_state = 94}, + [1734] = {.lex_state = 158}, [1735] = {.lex_state = 137}, - [1736] = {.lex_state = 137}, + [1736] = {.lex_state = 158}, [1737] = {.lex_state = 137}, - [1738] = {.lex_state = 125}, - [1739] = {.lex_state = 137}, - [1740] = {.lex_state = 137}, + [1738] = {.lex_state = 94}, + [1739] = {.lex_state = 161}, + [1740] = {.lex_state = 149}, [1741] = {.lex_state = 137}, [1742] = {.lex_state = 137}, - [1743] = {.lex_state = 125}, + [1743] = {.lex_state = 137}, [1744] = {.lex_state = 137}, - [1745] = {.lex_state = 150}, - [1746] = {.lex_state = 137}, - [1747] = {.lex_state = 150}, + [1745] = {.lex_state = 149}, + [1746] = {.lex_state = 158}, + [1747] = {.lex_state = 137}, [1748] = {.lex_state = 137}, - [1749] = {.lex_state = 59}, - [1750] = {.lex_state = 59}, - [1751] = {.lex_state = 137}, - [1752] = {.lex_state = 59}, + [1749] = {.lex_state = 94}, + [1750] = {.lex_state = 149}, + [1751] = {.lex_state = 94}, + [1752] = {.lex_state = 137}, [1753] = {.lex_state = 137}, - [1754] = {.lex_state = 137}, - [1755] = {.lex_state = 137}, - [1756] = {.lex_state = 137}, - [1757] = {.lex_state = 137}, - [1758] = {.lex_state = 137}, - [1759] = {.lex_state = 137}, - [1760] = {.lex_state = 137}, - [1761] = {.lex_state = 137}, - [1762] = {.lex_state = 137}, - [1763] = {.lex_state = 137}, - [1764] = {.lex_state = 137}, - [1765] = {.lex_state = 137}, - [1766] = {.lex_state = 59}, - [1767] = {.lex_state = 137}, - [1768] = {.lex_state = 137}, - [1769] = {.lex_state = 137}, - [1770] = {.lex_state = 137}, - [1771] = {.lex_state = 137}, - [1772] = {.lex_state = 137}, - [1773] = {.lex_state = 137}, - [1774] = {.lex_state = 137}, - [1775] = {.lex_state = 137}, - [1776] = {.lex_state = 137}, - [1777] = {.lex_state = 137}, - [1778] = {.lex_state = 137}, - [1779] = {.lex_state = 137}, - [1780] = {.lex_state = 137}, - [1781] = {.lex_state = 137}, - [1782] = {.lex_state = 59}, - [1783] = {.lex_state = 59}, - [1784] = {.lex_state = 137}, - [1785] = {.lex_state = 137}, - [1786] = {.lex_state = 137}, - [1787] = {.lex_state = 137}, - [1788] = {.lex_state = 137}, - [1789] = {.lex_state = 137}, - [1790] = {.lex_state = 137}, - [1791] = {.lex_state = 137}, - [1792] = {.lex_state = 137}, - [1793] = {.lex_state = 137}, - [1794] = {.lex_state = 137}, - [1795] = {.lex_state = 137}, - [1796] = {.lex_state = 59}, - [1797] = {.lex_state = 137}, - [1798] = {.lex_state = 137}, - [1799] = {.lex_state = 137}, - [1800] = {.lex_state = 150}, - [1801] = {.lex_state = 151}, - [1802] = {.lex_state = 137}, - [1803] = {.lex_state = 137}, - [1804] = {.lex_state = 137}, - [1805] = {.lex_state = 157}, - [1806] = {.lex_state = 137}, - [1807] = {.lex_state = 157}, - [1808] = {.lex_state = 137}, - [1809] = {.lex_state = 137}, - [1810] = {.lex_state = 137}, - [1811] = {.lex_state = 137}, - [1812] = {.lex_state = 137}, - [1813] = {.lex_state = 59}, - [1814] = {.lex_state = 137}, - [1815] = {.lex_state = 137}, - [1816] = {.lex_state = 137}, - [1817] = {.lex_state = 137}, - [1818] = {.lex_state = 137}, - [1819] = {.lex_state = 137}, - [1820] = {.lex_state = 137}, - [1821] = {.lex_state = 137}, - [1822] = {.lex_state = 137}, - [1823] = {.lex_state = 137}, - [1824] = {.lex_state = 137}, - [1825] = {.lex_state = 151}, - [1826] = {.lex_state = 59}, - [1827] = {.lex_state = 137}, - [1828] = {.lex_state = 137}, - [1829] = {.lex_state = 137}, - [1830] = {.lex_state = 137}, - [1831] = {.lex_state = 137}, - [1832] = {.lex_state = 137}, - [1833] = {.lex_state = 137}, - [1834] = {.lex_state = 137}, - [1835] = {.lex_state = 59}, - [1836] = {.lex_state = 6}, - [1837] = {.lex_state = 151}, - [1838] = {.lex_state = 151}, - [1839] = {.lex_state = 59}, - [1840] = {.lex_state = 137}, - [1841] = {.lex_state = 137}, - [1842] = {.lex_state = 137}, - [1843] = {.lex_state = 137}, - [1844] = {.lex_state = 137}, - [1845] = {.lex_state = 137}, - [1846] = {.lex_state = 151}, - [1847] = {.lex_state = 137}, - [1848] = {.lex_state = 137}, - [1849] = {.lex_state = 137}, - [1850] = {.lex_state = 137}, - [1851] = {.lex_state = 137}, - [1852] = {.lex_state = 137}, - [1853] = {.lex_state = 59}, - [1854] = {.lex_state = 137}, - [1855] = {.lex_state = 137}, - [1856] = {.lex_state = 137}, - [1857] = {.lex_state = 137}, - [1858] = {.lex_state = 137}, - [1859] = {.lex_state = 137}, - [1860] = {.lex_state = 137}, - [1861] = {.lex_state = 137}, - [1862] = {.lex_state = 137}, - [1863] = {.lex_state = 137}, - [1864] = {.lex_state = 151}, - [1865] = {.lex_state = 137}, - [1866] = {.lex_state = 137}, - [1867] = {.lex_state = 137}, - [1868] = {.lex_state = 59}, - [1869] = {.lex_state = 137}, - [1870] = {.lex_state = 137}, - [1871] = {.lex_state = 137}, - [1872] = {.lex_state = 137}, - [1873] = {.lex_state = 137}, - [1874] = {.lex_state = 137}, - [1875] = {.lex_state = 137}, - [1876] = {.lex_state = 137}, - [1877] = {.lex_state = 137}, - [1878] = {.lex_state = 137}, - [1879] = {.lex_state = 150}, - [1880] = {.lex_state = 137}, - [1881] = {.lex_state = 137}, - [1882] = {.lex_state = 137}, - [1883] = {.lex_state = 59}, - [1884] = {.lex_state = 137}, - [1885] = {.lex_state = 137}, - [1886] = {.lex_state = 151}, - [1887] = {.lex_state = 137}, - [1888] = {.lex_state = 137}, - [1889] = {.lex_state = 137}, - [1890] = {.lex_state = 137}, - [1891] = {.lex_state = 137}, - [1892] = {.lex_state = 59}, - [1893] = {.lex_state = 139}, - [1894] = {.lex_state = 155}, - [1895] = {.lex_state = 155}, - [1896] = {.lex_state = 155}, - [1897] = {.lex_state = 152}, - [1898] = {.lex_state = 152}, - [1899] = {.lex_state = 152}, - [1900] = {.lex_state = 152}, - [1901] = {.lex_state = 152}, - [1902] = {.lex_state = 152}, - [1903] = {.lex_state = 152}, - [1904] = {.lex_state = 139}, - [1905] = {.lex_state = 152}, - [1906] = {.lex_state = 152}, - [1907] = {.lex_state = 152}, - [1908] = {.lex_state = 152}, - [1909] = {.lex_state = 152}, - [1910] = {.lex_state = 152}, - [1911] = {.lex_state = 59}, - [1912] = {.lex_state = 59}, - [1913] = {.lex_state = 59}, - [1914] = {.lex_state = 152}, - [1915] = {.lex_state = 152}, - [1916] = {.lex_state = 125}, - [1917] = {.lex_state = 125}, - [1918] = {.lex_state = 137}, - [1919] = {.lex_state = 137}, - [1920] = {.lex_state = 137}, - [1921] = {.lex_state = 59}, - [1922] = {.lex_state = 130}, - [1923] = {.lex_state = 143}, - [1924] = {.lex_state = 143}, - [1925] = {.lex_state = 143}, - [1926] = {.lex_state = 143}, - [1927] = {.lex_state = 143}, - [1928] = {.lex_state = 143}, - [1929] = {.lex_state = 125}, - [1930] = {.lex_state = 125}, - [1931] = {.lex_state = 125}, - [1932] = {.lex_state = 59}, - [1933] = {.lex_state = 143}, - [1934] = {.lex_state = 143}, - [1935] = {.lex_state = 125}, - [1936] = {.lex_state = 143}, - [1937] = {.lex_state = 143}, - [1938] = {.lex_state = 143}, - [1939] = {.lex_state = 143}, - [1940] = {.lex_state = 143}, - [1941] = {.lex_state = 143}, - [1942] = {.lex_state = 156}, - [1943] = {.lex_state = 143}, - [1944] = {.lex_state = 143}, - [1945] = {.lex_state = 143}, - [1946] = {.lex_state = 143}, - [1947] = {.lex_state = 143}, - [1948] = {.lex_state = 143}, - [1949] = {.lex_state = 143}, - [1950] = {.lex_state = 143}, - [1951] = {.lex_state = 143}, - [1952] = {.lex_state = 143}, - [1953] = {.lex_state = 143}, - [1954] = {.lex_state = 143}, - [1955] = {.lex_state = 143}, - [1956] = {.lex_state = 143}, - [1957] = {.lex_state = 143}, - [1958] = {.lex_state = 125}, - [1959] = {.lex_state = 143}, - [1960] = {.lex_state = 143}, - [1961] = {.lex_state = 143}, - [1962] = {.lex_state = 125}, - [1963] = {.lex_state = 143}, - [1964] = {.lex_state = 143}, - [1965] = {.lex_state = 143}, - [1966] = {.lex_state = 143}, - [1967] = {.lex_state = 143}, - [1968] = {.lex_state = 143}, - [1969] = {.lex_state = 143}, - [1970] = {.lex_state = 143}, - [1971] = {.lex_state = 125}, - [1972] = {.lex_state = 143}, - [1973] = {.lex_state = 143}, - [1974] = {.lex_state = 143}, - [1975] = {.lex_state = 143}, - [1976] = {.lex_state = 143}, - [1977] = {.lex_state = 143}, - [1978] = {.lex_state = 143}, - [1979] = {.lex_state = 143}, - [1980] = {.lex_state = 143}, - [1981] = {.lex_state = 156}, - [1982] = {.lex_state = 143}, - [1983] = {.lex_state = 143}, - [1984] = {.lex_state = 143}, - [1985] = {.lex_state = 143}, - [1986] = {.lex_state = 143}, - [1987] = {.lex_state = 143}, - [1988] = {.lex_state = 143}, - [1989] = {.lex_state = 143}, - [1990] = {.lex_state = 143}, - [1991] = {.lex_state = 143}, - [1992] = {.lex_state = 156}, - [1993] = {.lex_state = 143}, - [1994] = {.lex_state = 143}, - [1995] = {.lex_state = 125}, - [1996] = {.lex_state = 143}, - [1997] = {.lex_state = 143}, - [1998] = {.lex_state = 143}, - [1999] = {.lex_state = 143}, - [2000] = {.lex_state = 143}, - [2001] = {.lex_state = 143}, - [2002] = {.lex_state = 143}, - [2003] = {.lex_state = 125}, - [2004] = {.lex_state = 125}, - [2005] = {.lex_state = 143}, - [2006] = {.lex_state = 125}, - [2007] = {.lex_state = 156}, - [2008] = {.lex_state = 125}, - [2009] = {.lex_state = 125}, - [2010] = {.lex_state = 125}, - [2011] = {.lex_state = 125}, - [2012] = {.lex_state = 143}, - [2013] = {.lex_state = 143}, - [2014] = {.lex_state = 143}, - [2015] = {.lex_state = 143}, - [2016] = {.lex_state = 143}, - [2017] = {.lex_state = 143}, - [2018] = {.lex_state = 143}, - [2019] = {.lex_state = 143}, - [2020] = {.lex_state = 156}, - [2021] = {.lex_state = 143}, - [2022] = {.lex_state = 156}, - [2023] = {.lex_state = 143}, - [2024] = {.lex_state = 59}, - [2025] = {.lex_state = 156}, - [2026] = {.lex_state = 143}, - [2027] = {.lex_state = 143}, - [2028] = {.lex_state = 143}, - [2029] = {.lex_state = 59}, - [2030] = {.lex_state = 143}, - [2031] = {.lex_state = 143}, - [2032] = {.lex_state = 143}, - [2033] = {.lex_state = 143}, - [2034] = {.lex_state = 143}, - [2035] = {.lex_state = 143}, - [2036] = {.lex_state = 143}, - [2037] = {.lex_state = 143}, - [2038] = {.lex_state = 143}, - [2039] = {.lex_state = 143}, - [2040] = {.lex_state = 143}, - [2041] = {.lex_state = 143}, - [2042] = {.lex_state = 143}, - [2043] = {.lex_state = 143}, - [2044] = {.lex_state = 143}, - [2045] = {.lex_state = 143}, - [2046] = {.lex_state = 143}, - [2047] = {.lex_state = 143}, - [2048] = {.lex_state = 143}, - [2049] = {.lex_state = 143}, - [2050] = {.lex_state = 143}, - [2051] = {.lex_state = 143}, - [2052] = {.lex_state = 143}, - [2053] = {.lex_state = 143}, - [2054] = {.lex_state = 143}, - [2055] = {.lex_state = 143}, - [2056] = {.lex_state = 143}, - [2057] = {.lex_state = 143}, - [2058] = {.lex_state = 143}, - [2059] = {.lex_state = 143}, - [2060] = {.lex_state = 143}, - [2061] = {.lex_state = 143}, - [2062] = {.lex_state = 156}, - [2063] = {.lex_state = 156}, - [2064] = {.lex_state = 143}, - [2065] = {.lex_state = 125}, - [2066] = {.lex_state = 143}, - [2067] = {.lex_state = 143}, - [2068] = {.lex_state = 143}, - [2069] = {.lex_state = 143}, - [2070] = {.lex_state = 143}, - [2071] = {.lex_state = 143}, - [2072] = {.lex_state = 143}, - [2073] = {.lex_state = 143}, - [2074] = {.lex_state = 143}, - [2075] = {.lex_state = 143}, - [2076] = {.lex_state = 143}, - [2077] = {.lex_state = 143}, - [2078] = {.lex_state = 143}, - [2079] = {.lex_state = 143}, - [2080] = {.lex_state = 143}, - [2081] = {.lex_state = 143}, - [2082] = {.lex_state = 130}, - [2083] = {.lex_state = 156}, - [2084] = {.lex_state = 156}, - [2085] = {.lex_state = 143}, - [2086] = {.lex_state = 143}, - [2087] = {.lex_state = 143}, - [2088] = {.lex_state = 156}, - [2089] = {.lex_state = 143}, - [2090] = {.lex_state = 143}, - [2091] = {.lex_state = 156}, - [2092] = {.lex_state = 156}, - [2093] = {.lex_state = 156}, - [2094] = {.lex_state = 156}, - [2095] = {.lex_state = 156}, - [2096] = {.lex_state = 156}, - [2097] = {.lex_state = 156}, - [2098] = {.lex_state = 156}, - [2099] = {.lex_state = 99}, - [2100] = {.lex_state = 156}, - [2101] = {.lex_state = 156}, - [2102] = {.lex_state = 156}, - [2103] = {.lex_state = 156}, - [2104] = {.lex_state = 156}, - [2105] = {.lex_state = 156}, - [2106] = {.lex_state = 156}, - [2107] = {.lex_state = 156}, - [2108] = {.lex_state = 143}, - [2109] = {.lex_state = 143}, - [2110] = {.lex_state = 143}, - [2111] = {.lex_state = 156}, - [2112] = {.lex_state = 143}, - [2113] = {.lex_state = 143}, - [2114] = {.lex_state = 143}, - [2115] = {.lex_state = 143}, - [2116] = {.lex_state = 156}, - [2117] = {.lex_state = 156}, - [2118] = {.lex_state = 143}, - [2119] = {.lex_state = 143}, - [2120] = {.lex_state = 143}, - [2121] = {.lex_state = 156}, - [2122] = {.lex_state = 156}, - [2123] = {.lex_state = 143}, - [2124] = {.lex_state = 143}, - [2125] = {.lex_state = 156}, - [2126] = {.lex_state = 156}, - [2127] = {.lex_state = 143}, - [2128] = {.lex_state = 143}, - [2129] = {.lex_state = 156}, - [2130] = {.lex_state = 156}, - [2131] = {.lex_state = 156}, - [2132] = {.lex_state = 143}, - [2133] = {.lex_state = 143}, - [2134] = {.lex_state = 156}, - [2135] = {.lex_state = 156}, - [2136] = {.lex_state = 156}, - [2137] = {.lex_state = 156}, - [2138] = {.lex_state = 156}, - [2139] = {.lex_state = 143}, - [2140] = {.lex_state = 143}, - [2141] = {.lex_state = 156}, - [2142] = {.lex_state = 156}, - [2143] = {.lex_state = 143}, - [2144] = {.lex_state = 156}, - [2145] = {.lex_state = 59}, - [2146] = {.lex_state = 59}, - [2147] = {.lex_state = 143}, - [2148] = {.lex_state = 156}, - [2149] = {.lex_state = 143}, - [2150] = {.lex_state = 143}, - [2151] = {.lex_state = 143}, - [2152] = {.lex_state = 156}, - [2153] = {.lex_state = 156}, - [2154] = {.lex_state = 156}, - [2155] = {.lex_state = 156}, - [2156] = {.lex_state = 143}, - [2157] = {.lex_state = 107}, - [2158] = {.lex_state = 156}, - [2159] = {.lex_state = 156}, - [2160] = {.lex_state = 156}, - [2161] = {.lex_state = 143}, - [2162] = {.lex_state = 143}, - [2163] = {.lex_state = 143}, - [2164] = {.lex_state = 143}, - [2165] = {.lex_state = 143}, - [2166] = {.lex_state = 156}, - [2167] = {.lex_state = 143}, - [2168] = {.lex_state = 143}, - [2169] = {.lex_state = 143}, - [2170] = {.lex_state = 143}, - [2171] = {.lex_state = 143}, - [2172] = {.lex_state = 143}, - [2173] = {.lex_state = 59}, - [2174] = {.lex_state = 59}, - [2175] = {.lex_state = 143}, - [2176] = {.lex_state = 143}, - [2177] = {.lex_state = 143}, - [2178] = {.lex_state = 143}, - [2179] = {.lex_state = 156}, - [2180] = {.lex_state = 156}, - [2181] = {.lex_state = 156}, - [2182] = {.lex_state = 143}, - [2183] = {.lex_state = 125}, - [2184] = {.lex_state = 156}, - [2185] = {.lex_state = 143}, - [2186] = {.lex_state = 143}, - [2187] = {.lex_state = 143}, - [2188] = {.lex_state = 143}, - [2189] = {.lex_state = 143}, - [2190] = {.lex_state = 125}, - [2191] = {.lex_state = 125}, - [2192] = {.lex_state = 143}, - [2193] = {.lex_state = 143}, - [2194] = {.lex_state = 143}, - [2195] = {.lex_state = 143}, - [2196] = {.lex_state = 143}, - [2197] = {.lex_state = 143}, - [2198] = {.lex_state = 143}, - [2199] = {.lex_state = 143}, - [2200] = {.lex_state = 143}, - [2201] = {.lex_state = 143}, - [2202] = {.lex_state = 143}, - [2203] = {.lex_state = 143}, - [2204] = {.lex_state = 143}, - [2205] = {.lex_state = 143}, - [2206] = {.lex_state = 63}, - [2207] = {.lex_state = 63}, - [2208] = {.lex_state = 63}, - [2209] = {.lex_state = 63}, - [2210] = {.lex_state = 63}, - [2211] = {.lex_state = 63}, - [2212] = {.lex_state = 156}, - [2213] = {.lex_state = 63}, - [2214] = {.lex_state = 63}, - [2215] = {.lex_state = 63}, - [2216] = {.lex_state = 63}, - [2217] = {.lex_state = 63}, - [2218] = {.lex_state = 63}, - [2219] = {.lex_state = 63}, - [2220] = {.lex_state = 63}, - [2221] = {.lex_state = 63}, - [2222] = {.lex_state = 63}, - [2223] = {.lex_state = 130}, - [2224] = {.lex_state = 63}, - [2225] = {.lex_state = 63}, - [2226] = {.lex_state = 63}, - [2227] = {.lex_state = 63}, - [2228] = {.lex_state = 63}, - [2229] = {.lex_state = 63}, - [2230] = {.lex_state = 63}, - [2231] = {.lex_state = 63}, - [2232] = {.lex_state = 63}, - [2233] = {.lex_state = 63}, - [2234] = {.lex_state = 63}, - [2235] = {.lex_state = 63}, - [2236] = {.lex_state = 63}, - [2237] = {.lex_state = 63}, - [2238] = {.lex_state = 63}, - [2239] = {.lex_state = 63}, - [2240] = {.lex_state = 63}, - [2241] = {.lex_state = 63}, - [2242] = {.lex_state = 63}, - [2243] = {.lex_state = 63}, - [2244] = {.lex_state = 63}, - [2245] = {.lex_state = 63}, - [2246] = {.lex_state = 63}, - [2247] = {.lex_state = 63}, - [2248] = {.lex_state = 63}, - [2249] = {.lex_state = 63}, - [2250] = {.lex_state = 63}, - [2251] = {.lex_state = 63}, - [2252] = {.lex_state = 63}, - [2253] = {.lex_state = 63}, - [2254] = {.lex_state = 63}, - [2255] = {.lex_state = 63}, - [2256] = {.lex_state = 156}, - [2257] = {.lex_state = 63}, - [2258] = {.lex_state = 63}, - [2259] = {.lex_state = 63}, - [2260] = {.lex_state = 63}, - [2261] = {.lex_state = 63}, - [2262] = {.lex_state = 156}, - [2263] = {.lex_state = 130}, - [2264] = {.lex_state = 63}, - [2265] = {.lex_state = 63}, - [2266] = {.lex_state = 63}, - [2267] = {.lex_state = 63}, - [2268] = {.lex_state = 63}, - [2269] = {.lex_state = 63}, - [2270] = {.lex_state = 63}, - [2271] = {.lex_state = 63}, - [2272] = {.lex_state = 63}, - [2273] = {.lex_state = 156}, - [2274] = {.lex_state = 156}, - [2275] = {.lex_state = 63}, - [2276] = {.lex_state = 63}, - [2277] = {.lex_state = 573}, - [2278] = {.lex_state = 573}, - [2279] = {.lex_state = 130}, - [2280] = {.lex_state = 572}, - [2281] = {.lex_state = 572}, - [2282] = {.lex_state = 125}, - [2283] = {.lex_state = 125}, - [2284] = {.lex_state = 125}, - [2285] = {.lex_state = 572}, - [2286] = {.lex_state = 572}, - [2287] = {.lex_state = 572}, - [2288] = {.lex_state = 572}, - [2289] = {.lex_state = 125}, - [2290] = {.lex_state = 575}, - [2291] = {.lex_state = 575}, - [2292] = {.lex_state = 572}, - [2293] = {.lex_state = 572}, - [2294] = {.lex_state = 125}, - [2295] = {.lex_state = 572}, - [2296] = {.lex_state = 572}, - [2297] = {.lex_state = 572}, - [2298] = {.lex_state = 572}, - [2299] = {.lex_state = 574}, - [2300] = {.lex_state = 575}, - [2301] = {.lex_state = 574}, - [2302] = {.lex_state = 574}, - [2303] = {.lex_state = 574}, - [2304] = {.lex_state = 574}, - [2305] = {.lex_state = 574}, - [2306] = {.lex_state = 574}, - [2307] = {.lex_state = 574}, - [2308] = {.lex_state = 575}, - [2309] = {.lex_state = 574}, - [2310] = {.lex_state = 574}, - [2311] = {.lex_state = 574}, - [2312] = {.lex_state = 574}, - [2313] = {.lex_state = 574}, - [2314] = {.lex_state = 574}, - [2315] = {.lex_state = 574}, - [2316] = {.lex_state = 574}, - [2317] = {.lex_state = 574}, - [2318] = {.lex_state = 574}, - [2319] = {.lex_state = 574}, - [2320] = {.lex_state = 574}, - [2321] = {.lex_state = 574}, - [2322] = {.lex_state = 574}, - [2323] = {.lex_state = 574}, - [2324] = {.lex_state = 574}, - [2325] = {.lex_state = 131}, - [2326] = {.lex_state = 517}, - [2327] = {.lex_state = 551}, - [2328] = {.lex_state = 551}, - [2329] = {.lex_state = 551}, - [2330] = {.lex_state = 551}, - [2331] = {.lex_state = 546}, - [2332] = {.lex_state = 517}, - [2333] = {.lex_state = 551}, - [2334] = {.lex_state = 545}, - [2335] = {.lex_state = 545}, - [2336] = {.lex_state = 546}, - [2337] = {.lex_state = 517}, - [2338] = {.lex_state = 551}, - [2339] = {.lex_state = 551}, - [2340] = {.lex_state = 551}, - [2341] = {.lex_state = 551}, - [2342] = {.lex_state = 517}, - [2343] = {.lex_state = 551}, - [2344] = {.lex_state = 551}, - [2345] = {.lex_state = 551}, - [2346] = {.lex_state = 551}, - [2347] = {.lex_state = 551}, - [2348] = {.lex_state = 551}, - [2349] = {.lex_state = 549}, - [2350] = {.lex_state = 517}, - [2351] = {.lex_state = 550}, - [2352] = {.lex_state = 81}, - [2353] = {.lex_state = 551}, - [2354] = {.lex_state = 551}, - [2355] = {.lex_state = 546}, - [2356] = {.lex_state = 550}, - [2357] = {.lex_state = 550}, - [2358] = {.lex_state = 550}, - [2359] = {.lex_state = 550}, - [2360] = {.lex_state = 551}, - [2361] = {.lex_state = 550}, - [2362] = {.lex_state = 551}, - [2363] = {.lex_state = 551}, - [2364] = {.lex_state = 551}, - [2365] = {.lex_state = 517}, - [2366] = {.lex_state = 545}, - [2367] = {.lex_state = 517}, - [2368] = {.lex_state = 550}, - [2369] = {.lex_state = 551}, - [2370] = {.lex_state = 551}, - [2371] = {.lex_state = 563}, - [2372] = {.lex_state = 550}, - [2373] = {.lex_state = 551}, - [2374] = {.lex_state = 563}, - [2375] = {.lex_state = 551}, - [2376] = {.lex_state = 549}, - [2377] = {.lex_state = 545}, - [2378] = {.lex_state = 549}, - [2379] = {.lex_state = 81}, - [2380] = {.lex_state = 116}, - [2381] = {.lex_state = 551}, - [2382] = {.lex_state = 81}, - [2383] = {.lex_state = 81}, - [2384] = {.lex_state = 549}, - [2385] = {.lex_state = 546}, - [2386] = {.lex_state = 517}, - [2387] = {.lex_state = 81}, - [2388] = {.lex_state = 551}, - [2389] = {.lex_state = 551}, - [2390] = {.lex_state = 551}, - [2391] = {.lex_state = 551}, - [2392] = {.lex_state = 517}, - [2393] = {.lex_state = 563}, - [2394] = {.lex_state = 567}, - [2395] = {.lex_state = 517}, - [2396] = {.lex_state = 563}, - [2397] = {.lex_state = 145}, - [2398] = {.lex_state = 81}, - [2399] = {.lex_state = 91}, + [1754] = {.lex_state = 149}, + [1755] = {.lex_state = 144}, + [1756] = {.lex_state = 144}, + [1757] = {.lex_state = 151}, + [1758] = {.lex_state = 151}, + [1759] = {.lex_state = 144}, + [1760] = {.lex_state = 144}, + [1761] = {.lex_state = 144}, + [1762] = {.lex_state = 144}, + [1763] = {.lex_state = 144}, + [1764] = {.lex_state = 144}, + [1765] = {.lex_state = 144}, + [1766] = {.lex_state = 144}, + [1767] = {.lex_state = 144}, + [1768] = {.lex_state = 144}, + [1769] = {.lex_state = 144}, + [1770] = {.lex_state = 144}, + [1771] = {.lex_state = 144}, + [1772] = {.lex_state = 144}, + [1773] = {.lex_state = 144}, + [1774] = {.lex_state = 144}, + [1775] = {.lex_state = 144}, + [1776] = {.lex_state = 144}, + [1777] = {.lex_state = 144}, + [1778] = {.lex_state = 144}, + [1779] = {.lex_state = 144}, + [1780] = {.lex_state = 144}, + [1781] = {.lex_state = 144}, + [1782] = {.lex_state = 144}, + [1783] = {.lex_state = 144}, + [1784] = {.lex_state = 144}, + [1785] = {.lex_state = 144}, + [1786] = {.lex_state = 144}, + [1787] = {.lex_state = 144}, + [1788] = {.lex_state = 144}, + [1789] = {.lex_state = 144}, + [1790] = {.lex_state = 144}, + [1791] = {.lex_state = 144}, + [1792] = {.lex_state = 144}, + [1793] = {.lex_state = 144}, + [1794] = {.lex_state = 144}, + [1795] = {.lex_state = 144}, + [1796] = {.lex_state = 144}, + [1797] = {.lex_state = 144}, + [1798] = {.lex_state = 144}, + [1799] = {.lex_state = 144}, + [1800] = {.lex_state = 144}, + [1801] = {.lex_state = 144}, + [1802] = {.lex_state = 144}, + [1803] = {.lex_state = 144}, + [1804] = {.lex_state = 144}, + [1805] = {.lex_state = 144}, + [1806] = {.lex_state = 144}, + [1807] = {.lex_state = 144}, + [1808] = {.lex_state = 144}, + [1809] = {.lex_state = 144}, + [1810] = {.lex_state = 144}, + [1811] = {.lex_state = 144}, + [1812] = {.lex_state = 144}, + [1813] = {.lex_state = 144}, + [1814] = {.lex_state = 144}, + [1815] = {.lex_state = 144}, + [1816] = {.lex_state = 144}, + [1817] = {.lex_state = 144}, + [1818] = {.lex_state = 144}, + [1819] = {.lex_state = 144}, + [1820] = {.lex_state = 144}, + [1821] = {.lex_state = 144}, + [1822] = {.lex_state = 144}, + [1823] = {.lex_state = 144}, + [1824] = {.lex_state = 144}, + [1825] = {.lex_state = 144}, + [1826] = {.lex_state = 144}, + [1827] = {.lex_state = 144}, + [1828] = {.lex_state = 144}, + [1829] = {.lex_state = 144}, + [1830] = {.lex_state = 144}, + [1831] = {.lex_state = 144}, + [1832] = {.lex_state = 144}, + [1833] = {.lex_state = 144}, + [1834] = {.lex_state = 144}, + [1835] = {.lex_state = 144}, + [1836] = {.lex_state = 144}, + [1837] = {.lex_state = 91}, + [1838] = {.lex_state = 144}, + [1839] = {.lex_state = 144}, + [1840] = {.lex_state = 144}, + [1841] = {.lex_state = 144}, + [1842] = {.lex_state = 144}, + [1843] = {.lex_state = 144}, + [1844] = {.lex_state = 144}, + [1845] = {.lex_state = 144}, + [1846] = {.lex_state = 144}, + [1847] = {.lex_state = 144}, + [1848] = {.lex_state = 144}, + [1849] = {.lex_state = 144}, + [1850] = {.lex_state = 144}, + [1851] = {.lex_state = 144}, + [1852] = {.lex_state = 91}, + [1853] = {.lex_state = 144}, + [1854] = {.lex_state = 144}, + [1855] = {.lex_state = 144}, + [1856] = {.lex_state = 144}, + [1857] = {.lex_state = 144}, + [1858] = {.lex_state = 144}, + [1859] = {.lex_state = 144}, + [1860] = {.lex_state = 144}, + [1861] = {.lex_state = 144}, + [1862] = {.lex_state = 144}, + [1863] = {.lex_state = 144}, + [1864] = {.lex_state = 144}, + [1865] = {.lex_state = 144}, + [1866] = {.lex_state = 144}, + [1867] = {.lex_state = 144}, + [1868] = {.lex_state = 144}, + [1869] = {.lex_state = 144}, + [1870] = {.lex_state = 144}, + [1871] = {.lex_state = 144}, + [1872] = {.lex_state = 144}, + [1873] = {.lex_state = 144}, + [1874] = {.lex_state = 144}, + [1875] = {.lex_state = 144}, + [1876] = {.lex_state = 144}, + [1877] = {.lex_state = 144}, + [1878] = {.lex_state = 144}, + [1879] = {.lex_state = 144}, + [1880] = {.lex_state = 144}, + [1881] = {.lex_state = 144}, + [1882] = {.lex_state = 144}, + [1883] = {.lex_state = 144}, + [1884] = {.lex_state = 160}, + [1885] = {.lex_state = 149}, + [1886] = {.lex_state = 149}, + [1887] = {.lex_state = 144}, + [1888] = {.lex_state = 144}, + [1889] = {.lex_state = 144}, + [1890] = {.lex_state = 144}, + [1891] = {.lex_state = 144}, + [1892] = {.lex_state = 144}, + [1893] = {.lex_state = 144}, + [1894] = {.lex_state = 144}, + [1895] = {.lex_state = 144}, + [1896] = {.lex_state = 144}, + [1897] = {.lex_state = 160}, + [1898] = {.lex_state = 144}, + [1899] = {.lex_state = 144}, + [1900] = {.lex_state = 144}, + [1901] = {.lex_state = 144}, + [1902] = {.lex_state = 144}, + [1903] = {.lex_state = 144}, + [1904] = {.lex_state = 144}, + [1905] = {.lex_state = 144}, + [1906] = {.lex_state = 144}, + [1907] = {.lex_state = 144}, + [1908] = {.lex_state = 144}, + [1909] = {.lex_state = 144}, + [1910] = {.lex_state = 144}, + [1911] = {.lex_state = 144}, + [1912] = {.lex_state = 144}, + [1913] = {.lex_state = 144}, + [1914] = {.lex_state = 144}, + [1915] = {.lex_state = 144}, + [1916] = {.lex_state = 144}, + [1917] = {.lex_state = 144}, + [1918] = {.lex_state = 160}, + [1919] = {.lex_state = 160}, + [1920] = {.lex_state = 91}, + [1921] = {.lex_state = 91}, + [1922] = {.lex_state = 160}, + [1923] = {.lex_state = 144}, + [1924] = {.lex_state = 166}, + [1925] = {.lex_state = 166}, + [1926] = {.lex_state = 144}, + [1927] = {.lex_state = 159}, + [1928] = {.lex_state = 159}, + [1929] = {.lex_state = 159}, + [1930] = {.lex_state = 160}, + [1931] = {.lex_state = 160}, + [1932] = {.lex_state = 159}, + [1933] = {.lex_state = 116}, + [1934] = {.lex_state = 159}, + [1935] = {.lex_state = 159}, + [1936] = {.lex_state = 159}, + [1937] = {.lex_state = 164}, + [1938] = {.lex_state = 164}, + [1939] = {.lex_state = 164}, + [1940] = {.lex_state = 94}, + [1941] = {.lex_state = 94}, + [1942] = {.lex_state = 94}, + [1943] = {.lex_state = 107}, + [1944] = {.lex_state = 94}, + [1945] = {.lex_state = 163}, + [1946] = {.lex_state = 163}, + [1947] = {.lex_state = 159}, + [1948] = {.lex_state = 94}, + [1949] = {.lex_state = 94}, + [1950] = {.lex_state = 94}, + [1951] = {.lex_state = 159}, + [1952] = {.lex_state = 159}, + [1953] = {.lex_state = 159}, + [1954] = {.lex_state = 159}, + [1955] = {.lex_state = 159}, + [1956] = {.lex_state = 159}, + [1957] = {.lex_state = 159}, + [1958] = {.lex_state = 146}, + [1959] = {.lex_state = 146}, + [1960] = {.lex_state = 149}, + [1961] = {.lex_state = 144}, + [1962] = {.lex_state = 144}, + [1963] = {.lex_state = 144}, + [1964] = {.lex_state = 149}, + [1965] = {.lex_state = 151}, + [1966] = {.lex_state = 97}, + [1967] = {.lex_state = 97}, + [1968] = {.lex_state = 97}, + [1969] = {.lex_state = 97}, + [1970] = {.lex_state = 97}, + [1971] = {.lex_state = 97}, + [1972] = {.lex_state = 97}, + [1973] = {.lex_state = 97}, + [1974] = {.lex_state = 97}, + [1975] = {.lex_state = 97}, + [1976] = {.lex_state = 163}, + [1977] = {.lex_state = 163}, + [1978] = {.lex_state = 149}, + [1979] = {.lex_state = 149}, + [1980] = {.lex_state = 163}, + [1981] = {.lex_state = 149}, + [1982] = {.lex_state = 97}, + [1983] = {.lex_state = 137}, + [1984] = {.lex_state = 97}, + [1985] = {.lex_state = 137}, + [1986] = {.lex_state = 151}, + [1987] = {.lex_state = 151}, + [1988] = {.lex_state = 163}, + [1989] = {.lex_state = 149}, + [1990] = {.lex_state = 151}, + [1991] = {.lex_state = 151}, + [1992] = {.lex_state = 97}, + [1993] = {.lex_state = 151}, + [1994] = {.lex_state = 151}, + [1995] = {.lex_state = 151}, + [1996] = {.lex_state = 151}, + [1997] = {.lex_state = 151}, + [1998] = {.lex_state = 151}, + [1999] = {.lex_state = 151}, + [2000] = {.lex_state = 149}, + [2001] = {.lex_state = 163}, + [2002] = {.lex_state = 151}, + [2003] = {.lex_state = 151}, + [2004] = {.lex_state = 149}, + [2005] = {.lex_state = 151}, + [2006] = {.lex_state = 97}, + [2007] = {.lex_state = 97}, + [2008] = {.lex_state = 163}, + [2009] = {.lex_state = 97}, + [2010] = {.lex_state = 97}, + [2011] = {.lex_state = 149}, + [2012] = {.lex_state = 151}, + [2013] = {.lex_state = 151}, + [2014] = {.lex_state = 151}, + [2015] = {.lex_state = 151}, + [2016] = {.lex_state = 151}, + [2017] = {.lex_state = 151}, + [2018] = {.lex_state = 151}, + [2019] = {.lex_state = 151}, + [2020] = {.lex_state = 151}, + [2021] = {.lex_state = 151}, + [2022] = {.lex_state = 151}, + [2023] = {.lex_state = 151}, + [2024] = {.lex_state = 151}, + [2025] = {.lex_state = 149}, + [2026] = {.lex_state = 149}, + [2027] = {.lex_state = 151}, + [2028] = {.lex_state = 97}, + [2029] = {.lex_state = 151}, + [2030] = {.lex_state = 149}, + [2031] = {.lex_state = 151}, + [2032] = {.lex_state = 149}, + [2033] = {.lex_state = 149}, + [2034] = {.lex_state = 151}, + [2035] = {.lex_state = 151}, + [2036] = {.lex_state = 151}, + [2037] = {.lex_state = 97}, + [2038] = {.lex_state = 151}, + [2039] = {.lex_state = 151}, + [2040] = {.lex_state = 151}, + [2041] = {.lex_state = 151}, + [2042] = {.lex_state = 97}, + [2043] = {.lex_state = 151}, + [2044] = {.lex_state = 97}, + [2045] = {.lex_state = 151}, + [2046] = {.lex_state = 151}, + [2047] = {.lex_state = 151}, + [2048] = {.lex_state = 151}, + [2049] = {.lex_state = 151}, + [2050] = {.lex_state = 151}, + [2051] = {.lex_state = 151}, + [2052] = {.lex_state = 97}, + [2053] = {.lex_state = 97}, + [2054] = {.lex_state = 151}, + [2055] = {.lex_state = 151}, + [2056] = {.lex_state = 151}, + [2057] = {.lex_state = 151}, + [2058] = {.lex_state = 97}, + [2059] = {.lex_state = 151}, + [2060] = {.lex_state = 151}, + [2061] = {.lex_state = 151}, + [2062] = {.lex_state = 151}, + [2063] = {.lex_state = 151}, + [2064] = {.lex_state = 97}, + [2065] = {.lex_state = 97}, + [2066] = {.lex_state = 97}, + [2067] = {.lex_state = 97}, + [2068] = {.lex_state = 151}, + [2069] = {.lex_state = 151}, + [2070] = {.lex_state = 151}, + [2071] = {.lex_state = 151}, + [2072] = {.lex_state = 151}, + [2073] = {.lex_state = 151}, + [2074] = {.lex_state = 97}, + [2075] = {.lex_state = 97}, + [2076] = {.lex_state = 151}, + [2077] = {.lex_state = 149}, + [2078] = {.lex_state = 151}, + [2079] = {.lex_state = 149}, + [2080] = {.lex_state = 97}, + [2081] = {.lex_state = 151}, + [2082] = {.lex_state = 151}, + [2083] = {.lex_state = 163}, + [2084] = {.lex_state = 163}, + [2085] = {.lex_state = 151}, + [2086] = {.lex_state = 97}, + [2087] = {.lex_state = 151}, + [2088] = {.lex_state = 151}, + [2089] = {.lex_state = 151}, + [2090] = {.lex_state = 97}, + [2091] = {.lex_state = 97}, + [2092] = {.lex_state = 97}, + [2093] = {.lex_state = 97}, + [2094] = {.lex_state = 97}, + [2095] = {.lex_state = 97}, + [2096] = {.lex_state = 97}, + [2097] = {.lex_state = 97}, + [2098] = {.lex_state = 97}, + [2099] = {.lex_state = 151}, + [2100] = {.lex_state = 97}, + [2101] = {.lex_state = 97}, + [2102] = {.lex_state = 151}, + [2103] = {.lex_state = 151}, + [2104] = {.lex_state = 151}, + [2105] = {.lex_state = 151}, + [2106] = {.lex_state = 151}, + [2107] = {.lex_state = 151}, + [2108] = {.lex_state = 151}, + [2109] = {.lex_state = 151}, + [2110] = {.lex_state = 151}, + [2111] = {.lex_state = 151}, + [2112] = {.lex_state = 151}, + [2113] = {.lex_state = 151}, + [2114] = {.lex_state = 151}, + [2115] = {.lex_state = 151}, + [2116] = {.lex_state = 151}, + [2117] = {.lex_state = 97}, + [2118] = {.lex_state = 97}, + [2119] = {.lex_state = 151}, + [2120] = {.lex_state = 97}, + [2121] = {.lex_state = 151}, + [2122] = {.lex_state = 151}, + [2123] = {.lex_state = 151}, + [2124] = {.lex_state = 151}, + [2125] = {.lex_state = 149}, + [2126] = {.lex_state = 151}, + [2127] = {.lex_state = 151}, + [2128] = {.lex_state = 151}, + [2129] = {.lex_state = 151}, + [2130] = {.lex_state = 97}, + [2131] = {.lex_state = 97}, + [2132] = {.lex_state = 151}, + [2133] = {.lex_state = 163}, + [2134] = {.lex_state = 151}, + [2135] = {.lex_state = 151}, + [2136] = {.lex_state = 151}, + [2137] = {.lex_state = 151}, + [2138] = {.lex_state = 151}, + [2139] = {.lex_state = 151}, + [2140] = {.lex_state = 97}, + [2141] = {.lex_state = 97}, + [2142] = {.lex_state = 151}, + [2143] = {.lex_state = 97}, + [2144] = {.lex_state = 151}, + [2145] = {.lex_state = 97}, + [2146] = {.lex_state = 151}, + [2147] = {.lex_state = 97}, + [2148] = {.lex_state = 151}, + [2149] = {.lex_state = 151}, + [2150] = {.lex_state = 151}, + [2151] = {.lex_state = 97}, + [2152] = {.lex_state = 151}, + [2153] = {.lex_state = 151}, + [2154] = {.lex_state = 151}, + [2155] = {.lex_state = 163}, + [2156] = {.lex_state = 151}, + [2157] = {.lex_state = 97}, + [2158] = {.lex_state = 151}, + [2159] = {.lex_state = 163}, + [2160] = {.lex_state = 163}, + [2161] = {.lex_state = 163}, + [2162] = {.lex_state = 151}, + [2163] = {.lex_state = 151}, + [2164] = {.lex_state = 97}, + [2165] = {.lex_state = 151}, + [2166] = {.lex_state = 151}, + [2167] = {.lex_state = 97}, + [2168] = {.lex_state = 151}, + [2169] = {.lex_state = 97}, + [2170] = {.lex_state = 97}, + [2171] = {.lex_state = 151}, + [2172] = {.lex_state = 151}, + [2173] = {.lex_state = 151}, + [2174] = {.lex_state = 151}, + [2175] = {.lex_state = 151}, + [2176] = {.lex_state = 151}, + [2177] = {.lex_state = 151}, + [2178] = {.lex_state = 151}, + [2179] = {.lex_state = 151}, + [2180] = {.lex_state = 151}, + [2181] = {.lex_state = 97}, + [2182] = {.lex_state = 151}, + [2183] = {.lex_state = 151}, + [2184] = {.lex_state = 151}, + [2185] = {.lex_state = 151}, + [2186] = {.lex_state = 151}, + [2187] = {.lex_state = 151}, + [2188] = {.lex_state = 151}, + [2189] = {.lex_state = 151}, + [2190] = {.lex_state = 151}, + [2191] = {.lex_state = 151}, + [2192] = {.lex_state = 151}, + [2193] = {.lex_state = 151}, + [2194] = {.lex_state = 151}, + [2195] = {.lex_state = 151}, + [2196] = {.lex_state = 151}, + [2197] = {.lex_state = 151}, + [2198] = {.lex_state = 151}, + [2199] = {.lex_state = 151}, + [2200] = {.lex_state = 151}, + [2201] = {.lex_state = 151}, + [2202] = {.lex_state = 151}, + [2203] = {.lex_state = 151}, + [2204] = {.lex_state = 151}, + [2205] = {.lex_state = 151}, + [2206] = {.lex_state = 151}, + [2207] = {.lex_state = 151}, + [2208] = {.lex_state = 151}, + [2209] = {.lex_state = 151}, + [2210] = {.lex_state = 151}, + [2211] = {.lex_state = 151}, + [2212] = {.lex_state = 163}, + [2213] = {.lex_state = 151}, + [2214] = {.lex_state = 151}, + [2215] = {.lex_state = 151}, + [2216] = {.lex_state = 163}, + [2217] = {.lex_state = 151}, + [2218] = {.lex_state = 163}, + [2219] = {.lex_state = 163}, + [2220] = {.lex_state = 151}, + [2221] = {.lex_state = 151}, + [2222] = {.lex_state = 151}, + [2223] = {.lex_state = 163}, + [2224] = {.lex_state = 163}, + [2225] = {.lex_state = 163}, + [2226] = {.lex_state = 151}, + [2227] = {.lex_state = 151}, + [2228] = {.lex_state = 163}, + [2229] = {.lex_state = 151}, + [2230] = {.lex_state = 151}, + [2231] = {.lex_state = 151}, + [2232] = {.lex_state = 97}, + [2233] = {.lex_state = 151}, + [2234] = {.lex_state = 151}, + [2235] = {.lex_state = 151}, + [2236] = {.lex_state = 151}, + [2237] = {.lex_state = 151}, + [2238] = {.lex_state = 163}, + [2239] = {.lex_state = 151}, + [2240] = {.lex_state = 151}, + [2241] = {.lex_state = 151}, + [2242] = {.lex_state = 163}, + [2243] = {.lex_state = 163}, + [2244] = {.lex_state = 163}, + [2245] = {.lex_state = 163}, + [2246] = {.lex_state = 151}, + [2247] = {.lex_state = 151}, + [2248] = {.lex_state = 97}, + [2249] = {.lex_state = 151}, + [2250] = {.lex_state = 151}, + [2251] = {.lex_state = 151}, + [2252] = {.lex_state = 163}, + [2253] = {.lex_state = 163}, + [2254] = {.lex_state = 97}, + [2255] = {.lex_state = 151}, + [2256] = {.lex_state = 151}, + [2257] = {.lex_state = 151}, + [2258] = {.lex_state = 151}, + [2259] = {.lex_state = 151}, + [2260] = {.lex_state = 151}, + [2261] = {.lex_state = 151}, + [2262] = {.lex_state = 151}, + [2263] = {.lex_state = 163}, + [2264] = {.lex_state = 163}, + [2265] = {.lex_state = 163}, + [2266] = {.lex_state = 163}, + [2267] = {.lex_state = 163}, + [2268] = {.lex_state = 163}, + [2269] = {.lex_state = 163}, + [2270] = {.lex_state = 163}, + [2271] = {.lex_state = 163}, + [2272] = {.lex_state = 163}, + [2273] = {.lex_state = 163}, + [2274] = {.lex_state = 163}, + [2275] = {.lex_state = 163}, + [2276] = {.lex_state = 163}, + [2277] = {.lex_state = 163}, + [2278] = {.lex_state = 163}, + [2279] = {.lex_state = 163}, + [2280] = {.lex_state = 163}, + [2281] = {.lex_state = 151}, + [2282] = {.lex_state = 151}, + [2283] = {.lex_state = 163}, + [2284] = {.lex_state = 163}, + [2285] = {.lex_state = 97}, + [2286] = {.lex_state = 163}, + [2287] = {.lex_state = 163}, + [2288] = {.lex_state = 151}, + [2289] = {.lex_state = 151}, + [2290] = {.lex_state = 163}, + [2291] = {.lex_state = 163}, + [2292] = {.lex_state = 151}, + [2293] = {.lex_state = 163}, + [2294] = {.lex_state = 163}, + [2295] = {.lex_state = 163}, + [2296] = {.lex_state = 163}, + [2297] = {.lex_state = 149}, + [2298] = {.lex_state = 163}, + [2299] = {.lex_state = 163}, + [2300] = {.lex_state = 182}, + [2301] = {.lex_state = 163}, + [2302] = {.lex_state = 163}, + [2303] = {.lex_state = 137}, + [2304] = {.lex_state = 137}, + [2305] = {.lex_state = 182}, + [2306] = {.lex_state = 182}, + [2307] = {.lex_state = 182}, + [2308] = {.lex_state = 163}, + [2309] = {.lex_state = 182}, + [2310] = {.lex_state = 182}, + [2311] = {.lex_state = 163}, + [2312] = {.lex_state = 163}, + [2313] = {.lex_state = 163}, + [2314] = {.lex_state = 182}, + [2315] = {.lex_state = 182}, + [2316] = {.lex_state = 163}, + [2317] = {.lex_state = 163}, + [2318] = {.lex_state = 605}, + [2319] = {.lex_state = 182}, + [2320] = {.lex_state = 605}, + [2321] = {.lex_state = 137}, + [2322] = {.lex_state = 604}, + [2323] = {.lex_state = 604}, + [2324] = {.lex_state = 604}, + [2325] = {.lex_state = 604}, + [2326] = {.lex_state = 604}, + [2327] = {.lex_state = 604}, + [2328] = {.lex_state = 607}, + [2329] = {.lex_state = 604}, + [2330] = {.lex_state = 604}, + [2331] = {.lex_state = 607}, + [2332] = {.lex_state = 604}, + [2333] = {.lex_state = 604}, + [2334] = {.lex_state = 604}, + [2335] = {.lex_state = 604}, + [2336] = {.lex_state = 607}, + [2337] = {.lex_state = 606}, + [2338] = {.lex_state = 606}, + [2339] = {.lex_state = 606}, + [2340] = {.lex_state = 606}, + [2341] = {.lex_state = 606}, + [2342] = {.lex_state = 607}, + [2343] = {.lex_state = 606}, + [2344] = {.lex_state = 606}, + [2345] = {.lex_state = 606}, + [2346] = {.lex_state = 606}, + [2347] = {.lex_state = 606}, + [2348] = {.lex_state = 606}, + [2349] = {.lex_state = 606}, + [2350] = {.lex_state = 606}, + [2351] = {.lex_state = 606}, + [2352] = {.lex_state = 606}, + [2353] = {.lex_state = 606}, + [2354] = {.lex_state = 606}, + [2355] = {.lex_state = 606}, + [2356] = {.lex_state = 606}, + [2357] = {.lex_state = 606}, + [2358] = {.lex_state = 183}, + [2359] = {.lex_state = 606}, + [2360] = {.lex_state = 606}, + [2361] = {.lex_state = 606}, + [2362] = {.lex_state = 606}, + [2363] = {.lex_state = 583}, + [2364] = {.lex_state = 583}, + [2365] = {.lex_state = 545}, + [2366] = {.lex_state = 583}, + [2367] = {.lex_state = 545}, + [2368] = {.lex_state = 583}, + [2369] = {.lex_state = 583}, + [2370] = {.lex_state = 583}, + [2371] = {.lex_state = 578}, + [2372] = {.lex_state = 583}, + [2373] = {.lex_state = 583}, + [2374] = {.lex_state = 583}, + [2375] = {.lex_state = 583}, + [2376] = {.lex_state = 545}, + [2377] = {.lex_state = 578}, + [2378] = {.lex_state = 583}, + [2379] = {.lex_state = 577}, + [2380] = {.lex_state = 577}, + [2381] = {.lex_state = 545}, + [2382] = {.lex_state = 583}, + [2383] = {.lex_state = 583}, + [2384] = {.lex_state = 583}, + [2385] = {.lex_state = 583}, + [2386] = {.lex_state = 583}, + [2387] = {.lex_state = 583}, + [2388] = {.lex_state = 578}, + [2389] = {.lex_state = 545}, + [2390] = {.lex_state = 545}, + [2391] = {.lex_state = 583}, + [2392] = {.lex_state = 582}, + [2393] = {.lex_state = 81}, + [2394] = {.lex_state = 577}, + [2395] = {.lex_state = 583}, + [2396] = {.lex_state = 583}, + [2397] = {.lex_state = 583}, + [2398] = {.lex_state = 125}, + [2399] = {.lex_state = 583}, [2400] = {.lex_state = 81}, - [2401] = {.lex_state = 551}, - [2402] = {.lex_state = 551}, - [2403] = {.lex_state = 570}, - [2404] = {.lex_state = 551}, - [2405] = {.lex_state = 578}, - [2406] = {.lex_state = 517}, - [2407] = {.lex_state = 551}, - [2408] = {.lex_state = 550}, - [2409] = {.lex_state = 517}, - [2410] = {.lex_state = 206}, - [2411] = {.lex_state = 549}, - [2412] = {.lex_state = 551}, - [2413] = {.lex_state = 550}, - [2414] = {.lex_state = 206}, - [2415] = {.lex_state = 551}, - [2416] = {.lex_state = 549}, - [2417] = {.lex_state = 567}, - [2418] = {.lex_state = 567}, - [2419] = {.lex_state = 549}, - [2420] = {.lex_state = 549}, - [2421] = {.lex_state = 206}, - [2422] = {.lex_state = 517}, - [2423] = {.lex_state = 550}, - [2424] = {.lex_state = 551}, - [2425] = {.lex_state = 551}, - [2426] = {.lex_state = 551}, - [2427] = {.lex_state = 550}, - [2428] = {.lex_state = 551}, - [2429] = {.lex_state = 551}, - [2430] = {.lex_state = 551}, - [2431] = {.lex_state = 206}, - [2432] = {.lex_state = 551}, - [2433] = {.lex_state = 551}, - [2434] = {.lex_state = 517}, - [2435] = {.lex_state = 551}, - [2436] = {.lex_state = 551}, - [2437] = {.lex_state = 551}, - [2438] = {.lex_state = 551}, - [2439] = {.lex_state = 550}, - [2440] = {.lex_state = 517}, - [2441] = {.lex_state = 550}, - [2442] = {.lex_state = 517}, - [2443] = {.lex_state = 550}, - [2444] = {.lex_state = 550}, - [2445] = {.lex_state = 1}, - [2446] = {.lex_state = 568}, - [2447] = {.lex_state = 551}, - [2448] = {.lex_state = 551}, - [2449] = {.lex_state = 66}, - [2450] = {.lex_state = 66}, - [2451] = {.lex_state = 66}, - [2452] = {.lex_state = 568}, - [2453] = {.lex_state = 568}, - [2454] = {.lex_state = 568}, - [2455] = {.lex_state = 567}, - [2456] = {.lex_state = 551}, - [2457] = {.lex_state = 568}, - [2458] = {.lex_state = 568}, - [2459] = {.lex_state = 551}, - [2460] = {.lex_state = 568}, - [2461] = {.lex_state = 568}, - [2462] = {.lex_state = 568}, - [2463] = {.lex_state = 517}, - [2464] = {.lex_state = 66}, - [2465] = {.lex_state = 568}, - [2466] = {.lex_state = 568}, - [2467] = {.lex_state = 568}, - [2468] = {.lex_state = 568}, - [2469] = {.lex_state = 568}, - [2470] = {.lex_state = 517}, - [2471] = {.lex_state = 551}, - [2472] = {.lex_state = 568}, - [2473] = {.lex_state = 66}, - [2474] = {.lex_state = 568}, - [2475] = {.lex_state = 568}, - [2476] = {.lex_state = 568}, - [2477] = {.lex_state = 568}, - [2478] = {.lex_state = 568}, - [2479] = {.lex_state = 66}, - [2480] = {.lex_state = 568}, - [2481] = {.lex_state = 568}, - [2482] = {.lex_state = 1}, - [2483] = {.lex_state = 568}, - [2484] = {.lex_state = 568}, - [2485] = {.lex_state = 568}, - [2486] = {.lex_state = 568}, - [2487] = {.lex_state = 551}, - [2488] = {.lex_state = 568}, - [2489] = {.lex_state = 551}, - [2490] = {.lex_state = 551}, - [2491] = {.lex_state = 551}, - [2492] = {.lex_state = 66}, - [2493] = {.lex_state = 568}, - [2494] = {.lex_state = 568}, - [2495] = {.lex_state = 568}, - [2496] = {.lex_state = 568}, - [2497] = {.lex_state = 568}, - [2498] = {.lex_state = 568}, - [2499] = {.lex_state = 568}, - [2500] = {.lex_state = 568}, - [2501] = {.lex_state = 1}, - [2502] = {.lex_state = 568}, + [2401] = {.lex_state = 583}, + [2402] = {.lex_state = 81}, + [2403] = {.lex_state = 595}, + [2404] = {.lex_state = 582}, + [2405] = {.lex_state = 545}, + [2406] = {.lex_state = 595}, + [2407] = {.lex_state = 545}, + [2408] = {.lex_state = 582}, + [2409] = {.lex_state = 581}, + [2410] = {.lex_state = 583}, + [2411] = {.lex_state = 578}, + [2412] = {.lex_state = 583}, + [2413] = {.lex_state = 583}, + [2414] = {.lex_state = 581}, + [2415] = {.lex_state = 582}, + [2416] = {.lex_state = 581}, + [2417] = {.lex_state = 583}, + [2418] = {.lex_state = 582}, + [2419] = {.lex_state = 577}, + [2420] = {.lex_state = 583}, + [2421] = {.lex_state = 582}, + [2422] = {.lex_state = 582}, + [2423] = {.lex_state = 582}, + [2424] = {.lex_state = 583}, + [2425] = {.lex_state = 81}, + [2426] = {.lex_state = 583}, + [2427] = {.lex_state = 81}, + [2428] = {.lex_state = 581}, + [2429] = {.lex_state = 545}, + [2430] = {.lex_state = 583}, + [2431] = {.lex_state = 545}, + [2432] = {.lex_state = 583}, + [2433] = {.lex_state = 595}, + [2434] = {.lex_state = 583}, + [2435] = {.lex_state = 545}, + [2436] = {.lex_state = 599}, + [2437] = {.lex_state = 583}, + [2438] = {.lex_state = 583}, + [2439] = {.lex_state = 583}, + [2440] = {.lex_state = 81}, + [2441] = {.lex_state = 582}, + [2442] = {.lex_state = 583}, + [2443] = {.lex_state = 582}, + [2444] = {.lex_state = 583}, + [2445] = {.lex_state = 583}, + [2446] = {.lex_state = 583}, + [2447] = {.lex_state = 582}, + [2448] = {.lex_state = 610}, + [2449] = {.lex_state = 599}, + [2450] = {.lex_state = 583}, + [2451] = {.lex_state = 581}, + [2452] = {.lex_state = 583}, + [2453] = {.lex_state = 582}, + [2454] = {.lex_state = 583}, + [2455] = {.lex_state = 230}, + [2456] = {.lex_state = 100}, + [2457] = {.lex_state = 230}, + [2458] = {.lex_state = 545}, + [2459] = {.lex_state = 153}, + [2460] = {.lex_state = 582}, + [2461] = {.lex_state = 545}, + [2462] = {.lex_state = 582}, + [2463] = {.lex_state = 81}, + [2464] = {.lex_state = 545}, + [2465] = {.lex_state = 583}, + [2466] = {.lex_state = 545}, + [2467] = {.lex_state = 582}, + [2468] = {.lex_state = 602}, + [2469] = {.lex_state = 581}, + [2470] = {.lex_state = 545}, + [2471] = {.lex_state = 595}, + [2472] = {.lex_state = 583}, + [2473] = {.lex_state = 230}, + [2474] = {.lex_state = 581}, + [2475] = {.lex_state = 583}, + [2476] = {.lex_state = 230}, + [2477] = {.lex_state = 599}, + [2478] = {.lex_state = 581}, + [2479] = {.lex_state = 583}, + [2480] = {.lex_state = 582}, + [2481] = {.lex_state = 583}, + [2482] = {.lex_state = 600}, + [2483] = {.lex_state = 600}, + [2484] = {.lex_state = 600}, + [2485] = {.lex_state = 583}, + [2486] = {.lex_state = 583}, + [2487] = {.lex_state = 545}, + [2488] = {.lex_state = 600}, + [2489] = {.lex_state = 600}, + [2490] = {.lex_state = 600}, + [2491] = {.lex_state = 545}, + [2492] = {.lex_state = 600}, + [2493] = {.lex_state = 600}, + [2494] = {.lex_state = 583}, + [2495] = {.lex_state = 583}, + [2496] = {.lex_state = 600}, + [2497] = {.lex_state = 600}, + [2498] = {.lex_state = 600}, + [2499] = {.lex_state = 600}, + [2500] = {.lex_state = 600}, + [2501] = {.lex_state = 66}, + [2502] = {.lex_state = 600}, [2503] = {.lex_state = 66}, - [2504] = {.lex_state = 568}, - [2505] = {.lex_state = 568}, - [2506] = {.lex_state = 568}, - [2507] = {.lex_state = 1}, - [2508] = {.lex_state = 568}, - [2509] = {.lex_state = 568}, - [2510] = {.lex_state = 568}, - [2511] = {.lex_state = 568}, - [2512] = {.lex_state = 517}, - [2513] = {.lex_state = 568}, - [2514] = {.lex_state = 568}, - [2515] = {.lex_state = 568}, - [2516] = {.lex_state = 551}, - [2517] = {.lex_state = 568}, - [2518] = {.lex_state = 568}, - [2519] = {.lex_state = 81}, - [2520] = {.lex_state = 66}, - [2521] = {.lex_state = 66}, - [2522] = {.lex_state = 568}, - [2523] = {.lex_state = 551}, - [2524] = {.lex_state = 568}, - [2525] = {.lex_state = 568}, - [2526] = {.lex_state = 568}, - [2527] = {.lex_state = 568}, - [2528] = {.lex_state = 568}, - [2529] = {.lex_state = 568}, - [2530] = {.lex_state = 568}, - [2531] = {.lex_state = 568}, - [2532] = {.lex_state = 66}, - [2533] = {.lex_state = 568}, - [2534] = {.lex_state = 1}, - [2535] = {.lex_state = 568}, - [2536] = {.lex_state = 568}, - [2537] = {.lex_state = 568}, - [2538] = {.lex_state = 568}, - [2539] = {.lex_state = 551}, - [2540] = {.lex_state = 568}, - [2541] = {.lex_state = 551}, - [2542] = {.lex_state = 517}, - [2543] = {.lex_state = 568}, - [2544] = {.lex_state = 568}, - [2545] = {.lex_state = 1}, - [2546] = {.lex_state = 568}, - [2547] = {.lex_state = 568}, - [2548] = {.lex_state = 568}, - [2549] = {.lex_state = 568}, - [2550] = {.lex_state = 568}, - [2551] = {.lex_state = 551}, - [2552] = {.lex_state = 567}, - [2553] = {.lex_state = 66}, - [2554] = {.lex_state = 568}, - [2555] = {.lex_state = 568}, - [2556] = {.lex_state = 568}, - [2557] = {.lex_state = 568}, - [2558] = {.lex_state = 568}, + [2504] = {.lex_state = 600}, + [2505] = {.lex_state = 583}, + [2506] = {.lex_state = 66}, + [2507] = {.lex_state = 600}, + [2508] = {.lex_state = 583}, + [2509] = {.lex_state = 583}, + [2510] = {.lex_state = 583}, + [2511] = {.lex_state = 600}, + [2512] = {.lex_state = 600}, + [2513] = {.lex_state = 583}, + [2514] = {.lex_state = 600}, + [2515] = {.lex_state = 600}, + [2516] = {.lex_state = 66}, + [2517] = {.lex_state = 600}, + [2518] = {.lex_state = 600}, + [2519] = {.lex_state = 600}, + [2520] = {.lex_state = 545}, + [2521] = {.lex_state = 600}, + [2522] = {.lex_state = 600}, + [2523] = {.lex_state = 600}, + [2524] = {.lex_state = 600}, + [2525] = {.lex_state = 600}, + [2526] = {.lex_state = 600}, + [2527] = {.lex_state = 600}, + [2528] = {.lex_state = 600}, + [2529] = {.lex_state = 600}, + [2530] = {.lex_state = 545}, + [2531] = {.lex_state = 600}, + [2532] = {.lex_state = 5}, + [2533] = {.lex_state = 600}, + [2534] = {.lex_state = 5}, + [2535] = {.lex_state = 600}, + [2536] = {.lex_state = 583}, + [2537] = {.lex_state = 600}, + [2538] = {.lex_state = 602}, + [2539] = {.lex_state = 610}, + [2540] = {.lex_state = 583}, + [2541] = {.lex_state = 583}, + [2542] = {.lex_state = 600}, + [2543] = {.lex_state = 599}, + [2544] = {.lex_state = 600}, + [2545] = {.lex_state = 66}, + [2546] = {.lex_state = 600}, + [2547] = {.lex_state = 5}, + [2548] = {.lex_state = 600}, + [2549] = {.lex_state = 600}, + [2550] = {.lex_state = 66}, + [2551] = {.lex_state = 5}, + [2552] = {.lex_state = 5}, + [2553] = {.lex_state = 600}, + [2554] = {.lex_state = 600}, + [2555] = {.lex_state = 583}, + [2556] = {.lex_state = 583}, + [2557] = {.lex_state = 66}, + [2558] = {.lex_state = 101}, [2559] = {.lex_state = 66}, - [2560] = {.lex_state = 568}, - [2561] = {.lex_state = 568}, - [2562] = {.lex_state = 568}, - [2563] = {.lex_state = 568}, - [2564] = {.lex_state = 517}, - [2565] = {.lex_state = 206}, - [2566] = {.lex_state = 567}, - [2567] = {.lex_state = 568}, - [2568] = {.lex_state = 92}, - [2569] = {.lex_state = 568}, - [2570] = {.lex_state = 578}, - [2571] = {.lex_state = 568}, - [2572] = {.lex_state = 568}, - [2573] = {.lex_state = 178}, - [2574] = {.lex_state = 568}, - [2575] = {.lex_state = 568}, + [2560] = {.lex_state = 599}, + [2561] = {.lex_state = 193}, + [2562] = {.lex_state = 600}, + [2563] = {.lex_state = 600}, + [2564] = {.lex_state = 600}, + [2565] = {.lex_state = 583}, + [2566] = {.lex_state = 600}, + [2567] = {.lex_state = 600}, + [2568] = {.lex_state = 600}, + [2569] = {.lex_state = 600}, + [2570] = {.lex_state = 600}, + [2571] = {.lex_state = 66}, + [2572] = {.lex_state = 600}, + [2573] = {.lex_state = 600}, + [2574] = {.lex_state = 600}, + [2575] = {.lex_state = 81}, [2576] = {.lex_state = 66}, - [2577] = {.lex_state = 568}, - [2578] = {.lex_state = 551}, - [2579] = {.lex_state = 568}, - [2580] = {.lex_state = 551}, - [2581] = {.lex_state = 568}, - [2582] = {.lex_state = 517}, - [2583] = {.lex_state = 570}, - [2584] = {.lex_state = 551}, - [2585] = {.lex_state = 81}, - [2586] = {.lex_state = 568}, - [2587] = {.lex_state = 568}, - [2588] = {.lex_state = 93}, - [2589] = {.lex_state = 568}, - [2590] = {.lex_state = 66}, - [2591] = {.lex_state = 568}, - [2592] = {.lex_state = 568}, - [2593] = {.lex_state = 568}, - [2594] = {.lex_state = 551}, - [2595] = {.lex_state = 568}, - [2596] = {.lex_state = 568}, - [2597] = {.lex_state = 568}, - [2598] = {.lex_state = 568}, - [2599] = {.lex_state = 66}, - [2600] = {.lex_state = 568}, - [2601] = {.lex_state = 568}, - [2602] = {.lex_state = 144}, - [2603] = {.lex_state = 568}, - [2604] = {.lex_state = 568}, - [2605] = {.lex_state = 568}, - [2606] = {.lex_state = 568}, - [2607] = {.lex_state = 66}, - [2608] = {.lex_state = 568}, - [2609] = {.lex_state = 568}, - [2610] = {.lex_state = 206}, - [2611] = {.lex_state = 568}, - [2612] = {.lex_state = 568}, - [2613] = {.lex_state = 517}, - [2614] = {.lex_state = 517}, - [2615] = {.lex_state = 568}, - [2616] = {.lex_state = 568}, - [2617] = {.lex_state = 568}, - [2618] = {.lex_state = 568}, - [2619] = {.lex_state = 7}, - [2620] = {.lex_state = 144}, - [2621] = {.lex_state = 568}, - [2622] = {.lex_state = 206}, - [2623] = {.lex_state = 568}, - [2624] = {.lex_state = 568}, - [2625] = {.lex_state = 568}, - [2626] = {.lex_state = 568}, - [2627] = {.lex_state = 517}, - [2628] = {.lex_state = 568}, - [2629] = {.lex_state = 517}, - [2630] = {.lex_state = 568}, - [2631] = {.lex_state = 568}, - [2632] = {.lex_state = 568}, - [2633] = {.lex_state = 568}, - [2634] = {.lex_state = 568}, - [2635] = {.lex_state = 568}, - [2636] = {.lex_state = 568}, - [2637] = {.lex_state = 568}, - [2638] = {.lex_state = 568}, - [2639] = {.lex_state = 568}, - [2640] = {.lex_state = 568}, - [2641] = {.lex_state = 568}, - [2642] = {.lex_state = 568}, - [2643] = {.lex_state = 568}, - [2644] = {.lex_state = 568}, - [2645] = {.lex_state = 568}, - [2646] = {.lex_state = 568}, - [2647] = {.lex_state = 568}, - [2648] = {.lex_state = 568}, - [2649] = {.lex_state = 568}, - [2650] = {.lex_state = 568}, - [2651] = {.lex_state = 568}, - [2652] = {.lex_state = 568}, - [2653] = {.lex_state = 568}, - [2654] = {.lex_state = 568}, - [2655] = {.lex_state = 568}, - [2656] = {.lex_state = 568}, - [2657] = {.lex_state = 568}, - [2658] = {.lex_state = 568}, - [2659] = {.lex_state = 568}, - [2660] = {.lex_state = 94}, - [2661] = {.lex_state = 568}, - [2662] = {.lex_state = 568}, - [2663] = {.lex_state = 568}, - [2664] = {.lex_state = 1}, - [2665] = {.lex_state = 568}, - [2666] = {.lex_state = 144}, - [2667] = {.lex_state = 568}, - [2668] = {.lex_state = 568}, - [2669] = {.lex_state = 568}, - [2670] = {.lex_state = 568}, - [2671] = {.lex_state = 144}, - [2672] = {.lex_state = 144}, - [2673] = {.lex_state = 66}, - [2674] = {.lex_state = 568}, - [2675] = {.lex_state = 568}, - [2676] = {.lex_state = 1}, - [2677] = {.lex_state = 568}, - [2678] = {.lex_state = 568}, - [2679] = {.lex_state = 568}, - [2680] = {.lex_state = 568}, - [2681] = {.lex_state = 568}, - [2682] = {.lex_state = 81}, - [2683] = {.lex_state = 568}, - [2684] = {.lex_state = 568}, - [2685] = {.lex_state = 568}, - [2686] = {.lex_state = 568}, - [2687] = {.lex_state = 568}, - [2688] = {.lex_state = 66}, - [2689] = {.lex_state = 568}, - [2690] = {.lex_state = 568}, - [2691] = {.lex_state = 568}, - [2692] = {.lex_state = 144}, - [2693] = {.lex_state = 568}, - [2694] = {.lex_state = 568}, - [2695] = {.lex_state = 568}, - [2696] = {.lex_state = 568}, - [2697] = {.lex_state = 568}, - [2698] = {.lex_state = 173}, - [2699] = {.lex_state = 568}, - [2700] = {.lex_state = 568}, - [2701] = {.lex_state = 568}, - [2702] = {.lex_state = 568}, - [2703] = {.lex_state = 568}, - [2704] = {.lex_state = 206}, - [2705] = {.lex_state = 568}, - [2706] = {.lex_state = 517}, - [2707] = {.lex_state = 568}, - [2708] = {.lex_state = 568}, - [2709] = {.lex_state = 568}, - [2710] = {.lex_state = 568}, - [2711] = {.lex_state = 568}, - [2712] = {.lex_state = 568}, - [2713] = {.lex_state = 568}, - [2714] = {.lex_state = 568}, - [2715] = {.lex_state = 568}, - [2716] = {.lex_state = 568}, - [2717] = {.lex_state = 66}, - [2718] = {.lex_state = 65}, - [2719] = {.lex_state = 66}, - [2720] = {.lex_state = 526}, - [2721] = {.lex_state = 66}, - [2722] = {.lex_state = 138}, - [2723] = {.lex_state = 138}, - [2724] = {.lex_state = 138}, - [2725] = {.lex_state = 138}, - [2726] = {.lex_state = 206}, - [2727] = {.lex_state = 66}, - [2728] = {.lex_state = 81}, - [2729] = {.lex_state = 206}, - [2730] = {.lex_state = 147}, - [2731] = {.lex_state = 138}, - [2732] = {.lex_state = 206}, - [2733] = {.lex_state = 206}, - [2734] = {.lex_state = 147}, - [2735] = {.lex_state = 206}, - [2736] = {.lex_state = 9}, - [2737] = {.lex_state = 66}, - [2738] = {.lex_state = 8}, - [2739] = {.lex_state = 66}, - [2740] = {.lex_state = 206}, - [2741] = {.lex_state = 66}, - [2742] = {.lex_state = 146}, - [2743] = {.lex_state = 146}, - [2744] = {.lex_state = 66}, - [2745] = {.lex_state = 513}, - [2746] = {.lex_state = 513}, - [2747] = {.lex_state = 81}, - [2748] = {.lex_state = 146}, - [2749] = {.lex_state = 81}, - [2750] = {.lex_state = 66}, - [2751] = {.lex_state = 66}, - [2752] = {.lex_state = 66}, - [2753] = {.lex_state = 66}, - [2754] = {.lex_state = 66}, - [2755] = {.lex_state = 66}, - [2756] = {.lex_state = 100}, - [2757] = {.lex_state = 66}, + [2577] = {.lex_state = 600}, + [2578] = {.lex_state = 600}, + [2579] = {.lex_state = 600}, + [2580] = {.lex_state = 600}, + [2581] = {.lex_state = 66}, + [2582] = {.lex_state = 600}, + [2583] = {.lex_state = 599}, + [2584] = {.lex_state = 600}, + [2585] = {.lex_state = 600}, + [2586] = {.lex_state = 600}, + [2587] = {.lex_state = 600}, + [2588] = {.lex_state = 5}, + [2589] = {.lex_state = 600}, + [2590] = {.lex_state = 600}, + [2591] = {.lex_state = 600}, + [2592] = {.lex_state = 600}, + [2593] = {.lex_state = 600}, + [2594] = {.lex_state = 600}, + [2595] = {.lex_state = 600}, + [2596] = {.lex_state = 600}, + [2597] = {.lex_state = 600}, + [2598] = {.lex_state = 66}, + [2599] = {.lex_state = 600}, + [2600] = {.lex_state = 600}, + [2601] = {.lex_state = 600}, + [2602] = {.lex_state = 600}, + [2603] = {.lex_state = 600}, + [2604] = {.lex_state = 600}, + [2605] = {.lex_state = 230}, + [2606] = {.lex_state = 600}, + [2607] = {.lex_state = 600}, + [2608] = {.lex_state = 600}, + [2609] = {.lex_state = 600}, + [2610] = {.lex_state = 600}, + [2611] = {.lex_state = 583}, + [2612] = {.lex_state = 600}, + [2613] = {.lex_state = 600}, + [2614] = {.lex_state = 600}, + [2615] = {.lex_state = 66}, + [2616] = {.lex_state = 600}, + [2617] = {.lex_state = 600}, + [2618] = {.lex_state = 600}, + [2619] = {.lex_state = 600}, + [2620] = {.lex_state = 102}, + [2621] = {.lex_state = 583}, + [2622] = {.lex_state = 600}, + [2623] = {.lex_state = 66}, + [2624] = {.lex_state = 583}, + [2625] = {.lex_state = 600}, + [2626] = {.lex_state = 600}, + [2627] = {.lex_state = 600}, + [2628] = {.lex_state = 81}, + [2629] = {.lex_state = 66}, + [2630] = {.lex_state = 600}, + [2631] = {.lex_state = 545}, + [2632] = {.lex_state = 545}, + [2633] = {.lex_state = 152}, + [2634] = {.lex_state = 152}, + [2635] = {.lex_state = 545}, + [2636] = {.lex_state = 600}, + [2637] = {.lex_state = 600}, + [2638] = {.lex_state = 11}, + [2639] = {.lex_state = 600}, + [2640] = {.lex_state = 5}, + [2641] = {.lex_state = 600}, + [2642] = {.lex_state = 600}, + [2643] = {.lex_state = 600}, + [2644] = {.lex_state = 600}, + [2645] = {.lex_state = 600}, + [2646] = {.lex_state = 600}, + [2647] = {.lex_state = 600}, + [2648] = {.lex_state = 600}, + [2649] = {.lex_state = 600}, + [2650] = {.lex_state = 600}, + [2651] = {.lex_state = 545}, + [2652] = {.lex_state = 66}, + [2653] = {.lex_state = 600}, + [2654] = {.lex_state = 600}, + [2655] = {.lex_state = 600}, + [2656] = {.lex_state = 600}, + [2657] = {.lex_state = 600}, + [2658] = {.lex_state = 600}, + [2659] = {.lex_state = 600}, + [2660] = {.lex_state = 66}, + [2661] = {.lex_state = 600}, + [2662] = {.lex_state = 600}, + [2663] = {.lex_state = 600}, + [2664] = {.lex_state = 600}, + [2665] = {.lex_state = 600}, + [2666] = {.lex_state = 600}, + [2667] = {.lex_state = 600}, + [2668] = {.lex_state = 600}, + [2669] = {.lex_state = 152}, + [2670] = {.lex_state = 600}, + [2671] = {.lex_state = 600}, + [2672] = {.lex_state = 103}, + [2673] = {.lex_state = 600}, + [2674] = {.lex_state = 600}, + [2675] = {.lex_state = 600}, + [2676] = {.lex_state = 600}, + [2677] = {.lex_state = 600}, + [2678] = {.lex_state = 600}, + [2679] = {.lex_state = 600}, + [2680] = {.lex_state = 600}, + [2681] = {.lex_state = 600}, + [2682] = {.lex_state = 600}, + [2683] = {.lex_state = 600}, + [2684] = {.lex_state = 600}, + [2685] = {.lex_state = 600}, + [2686] = {.lex_state = 230}, + [2687] = {.lex_state = 600}, + [2688] = {.lex_state = 81}, + [2689] = {.lex_state = 600}, + [2690] = {.lex_state = 600}, + [2691] = {.lex_state = 600}, + [2692] = {.lex_state = 600}, + [2693] = {.lex_state = 600}, + [2694] = {.lex_state = 600}, + [2695] = {.lex_state = 5}, + [2696] = {.lex_state = 600}, + [2697] = {.lex_state = 600}, + [2698] = {.lex_state = 600}, + [2699] = {.lex_state = 600}, + [2700] = {.lex_state = 66}, + [2701] = {.lex_state = 600}, + [2702] = {.lex_state = 600}, + [2703] = {.lex_state = 600}, + [2704] = {.lex_state = 600}, + [2705] = {.lex_state = 600}, + [2706] = {.lex_state = 152}, + [2707] = {.lex_state = 600}, + [2708] = {.lex_state = 600}, + [2709] = {.lex_state = 188}, + [2710] = {.lex_state = 600}, + [2711] = {.lex_state = 600}, + [2712] = {.lex_state = 600}, + [2713] = {.lex_state = 230}, + [2714] = {.lex_state = 600}, + [2715] = {.lex_state = 600}, + [2716] = {.lex_state = 600}, + [2717] = {.lex_state = 545}, + [2718] = {.lex_state = 600}, + [2719] = {.lex_state = 600}, + [2720] = {.lex_state = 600}, + [2721] = {.lex_state = 600}, + [2722] = {.lex_state = 600}, + [2723] = {.lex_state = 600}, + [2724] = {.lex_state = 600}, + [2725] = {.lex_state = 600}, + [2726] = {.lex_state = 600}, + [2727] = {.lex_state = 600}, + [2728] = {.lex_state = 545}, + [2729] = {.lex_state = 600}, + [2730] = {.lex_state = 600}, + [2731] = {.lex_state = 600}, + [2732] = {.lex_state = 600}, + [2733] = {.lex_state = 600}, + [2734] = {.lex_state = 545}, + [2735] = {.lex_state = 600}, + [2736] = {.lex_state = 600}, + [2737] = {.lex_state = 600}, + [2738] = {.lex_state = 600}, + [2739] = {.lex_state = 600}, + [2740] = {.lex_state = 600}, + [2741] = {.lex_state = 152}, + [2742] = {.lex_state = 66}, + [2743] = {.lex_state = 600}, + [2744] = {.lex_state = 152}, + [2745] = {.lex_state = 600}, + [2746] = {.lex_state = 600}, + [2747] = {.lex_state = 600}, + [2748] = {.lex_state = 600}, + [2749] = {.lex_state = 600}, + [2750] = {.lex_state = 230}, + [2751] = {.lex_state = 600}, + [2752] = {.lex_state = 600}, + [2753] = {.lex_state = 600}, + [2754] = {.lex_state = 186}, + [2755] = {.lex_state = 145}, + [2756] = {.lex_state = 558}, + [2757] = {.lex_state = 230}, [2758] = {.lex_state = 66}, [2759] = {.lex_state = 66}, - [2760] = {.lex_state = 66}, - [2761] = {.lex_state = 66}, - [2762] = {.lex_state = 66}, - [2763] = {.lex_state = 66}, - [2764] = {.lex_state = 146}, - [2765] = {.lex_state = 66}, - [2766] = {.lex_state = 146}, - [2767] = {.lex_state = 146}, - [2768] = {.lex_state = 66}, - [2769] = {.lex_state = 65}, - [2770] = {.lex_state = 66}, - [2771] = {.lex_state = 66}, - [2772] = {.lex_state = 138}, + [2760] = {.lex_state = 64}, + [2761] = {.lex_state = 186}, + [2762] = {.lex_state = 186}, + [2763] = {.lex_state = 186}, + [2764] = {.lex_state = 145}, + [2765] = {.lex_state = 145}, + [2766] = {.lex_state = 145}, + [2767] = {.lex_state = 230}, + [2768] = {.lex_state = 230}, + [2769] = {.lex_state = 230}, + [2770] = {.lex_state = 186}, + [2771] = {.lex_state = 186}, + [2772] = {.lex_state = 145}, [2773] = {.lex_state = 66}, - [2774] = {.lex_state = 66}, - [2775] = {.lex_state = 65}, - [2776] = {.lex_state = 146}, - [2777] = {.lex_state = 65}, - [2778] = {.lex_state = 146}, - [2779] = {.lex_state = 146}, + [2774] = {.lex_state = 12}, + [2775] = {.lex_state = 155}, + [2776] = {.lex_state = 155}, + [2777] = {.lex_state = 81}, + [2778] = {.lex_state = 13}, + [2779] = {.lex_state = 230}, [2780] = {.lex_state = 66}, - [2781] = {.lex_state = 172}, - [2782] = {.lex_state = 513}, - [2783] = {.lex_state = 172}, + [2781] = {.lex_state = 66}, + [2782] = {.lex_state = 230}, + [2783] = {.lex_state = 66}, [2784] = {.lex_state = 66}, [2785] = {.lex_state = 66}, [2786] = {.lex_state = 66}, [2787] = {.lex_state = 66}, - [2788] = {.lex_state = 66}, - [2789] = {.lex_state = 526}, - [2790] = {.lex_state = 206}, - [2791] = {.lex_state = 65}, - [2792] = {.lex_state = 513}, - [2793] = {.lex_state = 206}, - [2794] = {.lex_state = 65}, - [2795] = {.lex_state = 66}, - [2796] = {.lex_state = 66}, + [2788] = {.lex_state = 558}, + [2789] = {.lex_state = 66}, + [2790] = {.lex_state = 66}, + [2791] = {.lex_state = 66}, + [2792] = {.lex_state = 81}, + [2793] = {.lex_state = 66}, + [2794] = {.lex_state = 108}, + [2795] = {.lex_state = 81}, + [2796] = {.lex_state = 154}, [2797] = {.lex_state = 66}, - [2798] = {.lex_state = 66}, - [2799] = {.lex_state = 108}, + [2798] = {.lex_state = 154}, + [2799] = {.lex_state = 64}, [2800] = {.lex_state = 66}, [2801] = {.lex_state = 66}, [2802] = {.lex_state = 66}, - [2803] = {.lex_state = 65}, - [2804] = {.lex_state = 138}, - [2805] = {.lex_state = 66}, - [2806] = {.lex_state = 513}, + [2803] = {.lex_state = 66}, + [2804] = {.lex_state = 154}, + [2805] = {.lex_state = 14}, + [2806] = {.lex_state = 154}, [2807] = {.lex_state = 66}, - [2808] = {.lex_state = 66}, - [2809] = {.lex_state = 206}, - [2810] = {.lex_state = 66}, + [2808] = {.lex_state = 547}, + [2809] = {.lex_state = 66}, + [2810] = {.lex_state = 145}, [2811] = {.lex_state = 66}, - [2812] = {.lex_state = 10}, + [2812] = {.lex_state = 230}, [2813] = {.lex_state = 66}, - [2814] = {.lex_state = 65}, + [2814] = {.lex_state = 230}, [2815] = {.lex_state = 66}, - [2816] = {.lex_state = 66}, - [2817] = {.lex_state = 513}, - [2818] = {.lex_state = 146}, - [2819] = {.lex_state = 146}, - [2820] = {.lex_state = 146}, + [2816] = {.lex_state = 64}, + [2817] = {.lex_state = 66}, + [2818] = {.lex_state = 66}, + [2819] = {.lex_state = 547}, + [2820] = {.lex_state = 66}, [2821] = {.lex_state = 66}, - [2822] = {.lex_state = 65}, - [2823] = {.lex_state = 66}, - [2824] = {.lex_state = 66}, - [2825] = {.lex_state = 66}, - [2826] = {.lex_state = 172}, - [2827] = {.lex_state = 172}, - [2828] = {.lex_state = 172}, + [2822] = {.lex_state = 66}, + [2823] = {.lex_state = 64}, + [2824] = {.lex_state = 230}, + [2825] = {.lex_state = 117}, + [2826] = {.lex_state = 66}, + [2827] = {.lex_state = 66}, + [2828] = {.lex_state = 547}, [2829] = {.lex_state = 66}, - [2830] = {.lex_state = 172}, - [2831] = {.lex_state = 513}, - [2832] = {.lex_state = 513}, - [2833] = {.lex_state = 513}, - [2834] = {.lex_state = 513}, - [2835] = {.lex_state = 110}, - [2836] = {.lex_state = 513}, - [2837] = {.lex_state = 513}, + [2830] = {.lex_state = 66}, + [2831] = {.lex_state = 64}, + [2832] = {.lex_state = 66}, + [2833] = {.lex_state = 547}, + [2834] = {.lex_state = 66}, + [2835] = {.lex_state = 66}, + [2836] = {.lex_state = 64}, + [2837] = {.lex_state = 66}, [2838] = {.lex_state = 66}, [2839] = {.lex_state = 66}, - [2840] = {.lex_state = 65}, + [2840] = {.lex_state = 66}, [2841] = {.lex_state = 66}, - [2842] = {.lex_state = 66}, - [2843] = {.lex_state = 206}, - [2844] = {.lex_state = 66}, - [2845] = {.lex_state = 66}, + [2842] = {.lex_state = 547}, + [2843] = {.lex_state = 66}, + [2844] = {.lex_state = 547}, + [2845] = {.lex_state = 154}, [2846] = {.lex_state = 66}, - [2847] = {.lex_state = 492}, - [2848] = {.lex_state = 66}, - [2849] = {.lex_state = 66}, - [2850] = {.lex_state = 206}, - [2851] = {.lex_state = 206}, - [2852] = {.lex_state = 513}, - [2853] = {.lex_state = 66}, - [2854] = {.lex_state = 109}, + [2847] = {.lex_state = 66}, + [2848] = {.lex_state = 154}, + [2849] = {.lex_state = 154}, + [2850] = {.lex_state = 66}, + [2851] = {.lex_state = 66}, + [2852] = {.lex_state = 66}, + [2853] = {.lex_state = 154}, + [2854] = {.lex_state = 66}, [2855] = {.lex_state = 66}, [2856] = {.lex_state = 66}, - [2857] = {.lex_state = 206}, - [2858] = {.lex_state = 66}, - [2859] = {.lex_state = 513}, - [2860] = {.lex_state = 513}, - [2861] = {.lex_state = 101}, - [2862] = {.lex_state = 102}, - [2863] = {.lex_state = 513}, - [2864] = {.lex_state = 206}, - [2865] = {.lex_state = 513}, - [2866] = {.lex_state = 513}, - [2867] = {.lex_state = 513}, - [2868] = {.lex_state = 513}, - [2869] = {.lex_state = 513}, - [2870] = {.lex_state = 513}, - [2871] = {.lex_state = 206}, - [2872] = {.lex_state = 513}, - [2873] = {.lex_state = 513}, - [2874] = {.lex_state = 513}, - [2875] = {.lex_state = 513}, - [2876] = {.lex_state = 513}, - [2877] = {.lex_state = 172}, - [2878] = {.lex_state = 172}, - [2879] = {.lex_state = 513}, - [2880] = {.lex_state = 513}, - [2881] = {.lex_state = 65}, - [2882] = {.lex_state = 513}, - [2883] = {.lex_state = 172}, - [2884] = {.lex_state = 539}, - [2885] = {.lex_state = 206}, + [2857] = {.lex_state = 66}, + [2858] = {.lex_state = 154}, + [2859] = {.lex_state = 66}, + [2860] = {.lex_state = 154}, + [2861] = {.lex_state = 66}, + [2862] = {.lex_state = 154}, + [2863] = {.lex_state = 154}, + [2864] = {.lex_state = 145}, + [2865] = {.lex_state = 64}, + [2866] = {.lex_state = 187}, + [2867] = {.lex_state = 230}, + [2868] = {.lex_state = 187}, + [2869] = {.lex_state = 66}, + [2870] = {.lex_state = 66}, + [2871] = {.lex_state = 66}, + [2872] = {.lex_state = 66}, + [2873] = {.lex_state = 66}, + [2874] = {.lex_state = 547}, + [2875] = {.lex_state = 66}, + [2876] = {.lex_state = 524}, + [2877] = {.lex_state = 66}, + [2878] = {.lex_state = 547}, + [2879] = {.lex_state = 66}, + [2880] = {.lex_state = 547}, + [2881] = {.lex_state = 230}, + [2882] = {.lex_state = 187}, + [2883] = {.lex_state = 187}, + [2884] = {.lex_state = 547}, + [2885] = {.lex_state = 230}, [2886] = {.lex_state = 66}, - [2887] = {.lex_state = 172}, - [2888] = {.lex_state = 172}, - [2889] = {.lex_state = 539}, - [2890] = {.lex_state = 66}, - [2891] = {.lex_state = 513}, + [2887] = {.lex_state = 66}, + [2888] = {.lex_state = 66}, + [2889] = {.lex_state = 547}, + [2890] = {.lex_state = 547}, + [2891] = {.lex_state = 547}, [2892] = {.lex_state = 66}, - [2893] = {.lex_state = 513}, - [2894] = {.lex_state = 66}, - [2895] = {.lex_state = 513}, - [2896] = {.lex_state = 66}, - [2897] = {.lex_state = 95}, - [2898] = {.lex_state = 66}, - [2899] = {.lex_state = 513}, - [2900] = {.lex_state = 513}, - [2901] = {.lex_state = 172}, - [2902] = {.lex_state = 513}, - [2903] = {.lex_state = 65}, - [2904] = {.lex_state = 66}, - [2905] = {.lex_state = 66}, - [2906] = {.lex_state = 66}, - [2907] = {.lex_state = 513}, - [2908] = {.lex_state = 513}, - [2909] = {.lex_state = 103}, - [2910] = {.lex_state = 66}, - [2911] = {.lex_state = 66}, - [2912] = {.lex_state = 539}, - [2913] = {.lex_state = 539}, + [2893] = {.lex_state = 187}, + [2894] = {.lex_state = 64}, + [2895] = {.lex_state = 187}, + [2896] = {.lex_state = 230}, + [2897] = {.lex_state = 119}, + [2898] = {.lex_state = 230}, + [2899] = {.lex_state = 547}, + [2900] = {.lex_state = 547}, + [2901] = {.lex_state = 547}, + [2902] = {.lex_state = 230}, + [2903] = {.lex_state = 547}, + [2904] = {.lex_state = 109}, + [2905] = {.lex_state = 547}, + [2906] = {.lex_state = 187}, + [2907] = {.lex_state = 547}, + [2908] = {.lex_state = 187}, + [2909] = {.lex_state = 187}, + [2910] = {.lex_state = 118}, + [2911] = {.lex_state = 547}, + [2912] = {.lex_state = 547}, + [2913] = {.lex_state = 187}, [2914] = {.lex_state = 66}, - [2915] = {.lex_state = 172}, - [2916] = {.lex_state = 492}, - [2917] = {.lex_state = 513}, - [2918] = {.lex_state = 513}, - [2919] = {.lex_state = 513}, - [2920] = {.lex_state = 172}, - [2921] = {.lex_state = 172}, - [2922] = {.lex_state = 513}, - [2923] = {.lex_state = 66}, - [2924] = {.lex_state = 513}, + [2915] = {.lex_state = 547}, + [2916] = {.lex_state = 110}, + [2917] = {.lex_state = 547}, + [2918] = {.lex_state = 547}, + [2919] = {.lex_state = 187}, + [2920] = {.lex_state = 187}, + [2921] = {.lex_state = 547}, + [2922] = {.lex_state = 66}, + [2923] = {.lex_state = 547}, + [2924] = {.lex_state = 547}, [2925] = {.lex_state = 66}, - [2926] = {.lex_state = 172}, - [2927] = {.lex_state = 66}, - [2928] = {.lex_state = 513}, + [2926] = {.lex_state = 66}, + [2927] = {.lex_state = 64}, + [2928] = {.lex_state = 66}, [2929] = {.lex_state = 66}, [2930] = {.lex_state = 66}, - [2931] = {.lex_state = 66}, - [2932] = {.lex_state = 172}, - [2933] = {.lex_state = 66}, - [2934] = {.lex_state = 172}, - [2935] = {.lex_state = 66}, + [2931] = {.lex_state = 64}, + [2932] = {.lex_state = 66}, + [2933] = {.lex_state = 547}, + [2934] = {.lex_state = 120}, + [2935] = {.lex_state = 547}, [2936] = {.lex_state = 66}, - [2937] = {.lex_state = 66}, - [2938] = {.lex_state = 111}, - [2939] = {.lex_state = 513}, + [2937] = {.lex_state = 547}, + [2938] = {.lex_state = 66}, + [2939] = {.lex_state = 66}, [2940] = {.lex_state = 66}, [2941] = {.lex_state = 66}, [2942] = {.lex_state = 66}, [2943] = {.lex_state = 66}, [2944] = {.lex_state = 66}, [2945] = {.lex_state = 66}, - [2946] = {.lex_state = 65}, + [2946] = {.lex_state = 66}, [2947] = {.lex_state = 66}, [2948] = {.lex_state = 66}, - [2949] = {.lex_state = 513}, - [2950] = {.lex_state = 513}, - [2951] = {.lex_state = 513}, - [2952] = {.lex_state = 65}, - [2953] = {.lex_state = 65}, - [2954] = {.lex_state = 513}, - [2955] = {.lex_state = 513}, - [2956] = {.lex_state = 66}, - [2957] = {.lex_state = 66}, - [2958] = {.lex_state = 66}, - [2959] = {.lex_state = 539}, + [2949] = {.lex_state = 230}, + [2950] = {.lex_state = 111}, + [2951] = {.lex_state = 547}, + [2952] = {.lex_state = 66}, + [2953] = {.lex_state = 524}, + [2954] = {.lex_state = 64}, + [2955] = {.lex_state = 547}, + [2956] = {.lex_state = 547}, + [2957] = {.lex_state = 104}, + [2958] = {.lex_state = 547}, + [2959] = {.lex_state = 547}, [2960] = {.lex_state = 66}, - [2961] = {.lex_state = 539}, + [2961] = {.lex_state = 66}, [2962] = {.lex_state = 66}, - [2963] = {.lex_state = 539}, - [2964] = {.lex_state = 66}, - [2965] = {.lex_state = 532}, - [2966] = {.lex_state = 65}, - [2967] = {.lex_state = 65}, - [2968] = {.lex_state = 96}, - [2969] = {.lex_state = 65}, - [2970] = {.lex_state = 65}, + [2963] = {.lex_state = 547}, + [2964] = {.lex_state = 64}, + [2965] = {.lex_state = 547}, + [2966] = {.lex_state = 547}, + [2967] = {.lex_state = 571}, + [2968] = {.lex_state = 66}, + [2969] = {.lex_state = 547}, + [2970] = {.lex_state = 571}, [2971] = {.lex_state = 66}, - [2972] = {.lex_state = 66}, - [2973] = {.lex_state = 66}, - [2974] = {.lex_state = 513}, - [2975] = {.lex_state = 513}, - [2976] = {.lex_state = 529}, - [2977] = {.lex_state = 539}, - [2978] = {.lex_state = 539}, - [2979] = {.lex_state = 513}, - [2980] = {.lex_state = 513}, - [2981] = {.lex_state = 65}, - [2982] = {.lex_state = 539}, - [2983] = {.lex_state = 65}, - [2984] = {.lex_state = 552}, - [2985] = {.lex_state = 513}, - [2986] = {.lex_state = 65}, - [2987] = {.lex_state = 65}, - [2988] = {.lex_state = 97}, - [2989] = {.lex_state = 539}, - [2990] = {.lex_state = 513}, - [2991] = {.lex_state = 539}, - [2992] = {.lex_state = 513}, - [2993] = {.lex_state = 65}, - [2994] = {.lex_state = 513}, - [2995] = {.lex_state = 513}, - [2996] = {.lex_state = 513}, - [2997] = {.lex_state = 529}, - [2998] = {.lex_state = 513}, - [2999] = {.lex_state = 123}, - [3000] = {.lex_state = 539}, - [3001] = {.lex_state = 560}, - [3002] = {.lex_state = 513}, - [3003] = {.lex_state = 513}, - [3004] = {.lex_state = 513}, - [3005] = {.lex_state = 539}, - [3006] = {.lex_state = 513}, - [3007] = {.lex_state = 513}, - [3008] = {.lex_state = 513}, - [3009] = {.lex_state = 513}, - [3010] = {.lex_state = 513}, - [3011] = {.lex_state = 513}, - [3012] = {.lex_state = 513}, - [3013] = {.lex_state = 513}, - [3014] = {.lex_state = 513}, - [3015] = {.lex_state = 513}, - [3016] = {.lex_state = 513}, - [3017] = {.lex_state = 513}, - [3018] = {.lex_state = 513}, - [3019] = {.lex_state = 123}, - [3020] = {.lex_state = 513}, - [3021] = {.lex_state = 513}, - [3022] = {.lex_state = 513}, - [3023] = {.lex_state = 123}, - [3024] = {.lex_state = 513}, - [3025] = {.lex_state = 513}, - [3026] = {.lex_state = 11}, - [3027] = {.lex_state = 513}, - [3028] = {.lex_state = 513}, - [3029] = {.lex_state = 513}, - [3030] = {.lex_state = 513}, - [3031] = {.lex_state = 513}, - [3032] = {.lex_state = 513}, - [3033] = {.lex_state = 513}, - [3034] = {.lex_state = 513}, - [3035] = {.lex_state = 513}, - [3036] = {.lex_state = 513}, - [3037] = {.lex_state = 513}, - [3038] = {.lex_state = 513}, - [3039] = {.lex_state = 513}, - [3040] = {.lex_state = 513}, - [3041] = {.lex_state = 513}, - [3042] = {.lex_state = 513}, - [3043] = {.lex_state = 513}, - [3044] = {.lex_state = 513}, - [3045] = {.lex_state = 513}, - [3046] = {.lex_state = 513}, - [3047] = {.lex_state = 513}, - [3048] = {.lex_state = 513}, - [3049] = {.lex_state = 513}, - [3050] = {.lex_state = 513}, - [3051] = {.lex_state = 513}, - [3052] = {.lex_state = 513}, - [3053] = {.lex_state = 513}, - [3054] = {.lex_state = 65}, - [3055] = {.lex_state = 513}, - [3056] = {.lex_state = 513}, - [3057] = {.lex_state = 552}, - [3058] = {.lex_state = 123}, - [3059] = {.lex_state = 513}, - [3060] = {.lex_state = 539}, - [3061] = {.lex_state = 513}, - [3062] = {.lex_state = 539}, - [3063] = {.lex_state = 513}, - [3064] = {.lex_state = 539}, - [3065] = {.lex_state = 513}, - [3066] = {.lex_state = 123}, - [3067] = {.lex_state = 513}, - [3068] = {.lex_state = 123}, - [3069] = {.lex_state = 513}, - [3070] = {.lex_state = 539}, - [3071] = {.lex_state = 539}, - [3072] = {.lex_state = 513}, - [3073] = {.lex_state = 513}, - [3074] = {.lex_state = 513}, - [3075] = {.lex_state = 513}, - [3076] = {.lex_state = 513}, - [3077] = {.lex_state = 513}, - [3078] = {.lex_state = 532}, - [3079] = {.lex_state = 513}, - [3080] = {.lex_state = 513}, - [3081] = {.lex_state = 513}, - [3082] = {.lex_state = 513}, - [3083] = {.lex_state = 513}, - [3084] = {.lex_state = 513}, - [3085] = {.lex_state = 513}, - [3086] = {.lex_state = 513}, - [3087] = {.lex_state = 513}, - [3088] = {.lex_state = 513}, - [3089] = {.lex_state = 513}, - [3090] = {.lex_state = 123}, - [3091] = {.lex_state = 513}, - [3092] = {.lex_state = 12}, - [3093] = {.lex_state = 13}, - [3094] = {.lex_state = 513}, - [3095] = {.lex_state = 569}, - [3096] = {.lex_state = 513}, - [3097] = {.lex_state = 513}, - [3098] = {.lex_state = 513}, - [3099] = {.lex_state = 513}, - [3100] = {.lex_state = 513}, - [3101] = {.lex_state = 513}, - [3102] = {.lex_state = 513}, - [3103] = {.lex_state = 123}, - [3104] = {.lex_state = 513}, - [3105] = {.lex_state = 122}, - [3106] = {.lex_state = 513}, - [3107] = {.lex_state = 513}, - [3108] = {.lex_state = 513}, - [3109] = {.lex_state = 513}, - [3110] = {.lex_state = 513}, - [3111] = {.lex_state = 513}, - [3112] = {.lex_state = 513}, - [3113] = {.lex_state = 513}, - [3114] = {.lex_state = 513}, - [3115] = {.lex_state = 513}, - [3116] = {.lex_state = 513}, - [3117] = {.lex_state = 513}, - [3118] = {.lex_state = 560}, - [3119] = {.lex_state = 513}, - [3120] = {.lex_state = 539}, - [3121] = {.lex_state = 65}, - [3122] = {.lex_state = 122}, - [3123] = {.lex_state = 65}, - [3124] = {.lex_state = 65}, - [3125] = {.lex_state = 121}, - [3126] = {.lex_state = 569}, - [3127] = {.lex_state = 65}, - [3128] = {.lex_state = 123}, - [3129] = {.lex_state = 65}, - [3130] = {.lex_state = 513}, - [3131] = {.lex_state = 513}, - [3132] = {.lex_state = 65}, - [3133] = {.lex_state = 123}, - [3134] = {.lex_state = 569}, - [3135] = {.lex_state = 123}, - [3136] = {.lex_state = 513}, - [3137] = {.lex_state = 65}, - [3138] = {.lex_state = 65}, - [3139] = {.lex_state = 65}, - [3140] = {.lex_state = 65}, - [3141] = {.lex_state = 513}, - [3142] = {.lex_state = 65}, - [3143] = {.lex_state = 65}, - [3144] = {.lex_state = 65}, - [3145] = {.lex_state = 65}, - [3146] = {.lex_state = 539}, - [3147] = {.lex_state = 65}, - [3148] = {.lex_state = 65}, - [3149] = {.lex_state = 65}, - [3150] = {.lex_state = 65}, - [3151] = {.lex_state = 65}, - [3152] = {.lex_state = 65}, - [3153] = {.lex_state = 65}, - [3154] = {.lex_state = 123}, - [3155] = {.lex_state = 513}, - [3156] = {.lex_state = 65}, - [3157] = {.lex_state = 65}, - [3158] = {.lex_state = 65}, - [3159] = {.lex_state = 65}, - [3160] = {.lex_state = 513}, - [3161] = {.lex_state = 513}, - [3162] = {.lex_state = 65}, - [3163] = {.lex_state = 123}, - [3164] = {.lex_state = 513}, - [3165] = {.lex_state = 513}, - [3166] = {.lex_state = 122}, - [3167] = {.lex_state = 123}, - [3168] = {.lex_state = 123}, - [3169] = {.lex_state = 513}, - [3170] = {.lex_state = 65}, - [3171] = {.lex_state = 513}, - [3172] = {.lex_state = 513}, - [3173] = {.lex_state = 513}, - [3174] = {.lex_state = 513}, - [3175] = {.lex_state = 65}, - [3176] = {.lex_state = 513}, - [3177] = {.lex_state = 513}, - [3178] = {.lex_state = 513}, - [3179] = {.lex_state = 513}, - [3180] = {.lex_state = 65}, - [3181] = {.lex_state = 65}, - [3182] = {.lex_state = 513}, - [3183] = {.lex_state = 539}, - [3184] = {.lex_state = 569}, - [3185] = {.lex_state = 513}, - [3186] = {.lex_state = 513}, - [3187] = {.lex_state = 513}, - [3188] = {.lex_state = 65}, - [3189] = {.lex_state = 123}, - [3190] = {.lex_state = 513}, - [3191] = {.lex_state = 124}, - [3192] = {.lex_state = 65}, - [3193] = {.lex_state = 569}, - [3194] = {.lex_state = 513}, - [3195] = {.lex_state = 122}, - [3196] = {.lex_state = 513}, - [3197] = {.lex_state = 513}, - [3198] = {.lex_state = 513}, - [3199] = {.lex_state = 513}, - [3200] = {.lex_state = 513}, - [3201] = {.lex_state = 124}, - [3202] = {.lex_state = 65}, - [3203] = {.lex_state = 513}, - [3204] = {.lex_state = 120}, - [3205] = {.lex_state = 569}, - [3206] = {.lex_state = 65}, - [3207] = {.lex_state = 569}, - [3208] = {.lex_state = 513}, - [3209] = {.lex_state = 121}, - [3210] = {.lex_state = 513}, - [3211] = {.lex_state = 513}, - [3212] = {.lex_state = 513}, - [3213] = {.lex_state = 120}, - [3214] = {.lex_state = 513}, - [3215] = {.lex_state = 513}, - [3216] = {.lex_state = 513}, - [3217] = {.lex_state = 513}, - [3218] = {.lex_state = 569}, - [3219] = {.lex_state = 65}, - [3220] = {.lex_state = 124}, - [3221] = {.lex_state = 513}, - [3222] = {.lex_state = 513}, - [3223] = {.lex_state = 513}, - [3224] = {.lex_state = 124}, - [3225] = {.lex_state = 125}, - [3226] = {.lex_state = 124}, - [3227] = {.lex_state = 124}, - [3228] = {.lex_state = 569}, - [3229] = {.lex_state = 569}, - [3230] = {.lex_state = 123}, - [3231] = {.lex_state = 569}, - [3232] = {.lex_state = 569}, - [3233] = {.lex_state = 123}, - [3234] = {.lex_state = 569}, - [3235] = {.lex_state = 124}, - [3236] = {.lex_state = 569}, - [3237] = {.lex_state = 128}, - [3238] = {.lex_state = 124}, - [3239] = {.lex_state = 112}, - [3240] = {.lex_state = 123}, - [3241] = {.lex_state = 104}, - [3242] = {.lex_state = 569}, - [3243] = {.lex_state = 123}, - [3244] = {.lex_state = 128}, - [3245] = {.lex_state = 123}, - [3246] = {.lex_state = 569}, - [3247] = {.lex_state = 123}, - [3248] = {.lex_state = 123}, - [3249] = {.lex_state = 123}, - [3250] = {.lex_state = 125}, - [3251] = {.lex_state = 125}, - [3252] = {.lex_state = 65}, - [3253] = {.lex_state = 158}, - [3254] = {.lex_state = 130}, - [3255] = {.lex_state = 133}, - [3256] = {.lex_state = 130}, - [3257] = {.lex_state = 130}, - [3258] = {.lex_state = 158}, - [3259] = {.lex_state = 130}, - [3260] = {.lex_state = 130}, - [3261] = {.lex_state = 130}, - [3262] = {.lex_state = 130}, - [3263] = {.lex_state = 123}, - [3264] = {.lex_state = 114}, - [3265] = {.lex_state = 123}, - [3266] = {.lex_state = 130}, - [3267] = {.lex_state = 159}, - [3268] = {.lex_state = 133}, - [3269] = {.lex_state = 130}, - [3270] = {.lex_state = 130}, - [3271] = {.lex_state = 130}, - [3272] = {.lex_state = 135}, - [3273] = {.lex_state = 133}, - [3274] = {.lex_state = 130}, - [3275] = {.lex_state = 123}, - [3276] = {.lex_state = 130}, - [3277] = {.lex_state = 130}, - [3278] = {.lex_state = 65}, - [3279] = {.lex_state = 130}, - [3280] = {.lex_state = 65}, - [3281] = {.lex_state = 65}, - [3282] = {.lex_state = 65}, - [3283] = {.lex_state = 65}, - [3284] = {.lex_state = 158}, - [3285] = {.lex_state = 65}, - [3286] = {.lex_state = 184}, - [3287] = {.lex_state = 65}, - [3288] = {.lex_state = 65}, - [3289] = {.lex_state = 65}, - [3290] = {.lex_state = 65}, - [3291] = {.lex_state = 65}, - [3292] = {.lex_state = 65}, - [3293] = {.lex_state = 65}, - [3294] = {.lex_state = 65}, - [3295] = {.lex_state = 123}, - [3296] = {.lex_state = 130}, - [3297] = {.lex_state = 130}, - [3298] = {.lex_state = 130}, - [3299] = {.lex_state = 130}, - [3300] = {.lex_state = 130}, - [3301] = {.lex_state = 130}, - [3302] = {.lex_state = 130}, - [3303] = {.lex_state = 130}, - [3304] = {.lex_state = 130}, - [3305] = {.lex_state = 130}, - [3306] = {.lex_state = 123}, - [3307] = {.lex_state = 130}, - [3308] = {.lex_state = 130}, - [3309] = {.lex_state = 130}, - [3310] = {.lex_state = 130}, - [3311] = {.lex_state = 130}, - [3312] = {.lex_state = 125}, - [3313] = {.lex_state = 125}, - [3314] = {.lex_state = 158}, - [3315] = {.lex_state = 130}, - [3316] = {.lex_state = 130}, - [3317] = {.lex_state = 130}, - [3318] = {.lex_state = 105}, - [3319] = {.lex_state = 125}, - [3320] = {.lex_state = 123}, - [3321] = {.lex_state = 158}, - [3322] = {.lex_state = 159}, - [3323] = {.lex_state = 158}, - [3324] = {.lex_state = 123}, - [3325] = {.lex_state = 125}, - [3326] = {.lex_state = 130}, - [3327] = {.lex_state = 113}, - [3328] = {.lex_state = 123}, - [3329] = {.lex_state = 123}, - [3330] = {.lex_state = 123}, - [3331] = {.lex_state = 123}, - [3332] = {.lex_state = 123}, - [3333] = {.lex_state = 130}, - [3334] = {.lex_state = 130}, - [3335] = {.lex_state = 130}, - [3336] = {.lex_state = 65}, - [3337] = {.lex_state = 130}, - [3338] = {.lex_state = 163}, - [3339] = {.lex_state = 130}, - [3340] = {.lex_state = 130}, - [3341] = {.lex_state = 130}, - [3342] = {.lex_state = 130}, - [3343] = {.lex_state = 130}, - [3344] = {.lex_state = 130}, - [3345] = {.lex_state = 158}, - [3346] = {.lex_state = 130}, - [3347] = {.lex_state = 130}, - [3348] = {.lex_state = 130}, - [3349] = {.lex_state = 130}, - [3350] = {.lex_state = 130}, - [3351] = {.lex_state = 130}, - [3352] = {.lex_state = 130}, - [3353] = {.lex_state = 130}, - [3354] = {.lex_state = 158}, - [3355] = {.lex_state = 106}, - [3356] = {.lex_state = 130}, - [3357] = {.lex_state = 158}, - [3358] = {.lex_state = 65}, - [3359] = {.lex_state = 163}, - [3360] = {.lex_state = 130}, - [3361] = {.lex_state = 130}, - [3362] = {.lex_state = 130}, - [3363] = {.lex_state = 130}, - [3364] = {.lex_state = 130}, - [3365] = {.lex_state = 130}, - [3366] = {.lex_state = 130}, - [3367] = {.lex_state = 130}, - [3368] = {.lex_state = 130}, - [3369] = {.lex_state = 130}, - [3370] = {.lex_state = 65}, - [3371] = {.lex_state = 123}, - [3372] = {.lex_state = 158}, - [3373] = {.lex_state = 65}, - [3374] = {.lex_state = 130}, - [3375] = {.lex_state = 130}, - [3376] = {.lex_state = 65}, - [3377] = {.lex_state = 130}, - [3378] = {.lex_state = 130}, - [3379] = {.lex_state = 158}, - [3380] = {.lex_state = 130}, - [3381] = {.lex_state = 166}, - [3382] = {.lex_state = 130}, - [3383] = {.lex_state = 130}, - [3384] = {.lex_state = 65}, - [3385] = {.lex_state = 65}, - [3386] = {.lex_state = 166}, - [3387] = {.lex_state = 130}, - [3388] = {.lex_state = 65}, - [3389] = {.lex_state = 130}, - [3390] = {.lex_state = 65}, - [3391] = {.lex_state = 158}, - [3392] = {.lex_state = 130}, - [3393] = {.lex_state = 65}, - [3394] = {.lex_state = 158}, - [3395] = {.lex_state = 158}, - [3396] = {.lex_state = 65}, - [3397] = {.lex_state = 130}, - [3398] = {.lex_state = 65}, - [3399] = {.lex_state = 158}, - [3400] = {.lex_state = 65}, - [3401] = {.lex_state = 130}, - [3402] = {.lex_state = 65}, - [3403] = {.lex_state = 65}, - [3404] = {.lex_state = 65}, - [3405] = {.lex_state = 130}, - [3406] = {.lex_state = 130}, - [3407] = {.lex_state = 158}, - [3408] = {.lex_state = 130}, - [3409] = {.lex_state = 130}, - [3410] = {.lex_state = 130}, - [3411] = {.lex_state = 130}, - [3412] = {.lex_state = 130}, - [3413] = {.lex_state = 130}, - [3414] = {.lex_state = 130}, - [3415] = {.lex_state = 130}, - [3416] = {.lex_state = 130}, - [3417] = {.lex_state = 130}, - [3418] = {.lex_state = 130}, - [3419] = {.lex_state = 130}, - [3420] = {.lex_state = 130}, - [3421] = {.lex_state = 65}, - [3422] = {.lex_state = 130}, - [3423] = {.lex_state = 130}, - [3424] = {.lex_state = 130}, - [3425] = {.lex_state = 130}, - [3426] = {.lex_state = 130}, - [3427] = {.lex_state = 130}, - [3428] = {.lex_state = 65}, - [3429] = {.lex_state = 130}, - [3430] = {.lex_state = 65}, - [3431] = {.lex_state = 130}, - [3432] = {.lex_state = 65}, - [3433] = {.lex_state = 130}, - [3434] = {.lex_state = 130}, - [3435] = {.lex_state = 65}, - [3436] = {.lex_state = 158}, - [3437] = {.lex_state = 65}, - [3438] = {.lex_state = 130}, - [3439] = {.lex_state = 65}, - [3440] = {.lex_state = 158}, - [3441] = {.lex_state = 65}, - [3442] = {.lex_state = 130}, - [3443] = {.lex_state = 65}, - [3444] = {.lex_state = 130}, - [3445] = {.lex_state = 65}, - [3446] = {.lex_state = 130}, - [3447] = {.lex_state = 65}, - [3448] = {.lex_state = 158}, - [3449] = {.lex_state = 65}, - [3450] = {.lex_state = 158}, - [3451] = {.lex_state = 130}, - [3452] = {.lex_state = 65}, - [3453] = {.lex_state = 130}, - [3454] = {.lex_state = 65}, - [3455] = {.lex_state = 130}, - [3456] = {.lex_state = 130}, - [3457] = {.lex_state = 130}, - [3458] = {.lex_state = 158}, - [3459] = {.lex_state = 141}, - [3460] = {.lex_state = 158}, - [3461] = {.lex_state = 65}, - [3462] = {.lex_state = 158}, - [3463] = {.lex_state = 65}, - [3464] = {.lex_state = 65}, - [3465] = {.lex_state = 158}, - [3466] = {.lex_state = 158}, - [3467] = {.lex_state = 158}, - [3468] = {.lex_state = 65}, - [3469] = {.lex_state = 158}, - [3470] = {.lex_state = 65}, - [3471] = {.lex_state = 158}, - [3472] = {.lex_state = 130}, - [3473] = {.lex_state = 65}, - [3474] = {.lex_state = 65}, - [3475] = {.lex_state = 158}, - [3476] = {.lex_state = 158}, - [3477] = {.lex_state = 158}, - [3478] = {.lex_state = 65}, - [3479] = {.lex_state = 158}, - [3480] = {.lex_state = 158}, - [3481] = {.lex_state = 65}, - [3482] = {.lex_state = 65}, - [3483] = {.lex_state = 65}, - [3484] = {.lex_state = 65}, - [3485] = {.lex_state = 65}, - [3486] = {.lex_state = 123}, - [3487] = {.lex_state = 123}, - [3488] = {.lex_state = 158}, - [3489] = {.lex_state = 65}, - [3490] = {.lex_state = 130}, - [3491] = {.lex_state = 130}, - [3492] = {.lex_state = 158}, - [3493] = {.lex_state = 65}, - [3494] = {.lex_state = 185}, - [3495] = {.lex_state = 125}, - [3496] = {.lex_state = 125}, - [3497] = {.lex_state = 125}, - [3498] = {.lex_state = 130}, - [3499] = {.lex_state = 125}, - [3500] = {.lex_state = 125}, - [3501] = {.lex_state = 125}, - [3502] = {.lex_state = 125}, - [3503] = {.lex_state = 125}, - [3504] = {.lex_state = 125}, - [3505] = {.lex_state = 125}, - [3506] = {.lex_state = 130}, - [3507] = {.lex_state = 125}, - [3508] = {.lex_state = 125}, - [3509] = {.lex_state = 125}, - [3510] = {.lex_state = 130}, - [3511] = {.lex_state = 125}, - [3512] = {.lex_state = 125}, - [3513] = {.lex_state = 125}, - [3514] = {.lex_state = 125}, - [3515] = {.lex_state = 125}, - [3516] = {.lex_state = 125}, - [3517] = {.lex_state = 130}, - [3518] = {.lex_state = 125}, - [3519] = {.lex_state = 125}, - [3520] = {.lex_state = 130}, - [3521] = {.lex_state = 130}, - [3522] = {.lex_state = 130}, - [3523] = {.lex_state = 125}, - [3524] = {.lex_state = 130}, - [3525] = {.lex_state = 125}, - [3526] = {.lex_state = 125}, - [3527] = {.lex_state = 130}, - [3528] = {.lex_state = 125}, - [3529] = {.lex_state = 125}, - [3530] = {.lex_state = 125}, - [3531] = {.lex_state = 125}, - [3532] = {.lex_state = 125}, - [3533] = {.lex_state = 130}, - [3534] = {.lex_state = 130}, - [3535] = {.lex_state = 125}, - [3536] = {.lex_state = 125}, - [3537] = {.lex_state = 125}, - [3538] = {.lex_state = 125}, - [3539] = {.lex_state = 125}, - [3540] = {.lex_state = 125}, - [3541] = {.lex_state = 125}, - [3542] = {.lex_state = 125}, - [3543] = {.lex_state = 125}, - [3544] = {.lex_state = 125}, - [3545] = {.lex_state = 125}, - [3546] = {.lex_state = 125}, - [3547] = {.lex_state = 125}, - [3548] = {.lex_state = 125}, - [3549] = {.lex_state = 125}, - [3550] = {.lex_state = 125}, - [3551] = {.lex_state = 125}, - [3552] = {.lex_state = 125}, - [3553] = {.lex_state = 125}, - [3554] = {.lex_state = 125}, - [3555] = {.lex_state = 125}, - [3556] = {.lex_state = 125}, - [3557] = {.lex_state = 125}, - [3558] = {.lex_state = 125}, - [3559] = {.lex_state = 125}, - [3560] = {.lex_state = 125}, - [3561] = {.lex_state = 125}, - [3562] = {.lex_state = 125}, - [3563] = {.lex_state = 125}, - [3564] = {.lex_state = 130}, - [3565] = {.lex_state = 130}, - [3566] = {.lex_state = 125}, - [3567] = {.lex_state = 188}, - [3568] = {.lex_state = 188}, - [3569] = {.lex_state = 188}, - [3570] = {.lex_state = 188}, - [3571] = {.lex_state = 188}, - [3572] = {.lex_state = 188}, - [3573] = {.lex_state = 188}, - [3574] = {.lex_state = 188}, - [3575] = {.lex_state = 188}, - [3576] = {.lex_state = 188}, - [3577] = {.lex_state = 188}, - [3578] = {.lex_state = 188}, - [3579] = {.lex_state = 188}, - [3580] = {.lex_state = 188}, - [3581] = {.lex_state = 188}, - [3582] = {.lex_state = 188}, - [3583] = {.lex_state = 188}, - [3584] = {.lex_state = 188}, - [3585] = {.lex_state = 579}, - [3586] = {.lex_state = 579}, - [3587] = {.lex_state = 579}, - [3588] = {.lex_state = 175}, - [3589] = {.lex_state = 579}, - [3590] = {.lex_state = 175}, - [3591] = {.lex_state = 579}, - [3592] = {.lex_state = 579}, - [3593] = {.lex_state = 579}, - [3594] = {.lex_state = 579}, - [3595] = {.lex_state = 579}, - [3596] = {.lex_state = 579}, - [3597] = {.lex_state = 579}, - [3598] = {.lex_state = 579}, - [3599] = {.lex_state = 579}, - [3600] = {.lex_state = 579}, - [3601] = {.lex_state = 579}, - [3602] = {.lex_state = 579}, - [3603] = {.lex_state = 148}, - [3604] = {.lex_state = 148}, - [3605] = {.lex_state = 579}, - [3606] = {.lex_state = 579}, - [3607] = {.lex_state = 579}, - [3608] = {.lex_state = 579}, - [3609] = {.lex_state = 579}, - [3610] = {.lex_state = 579}, - [3611] = {.lex_state = 579}, - [3612] = {.lex_state = 579}, - [3613] = {.lex_state = 579}, - [3614] = {.lex_state = 579}, - [3615] = {.lex_state = 579}, - [3616] = {.lex_state = 579}, - [3617] = {.lex_state = 579}, - [3618] = {.lex_state = 579}, - [3619] = {.lex_state = 579}, - [3620] = {.lex_state = 176}, - [3621] = {.lex_state = 579}, - [3622] = {.lex_state = 579}, - [3623] = {.lex_state = 579}, - [3624] = {.lex_state = 579}, - [3625] = {.lex_state = 579}, - [3626] = {.lex_state = 579}, - [3627] = {.lex_state = 177}, - [3628] = {.lex_state = 191}, - [3629] = {.lex_state = 191}, - [3630] = {.lex_state = 579}, - [3631] = {.lex_state = 579}, - [3632] = {.lex_state = 579}, - [3633] = {.lex_state = 579}, - [3634] = {.lex_state = 579}, - [3635] = {.lex_state = 579}, - [3636] = {.lex_state = 191}, - [3637] = {.lex_state = 579}, - [3638] = {.lex_state = 177}, - [3639] = {.lex_state = 579}, - [3640] = {.lex_state = 579}, - [3641] = {.lex_state = 579}, - [3642] = {.lex_state = 579}, - [3643] = {.lex_state = 579}, - [3644] = {.lex_state = 148}, - [3645] = {.lex_state = 190}, - [3646] = {.lex_state = 177}, - [3647] = {.lex_state = 579}, - [3648] = {.lex_state = 579}, - [3649] = {.lex_state = 579}, - [3650] = {.lex_state = 191}, - [3651] = {.lex_state = 579}, - [3652] = {.lex_state = 191}, - [3653] = {.lex_state = 190}, - [3654] = {.lex_state = 190}, - [3655] = {.lex_state = 190}, - [3656] = {.lex_state = 579}, - [3657] = {.lex_state = 579}, - [3658] = {.lex_state = 190}, - [3659] = {.lex_state = 579}, - [3660] = {.lex_state = 579}, - [3661] = {.lex_state = 190}, - [3662] = {.lex_state = 579}, - [3663] = {.lex_state = 191}, - [3664] = {.lex_state = 579}, - [3665] = {.lex_state = 579}, - [3666] = {.lex_state = 177}, - [3667] = {.lex_state = 190}, - [3668] = {.lex_state = 148}, - [3669] = {.lex_state = 579}, - [3670] = {.lex_state = 579}, - [3671] = {.lex_state = 190}, - [3672] = {.lex_state = 579}, - [3673] = {.lex_state = 579}, - [3674] = {.lex_state = 579}, - [3675] = {.lex_state = 191}, - [3676] = {.lex_state = 148}, - [3677] = {.lex_state = 579}, - [3678] = {.lex_state = 579}, - [3679] = {.lex_state = 176}, - [3680] = {.lex_state = 190}, - [3681] = {.lex_state = 579}, - [3682] = {.lex_state = 579}, - [3683] = {.lex_state = 176}, - [3684] = {.lex_state = 579}, - [3685] = {.lex_state = 191}, - [3686] = {.lex_state = 191}, - [3687] = {.lex_state = 579}, - [3688] = {.lex_state = 191}, - [3689] = {.lex_state = 579}, - [3690] = {.lex_state = 190}, - [3691] = {.lex_state = 190}, - [3692] = {.lex_state = 190}, - [3693] = {.lex_state = 191}, - [3694] = {.lex_state = 191}, - [3695] = {.lex_state = 190}, - [3696] = {.lex_state = 148}, - [3697] = {.lex_state = 190}, - [3698] = {.lex_state = 148}, - [3699] = {.lex_state = 148}, - [3700] = {.lex_state = 148}, - [3701] = {.lex_state = 196}, - [3702] = {.lex_state = 148}, - [3703] = {.lex_state = 148}, - [3704] = {.lex_state = 190}, - [3705] = {.lex_state = 177}, - [3706] = {.lex_state = 148}, - [3707] = {.lex_state = 148}, - [3708] = {.lex_state = 148}, - [3709] = {.lex_state = 190}, - [3710] = {.lex_state = 148}, - [3711] = {.lex_state = 190}, - [3712] = {.lex_state = 148}, - [3713] = {.lex_state = 190}, - [3714] = {.lex_state = 190}, - [3715] = {.lex_state = 190}, - [3716] = {.lex_state = 148}, - [3717] = {.lex_state = 190}, - [3718] = {.lex_state = 177}, - [3719] = {.lex_state = 196}, - [3720] = {.lex_state = 148}, - [3721] = {.lex_state = 177}, - [3722] = {.lex_state = 148}, - [3723] = {.lex_state = 190}, - [3724] = {.lex_state = 190}, - [3725] = {.lex_state = 190}, - [3726] = {.lex_state = 190}, - [3727] = {.lex_state = 190}, - [3728] = {.lex_state = 190}, - [3729] = {.lex_state = 190}, - [3730] = {.lex_state = 190}, - [3731] = {.lex_state = 148}, - [3732] = {.lex_state = 190}, - [3733] = {.lex_state = 190}, - [3734] = {.lex_state = 148}, - [3735] = {.lex_state = 148}, - [3736] = {.lex_state = 148}, - [3737] = {.lex_state = 148}, - [3738] = {.lex_state = 148}, - [3739] = {.lex_state = 190}, - [3740] = {.lex_state = 148}, - [3741] = {.lex_state = 190}, - [3742] = {.lex_state = 148}, - [3743] = {.lex_state = 148}, - [3744] = {.lex_state = 148}, - [3745] = {.lex_state = 190}, - [3746] = {.lex_state = 190}, - [3747] = {.lex_state = 190}, - [3748] = {.lex_state = 177}, - [3749] = {.lex_state = 148}, - [3750] = {.lex_state = 191}, - [3751] = {.lex_state = 190}, - [3752] = {.lex_state = 190}, - [3753] = {.lex_state = 190}, - [3754] = {.lex_state = 190}, - [3755] = {.lex_state = 190}, - [3756] = {.lex_state = 190}, - [3757] = {.lex_state = 65}, - [3758] = {.lex_state = 194}, - [3759] = {.lex_state = 191}, - [3760] = {.lex_state = 190}, - [3761] = {.lex_state = 194}, - [3762] = {.lex_state = 190}, - [3763] = {.lex_state = 190}, - [3764] = {.lex_state = 190}, - [3765] = {.lex_state = 190}, - [3766] = {.lex_state = 197}, - [3767] = {.lex_state = 191}, - [3768] = {.lex_state = 191}, - [3769] = {.lex_state = 191}, - [3770] = {.lex_state = 190}, - [3771] = {.lex_state = 190}, - [3772] = {.lex_state = 190}, - [3773] = {.lex_state = 190}, - [3774] = {.lex_state = 191}, - [3775] = {.lex_state = 190}, - [3776] = {.lex_state = 190}, - [3777] = {.lex_state = 191}, - [3778] = {.lex_state = 190}, - [3779] = {.lex_state = 191}, - [3780] = {.lex_state = 191}, - [3781] = {.lex_state = 190}, - [3782] = {.lex_state = 190}, - [3783] = {.lex_state = 194}, - [3784] = {.lex_state = 197}, - [3785] = {.lex_state = 190}, - [3786] = {.lex_state = 190}, - [3787] = {.lex_state = 190}, - [3788] = {.lex_state = 148}, - [3789] = {.lex_state = 148}, - [3790] = {.lex_state = 191}, - [3791] = {.lex_state = 194}, - [3792] = {.lex_state = 194}, - [3793] = {.lex_state = 194}, - [3794] = {.lex_state = 191}, - [3795] = {.lex_state = 191}, - [3796] = {.lex_state = 191}, - [3797] = {.lex_state = 194}, - [3798] = {.lex_state = 194}, - [3799] = {.lex_state = 191}, - [3800] = {.lex_state = 191}, - [3801] = {.lex_state = 148}, - [3802] = {.lex_state = 191}, - [3803] = {.lex_state = 197}, - [3804] = {.lex_state = 191}, - [3805] = {.lex_state = 191}, - [3806] = {.lex_state = 197}, - [3807] = {.lex_state = 191}, - [3808] = {.lex_state = 148}, - [3809] = {.lex_state = 197}, - [3810] = {.lex_state = 148}, - [3811] = {.lex_state = 191}, - [3812] = {.lex_state = 191}, - [3813] = {.lex_state = 191}, - [3814] = {.lex_state = 191}, - [3815] = {.lex_state = 191}, - [3816] = {.lex_state = 191}, - [3817] = {.lex_state = 197}, - [3818] = {.lex_state = 191}, - [3819] = {.lex_state = 191}, - [3820] = {.lex_state = 191}, - [3821] = {.lex_state = 191}, - [3822] = {.lex_state = 191}, - [3823] = {.lex_state = 191}, - [3824] = {.lex_state = 191}, - [3825] = {.lex_state = 148}, - [3826] = {.lex_state = 191}, - [3827] = {.lex_state = 191}, - [3828] = {.lex_state = 191}, - [3829] = {.lex_state = 194}, - [3830] = {.lex_state = 190}, - [3831] = {.lex_state = 195}, - [3832] = {.lex_state = 191}, - [3833] = {.lex_state = 194}, - [3834] = {.lex_state = 191}, - [3835] = {.lex_state = 191}, - [3836] = {.lex_state = 148}, - [3837] = {.lex_state = 191}, - [3838] = {.lex_state = 198}, - [3839] = {.lex_state = 191}, - [3840] = {.lex_state = 195}, - [3841] = {.lex_state = 191}, - [3842] = {.lex_state = 191}, - [3843] = {.lex_state = 197}, - [3844] = {.lex_state = 191}, - [3845] = {.lex_state = 195}, - [3846] = {.lex_state = 148}, - [3847] = {.lex_state = 191}, - [3848] = {.lex_state = 191}, - [3849] = {.lex_state = 195}, - [3850] = {.lex_state = 148}, - [3851] = {.lex_state = 148}, - [3852] = {.lex_state = 65}, - [3853] = {.lex_state = 65}, - [3854] = {.lex_state = 148}, - [3855] = {.lex_state = 148}, - [3856] = {.lex_state = 148}, - [3857] = {.lex_state = 148}, - [3858] = {.lex_state = 148}, - [3859] = {.lex_state = 148}, - [3860] = {.lex_state = 148}, - [3861] = {.lex_state = 148}, - [3862] = {.lex_state = 148}, - [3863] = {.lex_state = 148}, - [3864] = {.lex_state = 148}, - [3865] = {.lex_state = 148}, - [3866] = {.lex_state = 148}, - [3867] = {.lex_state = 148}, - [3868] = {.lex_state = 148}, - [3869] = {.lex_state = 148}, - [3870] = {.lex_state = 65}, - [3871] = {.lex_state = 65}, - [3872] = {.lex_state = 65}, - [3873] = {.lex_state = 174}, - [3874] = {.lex_state = 148}, - [3875] = {.lex_state = 148}, - [3876] = {.lex_state = 65}, - [3877] = {.lex_state = 148}, - [3878] = {.lex_state = 148}, - [3879] = {.lex_state = 179}, - [3880] = {.lex_state = 179}, - [3881] = {.lex_state = 148}, - [3882] = {.lex_state = 148}, - [3883] = {.lex_state = 148}, - [3884] = {.lex_state = 65}, - [3885] = {.lex_state = 65}, - [3886] = {.lex_state = 148}, - [3887] = {.lex_state = 148}, - [3888] = {.lex_state = 148}, - [3889] = {.lex_state = 148}, - [3890] = {.lex_state = 148}, - [3891] = {.lex_state = 190}, - [3892] = {.lex_state = 202}, - [3893] = {.lex_state = 190}, - [3894] = {.lex_state = 190}, - [3895] = {.lex_state = 190}, - [3896] = {.lex_state = 190}, - [3897] = {.lex_state = 190}, - [3898] = {.lex_state = 190}, - [3899] = {.lex_state = 190}, - [3900] = {.lex_state = 148}, - [3901] = {.lex_state = 190}, - [3902] = {.lex_state = 174}, - [3903] = {.lex_state = 190}, - [3904] = {.lex_state = 190}, - [3905] = {.lex_state = 190}, - [3906] = {.lex_state = 190}, - [3907] = {.lex_state = 190}, - [3908] = {.lex_state = 190}, - [3909] = {.lex_state = 190}, - [3910] = {.lex_state = 190}, - [3911] = {.lex_state = 179}, - [3912] = {.lex_state = 190}, - [3913] = {.lex_state = 148}, - [3914] = {.lex_state = 148}, - [3915] = {.lex_state = 148}, - [3916] = {.lex_state = 148}, - [3917] = {.lex_state = 148}, - [3918] = {.lex_state = 148}, - [3919] = {.lex_state = 148}, - [3920] = {.lex_state = 190}, - [3921] = {.lex_state = 174}, - [3922] = {.lex_state = 190}, - [3923] = {.lex_state = 190}, - [3924] = {.lex_state = 190}, - [3925] = {.lex_state = 190}, - [3926] = {.lex_state = 190}, - [3927] = {.lex_state = 190}, - [3928] = {.lex_state = 190}, - [3929] = {.lex_state = 148}, - [3930] = {.lex_state = 148}, - [3931] = {.lex_state = 148}, - [3932] = {.lex_state = 148}, - [3933] = {.lex_state = 148}, - [3934] = {.lex_state = 148}, - [3935] = {.lex_state = 148}, - [3936] = {.lex_state = 148}, - [3937] = {.lex_state = 148}, - [3938] = {.lex_state = 148}, - [3939] = {.lex_state = 148}, - [3940] = {.lex_state = 148}, - [3941] = {.lex_state = 148}, - [3942] = {.lex_state = 148}, - [3943] = {.lex_state = 148}, - [3944] = {.lex_state = 148}, - [3945] = {.lex_state = 148}, - [3946] = {.lex_state = 190}, - [3947] = {.lex_state = 148}, - [3948] = {.lex_state = 148}, - [3949] = {.lex_state = 148}, - [3950] = {.lex_state = 190}, - [3951] = {.lex_state = 190}, - [3952] = {.lex_state = 148}, - [3953] = {.lex_state = 190}, - [3954] = {.lex_state = 190}, - [3955] = {.lex_state = 190}, - [3956] = {.lex_state = 190}, - [3957] = {.lex_state = 190}, - [3958] = {.lex_state = 148}, - [3959] = {.lex_state = 148}, - [3960] = {.lex_state = 190}, - [3961] = {.lex_state = 190}, - [3962] = {.lex_state = 190}, - [3963] = {.lex_state = 190}, - [3964] = {.lex_state = 190}, - [3965] = {.lex_state = 190}, - [3966] = {.lex_state = 190}, - [3967] = {.lex_state = 190}, - [3968] = {.lex_state = 190}, - [3969] = {.lex_state = 190}, - [3970] = {.lex_state = 190}, - [3971] = {.lex_state = 190}, - [3972] = {.lex_state = 179}, - [3973] = {.lex_state = 190}, - [3974] = {.lex_state = 190}, - [3975] = {.lex_state = 190}, - [3976] = {.lex_state = 190}, - [3977] = {.lex_state = 190}, - [3978] = {.lex_state = 148}, - [3979] = {.lex_state = 190}, - [3980] = {.lex_state = 148}, - [3981] = {.lex_state = 190}, - [3982] = {.lex_state = 190}, - [3983] = {.lex_state = 190}, - [3984] = {.lex_state = 148}, - [3985] = {.lex_state = 190}, - [3986] = {.lex_state = 148}, - [3987] = {.lex_state = 174}, - [3988] = {.lex_state = 190}, - [3989] = {.lex_state = 174}, - [3990] = {.lex_state = 174}, - [3991] = {.lex_state = 174}, - [3992] = {.lex_state = 190}, - [3993] = {.lex_state = 190}, - [3994] = {.lex_state = 190}, - [3995] = {.lex_state = 190}, - [3996] = {.lex_state = 174}, - [3997] = {.lex_state = 190}, - [3998] = {.lex_state = 174}, - [3999] = {.lex_state = 190}, - [4000] = {.lex_state = 190}, - [4001] = {.lex_state = 190}, - [4002] = {.lex_state = 190}, - [4003] = {.lex_state = 190}, - [4004] = {.lex_state = 148}, - [4005] = {.lex_state = 190}, - [4006] = {.lex_state = 190}, - [4007] = {.lex_state = 190}, - [4008] = {.lex_state = 190}, - [4009] = {.lex_state = 190}, - [4010] = {.lex_state = 190}, - [4011] = {.lex_state = 190}, - [4012] = {.lex_state = 190}, - [4013] = {.lex_state = 190}, - [4014] = {.lex_state = 190}, - [4015] = {.lex_state = 190}, - [4016] = {.lex_state = 190}, - [4017] = {.lex_state = 190}, - [4018] = {.lex_state = 148}, - [4019] = {.lex_state = 148}, - [4020] = {.lex_state = 148}, - [4021] = {.lex_state = 190}, - [4022] = {.lex_state = 190}, - [4023] = {.lex_state = 190}, - [4024] = {.lex_state = 190}, - [4025] = {.lex_state = 190}, - [4026] = {.lex_state = 190}, - [4027] = {.lex_state = 190}, - [4028] = {.lex_state = 148}, - [4029] = {.lex_state = 148}, - [4030] = {.lex_state = 190}, - [4031] = {.lex_state = 190}, - [4032] = {.lex_state = 190}, - [4033] = {.lex_state = 148}, - [4034] = {.lex_state = 148}, - [4035] = {.lex_state = 148}, - [4036] = {.lex_state = 148}, - [4037] = {.lex_state = 148}, - [4038] = {.lex_state = 148}, - [4039] = {.lex_state = 148}, - [4040] = {.lex_state = 148}, - [4041] = {.lex_state = 148}, - [4042] = {.lex_state = 148}, - [4043] = {.lex_state = 148}, - [4044] = {.lex_state = 148}, - [4045] = {.lex_state = 148}, - [4046] = {.lex_state = 148}, - [4047] = {.lex_state = 148}, - [4048] = {.lex_state = 179}, - [4049] = {.lex_state = 148}, - [4050] = {.lex_state = 179}, - [4051] = {.lex_state = 179}, - [4052] = {.lex_state = 513}, - [4053] = {.lex_state = 148}, - [4054] = {.lex_state = 148}, - [4055] = {.lex_state = 174}, - [4056] = {.lex_state = 148}, - [4057] = {.lex_state = 202}, - [4058] = {.lex_state = 148}, - [4059] = {.lex_state = 174}, - [4060] = {.lex_state = 148}, - [4061] = {.lex_state = 148}, - [4062] = {.lex_state = 513}, - [4063] = {.lex_state = 174}, - [4064] = {.lex_state = 174}, - [4065] = {.lex_state = 202}, - [4066] = {.lex_state = 513}, - [4067] = {.lex_state = 513}, - [4068] = {.lex_state = 513}, - [4069] = {.lex_state = 513}, - [4070] = {.lex_state = 513}, - [4071] = {.lex_state = 513}, - [4072] = {.lex_state = 513}, - [4073] = {.lex_state = 513}, - [4074] = {.lex_state = 513}, - [4075] = {.lex_state = 513}, - [4076] = {.lex_state = 513}, - [4077] = {.lex_state = 513}, - [4078] = {.lex_state = 513}, - [4079] = {.lex_state = 513}, - [4080] = {.lex_state = 513}, - [4081] = {.lex_state = 513}, - [4082] = {.lex_state = 513}, - [4083] = {.lex_state = 513}, - [4084] = {.lex_state = 513}, - [4085] = {.lex_state = 513}, - [4086] = {.lex_state = 513}, - [4087] = {.lex_state = 513}, - [4088] = {.lex_state = 513}, - [4089] = {.lex_state = 513}, - [4090] = {.lex_state = 513}, - [4091] = {.lex_state = 513}, - [4092] = {.lex_state = 513}, - [4093] = {.lex_state = 513}, - [4094] = {.lex_state = 513}, - [4095] = {.lex_state = 174}, - [4096] = {.lex_state = 174}, - [4097] = {.lex_state = 148}, - [4098] = {.lex_state = 174}, - [4099] = {.lex_state = 513}, - [4100] = {.lex_state = 513}, - [4101] = {.lex_state = 513}, - [4102] = {.lex_state = 513}, - [4103] = {.lex_state = 513}, - [4104] = {.lex_state = 513}, - [4105] = {.lex_state = 513}, - [4106] = {.lex_state = 513}, - [4107] = {.lex_state = 513}, - [4108] = {.lex_state = 513}, - [4109] = {.lex_state = 175}, - [4110] = {.lex_state = 175}, - [4111] = {.lex_state = 148}, - [4112] = {.lex_state = 513}, - [4113] = {.lex_state = 513}, - [4114] = {.lex_state = 174}, - [4115] = {.lex_state = 513}, - [4116] = {.lex_state = 513}, - [4117] = {.lex_state = 513}, - [4118] = {.lex_state = 513}, - [4119] = {.lex_state = 513}, - [4120] = {.lex_state = 508}, - [4121] = {.lex_state = 508}, - [4122] = {.lex_state = 508}, - [4123] = {.lex_state = 513}, - [4124] = {.lex_state = 513}, - [4125] = {.lex_state = 513}, - [4126] = {.lex_state = 508}, - [4127] = {.lex_state = 513}, - [4128] = {.lex_state = 513}, - [4129] = {.lex_state = 508}, - [4130] = {.lex_state = 513}, - [4131] = {.lex_state = 513}, - [4132] = {.lex_state = 513}, - [4133] = {.lex_state = 513}, - [4134] = {.lex_state = 513}, - [4135] = {.lex_state = 513}, - [4136] = {.lex_state = 65}, - [4137] = {.lex_state = 175}, - [4138] = {.lex_state = 513}, - [4139] = {.lex_state = 148}, - [4140] = {.lex_state = 513}, - [4141] = {.lex_state = 513}, - [4142] = {.lex_state = 175}, - [4143] = {.lex_state = 148}, - [4144] = {.lex_state = 513}, - [4145] = {.lex_state = 148}, - [4146] = {.lex_state = 148}, - [4147] = {.lex_state = 148}, - [4148] = {.lex_state = 148}, - [4149] = {.lex_state = 148}, - [4150] = {.lex_state = 513}, - [4151] = {.lex_state = 148}, - [4152] = {.lex_state = 508}, - [4153] = {.lex_state = 513}, - [4154] = {.lex_state = 513}, - [4155] = {.lex_state = 148}, - [4156] = {.lex_state = 65}, - [4157] = {.lex_state = 148}, - [4158] = {.lex_state = 513}, - [4159] = {.lex_state = 513}, - [4160] = {.lex_state = 513}, - [4161] = {.lex_state = 513}, - [4162] = {.lex_state = 513}, - [4163] = {.lex_state = 513}, - [4164] = {.lex_state = 513}, - [4165] = {.lex_state = 513}, - [4166] = {.lex_state = 513}, - [4167] = {.lex_state = 175}, - [4168] = {.lex_state = 174}, - [4169] = {.lex_state = 174}, - [4170] = {.lex_state = 175}, - [4171] = {.lex_state = 513}, - [4172] = {.lex_state = 513}, - [4173] = {.lex_state = 175}, - [4174] = {.lex_state = 175}, - [4175] = {.lex_state = 175}, - [4176] = {.lex_state = 513}, - [4177] = {.lex_state = 513}, - [4178] = {.lex_state = 513}, - [4179] = {.lex_state = 513}, - [4180] = {.lex_state = 513}, - [4181] = {.lex_state = 175}, - [4182] = {.lex_state = 174}, - [4183] = {.lex_state = 513}, - [4184] = {.lex_state = 513}, - [4185] = {.lex_state = 148}, - [4186] = {.lex_state = 513}, - [4187] = {.lex_state = 508}, - [4188] = {.lex_state = 508}, - [4189] = {.lex_state = 508}, - [4190] = {.lex_state = 513}, - [4191] = {.lex_state = 513}, - [4192] = {.lex_state = 174}, - [4193] = {.lex_state = 513}, - [4194] = {.lex_state = 496}, - [4195] = {.lex_state = 174}, - [4196] = {.lex_state = 174}, - [4197] = {.lex_state = 175}, - [4198] = {.lex_state = 175}, - [4199] = {.lex_state = 513}, - [4200] = {.lex_state = 175}, - [4201] = {.lex_state = 513}, - [4202] = {.lex_state = 174}, - [4203] = {.lex_state = 175}, - [4204] = {.lex_state = 513}, - [4205] = {.lex_state = 125}, - [4206] = {.lex_state = 175}, - [4207] = {.lex_state = 513}, - [4208] = {.lex_state = 175}, - [4209] = {.lex_state = 513}, - [4210] = {.lex_state = 174}, - [4211] = {.lex_state = 174}, - [4212] = {.lex_state = 174}, - [4213] = {.lex_state = 174}, - [4214] = {.lex_state = 65}, - [4215] = {.lex_state = 174}, - [4216] = {.lex_state = 513}, - [4217] = {.lex_state = 175}, - [4218] = {.lex_state = 175}, - [4219] = {.lex_state = 174}, - [4220] = {.lex_state = 65}, - [4221] = {.lex_state = 175}, - [4222] = {.lex_state = 496}, - [4223] = {.lex_state = 513}, - [4224] = {.lex_state = 174}, - [4225] = {.lex_state = 1852}, - [4226] = {.lex_state = 513}, - [4227] = {.lex_state = 513}, - [4228] = {.lex_state = 65}, - [4229] = {.lex_state = 513}, - [4230] = {.lex_state = 174}, - [4231] = {.lex_state = 513}, - [4232] = {.lex_state = 175}, - [4233] = {.lex_state = 175}, - [4234] = {.lex_state = 582}, - [4235] = {.lex_state = 508}, - [4236] = {.lex_state = 174}, - [4237] = {.lex_state = 174}, - [4238] = {.lex_state = 65}, - [4239] = {.lex_state = 513}, - [4240] = {.lex_state = 174}, - [4241] = {.lex_state = 175}, - [4242] = {.lex_state = 513}, - [4243] = {.lex_state = 174}, - [4244] = {.lex_state = 174}, - [4245] = {.lex_state = 174}, - [4246] = {.lex_state = 508}, - [4247] = {.lex_state = 513}, - [4248] = {.lex_state = 174}, - [4249] = {.lex_state = 174}, - [4250] = {.lex_state = 65}, - [4251] = {.lex_state = 508}, - [4252] = {.lex_state = 1852}, - [4253] = {.lex_state = 174}, - [4254] = {.lex_state = 175}, - [4255] = {.lex_state = 508}, - [4256] = {.lex_state = 174}, - [4257] = {.lex_state = 174}, - [4258] = {.lex_state = 508}, - [4259] = {.lex_state = 23}, - [4260] = {.lex_state = 174}, - [4261] = {.lex_state = 23}, - [4262] = {.lex_state = 174}, - [4263] = {.lex_state = 174}, - [4264] = {.lex_state = 174}, - [4265] = {.lex_state = 513}, - [4266] = {.lex_state = 174}, - [4267] = {.lex_state = 174}, - [4268] = {.lex_state = 513}, - [4269] = {.lex_state = 174}, - [4270] = {.lex_state = 174}, - [4271] = {.lex_state = 508}, - [4272] = {.lex_state = 513}, - [4273] = {.lex_state = 508}, - [4274] = {.lex_state = 508}, - [4275] = {.lex_state = 508}, - [4276] = {.lex_state = 174}, - [4277] = {.lex_state = 174}, - [4278] = {.lex_state = 175}, - [4279] = {.lex_state = 496}, - [4280] = {.lex_state = 174}, - [4281] = {.lex_state = 174}, - [4282] = {.lex_state = 496}, - [4283] = {.lex_state = 174}, - [4284] = {.lex_state = 513}, - [4285] = {.lex_state = 493}, - [4286] = {.lex_state = 125}, - [4287] = {.lex_state = 205}, - [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 175}, - [4290] = {.lex_state = 175}, - [4291] = {.lex_state = 187}, - [4292] = {.lex_state = 175}, - [4293] = {.lex_state = 513}, - [4294] = {.lex_state = 513}, - [4295] = {.lex_state = 187}, - [4296] = {.lex_state = 187}, - [4297] = {.lex_state = 174}, - [4298] = {.lex_state = 0}, - [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 513}, - [4302] = {.lex_state = 0}, - [4303] = {.lex_state = 0}, - [4304] = {.lex_state = 513}, - [4305] = {.lex_state = 582}, - [4306] = {.lex_state = 125}, - [4307] = {.lex_state = 513}, - [4308] = {.lex_state = 187}, - [4309] = {.lex_state = 175}, - [4310] = {.lex_state = 175}, - [4311] = {.lex_state = 175}, - [4312] = {.lex_state = 187}, - [4313] = {.lex_state = 513}, - [4314] = {.lex_state = 65}, - [4315] = {.lex_state = 513}, - [4316] = {.lex_state = 205}, - [4317] = {.lex_state = 513}, - [4318] = {.lex_state = 187}, - [4319] = {.lex_state = 513}, - [4320] = {.lex_state = 513}, - [4321] = {.lex_state = 513}, - [4322] = {.lex_state = 513}, - [4323] = {.lex_state = 513}, - [4324] = {.lex_state = 513}, - [4325] = {.lex_state = 513}, - [4326] = {.lex_state = 513}, - [4327] = {.lex_state = 513}, - [4328] = {.lex_state = 125}, - [4329] = {.lex_state = 175}, - [4330] = {.lex_state = 175}, - [4331] = {.lex_state = 513}, - [4332] = {.lex_state = 513}, - [4333] = {.lex_state = 65}, - [4334] = {.lex_state = 513}, - [4335] = {.lex_state = 513}, - [4336] = {.lex_state = 187}, - [4337] = {.lex_state = 65}, - [4338] = {.lex_state = 65}, - [4339] = {.lex_state = 513}, - [4340] = {.lex_state = 65}, - [4341] = {.lex_state = 187}, - [4342] = {.lex_state = 513}, - [4343] = {.lex_state = 513}, - [4344] = {.lex_state = 513}, - [4345] = {.lex_state = 175}, - [4346] = {.lex_state = 513}, - [4347] = {.lex_state = 513}, - [4348] = {.lex_state = 65}, - [4349] = {.lex_state = 187}, - [4350] = {.lex_state = 513}, - [4351] = {.lex_state = 65}, - [4352] = {.lex_state = 187}, - [4353] = {.lex_state = 65}, - [4354] = {.lex_state = 65}, - [4355] = {.lex_state = 65}, - [4356] = {.lex_state = 187}, - [4357] = {.lex_state = 65}, - [4358] = {.lex_state = 175}, - [4359] = {.lex_state = 513}, - [4360] = {.lex_state = 513}, - [4361] = {.lex_state = 187}, - [4362] = {.lex_state = 513}, - [4363] = {.lex_state = 513}, - [4364] = {.lex_state = 513}, - [4365] = {.lex_state = 513}, - [4366] = {.lex_state = 65}, - [4367] = {.lex_state = 513}, - [4368] = {.lex_state = 205}, - [4369] = {.lex_state = 513}, - [4370] = {.lex_state = 513}, - [4371] = {.lex_state = 513}, - [4372] = {.lex_state = 65}, - [4373] = {.lex_state = 513}, - [4374] = {.lex_state = 513}, - [4375] = {.lex_state = 513}, - [4376] = {.lex_state = 513}, - [4377] = {.lex_state = 513}, - [4378] = {.lex_state = 202}, - [4379] = {.lex_state = 513}, - [4380] = {.lex_state = 205}, - [4381] = {.lex_state = 513}, - [4382] = {.lex_state = 513}, - [4383] = {.lex_state = 513}, - [4384] = {.lex_state = 187}, - [4385] = {.lex_state = 513}, - [4386] = {.lex_state = 513}, - [4387] = {.lex_state = 187}, - [4388] = {.lex_state = 513}, - [4389] = {.lex_state = 513}, - [4390] = {.lex_state = 513}, - [4391] = {.lex_state = 513}, - [4392] = {.lex_state = 187}, - [4393] = {.lex_state = 513}, - [4394] = {.lex_state = 202}, - [4395] = {.lex_state = 513}, - [4396] = {.lex_state = 187}, - [4397] = {.lex_state = 65}, - [4398] = {.lex_state = 175}, - [4399] = {.lex_state = 65}, - [4400] = {.lex_state = 513}, - [4401] = {.lex_state = 65}, - [4402] = {.lex_state = 513}, - [4403] = {.lex_state = 513}, - [4404] = {.lex_state = 513}, - [4405] = {.lex_state = 187}, - [4406] = {.lex_state = 493}, - [4407] = {.lex_state = 582}, - [4408] = {.lex_state = 513}, - [4409] = {.lex_state = 65}, - [4410] = {.lex_state = 65}, - [4411] = {.lex_state = 187}, - [4412] = {.lex_state = 513}, - [4413] = {.lex_state = 175}, - [4414] = {.lex_state = 205}, - [4415] = {.lex_state = 513}, - [4416] = {.lex_state = 187}, - [4417] = {.lex_state = 174}, - [4418] = {.lex_state = 182}, - [4419] = {.lex_state = 187}, - [4420] = {.lex_state = 493}, - [4421] = {.lex_state = 187}, - [4422] = {.lex_state = 496}, - [4423] = {.lex_state = 187}, - [4424] = {.lex_state = 187}, - [4425] = {.lex_state = 65}, - [4426] = {.lex_state = 125}, - [4427] = {.lex_state = 65}, - [4428] = {.lex_state = 187}, - [4429] = {.lex_state = 65}, - [4430] = {.lex_state = 187}, - [4431] = {.lex_state = 493}, - [4432] = {.lex_state = 125}, - [4433] = {.lex_state = 513}, - [4434] = {.lex_state = 202}, - [4435] = {.lex_state = 508}, - [4436] = {.lex_state = 496}, - [4437] = {.lex_state = 202}, - [4438] = {.lex_state = 508}, - [4439] = {.lex_state = 174}, - [4440] = {.lex_state = 513}, - [4441] = {.lex_state = 508}, - [4442] = {.lex_state = 65}, - [4443] = {.lex_state = 508}, - [4444] = {.lex_state = 496}, - [4445] = {.lex_state = 508}, - [4446] = {.lex_state = 174}, - [4447] = {.lex_state = 508}, - [4448] = {.lex_state = 187}, - [4449] = {.lex_state = 496}, - [4450] = {.lex_state = 187}, - [4451] = {.lex_state = 202}, - [4452] = {.lex_state = 65}, - [4453] = {.lex_state = 508}, - [4454] = {.lex_state = 65}, - [4455] = {.lex_state = 508}, - [4456] = {.lex_state = 190}, - [4457] = {.lex_state = 227}, - [4458] = {.lex_state = 65}, - [4459] = {.lex_state = 65}, - [4460] = {.lex_state = 513}, - [4461] = {.lex_state = 183}, - [4462] = {.lex_state = 183}, - [4463] = {.lex_state = 508}, - [4464] = {.lex_state = 227}, - [4465] = {.lex_state = 65}, - [4466] = {.lex_state = 508}, - [4467] = {.lex_state = 508}, - [4468] = {.lex_state = 508}, - [4469] = {.lex_state = 513}, - [4470] = {.lex_state = 227}, - [4471] = {.lex_state = 493}, - [4472] = {.lex_state = 508}, - [4473] = {.lex_state = 508}, - [4474] = {.lex_state = 183}, - [4475] = {.lex_state = 513}, - [4476] = {.lex_state = 513}, - [4477] = {.lex_state = 183}, - [4478] = {.lex_state = 508}, - [4479] = {.lex_state = 493}, - [4480] = {.lex_state = 175}, - [4481] = {.lex_state = 493}, - [4482] = {.lex_state = 183}, - [4483] = {.lex_state = 513}, - [4484] = {.lex_state = 65}, - [4485] = {.lex_state = 65}, - [4486] = {.lex_state = 65}, - [4487] = {.lex_state = 513}, - [4488] = {.lex_state = 65}, - [4489] = {.lex_state = 190}, - [4490] = {.lex_state = 513}, - [4491] = {.lex_state = 513}, - [4492] = {.lex_state = 513}, - [4493] = {.lex_state = 65}, - [4494] = {.lex_state = 65}, - [4495] = {.lex_state = 508}, - [4496] = {.lex_state = 175}, - [4497] = {.lex_state = 508}, - [4498] = {.lex_state = 513}, - [4499] = {.lex_state = 227}, - [4500] = {.lex_state = 65}, - [4501] = {.lex_state = 65}, - [4502] = {.lex_state = 65}, - [4503] = {.lex_state = 65}, - [4504] = {.lex_state = 65}, - [4505] = {.lex_state = 183}, - [4506] = {.lex_state = 513}, - [4507] = {.lex_state = 65}, - [4508] = {.lex_state = 227}, - [4509] = {.lex_state = 227}, - [4510] = {.lex_state = 227}, - [4511] = {.lex_state = 65}, - [4512] = {.lex_state = 227}, - [4513] = {.lex_state = 65}, - [4514] = {.lex_state = 65}, - [4515] = {.lex_state = 227}, - [4516] = {.lex_state = 65}, - [4517] = {.lex_state = 513}, - [4518] = {.lex_state = 65}, - [4519] = {.lex_state = 513}, - [4520] = {.lex_state = 175}, - [4521] = {.lex_state = 508}, - [4522] = {.lex_state = 227}, - [4523] = {.lex_state = 508}, - [4524] = {.lex_state = 65}, - [4525] = {.lex_state = 513}, - [4526] = {.lex_state = 227}, - [4527] = {.lex_state = 493}, - [4528] = {.lex_state = 508}, - [4529] = {.lex_state = 27}, - [4530] = {.lex_state = 513}, - [4531] = {.lex_state = 183}, - [4532] = {.lex_state = 493}, - [4533] = {.lex_state = 508}, - [4534] = {.lex_state = 175}, - [4535] = {.lex_state = 205}, - [4536] = {.lex_state = 190}, - [4537] = {.lex_state = 175}, - [4538] = {.lex_state = 508}, - [4539] = {.lex_state = 227}, - [4540] = {.lex_state = 508}, - [4541] = {.lex_state = 508}, - [4542] = {.lex_state = 227}, - [4543] = {.lex_state = 513}, - [4544] = {.lex_state = 508}, - [4545] = {.lex_state = 508}, - [4546] = {.lex_state = 60}, - [4547] = {.lex_state = 508}, - [4548] = {.lex_state = 183}, - [4549] = {.lex_state = 183}, - [4550] = {.lex_state = 183}, - [4551] = {.lex_state = 513}, - [4552] = {.lex_state = 65}, - [4553] = {.lex_state = 508}, - [4554] = {.lex_state = 65}, - [4555] = {.lex_state = 190}, - [4556] = {.lex_state = 513}, - [4557] = {.lex_state = 27}, - [4558] = {.lex_state = 508}, - [4559] = {.lex_state = 65}, - [4560] = {.lex_state = 227}, - [4561] = {.lex_state = 513}, - [4562] = {.lex_state = 508}, - [4563] = {.lex_state = 508}, - [4564] = {.lex_state = 183}, - [4565] = {.lex_state = 513}, - [4566] = {.lex_state = 513}, - [4567] = {.lex_state = 513}, - [4568] = {.lex_state = 513}, - [4569] = {.lex_state = 227}, - [4570] = {.lex_state = 175}, - [4571] = {.lex_state = 65}, - [4572] = {.lex_state = 190}, - [4573] = {.lex_state = 508}, - [4574] = {.lex_state = 508}, - [4575] = {.lex_state = 513}, - [4576] = {.lex_state = 65}, - [4577] = {.lex_state = 513}, - [4578] = {.lex_state = 508}, - [4579] = {.lex_state = 65}, - [4580] = {.lex_state = 513}, - [4581] = {.lex_state = 513}, - [4582] = {.lex_state = 513}, - [4583] = {.lex_state = 508}, - [4584] = {.lex_state = 190}, - [4585] = {.lex_state = 190}, - [4586] = {.lex_state = 65}, - [4587] = {.lex_state = 508}, - [4588] = {.lex_state = 508}, - [4589] = {.lex_state = 508}, - [4590] = {.lex_state = 508}, - [4591] = {.lex_state = 508}, - [4592] = {.lex_state = 508}, - [4593] = {.lex_state = 508}, - [4594] = {.lex_state = 190}, - [4595] = {.lex_state = 513}, - [4596] = {.lex_state = 60}, - [4597] = {.lex_state = 513}, - [4598] = {.lex_state = 508}, - [4599] = {.lex_state = 65}, - [4600] = {.lex_state = 65}, - [4601] = {.lex_state = 508}, - [4602] = {.lex_state = 513}, - [4603] = {.lex_state = 190}, - [4604] = {.lex_state = 508}, - [4605] = {.lex_state = 508}, - [4606] = {.lex_state = 174}, - [4607] = {.lex_state = 65}, - [4608] = {.lex_state = 513}, - [4609] = {.lex_state = 190}, - [4610] = {.lex_state = 508}, - [4611] = {.lex_state = 190}, - [4612] = {.lex_state = 65}, - [4613] = {.lex_state = 508}, - [4614] = {.lex_state = 1859}, - [4615] = {.lex_state = 513}, - [4616] = {.lex_state = 508}, - [4617] = {.lex_state = 508}, - [4618] = {.lex_state = 513}, - [4619] = {.lex_state = 508}, - [4620] = {.lex_state = 508}, - [4621] = {.lex_state = 190}, - [4622] = {.lex_state = 508}, - [4623] = {.lex_state = 508}, - [4624] = {.lex_state = 508}, - [4625] = {.lex_state = 508}, - [4626] = {.lex_state = 508}, - [4627] = {.lex_state = 493}, - [4628] = {.lex_state = 174}, - [4629] = {.lex_state = 183}, - [4630] = {.lex_state = 513}, - [4631] = {.lex_state = 227}, - [4632] = {.lex_state = 508}, - [4633] = {.lex_state = 190}, - [4634] = {.lex_state = 508}, - [4635] = {.lex_state = 227}, - [4636] = {.lex_state = 65}, - [4637] = {.lex_state = 227}, - [4638] = {.lex_state = 513}, - [4639] = {.lex_state = 183}, - [4640] = {.lex_state = 513}, - [4641] = {.lex_state = 65}, - [4642] = {.lex_state = 508}, - [4643] = {.lex_state = 205}, - [4644] = {.lex_state = 508}, - [4645] = {.lex_state = 508}, - [4646] = {.lex_state = 508}, - [4647] = {.lex_state = 508}, - [4648] = {.lex_state = 508}, - [4649] = {.lex_state = 508}, - [4650] = {.lex_state = 125}, - [4651] = {.lex_state = 183}, - [4652] = {.lex_state = 190}, - [4653] = {.lex_state = 227}, - [4654] = {.lex_state = 513}, - [4655] = {.lex_state = 508}, - [4656] = {.lex_state = 65}, - [4657] = {.lex_state = 183}, - [4658] = {.lex_state = 183}, - [4659] = {.lex_state = 190}, - [4660] = {.lex_state = 493}, - [4661] = {.lex_state = 513}, - [4662] = {.lex_state = 65}, - [4663] = {.lex_state = 508}, - [4664] = {.lex_state = 65}, - [4665] = {.lex_state = 183}, - [4666] = {.lex_state = 65}, - [4667] = {.lex_state = 508}, - [4668] = {.lex_state = 190}, - [4669] = {.lex_state = 65}, - [4670] = {.lex_state = 508}, - [4671] = {.lex_state = 582}, - [4672] = {.lex_state = 508}, - [4673] = {.lex_state = 508}, - [4674] = {.lex_state = 227}, - [4675] = {.lex_state = 508}, - [4676] = {.lex_state = 508}, - [4677] = {.lex_state = 508}, - [4678] = {.lex_state = 508}, - [4679] = {.lex_state = 227}, - [4680] = {.lex_state = 175}, - [4681] = {.lex_state = 508}, - [4682] = {.lex_state = 175}, - [4683] = {.lex_state = 508}, - [4684] = {.lex_state = 508}, - [4685] = {.lex_state = 508}, - [4686] = {.lex_state = 508}, - [4687] = {.lex_state = 508}, - [4688] = {.lex_state = 508}, - [4689] = {.lex_state = 508}, - [4690] = {.lex_state = 508}, - [4691] = {.lex_state = 65}, - [4692] = {.lex_state = 65}, - [4693] = {.lex_state = 65}, - [4694] = {.lex_state = 65}, - [4695] = {.lex_state = 65}, - [4696] = {.lex_state = 65}, - [4697] = {.lex_state = 60}, - [4698] = {.lex_state = 65}, - [4699] = {.lex_state = 190}, - [4700] = {.lex_state = 508}, - [4701] = {.lex_state = 65}, - [4702] = {.lex_state = 65}, - [4703] = {.lex_state = 508}, - [4704] = {.lex_state = 65}, - [4705] = {.lex_state = 65}, - [4706] = {.lex_state = 190}, - [4707] = {.lex_state = 183}, - [4708] = {.lex_state = 65}, - [4709] = {.lex_state = 65}, - [4710] = {.lex_state = 65}, - [4711] = {.lex_state = 508}, - [4712] = {.lex_state = 508}, - [4713] = {.lex_state = 0}, - [4714] = {.lex_state = 508}, - [4715] = {.lex_state = 65}, - [4716] = {.lex_state = 508}, - [4717] = {.lex_state = 190}, - [4718] = {.lex_state = 227}, - [4719] = {.lex_state = 190}, - [4720] = {.lex_state = 65}, - [4721] = {.lex_state = 227}, - [4722] = {.lex_state = 183}, - [4723] = {.lex_state = 493}, - [4724] = {.lex_state = 508}, - [4725] = {.lex_state = 513}, - [4726] = {.lex_state = 513}, - [4727] = {.lex_state = 508}, - [4728] = {.lex_state = 513}, - [4729] = {.lex_state = 513}, - [4730] = {.lex_state = 508}, - [4731] = {.lex_state = 508}, - [4732] = {.lex_state = 508}, - [4733] = {.lex_state = 508}, - [4734] = {.lex_state = 508}, - [4735] = {.lex_state = 508}, - [4736] = {.lex_state = 508}, - [4737] = {.lex_state = 508}, - [4738] = {.lex_state = 508}, - [4739] = {.lex_state = 508}, - [4740] = {.lex_state = 508}, - [4741] = {.lex_state = 227}, - [4742] = {.lex_state = 508}, - [4743] = {.lex_state = 508}, - [4744] = {.lex_state = 508}, - [4745] = {.lex_state = 513}, - [4746] = {.lex_state = 508}, - [4747] = {.lex_state = 513}, - [4748] = {.lex_state = 190}, - [4749] = {.lex_state = 27}, - [4750] = {.lex_state = 508}, - [4751] = {.lex_state = 508}, - [4752] = {.lex_state = 508}, - [4753] = {.lex_state = 508}, - [4754] = {.lex_state = 508}, - [4755] = {.lex_state = 508}, - [4756] = {.lex_state = 508}, - [4757] = {.lex_state = 508}, - [4758] = {.lex_state = 508}, - [4759] = {.lex_state = 508}, - [4760] = {.lex_state = 508}, - [4761] = {.lex_state = 508}, - [4762] = {.lex_state = 508}, - [4763] = {.lex_state = 508}, - [4764] = {.lex_state = 508}, - [4765] = {.lex_state = 508}, - [4766] = {.lex_state = 508}, - [4767] = {.lex_state = 190}, - [4768] = {.lex_state = 508}, - [4769] = {.lex_state = 508}, - [4770] = {.lex_state = 508}, - [4771] = {.lex_state = 508}, - [4772] = {.lex_state = 508}, - [4773] = {.lex_state = 508}, - [4774] = {.lex_state = 508}, - [4775] = {.lex_state = 508}, - [4776] = {.lex_state = 508}, - [4777] = {.lex_state = 508}, - [4778] = {.lex_state = 508}, - [4779] = {.lex_state = 508}, - [4780] = {.lex_state = 508}, - [4781] = {.lex_state = 508}, - [4782] = {.lex_state = 508}, - [4783] = {.lex_state = 508}, - [4784] = {.lex_state = 508}, - [4785] = {.lex_state = 508}, - [4786] = {.lex_state = 513}, - [4787] = {.lex_state = 513}, - [4788] = {.lex_state = 513}, - [4789] = {.lex_state = 190}, - [4790] = {.lex_state = 508}, - [4791] = {.lex_state = 190}, - [4792] = {.lex_state = 508}, - [4793] = {.lex_state = 508}, - [4794] = {.lex_state = 508}, - [4795] = {.lex_state = 508}, - [4796] = {.lex_state = 513}, - [4797] = {.lex_state = 190}, - [4798] = {.lex_state = 508}, - [4799] = {.lex_state = 508}, - [4800] = {.lex_state = 508}, - [4801] = {.lex_state = 183}, - [4802] = {.lex_state = 508}, - [4803] = {.lex_state = 493}, - [4804] = {.lex_state = 508}, - [4805] = {.lex_state = 508}, - [4806] = {.lex_state = 508}, - [4807] = {.lex_state = 508}, - [4808] = {.lex_state = 227}, - [4809] = {.lex_state = 513}, - [4810] = {.lex_state = 508}, - [4811] = {.lex_state = 508}, - [4812] = {.lex_state = 508}, - [4813] = {.lex_state = 508}, - [4814] = {.lex_state = 508}, - [4815] = {.lex_state = 190}, - [4816] = {.lex_state = 508}, - [4817] = {.lex_state = 508}, - [4818] = {.lex_state = 227}, - [4819] = {.lex_state = 513}, - [4820] = {.lex_state = 508}, - [4821] = {.lex_state = 183}, - [4822] = {.lex_state = 190}, - [4823] = {.lex_state = 508}, - [4824] = {.lex_state = 508}, - [4825] = {.lex_state = 508}, - [4826] = {.lex_state = 513}, - [4827] = {.lex_state = 183}, - [4828] = {.lex_state = 508}, - [4829] = {.lex_state = 27}, - [4830] = {.lex_state = 190}, - [4831] = {.lex_state = 508}, - [4832] = {.lex_state = 508}, - [4833] = {.lex_state = 508}, - [4834] = {.lex_state = 508}, - [4835] = {.lex_state = 508}, - [4836] = {.lex_state = 508}, - [4837] = {.lex_state = 508}, - [4838] = {.lex_state = 183}, - [4839] = {.lex_state = 508}, - [4840] = {.lex_state = 508}, - [4841] = {.lex_state = 190}, - [4842] = {.lex_state = 513}, - [4843] = {.lex_state = 508}, - [4844] = {.lex_state = 508}, - [4845] = {.lex_state = 508}, - [4846] = {.lex_state = 508}, - [4847] = {.lex_state = 508}, - [4848] = {.lex_state = 508}, - [4849] = {.lex_state = 508}, - [4850] = {.lex_state = 508}, - [4851] = {.lex_state = 513}, - [4852] = {.lex_state = 227}, - [4853] = {.lex_state = 513}, - [4854] = {.lex_state = 493}, - [4855] = {.lex_state = 183}, - [4856] = {.lex_state = 190}, - [4857] = {.lex_state = 513}, - [4858] = {.lex_state = 493}, - [4859] = {.lex_state = 508}, - [4860] = {.lex_state = 508}, - [4861] = {.lex_state = 508}, - [4862] = {.lex_state = 508}, - [4863] = {.lex_state = 508}, - [4864] = {.lex_state = 508}, - [4865] = {.lex_state = 508}, - [4866] = {.lex_state = 508}, - [4867] = {.lex_state = 508}, - [4868] = {.lex_state = 508}, - [4869] = {.lex_state = 508}, - [4870] = {.lex_state = 508}, - [4871] = {.lex_state = 186}, - [4872] = {.lex_state = 0}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 65}, - [4875] = {.lex_state = 508}, - [4876] = {.lex_state = 508}, - [4877] = {.lex_state = 508}, - [4878] = {.lex_state = 0}, - [4879] = {.lex_state = 508}, - [4880] = {.lex_state = 214}, - [4881] = {.lex_state = 508}, - [4882] = {.lex_state = 65}, - [4883] = {.lex_state = 0}, - [4884] = {.lex_state = 0}, - [4885] = {.lex_state = 0}, - [4886] = {.lex_state = 186}, - [4887] = {.lex_state = 508}, - [4888] = {.lex_state = 508}, - [4889] = {.lex_state = 186}, - [4890] = {.lex_state = 508}, - [4891] = {.lex_state = 0}, - [4892] = {.lex_state = 186}, - [4893] = {.lex_state = 186}, - [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 65}, - [4896] = {.lex_state = 214}, - [4897] = {.lex_state = 0}, - [4898] = {.lex_state = 508}, - [4899] = {.lex_state = 508}, - [4900] = {.lex_state = 194}, - [4901] = {.lex_state = 508}, - [4902] = {.lex_state = 508}, - [4903] = {.lex_state = 508}, - [4904] = {.lex_state = 186}, - [4905] = {.lex_state = 508}, - [4906] = {.lex_state = 508}, - [4907] = {.lex_state = 194}, - [4908] = {.lex_state = 508}, - [4909] = {.lex_state = 508}, - [4910] = {.lex_state = 508}, - [4911] = {.lex_state = 0}, - [4912] = {.lex_state = 60}, - [4913] = {.lex_state = 493}, - [4914] = {.lex_state = 508}, - [4915] = {.lex_state = 0}, - [4916] = {.lex_state = 508}, - [4917] = {.lex_state = 508}, - [4918] = {.lex_state = 508}, - [4919] = {.lex_state = 508}, - [4920] = {.lex_state = 493}, - [4921] = {.lex_state = 493}, - [4922] = {.lex_state = 508}, - [4923] = {.lex_state = 508}, - [4924] = {.lex_state = 214}, + [2972] = {.lex_state = 547}, + [2973] = {.lex_state = 547}, + [2974] = {.lex_state = 66}, + [2975] = {.lex_state = 547}, + [2976] = {.lex_state = 547}, + [2977] = {.lex_state = 571}, + [2978] = {.lex_state = 547}, + [2979] = {.lex_state = 571}, + [2980] = {.lex_state = 547}, + [2981] = {.lex_state = 547}, + [2982] = {.lex_state = 66}, + [2983] = {.lex_state = 66}, + [2984] = {.lex_state = 66}, + [2985] = {.lex_state = 66}, + [2986] = {.lex_state = 547}, + [2987] = {.lex_state = 64}, + [2988] = {.lex_state = 66}, + [2989] = {.lex_state = 66}, + [2990] = {.lex_state = 66}, + [2991] = {.lex_state = 66}, + [2992] = {.lex_state = 66}, + [2993] = {.lex_state = 547}, + [2994] = {.lex_state = 571}, + [2995] = {.lex_state = 571}, + [2996] = {.lex_state = 547}, + [2997] = {.lex_state = 66}, + [2998] = {.lex_state = 66}, + [2999] = {.lex_state = 64}, + [3000] = {.lex_state = 66}, + [3001] = {.lex_state = 547}, + [3002] = {.lex_state = 64}, + [3003] = {.lex_state = 64}, + [3004] = {.lex_state = 547}, + [3005] = {.lex_state = 64}, + [3006] = {.lex_state = 547}, + [3007] = {.lex_state = 64}, + [3008] = {.lex_state = 547}, + [3009] = {.lex_state = 64}, + [3010] = {.lex_state = 547}, + [3011] = {.lex_state = 64}, + [3012] = {.lex_state = 584}, + [3013] = {.lex_state = 547}, + [3014] = {.lex_state = 571}, + [3015] = {.lex_state = 547}, + [3016] = {.lex_state = 571}, + [3017] = {.lex_state = 66}, + [3018] = {.lex_state = 64}, + [3019] = {.lex_state = 561}, + [3020] = {.lex_state = 105}, + [3021] = {.lex_state = 64}, + [3022] = {.lex_state = 64}, + [3023] = {.lex_state = 64}, + [3024] = {.lex_state = 571}, + [3025] = {.lex_state = 571}, + [3026] = {.lex_state = 106}, + [3027] = {.lex_state = 64}, + [3028] = {.lex_state = 571}, + [3029] = {.lex_state = 571}, + [3030] = {.lex_state = 547}, + [3031] = {.lex_state = 547}, + [3032] = {.lex_state = 564}, + [3033] = {.lex_state = 64}, + [3034] = {.lex_state = 64}, + [3035] = {.lex_state = 547}, + [3036] = {.lex_state = 547}, + [3037] = {.lex_state = 547}, + [3038] = {.lex_state = 547}, + [3039] = {.lex_state = 547}, + [3040] = {.lex_state = 547}, + [3041] = {.lex_state = 547}, + [3042] = {.lex_state = 547}, + [3043] = {.lex_state = 547}, + [3044] = {.lex_state = 547}, + [3045] = {.lex_state = 547}, + [3046] = {.lex_state = 547}, + [3047] = {.lex_state = 547}, + [3048] = {.lex_state = 547}, + [3049] = {.lex_state = 547}, + [3050] = {.lex_state = 547}, + [3051] = {.lex_state = 547}, + [3052] = {.lex_state = 547}, + [3053] = {.lex_state = 547}, + [3054] = {.lex_state = 547}, + [3055] = {.lex_state = 547}, + [3056] = {.lex_state = 547}, + [3057] = {.lex_state = 547}, + [3058] = {.lex_state = 547}, + [3059] = {.lex_state = 547}, + [3060] = {.lex_state = 547}, + [3061] = {.lex_state = 547}, + [3062] = {.lex_state = 547}, + [3063] = {.lex_state = 547}, + [3064] = {.lex_state = 547}, + [3065] = {.lex_state = 132}, + [3066] = {.lex_state = 132}, + [3067] = {.lex_state = 547}, + [3068] = {.lex_state = 547}, + [3069] = {.lex_state = 547}, + [3070] = {.lex_state = 592}, + [3071] = {.lex_state = 571}, + [3072] = {.lex_state = 564}, + [3073] = {.lex_state = 132}, + [3074] = {.lex_state = 547}, + [3075] = {.lex_state = 132}, + [3076] = {.lex_state = 547}, + [3077] = {.lex_state = 571}, + [3078] = {.lex_state = 571}, + [3079] = {.lex_state = 547}, + [3080] = {.lex_state = 547}, + [3081] = {.lex_state = 547}, + [3082] = {.lex_state = 547}, + [3083] = {.lex_state = 547}, + [3084] = {.lex_state = 547}, + [3085] = {.lex_state = 132}, + [3086] = {.lex_state = 547}, + [3087] = {.lex_state = 571}, + [3088] = {.lex_state = 571}, + [3089] = {.lex_state = 547}, + [3090] = {.lex_state = 547}, + [3091] = {.lex_state = 547}, + [3092] = {.lex_state = 547}, + [3093] = {.lex_state = 547}, + [3094] = {.lex_state = 547}, + [3095] = {.lex_state = 547}, + [3096] = {.lex_state = 52}, + [3097] = {.lex_state = 547}, + [3098] = {.lex_state = 547}, + [3099] = {.lex_state = 547}, + [3100] = {.lex_state = 15}, + [3101] = {.lex_state = 547}, + [3102] = {.lex_state = 547}, + [3103] = {.lex_state = 547}, + [3104] = {.lex_state = 547}, + [3105] = {.lex_state = 547}, + [3106] = {.lex_state = 547}, + [3107] = {.lex_state = 547}, + [3108] = {.lex_state = 547}, + [3109] = {.lex_state = 547}, + [3110] = {.lex_state = 571}, + [3111] = {.lex_state = 571}, + [3112] = {.lex_state = 547}, + [3113] = {.lex_state = 547}, + [3114] = {.lex_state = 547}, + [3115] = {.lex_state = 584}, + [3116] = {.lex_state = 132}, + [3117] = {.lex_state = 547}, + [3118] = {.lex_state = 547}, + [3119] = {.lex_state = 547}, + [3120] = {.lex_state = 547}, + [3121] = {.lex_state = 547}, + [3122] = {.lex_state = 547}, + [3123] = {.lex_state = 547}, + [3124] = {.lex_state = 547}, + [3125] = {.lex_state = 547}, + [3126] = {.lex_state = 547}, + [3127] = {.lex_state = 561}, + [3128] = {.lex_state = 547}, + [3129] = {.lex_state = 64}, + [3130] = {.lex_state = 547}, + [3131] = {.lex_state = 132}, + [3132] = {.lex_state = 64}, + [3133] = {.lex_state = 547}, + [3134] = {.lex_state = 16}, + [3135] = {.lex_state = 547}, + [3136] = {.lex_state = 571}, + [3137] = {.lex_state = 132}, + [3138] = {.lex_state = 547}, + [3139] = {.lex_state = 64}, + [3140] = {.lex_state = 64}, + [3141] = {.lex_state = 131}, + [3142] = {.lex_state = 131}, + [3143] = {.lex_state = 132}, + [3144] = {.lex_state = 547}, + [3145] = {.lex_state = 547}, + [3146] = {.lex_state = 601}, + [3147] = {.lex_state = 571}, + [3148] = {.lex_state = 601}, + [3149] = {.lex_state = 601}, + [3150] = {.lex_state = 547}, + [3151] = {.lex_state = 17}, + [3152] = {.lex_state = 547}, + [3153] = {.lex_state = 592}, + [3154] = {.lex_state = 131}, + [3155] = {.lex_state = 601}, + [3156] = {.lex_state = 131}, + [3157] = {.lex_state = 64}, + [3158] = {.lex_state = 64}, + [3159] = {.lex_state = 133}, + [3160] = {.lex_state = 64}, + [3161] = {.lex_state = 64}, + [3162] = {.lex_state = 132}, + [3163] = {.lex_state = 547}, + [3164] = {.lex_state = 547}, + [3165] = {.lex_state = 129}, + [3166] = {.lex_state = 547}, + [3167] = {.lex_state = 547}, + [3168] = {.lex_state = 547}, + [3169] = {.lex_state = 547}, + [3170] = {.lex_state = 547}, + [3171] = {.lex_state = 547}, + [3172] = {.lex_state = 547}, + [3173] = {.lex_state = 547}, + [3174] = {.lex_state = 547}, + [3175] = {.lex_state = 64}, + [3176] = {.lex_state = 547}, + [3177] = {.lex_state = 547}, + [3178] = {.lex_state = 547}, + [3179] = {.lex_state = 601}, + [3180] = {.lex_state = 547}, + [3181] = {.lex_state = 547}, + [3182] = {.lex_state = 547}, + [3183] = {.lex_state = 547}, + [3184] = {.lex_state = 64}, + [3185] = {.lex_state = 547}, + [3186] = {.lex_state = 547}, + [3187] = {.lex_state = 547}, + [3188] = {.lex_state = 547}, + [3189] = {.lex_state = 547}, + [3190] = {.lex_state = 601}, + [3191] = {.lex_state = 547}, + [3192] = {.lex_state = 132}, + [3193] = {.lex_state = 132}, + [3194] = {.lex_state = 547}, + [3195] = {.lex_state = 64}, + [3196] = {.lex_state = 547}, + [3197] = {.lex_state = 132}, + [3198] = {.lex_state = 547}, + [3199] = {.lex_state = 547}, + [3200] = {.lex_state = 64}, + [3201] = {.lex_state = 547}, + [3202] = {.lex_state = 547}, + [3203] = {.lex_state = 547}, + [3204] = {.lex_state = 547}, + [3205] = {.lex_state = 547}, + [3206] = {.lex_state = 571}, + [3207] = {.lex_state = 130}, + [3208] = {.lex_state = 130}, + [3209] = {.lex_state = 601}, + [3210] = {.lex_state = 547}, + [3211] = {.lex_state = 547}, + [3212] = {.lex_state = 547}, + [3213] = {.lex_state = 547}, + [3214] = {.lex_state = 133}, + [3215] = {.lex_state = 64}, + [3216] = {.lex_state = 547}, + [3217] = {.lex_state = 547}, + [3218] = {.lex_state = 547}, + [3219] = {.lex_state = 547}, + [3220] = {.lex_state = 547}, + [3221] = {.lex_state = 547}, + [3222] = {.lex_state = 129}, + [3223] = {.lex_state = 132}, + [3224] = {.lex_state = 64}, + [3225] = {.lex_state = 64}, + [3226] = {.lex_state = 64}, + [3227] = {.lex_state = 547}, + [3228] = {.lex_state = 547}, + [3229] = {.lex_state = 64}, + [3230] = {.lex_state = 547}, + [3231] = {.lex_state = 64}, + [3232] = {.lex_state = 601}, + [3233] = {.lex_state = 64}, + [3234] = {.lex_state = 64}, + [3235] = {.lex_state = 64}, + [3236] = {.lex_state = 64}, + [3237] = {.lex_state = 547}, + [3238] = {.lex_state = 547}, + [3239] = {.lex_state = 64}, + [3240] = {.lex_state = 64}, + [3241] = {.lex_state = 64}, + [3242] = {.lex_state = 64}, + [3243] = {.lex_state = 64}, + [3244] = {.lex_state = 547}, + [3245] = {.lex_state = 132}, + [3246] = {.lex_state = 547}, + [3247] = {.lex_state = 132}, + [3248] = {.lex_state = 547}, + [3249] = {.lex_state = 133}, + [3250] = {.lex_state = 64}, + [3251] = {.lex_state = 132}, + [3252] = {.lex_state = 547}, + [3253] = {.lex_state = 52}, + [3254] = {.lex_state = 52}, + [3255] = {.lex_state = 64}, + [3256] = {.lex_state = 547}, + [3257] = {.lex_state = 547}, + [3258] = {.lex_state = 64}, + [3259] = {.lex_state = 547}, + [3260] = {.lex_state = 547}, + [3261] = {.lex_state = 547}, + [3262] = {.lex_state = 601}, + [3263] = {.lex_state = 169}, + [3264] = {.lex_state = 132}, + [3265] = {.lex_state = 132}, + [3266] = {.lex_state = 132}, + [3267] = {.lex_state = 132}, + [3268] = {.lex_state = 601}, + [3269] = {.lex_state = 601}, + [3270] = {.lex_state = 132}, + [3271] = {.lex_state = 172}, + [3272] = {.lex_state = 112}, + [3273] = {.lex_state = 601}, + [3274] = {.lex_state = 601}, + [3275] = {.lex_state = 133}, + [3276] = {.lex_state = 133}, + [3277] = {.lex_state = 601}, + [3278] = {.lex_state = 132}, + [3279] = {.lex_state = 172}, + [3280] = {.lex_state = 601}, + [3281] = {.lex_state = 133}, + [3282] = {.lex_state = 601}, + [3283] = {.lex_state = 133}, + [3284] = {.lex_state = 133}, + [3285] = {.lex_state = 132}, + [3286] = {.lex_state = 172}, + [3287] = {.lex_state = 172}, + [3288] = {.lex_state = 172}, + [3289] = {.lex_state = 172}, + [3290] = {.lex_state = 169}, + [3291] = {.lex_state = 172}, + [3292] = {.lex_state = 132}, + [3293] = {.lex_state = 172}, + [3294] = {.lex_state = 172}, + [3295] = {.lex_state = 135}, + [3296] = {.lex_state = 121}, + [3297] = {.lex_state = 135}, + [3298] = {.lex_state = 137}, + [3299] = {.lex_state = 137}, + [3300] = {.lex_state = 137}, + [3301] = {.lex_state = 137}, + [3302] = {.lex_state = 171}, + [3303] = {.lex_state = 137}, + [3304] = {.lex_state = 137}, + [3305] = {.lex_state = 137}, + [3306] = {.lex_state = 137}, + [3307] = {.lex_state = 137}, + [3308] = {.lex_state = 137}, + [3309] = {.lex_state = 137}, + [3310] = {.lex_state = 140}, + [3311] = {.lex_state = 137}, + [3312] = {.lex_state = 137}, + [3313] = {.lex_state = 137}, + [3314] = {.lex_state = 137}, + [3315] = {.lex_state = 137}, + [3316] = {.lex_state = 137}, + [3317] = {.lex_state = 137}, + [3318] = {.lex_state = 137}, + [3319] = {.lex_state = 137}, + [3320] = {.lex_state = 132}, + [3321] = {.lex_state = 137}, + [3322] = {.lex_state = 64}, + [3323] = {.lex_state = 137}, + [3324] = {.lex_state = 137}, + [3325] = {.lex_state = 137}, + [3326] = {.lex_state = 137}, + [3327] = {.lex_state = 137}, + [3328] = {.lex_state = 137}, + [3329] = {.lex_state = 137}, + [3330] = {.lex_state = 137}, + [3331] = {.lex_state = 137}, + [3332] = {.lex_state = 137}, + [3333] = {.lex_state = 52}, + [3334] = {.lex_state = 137}, + [3335] = {.lex_state = 64}, + [3336] = {.lex_state = 137}, + [3337] = {.lex_state = 137}, + [3338] = {.lex_state = 137}, + [3339] = {.lex_state = 132}, + [3340] = {.lex_state = 199}, + [3341] = {.lex_state = 137}, + [3342] = {.lex_state = 137}, + [3343] = {.lex_state = 140}, + [3344] = {.lex_state = 137}, + [3345] = {.lex_state = 52}, + [3346] = {.lex_state = 52}, + [3347] = {.lex_state = 52}, + [3348] = {.lex_state = 171}, + [3349] = {.lex_state = 52}, + [3350] = {.lex_state = 52}, + [3351] = {.lex_state = 137}, + [3352] = {.lex_state = 52}, + [3353] = {.lex_state = 52}, + [3354] = {.lex_state = 52}, + [3355] = {.lex_state = 52}, + [3356] = {.lex_state = 52}, + [3357] = {.lex_state = 52}, + [3358] = {.lex_state = 137}, + [3359] = {.lex_state = 52}, + [3360] = {.lex_state = 142}, + [3361] = {.lex_state = 52}, + [3362] = {.lex_state = 137}, + [3363] = {.lex_state = 113}, + [3364] = {.lex_state = 137}, + [3365] = {.lex_state = 140}, + [3366] = {.lex_state = 114}, + [3367] = {.lex_state = 137}, + [3368] = {.lex_state = 137}, + [3369] = {.lex_state = 137}, + [3370] = {.lex_state = 137}, + [3371] = {.lex_state = 137}, + [3372] = {.lex_state = 132}, + [3373] = {.lex_state = 132}, + [3374] = {.lex_state = 176}, + [3375] = {.lex_state = 137}, + [3376] = {.lex_state = 137}, + [3377] = {.lex_state = 137}, + [3378] = {.lex_state = 137}, + [3379] = {.lex_state = 137}, + [3380] = {.lex_state = 137}, + [3381] = {.lex_state = 52}, + [3382] = {.lex_state = 137}, + [3383] = {.lex_state = 137}, + [3384] = {.lex_state = 137}, + [3385] = {.lex_state = 137}, + [3386] = {.lex_state = 176}, + [3387] = {.lex_state = 137}, + [3388] = {.lex_state = 137}, + [3389] = {.lex_state = 132}, + [3390] = {.lex_state = 52}, + [3391] = {.lex_state = 171}, + [3392] = {.lex_state = 170}, + [3393] = {.lex_state = 132}, + [3394] = {.lex_state = 170}, + [3395] = {.lex_state = 171}, + [3396] = {.lex_state = 132}, + [3397] = {.lex_state = 132}, + [3398] = {.lex_state = 132}, + [3399] = {.lex_state = 132}, + [3400] = {.lex_state = 174}, + [3401] = {.lex_state = 171}, + [3402] = {.lex_state = 137}, + [3403] = {.lex_state = 132}, + [3404] = {.lex_state = 137}, + [3405] = {.lex_state = 137}, + [3406] = {.lex_state = 137}, + [3407] = {.lex_state = 132}, + [3408] = {.lex_state = 132}, + [3409] = {.lex_state = 132}, + [3410] = {.lex_state = 174}, + [3411] = {.lex_state = 123}, + [3412] = {.lex_state = 170}, + [3413] = {.lex_state = 171}, + [3414] = {.lex_state = 170}, + [3415] = {.lex_state = 132}, + [3416] = {.lex_state = 171}, + [3417] = {.lex_state = 122}, + [3418] = {.lex_state = 64}, + [3419] = {.lex_state = 172}, + [3420] = {.lex_state = 172}, + [3421] = {.lex_state = 137}, + [3422] = {.lex_state = 178}, + [3423] = {.lex_state = 64}, + [3424] = {.lex_state = 137}, + [3425] = {.lex_state = 137}, + [3426] = {.lex_state = 137}, + [3427] = {.lex_state = 64}, + [3428] = {.lex_state = 172}, + [3429] = {.lex_state = 137}, + [3430] = {.lex_state = 64}, + [3431] = {.lex_state = 64}, + [3432] = {.lex_state = 137}, + [3433] = {.lex_state = 178}, + [3434] = {.lex_state = 172}, + [3435] = {.lex_state = 64}, + [3436] = {.lex_state = 137}, + [3437] = {.lex_state = 137}, + [3438] = {.lex_state = 137}, + [3439] = {.lex_state = 137}, + [3440] = {.lex_state = 64}, + [3441] = {.lex_state = 64}, + [3442] = {.lex_state = 137}, + [3443] = {.lex_state = 64}, + [3444] = {.lex_state = 172}, + [3445] = {.lex_state = 137}, + [3446] = {.lex_state = 137}, + [3447] = {.lex_state = 172}, + [3448] = {.lex_state = 137}, + [3449] = {.lex_state = 64}, + [3450] = {.lex_state = 64}, + [3451] = {.lex_state = 64}, + [3452] = {.lex_state = 137}, + [3453] = {.lex_state = 172}, + [3454] = {.lex_state = 172}, + [3455] = {.lex_state = 172}, + [3456] = {.lex_state = 172}, + [3457] = {.lex_state = 137}, + [3458] = {.lex_state = 137}, + [3459] = {.lex_state = 137}, + [3460] = {.lex_state = 137}, + [3461] = {.lex_state = 137}, + [3462] = {.lex_state = 137}, + [3463] = {.lex_state = 137}, + [3464] = {.lex_state = 137}, + [3465] = {.lex_state = 137}, + [3466] = {.lex_state = 137}, + [3467] = {.lex_state = 64}, + [3468] = {.lex_state = 172}, + [3469] = {.lex_state = 137}, + [3470] = {.lex_state = 137}, + [3471] = {.lex_state = 137}, + [3472] = {.lex_state = 137}, + [3473] = {.lex_state = 52}, + [3474] = {.lex_state = 52}, + [3475] = {.lex_state = 137}, + [3476] = {.lex_state = 137}, + [3477] = {.lex_state = 137}, + [3478] = {.lex_state = 52}, + [3479] = {.lex_state = 137}, + [3480] = {.lex_state = 52}, + [3481] = {.lex_state = 137}, + [3482] = {.lex_state = 52}, + [3483] = {.lex_state = 172}, + [3484] = {.lex_state = 52}, + [3485] = {.lex_state = 137}, + [3486] = {.lex_state = 137}, + [3487] = {.lex_state = 52}, + [3488] = {.lex_state = 172}, + [3489] = {.lex_state = 52}, + [3490] = {.lex_state = 137}, + [3491] = {.lex_state = 52}, + [3492] = {.lex_state = 137}, + [3493] = {.lex_state = 52}, + [3494] = {.lex_state = 137}, + [3495] = {.lex_state = 52}, + [3496] = {.lex_state = 137}, + [3497] = {.lex_state = 52}, + [3498] = {.lex_state = 137}, + [3499] = {.lex_state = 52}, + [3500] = {.lex_state = 137}, + [3501] = {.lex_state = 52}, + [3502] = {.lex_state = 137}, + [3503] = {.lex_state = 178}, + [3504] = {.lex_state = 137}, + [3505] = {.lex_state = 137}, + [3506] = {.lex_state = 137}, + [3507] = {.lex_state = 137}, + [3508] = {.lex_state = 172}, + [3509] = {.lex_state = 172}, + [3510] = {.lex_state = 179}, + [3511] = {.lex_state = 52}, + [3512] = {.lex_state = 179}, + [3513] = {.lex_state = 52}, + [3514] = {.lex_state = 179}, + [3515] = {.lex_state = 52}, + [3516] = {.lex_state = 179}, + [3517] = {.lex_state = 148}, + [3518] = {.lex_state = 52}, + [3519] = {.lex_state = 179}, + [3520] = {.lex_state = 179}, + [3521] = {.lex_state = 179}, + [3522] = {.lex_state = 179}, + [3523] = {.lex_state = 179}, + [3524] = {.lex_state = 137}, + [3525] = {.lex_state = 179}, + [3526] = {.lex_state = 179}, + [3527] = {.lex_state = 179}, + [3528] = {.lex_state = 179}, + [3529] = {.lex_state = 179}, + [3530] = {.lex_state = 179}, + [3531] = {.lex_state = 52}, + [3532] = {.lex_state = 179}, + [3533] = {.lex_state = 179}, + [3534] = {.lex_state = 179}, + [3535] = {.lex_state = 179}, + [3536] = {.lex_state = 179}, + [3537] = {.lex_state = 52}, + [3538] = {.lex_state = 179}, + [3539] = {.lex_state = 200}, + [3540] = {.lex_state = 52}, + [3541] = {.lex_state = 179}, + [3542] = {.lex_state = 137}, + [3543] = {.lex_state = 179}, + [3544] = {.lex_state = 179}, + [3545] = {.lex_state = 179}, + [3546] = {.lex_state = 179}, + [3547] = {.lex_state = 179}, + [3548] = {.lex_state = 179}, + [3549] = {.lex_state = 179}, + [3550] = {.lex_state = 52}, + [3551] = {.lex_state = 179}, + [3552] = {.lex_state = 179}, + [3553] = {.lex_state = 52}, + [3554] = {.lex_state = 179}, + [3555] = {.lex_state = 179}, + [3556] = {.lex_state = 52}, + [3557] = {.lex_state = 52}, + [3558] = {.lex_state = 179}, + [3559] = {.lex_state = 179}, + [3560] = {.lex_state = 179}, + [3561] = {.lex_state = 179}, + [3562] = {.lex_state = 179}, + [3563] = {.lex_state = 179}, + [3564] = {.lex_state = 179}, + [3565] = {.lex_state = 179}, + [3566] = {.lex_state = 179}, + [3567] = {.lex_state = 52}, + [3568] = {.lex_state = 179}, + [3569] = {.lex_state = 179}, + [3570] = {.lex_state = 179}, + [3571] = {.lex_state = 179}, + [3572] = {.lex_state = 179}, + [3573] = {.lex_state = 137}, + [3574] = {.lex_state = 132}, + [3575] = {.lex_state = 179}, + [3576] = {.lex_state = 179}, + [3577] = {.lex_state = 52}, + [3578] = {.lex_state = 179}, + [3579] = {.lex_state = 179}, + [3580] = {.lex_state = 179}, + [3581] = {.lex_state = 179}, + [3582] = {.lex_state = 179}, + [3583] = {.lex_state = 179}, + [3584] = {.lex_state = 179}, + [3585] = {.lex_state = 179}, + [3586] = {.lex_state = 132}, + [3587] = {.lex_state = 52}, + [3588] = {.lex_state = 179}, + [3589] = {.lex_state = 52}, + [3590] = {.lex_state = 137}, + [3591] = {.lex_state = 137}, + [3592] = {.lex_state = 137}, + [3593] = {.lex_state = 182}, + [3594] = {.lex_state = 137}, + [3595] = {.lex_state = 137}, + [3596] = {.lex_state = 137}, + [3597] = {.lex_state = 137}, + [3598] = {.lex_state = 182}, + [3599] = {.lex_state = 137}, + [3600] = {.lex_state = 137}, + [3601] = {.lex_state = 137}, + [3602] = {.lex_state = 137}, + [3603] = {.lex_state = 137}, + [3604] = {.lex_state = 149}, + [3605] = {.lex_state = 149}, + [3606] = {.lex_state = 137}, + [3607] = {.lex_state = 149}, + [3608] = {.lex_state = 137}, + [3609] = {.lex_state = 137}, + [3610] = {.lex_state = 137}, + [3611] = {.lex_state = 203}, + [3612] = {.lex_state = 203}, + [3613] = {.lex_state = 203}, + [3614] = {.lex_state = 203}, + [3615] = {.lex_state = 203}, + [3616] = {.lex_state = 203}, + [3617] = {.lex_state = 203}, + [3618] = {.lex_state = 203}, + [3619] = {.lex_state = 203}, + [3620] = {.lex_state = 203}, + [3621] = {.lex_state = 203}, + [3622] = {.lex_state = 203}, + [3623] = {.lex_state = 203}, + [3624] = {.lex_state = 203}, + [3625] = {.lex_state = 203}, + [3626] = {.lex_state = 203}, + [3627] = {.lex_state = 203}, + [3628] = {.lex_state = 203}, + [3629] = {.lex_state = 611}, + [3630] = {.lex_state = 611}, + [3631] = {.lex_state = 190}, + [3632] = {.lex_state = 611}, + [3633] = {.lex_state = 611}, + [3634] = {.lex_state = 190}, + [3635] = {.lex_state = 611}, + [3636] = {.lex_state = 611}, + [3637] = {.lex_state = 611}, + [3638] = {.lex_state = 611}, + [3639] = {.lex_state = 156}, + [3640] = {.lex_state = 611}, + [3641] = {.lex_state = 611}, + [3642] = {.lex_state = 156}, + [3643] = {.lex_state = 611}, + [3644] = {.lex_state = 611}, + [3645] = {.lex_state = 611}, + [3646] = {.lex_state = 611}, + [3647] = {.lex_state = 207}, + [3648] = {.lex_state = 611}, + [3649] = {.lex_state = 611}, + [3650] = {.lex_state = 611}, + [3651] = {.lex_state = 611}, + [3652] = {.lex_state = 611}, + [3653] = {.lex_state = 611}, + [3654] = {.lex_state = 191}, + [3655] = {.lex_state = 611}, + [3656] = {.lex_state = 611}, + [3657] = {.lex_state = 611}, + [3658] = {.lex_state = 611}, + [3659] = {.lex_state = 611}, + [3660] = {.lex_state = 611}, + [3661] = {.lex_state = 611}, + [3662] = {.lex_state = 611}, + [3663] = {.lex_state = 611}, + [3664] = {.lex_state = 611}, + [3665] = {.lex_state = 611}, + [3666] = {.lex_state = 611}, + [3667] = {.lex_state = 208}, + [3668] = {.lex_state = 611}, + [3669] = {.lex_state = 611}, + [3670] = {.lex_state = 611}, + [3671] = {.lex_state = 611}, + [3672] = {.lex_state = 156}, + [3673] = {.lex_state = 611}, + [3674] = {.lex_state = 611}, + [3675] = {.lex_state = 611}, + [3676] = {.lex_state = 192}, + [3677] = {.lex_state = 205}, + [3678] = {.lex_state = 205}, + [3679] = {.lex_state = 207}, + [3680] = {.lex_state = 611}, + [3681] = {.lex_state = 207}, + [3682] = {.lex_state = 209}, + [3683] = {.lex_state = 209}, + [3684] = {.lex_state = 209}, + [3685] = {.lex_state = 205}, + [3686] = {.lex_state = 205}, + [3687] = {.lex_state = 209}, + [3688] = {.lex_state = 205}, + [3689] = {.lex_state = 611}, + [3690] = {.lex_state = 209}, + [3691] = {.lex_state = 209}, + [3692] = {.lex_state = 209}, + [3693] = {.lex_state = 207}, + [3694] = {.lex_state = 209}, + [3695] = {.lex_state = 209}, + [3696] = {.lex_state = 205}, + [3697] = {.lex_state = 209}, + [3698] = {.lex_state = 207}, + [3699] = {.lex_state = 209}, + [3700] = {.lex_state = 209}, + [3701] = {.lex_state = 611}, + [3702] = {.lex_state = 611}, + [3703] = {.lex_state = 611}, + [3704] = {.lex_state = 611}, + [3705] = {.lex_state = 611}, + [3706] = {.lex_state = 192}, + [3707] = {.lex_state = 192}, + [3708] = {.lex_state = 611}, + [3709] = {.lex_state = 207}, + [3710] = {.lex_state = 611}, + [3711] = {.lex_state = 192}, + [3712] = {.lex_state = 611}, + [3713] = {.lex_state = 611}, + [3714] = {.lex_state = 206}, + [3715] = {.lex_state = 611}, + [3716] = {.lex_state = 611}, + [3717] = {.lex_state = 611}, + [3718] = {.lex_state = 611}, + [3719] = {.lex_state = 611}, + [3720] = {.lex_state = 611}, + [3721] = {.lex_state = 611}, + [3722] = {.lex_state = 611}, + [3723] = {.lex_state = 611}, + [3724] = {.lex_state = 207}, + [3725] = {.lex_state = 611}, + [3726] = {.lex_state = 156}, + [3727] = {.lex_state = 210}, + [3728] = {.lex_state = 156}, + [3729] = {.lex_state = 205}, + [3730] = {.lex_state = 207}, + [3731] = {.lex_state = 611}, + [3732] = {.lex_state = 205}, + [3733] = {.lex_state = 611}, + [3734] = {.lex_state = 611}, + [3735] = {.lex_state = 207}, + [3736] = {.lex_state = 207}, + [3737] = {.lex_state = 205}, + [3738] = {.lex_state = 207}, + [3739] = {.lex_state = 611}, + [3740] = {.lex_state = 210}, + [3741] = {.lex_state = 207}, + [3742] = {.lex_state = 207}, + [3743] = {.lex_state = 611}, + [3744] = {.lex_state = 205}, + [3745] = {.lex_state = 611}, + [3746] = {.lex_state = 191}, + [3747] = {.lex_state = 611}, + [3748] = {.lex_state = 611}, + [3749] = {.lex_state = 191}, + [3750] = {.lex_state = 611}, + [3751] = {.lex_state = 205}, + [3752] = {.lex_state = 205}, + [3753] = {.lex_state = 611}, + [3754] = {.lex_state = 611}, + [3755] = {.lex_state = 611}, + [3756] = {.lex_state = 156}, + [3757] = {.lex_state = 156}, + [3758] = {.lex_state = 156}, + [3759] = {.lex_state = 156}, + [3760] = {.lex_state = 156}, + [3761] = {.lex_state = 156}, + [3762] = {.lex_state = 205}, + [3763] = {.lex_state = 156}, + [3764] = {.lex_state = 211}, + [3765] = {.lex_state = 156}, + [3766] = {.lex_state = 205}, + [3767] = {.lex_state = 205}, + [3768] = {.lex_state = 205}, + [3769] = {.lex_state = 205}, + [3770] = {.lex_state = 205}, + [3771] = {.lex_state = 156}, + [3772] = {.lex_state = 156}, + [3773] = {.lex_state = 211}, + [3774] = {.lex_state = 156}, + [3775] = {.lex_state = 156}, + [3776] = {.lex_state = 156}, + [3777] = {.lex_state = 156}, + [3778] = {.lex_state = 192}, + [3779] = {.lex_state = 192}, + [3780] = {.lex_state = 205}, + [3781] = {.lex_state = 156}, + [3782] = {.lex_state = 156}, + [3783] = {.lex_state = 220}, + [3784] = {.lex_state = 156}, + [3785] = {.lex_state = 156}, + [3786] = {.lex_state = 205}, + [3787] = {.lex_state = 205}, + [3788] = {.lex_state = 192}, + [3789] = {.lex_state = 192}, + [3790] = {.lex_state = 156}, + [3791] = {.lex_state = 156}, + [3792] = {.lex_state = 156}, + [3793] = {.lex_state = 205}, + [3794] = {.lex_state = 156}, + [3795] = {.lex_state = 205}, + [3796] = {.lex_state = 205}, + [3797] = {.lex_state = 205}, + [3798] = {.lex_state = 156}, + [3799] = {.lex_state = 156}, + [3800] = {.lex_state = 220}, + [3801] = {.lex_state = 156}, + [3802] = {.lex_state = 207}, + [3803] = {.lex_state = 212}, + [3804] = {.lex_state = 205}, + [3805] = {.lex_state = 205}, + [3806] = {.lex_state = 207}, + [3807] = {.lex_state = 207}, + [3808] = {.lex_state = 205}, + [3809] = {.lex_state = 207}, + [3810] = {.lex_state = 205}, + [3811] = {.lex_state = 221}, + [3812] = {.lex_state = 205}, + [3813] = {.lex_state = 205}, + [3814] = {.lex_state = 214}, + [3815] = {.lex_state = 207}, + [3816] = {.lex_state = 221}, + [3817] = {.lex_state = 205}, + [3818] = {.lex_state = 207}, + [3819] = {.lex_state = 156}, + [3820] = {.lex_state = 207}, + [3821] = {.lex_state = 205}, + [3822] = {.lex_state = 214}, + [3823] = {.lex_state = 205}, + [3824] = {.lex_state = 205}, + [3825] = {.lex_state = 214}, + [3826] = {.lex_state = 205}, + [3827] = {.lex_state = 207}, + [3828] = {.lex_state = 156}, + [3829] = {.lex_state = 205}, + [3830] = {.lex_state = 156}, + [3831] = {.lex_state = 205}, + [3832] = {.lex_state = 219}, + [3833] = {.lex_state = 212}, + [3834] = {.lex_state = 221}, + [3835] = {.lex_state = 205}, + [3836] = {.lex_state = 205}, + [3837] = {.lex_state = 156}, + [3838] = {.lex_state = 156}, + [3839] = {.lex_state = 156}, + [3840] = {.lex_state = 205}, + [3841] = {.lex_state = 205}, + [3842] = {.lex_state = 214}, + [3843] = {.lex_state = 156}, + [3844] = {.lex_state = 214}, + [3845] = {.lex_state = 205}, + [3846] = {.lex_state = 156}, + [3847] = {.lex_state = 219}, + [3848] = {.lex_state = 221}, + [3849] = {.lex_state = 207}, + [3850] = {.lex_state = 207}, + [3851] = {.lex_state = 205}, + [3852] = {.lex_state = 214}, + [3853] = {.lex_state = 219}, + [3854] = {.lex_state = 205}, + [3855] = {.lex_state = 205}, + [3856] = {.lex_state = 205}, + [3857] = {.lex_state = 205}, + [3858] = {.lex_state = 207}, + [3859] = {.lex_state = 205}, + [3860] = {.lex_state = 222}, + [3861] = {.lex_state = 205}, + [3862] = {.lex_state = 205}, + [3863] = {.lex_state = 205}, + [3864] = {.lex_state = 214}, + [3865] = {.lex_state = 205}, + [3866] = {.lex_state = 207}, + [3867] = {.lex_state = 205}, + [3868] = {.lex_state = 221}, + [3869] = {.lex_state = 221}, + [3870] = {.lex_state = 207}, + [3871] = {.lex_state = 221}, + [3872] = {.lex_state = 205}, + [3873] = {.lex_state = 214}, + [3874] = {.lex_state = 205}, + [3875] = {.lex_state = 205}, + [3876] = {.lex_state = 219}, + [3877] = {.lex_state = 205}, + [3878] = {.lex_state = 205}, + [3879] = {.lex_state = 205}, + [3880] = {.lex_state = 205}, + [3881] = {.lex_state = 64}, + [3882] = {.lex_state = 205}, + [3883] = {.lex_state = 205}, + [3884] = {.lex_state = 205}, + [3885] = {.lex_state = 205}, + [3886] = {.lex_state = 214}, + [3887] = {.lex_state = 214}, + [3888] = {.lex_state = 205}, + [3889] = {.lex_state = 205}, + [3890] = {.lex_state = 156}, + [3891] = {.lex_state = 194}, + [3892] = {.lex_state = 156}, + [3893] = {.lex_state = 194}, + [3894] = {.lex_state = 156}, + [3895] = {.lex_state = 156}, + [3896] = {.lex_state = 156}, + [3897] = {.lex_state = 156}, + [3898] = {.lex_state = 64}, + [3899] = {.lex_state = 156}, + [3900] = {.lex_state = 156}, + [3901] = {.lex_state = 156}, + [3902] = {.lex_state = 64}, + [3903] = {.lex_state = 156}, + [3904] = {.lex_state = 156}, + [3905] = {.lex_state = 156}, + [3906] = {.lex_state = 64}, + [3907] = {.lex_state = 156}, + [3908] = {.lex_state = 156}, + [3909] = {.lex_state = 156}, + [3910] = {.lex_state = 64}, + [3911] = {.lex_state = 156}, + [3912] = {.lex_state = 156}, + [3913] = {.lex_state = 156}, + [3914] = {.lex_state = 156}, + [3915] = {.lex_state = 156}, + [3916] = {.lex_state = 156}, + [3917] = {.lex_state = 156}, + [3918] = {.lex_state = 156}, + [3919] = {.lex_state = 156}, + [3920] = {.lex_state = 64}, + [3921] = {.lex_state = 156}, + [3922] = {.lex_state = 156}, + [3923] = {.lex_state = 156}, + [3924] = {.lex_state = 64}, + [3925] = {.lex_state = 156}, + [3926] = {.lex_state = 64}, + [3927] = {.lex_state = 64}, + [3928] = {.lex_state = 189}, + [3929] = {.lex_state = 156}, + [3930] = {.lex_state = 156}, + [3931] = {.lex_state = 226}, + [3932] = {.lex_state = 156}, + [3933] = {.lex_state = 207}, + [3934] = {.lex_state = 207}, + [3935] = {.lex_state = 156}, + [3936] = {.lex_state = 207}, + [3937] = {.lex_state = 156}, + [3938] = {.lex_state = 156}, + [3939] = {.lex_state = 156}, + [3940] = {.lex_state = 156}, + [3941] = {.lex_state = 189}, + [3942] = {.lex_state = 156}, + [3943] = {.lex_state = 156}, + [3944] = {.lex_state = 207}, + [3945] = {.lex_state = 207}, + [3946] = {.lex_state = 207}, + [3947] = {.lex_state = 207}, + [3948] = {.lex_state = 207}, + [3949] = {.lex_state = 207}, + [3950] = {.lex_state = 207}, + [3951] = {.lex_state = 207}, + [3952] = {.lex_state = 207}, + [3953] = {.lex_state = 194}, + [3954] = {.lex_state = 156}, + [3955] = {.lex_state = 207}, + [3956] = {.lex_state = 156}, + [3957] = {.lex_state = 156}, + [3958] = {.lex_state = 207}, + [3959] = {.lex_state = 207}, + [3960] = {.lex_state = 207}, + [3961] = {.lex_state = 207}, + [3962] = {.lex_state = 207}, + [3963] = {.lex_state = 207}, + [3964] = {.lex_state = 156}, + [3965] = {.lex_state = 207}, + [3966] = {.lex_state = 207}, + [3967] = {.lex_state = 156}, + [3968] = {.lex_state = 207}, + [3969] = {.lex_state = 156}, + [3970] = {.lex_state = 156}, + [3971] = {.lex_state = 156}, + [3972] = {.lex_state = 156}, + [3973] = {.lex_state = 156}, + [3974] = {.lex_state = 156}, + [3975] = {.lex_state = 156}, + [3976] = {.lex_state = 156}, + [3977] = {.lex_state = 156}, + [3978] = {.lex_state = 156}, + [3979] = {.lex_state = 156}, + [3980] = {.lex_state = 156}, + [3981] = {.lex_state = 156}, + [3982] = {.lex_state = 156}, + [3983] = {.lex_state = 156}, + [3984] = {.lex_state = 156}, + [3985] = {.lex_state = 156}, + [3986] = {.lex_state = 189}, + [3987] = {.lex_state = 156}, + [3988] = {.lex_state = 156}, + [3989] = {.lex_state = 156}, + [3990] = {.lex_state = 156}, + [3991] = {.lex_state = 156}, + [3992] = {.lex_state = 156}, + [3993] = {.lex_state = 156}, + [3994] = {.lex_state = 207}, + [3995] = {.lex_state = 156}, + [3996] = {.lex_state = 156}, + [3997] = {.lex_state = 156}, + [3998] = {.lex_state = 156}, + [3999] = {.lex_state = 156}, + [4000] = {.lex_state = 156}, + [4001] = {.lex_state = 194}, + [4002] = {.lex_state = 156}, + [4003] = {.lex_state = 207}, + [4004] = {.lex_state = 156}, + [4005] = {.lex_state = 156}, + [4006] = {.lex_state = 207}, + [4007] = {.lex_state = 156}, + [4008] = {.lex_state = 207}, + [4009] = {.lex_state = 207}, + [4010] = {.lex_state = 207}, + [4011] = {.lex_state = 156}, + [4012] = {.lex_state = 194}, + [4013] = {.lex_state = 189}, + [4014] = {.lex_state = 207}, + [4015] = {.lex_state = 207}, + [4016] = {.lex_state = 207}, + [4017] = {.lex_state = 156}, + [4018] = {.lex_state = 207}, + [4019] = {.lex_state = 189}, + [4020] = {.lex_state = 207}, + [4021] = {.lex_state = 156}, + [4022] = {.lex_state = 207}, + [4023] = {.lex_state = 156}, + [4024] = {.lex_state = 156}, + [4025] = {.lex_state = 156}, + [4026] = {.lex_state = 207}, + [4027] = {.lex_state = 207}, + [4028] = {.lex_state = 207}, + [4029] = {.lex_state = 189}, + [4030] = {.lex_state = 207}, + [4031] = {.lex_state = 194}, + [4032] = {.lex_state = 207}, + [4033] = {.lex_state = 207}, + [4034] = {.lex_state = 189}, + [4035] = {.lex_state = 207}, + [4036] = {.lex_state = 156}, + [4037] = {.lex_state = 207}, + [4038] = {.lex_state = 207}, + [4039] = {.lex_state = 207}, + [4040] = {.lex_state = 156}, + [4041] = {.lex_state = 156}, + [4042] = {.lex_state = 207}, + [4043] = {.lex_state = 207}, + [4044] = {.lex_state = 156}, + [4045] = {.lex_state = 194}, + [4046] = {.lex_state = 207}, + [4047] = {.lex_state = 207}, + [4048] = {.lex_state = 189}, + [4049] = {.lex_state = 207}, + [4050] = {.lex_state = 189}, + [4051] = {.lex_state = 207}, + [4052] = {.lex_state = 207}, + [4053] = {.lex_state = 207}, + [4054] = {.lex_state = 207}, + [4055] = {.lex_state = 207}, + [4056] = {.lex_state = 207}, + [4057] = {.lex_state = 207}, + [4058] = {.lex_state = 207}, + [4059] = {.lex_state = 207}, + [4060] = {.lex_state = 207}, + [4061] = {.lex_state = 207}, + [4062] = {.lex_state = 207}, + [4063] = {.lex_state = 207}, + [4064] = {.lex_state = 207}, + [4065] = {.lex_state = 207}, + [4066] = {.lex_state = 207}, + [4067] = {.lex_state = 207}, + [4068] = {.lex_state = 207}, + [4069] = {.lex_state = 207}, + [4070] = {.lex_state = 207}, + [4071] = {.lex_state = 207}, + [4072] = {.lex_state = 207}, + [4073] = {.lex_state = 207}, + [4074] = {.lex_state = 207}, + [4075] = {.lex_state = 207}, + [4076] = {.lex_state = 207}, + [4077] = {.lex_state = 207}, + [4078] = {.lex_state = 207}, + [4079] = {.lex_state = 207}, + [4080] = {.lex_state = 207}, + [4081] = {.lex_state = 207}, + [4082] = {.lex_state = 207}, + [4083] = {.lex_state = 207}, + [4084] = {.lex_state = 207}, + [4085] = {.lex_state = 207}, + [4086] = {.lex_state = 547}, + [4087] = {.lex_state = 189}, + [4088] = {.lex_state = 547}, + [4089] = {.lex_state = 547}, + [4090] = {.lex_state = 156}, + [4091] = {.lex_state = 156}, + [4092] = {.lex_state = 547}, + [4093] = {.lex_state = 547}, + [4094] = {.lex_state = 226}, + [4095] = {.lex_state = 547}, + [4096] = {.lex_state = 189}, + [4097] = {.lex_state = 547}, + [4098] = {.lex_state = 547}, + [4099] = {.lex_state = 547}, + [4100] = {.lex_state = 547}, + [4101] = {.lex_state = 547}, + [4102] = {.lex_state = 547}, + [4103] = {.lex_state = 156}, + [4104] = {.lex_state = 547}, + [4105] = {.lex_state = 547}, + [4106] = {.lex_state = 547}, + [4107] = {.lex_state = 189}, + [4108] = {.lex_state = 547}, + [4109] = {.lex_state = 547}, + [4110] = {.lex_state = 189}, + [4111] = {.lex_state = 156}, + [4112] = {.lex_state = 547}, + [4113] = {.lex_state = 547}, + [4114] = {.lex_state = 226}, + [4115] = {.lex_state = 547}, + [4116] = {.lex_state = 547}, + [4117] = {.lex_state = 156}, + [4118] = {.lex_state = 189}, + [4119] = {.lex_state = 547}, + [4120] = {.lex_state = 547}, + [4121] = {.lex_state = 547}, + [4122] = {.lex_state = 547}, + [4123] = {.lex_state = 547}, + [4124] = {.lex_state = 547}, + [4125] = {.lex_state = 547}, + [4126] = {.lex_state = 547}, + [4127] = {.lex_state = 156}, + [4128] = {.lex_state = 547}, + [4129] = {.lex_state = 189}, + [4130] = {.lex_state = 547}, + [4131] = {.lex_state = 189}, + [4132] = {.lex_state = 547}, + [4133] = {.lex_state = 547}, + [4134] = {.lex_state = 547}, + [4135] = {.lex_state = 547}, + [4136] = {.lex_state = 156}, + [4137] = {.lex_state = 547}, + [4138] = {.lex_state = 547}, + [4139] = {.lex_state = 547}, + [4140] = {.lex_state = 156}, + [4141] = {.lex_state = 547}, + [4142] = {.lex_state = 64}, + [4143] = {.lex_state = 190}, + [4144] = {.lex_state = 190}, + [4145] = {.lex_state = 156}, + [4146] = {.lex_state = 540}, + [4147] = {.lex_state = 190}, + [4148] = {.lex_state = 540}, + [4149] = {.lex_state = 540}, + [4150] = {.lex_state = 190}, + [4151] = {.lex_state = 547}, + [4152] = {.lex_state = 547}, + [4153] = {.lex_state = 547}, + [4154] = {.lex_state = 189}, + [4155] = {.lex_state = 190}, + [4156] = {.lex_state = 156}, + [4157] = {.lex_state = 547}, + [4158] = {.lex_state = 190}, + [4159] = {.lex_state = 156}, + [4160] = {.lex_state = 189}, + [4161] = {.lex_state = 547}, + [4162] = {.lex_state = 547}, + [4163] = {.lex_state = 547}, + [4164] = {.lex_state = 547}, + [4165] = {.lex_state = 190}, + [4166] = {.lex_state = 190}, + [4167] = {.lex_state = 156}, + [4168] = {.lex_state = 547}, + [4169] = {.lex_state = 540}, + [4170] = {.lex_state = 540}, + [4171] = {.lex_state = 540}, + [4172] = {.lex_state = 540}, + [4173] = {.lex_state = 547}, + [4174] = {.lex_state = 547}, + [4175] = {.lex_state = 547}, + [4176] = {.lex_state = 540}, + [4177] = {.lex_state = 156}, + [4178] = {.lex_state = 547}, + [4179] = {.lex_state = 547}, + [4180] = {.lex_state = 547}, + [4181] = {.lex_state = 547}, + [4182] = {.lex_state = 189}, + [4183] = {.lex_state = 190}, + [4184] = {.lex_state = 189}, + [4185] = {.lex_state = 547}, + [4186] = {.lex_state = 156}, + [4187] = {.lex_state = 547}, + [4188] = {.lex_state = 547}, + [4189] = {.lex_state = 156}, + [4190] = {.lex_state = 547}, + [4191] = {.lex_state = 547}, + [4192] = {.lex_state = 156}, + [4193] = {.lex_state = 547}, + [4194] = {.lex_state = 547}, + [4195] = {.lex_state = 547}, + [4196] = {.lex_state = 547}, + [4197] = {.lex_state = 547}, + [4198] = {.lex_state = 64}, + [4199] = {.lex_state = 547}, + [4200] = {.lex_state = 547}, + [4201] = {.lex_state = 547}, + [4202] = {.lex_state = 547}, + [4203] = {.lex_state = 547}, + [4204] = {.lex_state = 547}, + [4205] = {.lex_state = 547}, + [4206] = {.lex_state = 547}, + [4207] = {.lex_state = 547}, + [4208] = {.lex_state = 547}, + [4209] = {.lex_state = 547}, + [4210] = {.lex_state = 547}, + [4211] = {.lex_state = 547}, + [4212] = {.lex_state = 156}, + [4213] = {.lex_state = 540}, + [4214] = {.lex_state = 547}, + [4215] = {.lex_state = 547}, + [4216] = {.lex_state = 156}, + [4217] = {.lex_state = 547}, + [4218] = {.lex_state = 547}, + [4219] = {.lex_state = 547}, + [4220] = {.lex_state = 190}, + [4221] = {.lex_state = 547}, + [4222] = {.lex_state = 547}, + [4223] = {.lex_state = 156}, + [4224] = {.lex_state = 189}, + [4225] = {.lex_state = 547}, + [4226] = {.lex_state = 189}, + [4227] = {.lex_state = 189}, + [4228] = {.lex_state = 64}, + [4229] = {.lex_state = 189}, + [4230] = {.lex_state = 540}, + [4231] = {.lex_state = 64}, + [4232] = {.lex_state = 540}, + [4233] = {.lex_state = 540}, + [4234] = {.lex_state = 64}, + [4235] = {.lex_state = 528}, + [4236] = {.lex_state = 189}, + [4237] = {.lex_state = 189}, + [4238] = {.lex_state = 547}, + [4239] = {.lex_state = 540}, + [4240] = {.lex_state = 189}, + [4241] = {.lex_state = 190}, + [4242] = {.lex_state = 189}, + [4243] = {.lex_state = 189}, + [4244] = {.lex_state = 189}, + [4245] = {.lex_state = 189}, + [4246] = {.lex_state = 190}, + [4247] = {.lex_state = 190}, + [4248] = {.lex_state = 547}, + [4249] = {.lex_state = 547}, + [4250] = {.lex_state = 28}, + [4251] = {.lex_state = 540}, + [4252] = {.lex_state = 1885}, + [4253] = {.lex_state = 547}, + [4254] = {.lex_state = 64}, + [4255] = {.lex_state = 189}, + [4256] = {.lex_state = 189}, + [4257] = {.lex_state = 189}, + [4258] = {.lex_state = 547}, + [4259] = {.lex_state = 547}, + [4260] = {.lex_state = 547}, + [4261] = {.lex_state = 547}, + [4262] = {.lex_state = 540}, + [4263] = {.lex_state = 540}, + [4264] = {.lex_state = 189}, + [4265] = {.lex_state = 190}, + [4266] = {.lex_state = 547}, + [4267] = {.lex_state = 64}, + [4268] = {.lex_state = 190}, + [4269] = {.lex_state = 547}, + [4270] = {.lex_state = 189}, + [4271] = {.lex_state = 540}, + [4272] = {.lex_state = 547}, + [4273] = {.lex_state = 528}, + [4274] = {.lex_state = 547}, + [4275] = {.lex_state = 190}, + [4276] = {.lex_state = 547}, + [4277] = {.lex_state = 189}, + [4278] = {.lex_state = 190}, + [4279] = {.lex_state = 190}, + [4280] = {.lex_state = 189}, + [4281] = {.lex_state = 547}, + [4282] = {.lex_state = 547}, + [4283] = {.lex_state = 547}, + [4284] = {.lex_state = 189}, + [4285] = {.lex_state = 547}, + [4286] = {.lex_state = 189}, + [4287] = {.lex_state = 189}, + [4288] = {.lex_state = 190}, + [4289] = {.lex_state = 189}, + [4290] = {.lex_state = 189}, + [4291] = {.lex_state = 189}, + [4292] = {.lex_state = 547}, + [4293] = {.lex_state = 540}, + [4294] = {.lex_state = 189}, + [4295] = {.lex_state = 205}, + [4296] = {.lex_state = 189}, + [4297] = {.lex_state = 190}, + [4298] = {.lex_state = 189}, + [4299] = {.lex_state = 190}, + [4300] = {.lex_state = 189}, + [4301] = {.lex_state = 189}, + [4302] = {.lex_state = 190}, + [4303] = {.lex_state = 64}, + [4304] = {.lex_state = 1885}, + [4305] = {.lex_state = 189}, + [4306] = {.lex_state = 189}, + [4307] = {.lex_state = 189}, + [4308] = {.lex_state = 189}, + [4309] = {.lex_state = 528}, + [4310] = {.lex_state = 528}, + [4311] = {.lex_state = 614}, + [4312] = {.lex_state = 28}, + [4313] = {.lex_state = 189}, + [4314] = {.lex_state = 190}, + [4315] = {.lex_state = 190}, + [4316] = {.lex_state = 189}, + [4317] = {.lex_state = 189}, + [4318] = {.lex_state = 547}, + [4319] = {.lex_state = 64}, + [4320] = {.lex_state = 64}, + [4321] = {.lex_state = 52}, + [4322] = {.lex_state = 52}, + [4323] = {.lex_state = 52}, + [4324] = {.lex_state = 202}, + [4325] = {.lex_state = 52}, + [4326] = {.lex_state = 52}, + [4327] = {.lex_state = 52}, + [4328] = {.lex_state = 547}, + [4329] = {.lex_state = 202}, + [4330] = {.lex_state = 52}, + [4331] = {.lex_state = 190}, + [4332] = {.lex_state = 547}, + [4333] = {.lex_state = 547}, + [4334] = {.lex_state = 226}, + [4335] = {.lex_state = 547}, + [4336] = {.lex_state = 52}, + [4337] = {.lex_state = 547}, + [4338] = {.lex_state = 52}, + [4339] = {.lex_state = 52}, + [4340] = {.lex_state = 52}, + [4341] = {.lex_state = 52}, + [4342] = {.lex_state = 229}, + [4343] = {.lex_state = 547}, + [4344] = {.lex_state = 547}, + [4345] = {.lex_state = 547}, + [4346] = {.lex_state = 547}, + [4347] = {.lex_state = 226}, + [4348] = {.lex_state = 547}, + [4349] = {.lex_state = 190}, + [4350] = {.lex_state = 190}, + [4351] = {.lex_state = 64}, + [4352] = {.lex_state = 190}, + [4353] = {.lex_state = 229}, + [4354] = {.lex_state = 547}, + [4355] = {.lex_state = 547}, + [4356] = {.lex_state = 0}, + [4357] = {.lex_state = 0}, + [4358] = {.lex_state = 205}, + [4359] = {.lex_state = 0}, + [4360] = {.lex_state = 547}, + [4361] = {.lex_state = 547}, + [4362] = {.lex_state = 547}, + [4363] = {.lex_state = 547}, + [4364] = {.lex_state = 547}, + [4365] = {.lex_state = 547}, + [4366] = {.lex_state = 547}, + [4367] = {.lex_state = 547}, + [4368] = {.lex_state = 202}, + [4369] = {.lex_state = 547}, + [4370] = {.lex_state = 202}, + [4371] = {.lex_state = 547}, + [4372] = {.lex_state = 547}, + [4373] = {.lex_state = 547}, + [4374] = {.lex_state = 528}, + [4375] = {.lex_state = 547}, + [4376] = {.lex_state = 547}, + [4377] = {.lex_state = 226}, + [4378] = {.lex_state = 547}, + [4379] = {.lex_state = 547}, + [4380] = {.lex_state = 0}, + [4381] = {.lex_state = 547}, + [4382] = {.lex_state = 52}, + [4383] = {.lex_state = 547}, + [4384] = {.lex_state = 547}, + [4385] = {.lex_state = 547}, + [4386] = {.lex_state = 547}, + [4387] = {.lex_state = 547}, + [4388] = {.lex_state = 547}, + [4389] = {.lex_state = 547}, + [4390] = {.lex_state = 547}, + [4391] = {.lex_state = 547}, + [4392] = {.lex_state = 547}, + [4393] = {.lex_state = 547}, + [4394] = {.lex_state = 547}, + [4395] = {.lex_state = 190}, + [4396] = {.lex_state = 202}, + [4397] = {.lex_state = 547}, + [4398] = {.lex_state = 547}, + [4399] = {.lex_state = 547}, + [4400] = {.lex_state = 547}, + [4401] = {.lex_state = 547}, + [4402] = {.lex_state = 547}, + [4403] = {.lex_state = 540}, + [4404] = {.lex_state = 540}, + [4405] = {.lex_state = 52}, + [4406] = {.lex_state = 0}, + [4407] = {.lex_state = 64}, + [4408] = {.lex_state = 205}, + [4409] = {.lex_state = 64}, + [4410] = {.lex_state = 547}, + [4411] = {.lex_state = 64}, + [4412] = {.lex_state = 614}, + [4413] = {.lex_state = 547}, + [4414] = {.lex_state = 202}, + [4415] = {.lex_state = 52}, + [4416] = {.lex_state = 205}, + [4417] = {.lex_state = 614}, + [4418] = {.lex_state = 189}, + [4419] = {.lex_state = 202}, + [4420] = {.lex_state = 202}, + [4421] = {.lex_state = 64}, + [4422] = {.lex_state = 202}, + [4423] = {.lex_state = 190}, + [4424] = {.lex_state = 190}, + [4425] = {.lex_state = 547}, + [4426] = {.lex_state = 202}, + [4427] = {.lex_state = 547}, + [4428] = {.lex_state = 189}, + [4429] = {.lex_state = 547}, + [4430] = {.lex_state = 547}, + [4431] = {.lex_state = 525}, + [4432] = {.lex_state = 547}, + [4433] = {.lex_state = 202}, + [4434] = {.lex_state = 540}, + [4435] = {.lex_state = 52}, + [4436] = {.lex_state = 52}, + [4437] = {.lex_state = 52}, + [4438] = {.lex_state = 547}, + [4439] = {.lex_state = 540}, + [4440] = {.lex_state = 202}, + [4441] = {.lex_state = 190}, + [4442] = {.lex_state = 190}, + [4443] = {.lex_state = 190}, + [4444] = {.lex_state = 190}, + [4445] = {.lex_state = 205}, + [4446] = {.lex_state = 525}, + [4447] = {.lex_state = 0}, + [4448] = {.lex_state = 525}, + [4449] = {.lex_state = 229}, + [4450] = {.lex_state = 197}, + [4451] = {.lex_state = 229}, + [4452] = {.lex_state = 547}, + [4453] = {.lex_state = 202}, + [4454] = {.lex_state = 547}, + [4455] = {.lex_state = 52}, + [4456] = {.lex_state = 205}, + [4457] = {.lex_state = 547}, + [4458] = {.lex_state = 525}, + [4459] = {.lex_state = 64}, + [4460] = {.lex_state = 202}, + [4461] = {.lex_state = 202}, + [4462] = {.lex_state = 202}, + [4463] = {.lex_state = 540}, + [4464] = {.lex_state = 528}, + [4465] = {.lex_state = 540}, + [4466] = {.lex_state = 547}, + [4467] = {.lex_state = 540}, + [4468] = {.lex_state = 540}, + [4469] = {.lex_state = 202}, + [4470] = {.lex_state = 226}, + [4471] = {.lex_state = 547}, + [4472] = {.lex_state = 202}, + [4473] = {.lex_state = 547}, + [4474] = {.lex_state = 189}, + [4475] = {.lex_state = 52}, + [4476] = {.lex_state = 528}, + [4477] = {.lex_state = 189}, + [4478] = {.lex_state = 202}, + [4479] = {.lex_state = 202}, + [4480] = {.lex_state = 202}, + [4481] = {.lex_state = 547}, + [4482] = {.lex_state = 240}, + [4483] = {.lex_state = 190}, + [4484] = {.lex_state = 547}, + [4485] = {.lex_state = 547}, + [4486] = {.lex_state = 202}, + [4487] = {.lex_state = 547}, + [4488] = {.lex_state = 202}, + [4489] = {.lex_state = 202}, + [4490] = {.lex_state = 202}, + [4491] = {.lex_state = 226}, + [4492] = {.lex_state = 202}, + [4493] = {.lex_state = 528}, + [4494] = {.lex_state = 64}, + [4495] = {.lex_state = 229}, + [4496] = {.lex_state = 202}, + [4497] = {.lex_state = 540}, + [4498] = {.lex_state = 547}, + [4499] = {.lex_state = 198}, + [4500] = {.lex_state = 198}, + [4501] = {.lex_state = 540}, + [4502] = {.lex_state = 64}, + [4503] = {.lex_state = 64}, + [4504] = {.lex_state = 540}, + [4505] = {.lex_state = 269}, + [4506] = {.lex_state = 540}, + [4507] = {.lex_state = 540}, + [4508] = {.lex_state = 64}, + [4509] = {.lex_state = 540}, + [4510] = {.lex_state = 540}, + [4511] = {.lex_state = 269}, + [4512] = {.lex_state = 540}, + [4513] = {.lex_state = 207}, + [4514] = {.lex_state = 540}, + [4515] = {.lex_state = 540}, + [4516] = {.lex_state = 540}, + [4517] = {.lex_state = 540}, + [4518] = {.lex_state = 547}, + [4519] = {.lex_state = 525}, + [4520] = {.lex_state = 540}, + [4521] = {.lex_state = 540}, + [4522] = {.lex_state = 540}, + [4523] = {.lex_state = 540}, + [4524] = {.lex_state = 540}, + [4525] = {.lex_state = 540}, + [4526] = {.lex_state = 540}, + [4527] = {.lex_state = 64}, + [4528] = {.lex_state = 64}, + [4529] = {.lex_state = 198}, + [4530] = {.lex_state = 64}, + [4531] = {.lex_state = 540}, + [4532] = {.lex_state = 269}, + [4533] = {.lex_state = 540}, + [4534] = {.lex_state = 64}, + [4535] = {.lex_state = 540}, + [4536] = {.lex_state = 525}, + [4537] = {.lex_state = 540}, + [4538] = {.lex_state = 540}, + [4539] = {.lex_state = 269}, + [4540] = {.lex_state = 540}, + [4541] = {.lex_state = 64}, + [4542] = {.lex_state = 52}, + [4543] = {.lex_state = 540}, + [4544] = {.lex_state = 540}, + [4545] = {.lex_state = 540}, + [4546] = {.lex_state = 540}, + [4547] = {.lex_state = 547}, + [4548] = {.lex_state = 540}, + [4549] = {.lex_state = 64}, + [4550] = {.lex_state = 64}, + [4551] = {.lex_state = 540}, + [4552] = {.lex_state = 540}, + [4553] = {.lex_state = 540}, + [4554] = {.lex_state = 540}, + [4555] = {.lex_state = 540}, + [4556] = {.lex_state = 540}, + [4557] = {.lex_state = 540}, + [4558] = {.lex_state = 540}, + [4559] = {.lex_state = 207}, + [4560] = {.lex_state = 540}, + [4561] = {.lex_state = 64}, + [4562] = {.lex_state = 198}, + [4563] = {.lex_state = 540}, + [4564] = {.lex_state = 64}, + [4565] = {.lex_state = 1892}, + [4566] = {.lex_state = 64}, + [4567] = {.lex_state = 64}, + [4568] = {.lex_state = 64}, + [4569] = {.lex_state = 540}, + [4570] = {.lex_state = 540}, + [4571] = {.lex_state = 64}, + [4572] = {.lex_state = 207}, + [4573] = {.lex_state = 207}, + [4574] = {.lex_state = 207}, + [4575] = {.lex_state = 207}, + [4576] = {.lex_state = 207}, + [4577] = {.lex_state = 64}, + [4578] = {.lex_state = 540}, + [4579] = {.lex_state = 207}, + [4580] = {.lex_state = 207}, + [4581] = {.lex_state = 207}, + [4582] = {.lex_state = 207}, + [4583] = {.lex_state = 64}, + [4584] = {.lex_state = 64}, + [4585] = {.lex_state = 189}, + [4586] = {.lex_state = 207}, + [4587] = {.lex_state = 207}, + [4588] = {.lex_state = 540}, + [4589] = {.lex_state = 64}, + [4590] = {.lex_state = 547}, + [4591] = {.lex_state = 207}, + [4592] = {.lex_state = 540}, + [4593] = {.lex_state = 64}, + [4594] = {.lex_state = 64}, + [4595] = {.lex_state = 190}, + [4596] = {.lex_state = 198}, + [4597] = {.lex_state = 64}, + [4598] = {.lex_state = 198}, + [4599] = {.lex_state = 269}, + [4600] = {.lex_state = 64}, + [4601] = {.lex_state = 198}, + [4602] = {.lex_state = 64}, + [4603] = {.lex_state = 540}, + [4604] = {.lex_state = 269}, + [4605] = {.lex_state = 540}, + [4606] = {.lex_state = 540}, + [4607] = {.lex_state = 269}, + [4608] = {.lex_state = 64}, + [4609] = {.lex_state = 64}, + [4610] = {.lex_state = 64}, + [4611] = {.lex_state = 540}, + [4612] = {.lex_state = 540}, + [4613] = {.lex_state = 540}, + [4614] = {.lex_state = 190}, + [4615] = {.lex_state = 269}, + [4616] = {.lex_state = 81}, + [4617] = {.lex_state = 540}, + [4618] = {.lex_state = 540}, + [4619] = {.lex_state = 540}, + [4620] = {.lex_state = 269}, + [4621] = {.lex_state = 540}, + [4622] = {.lex_state = 207}, + [4623] = {.lex_state = 540}, + [4624] = {.lex_state = 547}, + [4625] = {.lex_state = 540}, + [4626] = {.lex_state = 64}, + [4627] = {.lex_state = 64}, + [4628] = {.lex_state = 64}, + [4629] = {.lex_state = 229}, + [4630] = {.lex_state = 64}, + [4631] = {.lex_state = 64}, + [4632] = {.lex_state = 540}, + [4633] = {.lex_state = 64}, + [4634] = {.lex_state = 540}, + [4635] = {.lex_state = 540}, + [4636] = {.lex_state = 64}, + [4637] = {.lex_state = 540}, + [4638] = {.lex_state = 32}, + [4639] = {.lex_state = 540}, + [4640] = {.lex_state = 540}, + [4641] = {.lex_state = 540}, + [4642] = {.lex_state = 540}, + [4643] = {.lex_state = 540}, + [4644] = {.lex_state = 540}, + [4645] = {.lex_state = 52}, + [4646] = {.lex_state = 52}, + [4647] = {.lex_state = 540}, + [4648] = {.lex_state = 64}, + [4649] = {.lex_state = 64}, + [4650] = {.lex_state = 540}, + [4651] = {.lex_state = 540}, + [4652] = {.lex_state = 64}, + [4653] = {.lex_state = 64}, + [4654] = {.lex_state = 269}, + [4655] = {.lex_state = 540}, + [4656] = {.lex_state = 547}, + [4657] = {.lex_state = 190}, + [4658] = {.lex_state = 198}, + [4659] = {.lex_state = 540}, + [4660] = {.lex_state = 547}, + [4661] = {.lex_state = 540}, + [4662] = {.lex_state = 540}, + [4663] = {.lex_state = 52}, + [4664] = {.lex_state = 547}, + [4665] = {.lex_state = 547}, + [4666] = {.lex_state = 207}, + [4667] = {.lex_state = 540}, + [4668] = {.lex_state = 64}, + [4669] = {.lex_state = 198}, + [4670] = {.lex_state = 64}, + [4671] = {.lex_state = 32}, + [4672] = {.lex_state = 540}, + [4673] = {.lex_state = 269}, + [4674] = {.lex_state = 207}, + [4675] = {.lex_state = 540}, + [4676] = {.lex_state = 540}, + [4677] = {.lex_state = 64}, + [4678] = {.lex_state = 198}, + [4679] = {.lex_state = 547}, + [4680] = {.lex_state = 540}, + [4681] = {.lex_state = 64}, + [4682] = {.lex_state = 64}, + [4683] = {.lex_state = 540}, + [4684] = {.lex_state = 540}, + [4685] = {.lex_state = 540}, + [4686] = {.lex_state = 269}, + [4687] = {.lex_state = 540}, + [4688] = {.lex_state = 540}, + [4689] = {.lex_state = 540}, + [4690] = {.lex_state = 540}, + [4691] = {.lex_state = 540}, + [4692] = {.lex_state = 540}, + [4693] = {.lex_state = 269}, + [4694] = {.lex_state = 540}, + [4695] = {.lex_state = 540}, + [4696] = {.lex_state = 540}, + [4697] = {.lex_state = 198}, + [4698] = {.lex_state = 547}, + [4699] = {.lex_state = 540}, + [4700] = {.lex_state = 540}, + [4701] = {.lex_state = 540}, + [4702] = {.lex_state = 547}, + [4703] = {.lex_state = 540}, + [4704] = {.lex_state = 540}, + [4705] = {.lex_state = 540}, + [4706] = {.lex_state = 540}, + [4707] = {.lex_state = 540}, + [4708] = {.lex_state = 207}, + [4709] = {.lex_state = 198}, + [4710] = {.lex_state = 269}, + [4711] = {.lex_state = 540}, + [4712] = {.lex_state = 540}, + [4713] = {.lex_state = 525}, + [4714] = {.lex_state = 547}, + [4715] = {.lex_state = 64}, + [4716] = {.lex_state = 540}, + [4717] = {.lex_state = 64}, + [4718] = {.lex_state = 198}, + [4719] = {.lex_state = 540}, + [4720] = {.lex_state = 540}, + [4721] = {.lex_state = 540}, + [4722] = {.lex_state = 207}, + [4723] = {.lex_state = 198}, + [4724] = {.lex_state = 540}, + [4725] = {.lex_state = 540}, + [4726] = {.lex_state = 269}, + [4727] = {.lex_state = 269}, + [4728] = {.lex_state = 269}, + [4729] = {.lex_state = 540}, + [4730] = {.lex_state = 540}, + [4731] = {.lex_state = 540}, + [4732] = {.lex_state = 547}, + [4733] = {.lex_state = 64}, + [4734] = {.lex_state = 540}, + [4735] = {.lex_state = 540}, + [4736] = {.lex_state = 64}, + [4737] = {.lex_state = 241}, + [4738] = {.lex_state = 540}, + [4739] = {.lex_state = 540}, + [4740] = {.lex_state = 547}, + [4741] = {.lex_state = 547}, + [4742] = {.lex_state = 540}, + [4743] = {.lex_state = 64}, + [4744] = {.lex_state = 547}, + [4745] = {.lex_state = 190}, + [4746] = {.lex_state = 269}, + [4747] = {.lex_state = 207}, + [4748] = {.lex_state = 540}, + [4749] = {.lex_state = 540}, + [4750] = {.lex_state = 540}, + [4751] = {.lex_state = 540}, + [4752] = {.lex_state = 540}, + [4753] = {.lex_state = 547}, + [4754] = {.lex_state = 207}, + [4755] = {.lex_state = 540}, + [4756] = {.lex_state = 540}, + [4757] = {.lex_state = 540}, + [4758] = {.lex_state = 540}, + [4759] = {.lex_state = 547}, + [4760] = {.lex_state = 540}, + [4761] = {.lex_state = 540}, + [4762] = {.lex_state = 540}, + [4763] = {.lex_state = 540}, + [4764] = {.lex_state = 540}, + [4765] = {.lex_state = 540}, + [4766] = {.lex_state = 540}, + [4767] = {.lex_state = 207}, + [4768] = {.lex_state = 547}, + [4769] = {.lex_state = 540}, + [4770] = {.lex_state = 540}, + [4771] = {.lex_state = 547}, + [4772] = {.lex_state = 540}, + [4773] = {.lex_state = 547}, + [4774] = {.lex_state = 207}, + [4775] = {.lex_state = 547}, + [4776] = {.lex_state = 540}, + [4777] = {.lex_state = 207}, + [4778] = {.lex_state = 540}, + [4779] = {.lex_state = 540}, + [4780] = {.lex_state = 540}, + [4781] = {.lex_state = 198}, + [4782] = {.lex_state = 64}, + [4783] = {.lex_state = 540}, + [4784] = {.lex_state = 547}, + [4785] = {.lex_state = 269}, + [4786] = {.lex_state = 547}, + [4787] = {.lex_state = 547}, + [4788] = {.lex_state = 540}, + [4789] = {.lex_state = 540}, + [4790] = {.lex_state = 540}, + [4791] = {.lex_state = 540}, + [4792] = {.lex_state = 207}, + [4793] = {.lex_state = 547}, + [4794] = {.lex_state = 547}, + [4795] = {.lex_state = 540}, + [4796] = {.lex_state = 207}, + [4797] = {.lex_state = 64}, + [4798] = {.lex_state = 547}, + [4799] = {.lex_state = 540}, + [4800] = {.lex_state = 540}, + [4801] = {.lex_state = 540}, + [4802] = {.lex_state = 547}, + [4803] = {.lex_state = 198}, + [4804] = {.lex_state = 547}, + [4805] = {.lex_state = 207}, + [4806] = {.lex_state = 547}, + [4807] = {.lex_state = 547}, + [4808] = {.lex_state = 198}, + [4809] = {.lex_state = 540}, + [4810] = {.lex_state = 269}, + [4811] = {.lex_state = 540}, + [4812] = {.lex_state = 207}, + [4813] = {.lex_state = 540}, + [4814] = {.lex_state = 0}, + [4815] = {.lex_state = 540}, + [4816] = {.lex_state = 540}, + [4817] = {.lex_state = 269}, + [4818] = {.lex_state = 540}, + [4819] = {.lex_state = 547}, + [4820] = {.lex_state = 540}, + [4821] = {.lex_state = 540}, + [4822] = {.lex_state = 525}, + [4823] = {.lex_state = 198}, + [4824] = {.lex_state = 540}, + [4825] = {.lex_state = 540}, + [4826] = {.lex_state = 198}, + [4827] = {.lex_state = 198}, + [4828] = {.lex_state = 547}, + [4829] = {.lex_state = 547}, + [4830] = {.lex_state = 207}, + [4831] = {.lex_state = 269}, + [4832] = {.lex_state = 547}, + [4833] = {.lex_state = 207}, + [4834] = {.lex_state = 547}, + [4835] = {.lex_state = 198}, + [4836] = {.lex_state = 547}, + [4837] = {.lex_state = 540}, + [4838] = {.lex_state = 269}, + [4839] = {.lex_state = 540}, + [4840] = {.lex_state = 540}, + [4841] = {.lex_state = 540}, + [4842] = {.lex_state = 525}, + [4843] = {.lex_state = 540}, + [4844] = {.lex_state = 540}, + [4845] = {.lex_state = 540}, + [4846] = {.lex_state = 540}, + [4847] = {.lex_state = 269}, + [4848] = {.lex_state = 540}, + [4849] = {.lex_state = 540}, + [4850] = {.lex_state = 540}, + [4851] = {.lex_state = 198}, + [4852] = {.lex_state = 540}, + [4853] = {.lex_state = 540}, + [4854] = {.lex_state = 540}, + [4855] = {.lex_state = 540}, + [4856] = {.lex_state = 32}, + [4857] = {.lex_state = 190}, + [4858] = {.lex_state = 540}, + [4859] = {.lex_state = 540}, + [4860] = {.lex_state = 525}, + [4861] = {.lex_state = 32}, + [4862] = {.lex_state = 525}, + [4863] = {.lex_state = 525}, + [4864] = {.lex_state = 540}, + [4865] = {.lex_state = 547}, + [4866] = {.lex_state = 540}, + [4867] = {.lex_state = 540}, + [4868] = {.lex_state = 189}, + [4869] = {.lex_state = 229}, + [4870] = {.lex_state = 540}, + [4871] = {.lex_state = 547}, + [4872] = {.lex_state = 525}, + [4873] = {.lex_state = 540}, + [4874] = {.lex_state = 198}, + [4875] = {.lex_state = 540}, + [4876] = {.lex_state = 540}, + [4877] = {.lex_state = 207}, + [4878] = {.lex_state = 540}, + [4879] = {.lex_state = 540}, + [4880] = {.lex_state = 540}, + [4881] = {.lex_state = 547}, + [4882] = {.lex_state = 547}, + [4883] = {.lex_state = 547}, + [4884] = {.lex_state = 190}, + [4885] = {.lex_state = 190}, + [4886] = {.lex_state = 547}, + [4887] = {.lex_state = 269}, + [4888] = {.lex_state = 207}, + [4889] = {.lex_state = 540}, + [4890] = {.lex_state = 540}, + [4891] = {.lex_state = 525}, + [4892] = {.lex_state = 547}, + [4893] = {.lex_state = 198}, + [4894] = {.lex_state = 547}, + [4895] = {.lex_state = 540}, + [4896] = {.lex_state = 547}, + [4897] = {.lex_state = 540}, + [4898] = {.lex_state = 269}, + [4899] = {.lex_state = 190}, + [4900] = {.lex_state = 547}, + [4901] = {.lex_state = 525}, + [4902] = {.lex_state = 540}, + [4903] = {.lex_state = 547}, + [4904] = {.lex_state = 540}, + [4905] = {.lex_state = 547}, + [4906] = {.lex_state = 540}, + [4907] = {.lex_state = 269}, + [4908] = {.lex_state = 614}, + [4909] = {.lex_state = 547}, + [4910] = {.lex_state = 198}, + [4911] = {.lex_state = 547}, + [4912] = {.lex_state = 547}, + [4913] = {.lex_state = 207}, + [4914] = {.lex_state = 540}, + [4915] = {.lex_state = 547}, + [4916] = {.lex_state = 547}, + [4917] = {.lex_state = 540}, + [4918] = {.lex_state = 525}, + [4919] = {.lex_state = 540}, + [4920] = {.lex_state = 540}, + [4921] = {.lex_state = 540}, + [4922] = {.lex_state = 202}, + [4923] = {.lex_state = 0}, + [4924] = {.lex_state = 540}, [4925] = {.lex_state = 0}, - [4926] = {.lex_state = 187}, - [4927] = {.lex_state = 65}, - [4928] = {.lex_state = 508}, - [4929] = {.lex_state = 508}, - [4930] = {.lex_state = 508}, - [4931] = {.lex_state = 60}, - [4932] = {.lex_state = 214}, - [4933] = {.lex_state = 65}, - [4934] = {.lex_state = 186}, - [4935] = {.lex_state = 508}, - [4936] = {.lex_state = 186}, - [4937] = {.lex_state = 186}, - [4938] = {.lex_state = 186}, - [4939] = {.lex_state = 508}, - [4940] = {.lex_state = 508}, - [4941] = {.lex_state = 60}, - [4942] = {.lex_state = 508}, - [4943] = {.lex_state = 508}, - [4944] = {.lex_state = 508}, - [4945] = {.lex_state = 186}, - [4946] = {.lex_state = 1859}, - [4947] = {.lex_state = 65}, - [4948] = {.lex_state = 214}, - [4949] = {.lex_state = 186}, - [4950] = {.lex_state = 508}, - [4951] = {.lex_state = 508}, - [4952] = {.lex_state = 186}, - [4953] = {.lex_state = 60}, - [4954] = {.lex_state = 508}, - [4955] = {.lex_state = 0}, - [4956] = {.lex_state = 0}, - [4957] = {.lex_state = 0}, - [4958] = {.lex_state = 60}, - [4959] = {.lex_state = 0}, - [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 508}, - [4962] = {.lex_state = 508}, + [4926] = {.lex_state = 201}, + [4927] = {.lex_state = 540}, + [4928] = {.lex_state = 253}, + [4929] = {.lex_state = 540}, + [4930] = {.lex_state = 540}, + [4931] = {.lex_state = 540}, + [4932] = {.lex_state = 201}, + [4933] = {.lex_state = 64}, + [4934] = {.lex_state = 64}, + [4935] = {.lex_state = 540}, + [4936] = {.lex_state = 253}, + [4937] = {.lex_state = 540}, + [4938] = {.lex_state = 540}, + [4939] = {.lex_state = 253}, + [4940] = {.lex_state = 64}, + [4941] = {.lex_state = 540}, + [4942] = {.lex_state = 540}, + [4943] = {.lex_state = 202}, + [4944] = {.lex_state = 0}, + [4945] = {.lex_state = 525}, + [4946] = {.lex_state = 201}, + [4947] = {.lex_state = 540}, + [4948] = {.lex_state = 540}, + [4949] = {.lex_state = 540}, + [4950] = {.lex_state = 214}, + [4951] = {.lex_state = 540}, + [4952] = {.lex_state = 540}, + [4953] = {.lex_state = 253}, + [4954] = {.lex_state = 201}, + [4955] = {.lex_state = 540}, + [4956] = {.lex_state = 540}, + [4957] = {.lex_state = 525}, + [4958] = {.lex_state = 0}, + [4959] = {.lex_state = 540}, + [4960] = {.lex_state = 525}, + [4961] = {.lex_state = 525}, + [4962] = {.lex_state = 253}, [4963] = {.lex_state = 214}, - [4964] = {.lex_state = 60}, - [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 0}, - [4967] = {.lex_state = 1853}, - [4968] = {.lex_state = 0}, - [4969] = {.lex_state = 65}, - [4970] = {.lex_state = 0}, - [4971] = {.lex_state = 186}, - [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 186}, - [4974] = {.lex_state = 508}, - [4975] = {.lex_state = 508}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 0}, - [4978] = {.lex_state = 214}, - [4979] = {.lex_state = 65}, + [4964] = {.lex_state = 540}, + [4965] = {.lex_state = 540}, + [4966] = {.lex_state = 64}, + [4967] = {.lex_state = 540}, + [4968] = {.lex_state = 540}, + [4969] = {.lex_state = 540}, + [4970] = {.lex_state = 525}, + [4971] = {.lex_state = 0}, + [4972] = {.lex_state = 540}, + [4973] = {.lex_state = 525}, + [4974] = {.lex_state = 525}, + [4975] = {.lex_state = 242}, + [4976] = {.lex_state = 226}, + [4977] = {.lex_state = 540}, + [4978] = {.lex_state = 540}, + [4979] = {.lex_state = 201}, [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 508}, + [4981] = {.lex_state = 0}, [4982] = {.lex_state = 0}, - [4983] = {.lex_state = 508}, - [4984] = {.lex_state = 508}, - [4985] = {.lex_state = 186}, - [4986] = {.lex_state = 0}, - [4987] = {.lex_state = 0}, - [4988] = {.lex_state = 0}, - [4989] = {.lex_state = 125}, - [4990] = {.lex_state = 186}, - [4991] = {.lex_state = 0}, - [4992] = {.lex_state = 186}, - [4993] = {.lex_state = 508}, - [4994] = {.lex_state = 186}, - [4995] = {.lex_state = 508}, - [4996] = {.lex_state = 1859}, - [4997] = {.lex_state = 65}, - [4998] = {.lex_state = 493}, - [4999] = {.lex_state = 186}, - [5000] = {.lex_state = 65}, - [5001] = {.lex_state = 214}, - [5002] = {.lex_state = 508}, - [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 508}, - [5005] = {.lex_state = 1853}, - [5006] = {.lex_state = 0}, - [5007] = {.lex_state = 508}, - [5008] = {.lex_state = 493}, - [5009] = {.lex_state = 508}, - [5010] = {.lex_state = 186}, - [5011] = {.lex_state = 60}, - [5012] = {.lex_state = 125}, - [5013] = {.lex_state = 214}, - [5014] = {.lex_state = 214}, - [5015] = {.lex_state = 65}, - [5016] = {.lex_state = 65}, - [5017] = {.lex_state = 186}, - [5018] = {.lex_state = 186}, - [5019] = {.lex_state = 508}, - [5020] = {.lex_state = 186}, - [5021] = {.lex_state = 493}, + [4983] = {.lex_state = 201}, + [4984] = {.lex_state = 540}, + [4985] = {.lex_state = 540}, + [4986] = {.lex_state = 540}, + [4987] = {.lex_state = 540}, + [4988] = {.lex_state = 540}, + [4989] = {.lex_state = 540}, + [4990] = {.lex_state = 0}, + [4991] = {.lex_state = 540}, + [4992] = {.lex_state = 525}, + [4993] = {.lex_state = 540}, + [4994] = {.lex_state = 540}, + [4995] = {.lex_state = 525}, + [4996] = {.lex_state = 525}, + [4997] = {.lex_state = 540}, + [4998] = {.lex_state = 540}, + [4999] = {.lex_state = 540}, + [5000] = {.lex_state = 540}, + [5001] = {.lex_state = 540}, + [5002] = {.lex_state = 540}, + [5003] = {.lex_state = 540}, + [5004] = {.lex_state = 540}, + [5005] = {.lex_state = 540}, + [5006] = {.lex_state = 253}, + [5007] = {.lex_state = 64}, + [5008] = {.lex_state = 540}, + [5009] = {.lex_state = 260}, + [5010] = {.lex_state = 253}, + [5011] = {.lex_state = 540}, + [5012] = {.lex_state = 201}, + [5013] = {.lex_state = 540}, + [5014] = {.lex_state = 540}, + [5015] = {.lex_state = 540}, + [5016] = {.lex_state = 540}, + [5017] = {.lex_state = 540}, + [5018] = {.lex_state = 0}, + [5019] = {.lex_state = 540}, + [5020] = {.lex_state = 64}, + [5021] = {.lex_state = 540}, [5022] = {.lex_state = 0}, - [5023] = {.lex_state = 214}, - [5024] = {.lex_state = 65}, - [5025] = {.lex_state = 210}, - [5026] = {.lex_state = 65}, - [5027] = {.lex_state = 508}, - [5028] = {.lex_state = 202}, - [5029] = {.lex_state = 186}, - [5030] = {.lex_state = 210}, - [5031] = {.lex_state = 186}, - [5032] = {.lex_state = 186}, - [5033] = {.lex_state = 65}, - [5034] = {.lex_state = 214}, + [5023] = {.lex_state = 540}, + [5024] = {.lex_state = 540}, + [5025] = {.lex_state = 201}, + [5026] = {.lex_state = 201}, + [5027] = {.lex_state = 540}, + [5028] = {.lex_state = 540}, + [5029] = {.lex_state = 540}, + [5030] = {.lex_state = 540}, + [5031] = {.lex_state = 201}, + [5032] = {.lex_state = 1886}, + [5033] = {.lex_state = 0}, + [5034] = {.lex_state = 540}, [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 508}, - [5037] = {.lex_state = 0}, - [5038] = {.lex_state = 508}, - [5039] = {.lex_state = 0}, - [5040] = {.lex_state = 508}, - [5041] = {.lex_state = 65}, - [5042] = {.lex_state = 508}, - [5043] = {.lex_state = 508}, - [5044] = {.lex_state = 508}, - [5045] = {.lex_state = 214}, - [5046] = {.lex_state = 508}, - [5047] = {.lex_state = 508}, - [5048] = {.lex_state = 508}, - [5049] = {.lex_state = 0}, - [5050] = {.lex_state = 508}, - [5051] = {.lex_state = 186}, - [5052] = {.lex_state = 508}, - [5053] = {.lex_state = 202}, - [5054] = {.lex_state = 493}, - [5055] = {.lex_state = 508}, - [5056] = {.lex_state = 65}, - [5057] = {.lex_state = 493}, - [5058] = {.lex_state = 493}, - [5059] = {.lex_state = 186}, - [5060] = {.lex_state = 508}, - [5061] = {.lex_state = 186}, - [5062] = {.lex_state = 508}, - [5063] = {.lex_state = 508}, - [5064] = {.lex_state = 186}, - [5065] = {.lex_state = 186}, - [5066] = {.lex_state = 65}, - [5067] = {.lex_state = 508}, - [5068] = {.lex_state = 508}, - [5069] = {.lex_state = 508}, - [5070] = {.lex_state = 508}, - [5071] = {.lex_state = 214}, - [5072] = {.lex_state = 0}, - [5073] = {.lex_state = 508}, - [5074] = {.lex_state = 508}, - [5075] = {.lex_state = 508}, - [5076] = {.lex_state = 493}, - [5077] = {.lex_state = 508}, - [5078] = {.lex_state = 508}, - [5079] = {.lex_state = 214}, - [5080] = {.lex_state = 65}, - [5081] = {.lex_state = 508}, - [5082] = {.lex_state = 508}, - [5083] = {.lex_state = 186}, - [5084] = {.lex_state = 493}, - [5085] = {.lex_state = 186}, - [5086] = {.lex_state = 508}, - [5087] = {.lex_state = 493}, - [5088] = {.lex_state = 508}, - [5089] = {.lex_state = 187}, - [5090] = {.lex_state = 508}, - [5091] = {.lex_state = 508}, - [5092] = {.lex_state = 187}, - [5093] = {.lex_state = 508}, - [5094] = {.lex_state = 508}, - [5095] = {.lex_state = 508}, - [5096] = {.lex_state = 508}, - [5097] = {.lex_state = 186}, - [5098] = {.lex_state = 508}, - [5099] = {.lex_state = 508}, - [5100] = {.lex_state = 508}, - [5101] = {.lex_state = 508}, - [5102] = {.lex_state = 508}, - [5103] = {.lex_state = 508}, - [5104] = {.lex_state = 0}, - [5105] = {.lex_state = 508}, - [5106] = {.lex_state = 508}, - [5107] = {.lex_state = 508}, - [5108] = {.lex_state = 204}, - [5109] = {.lex_state = 508}, - [5110] = {.lex_state = 508}, - [5111] = {.lex_state = 508}, - [5112] = {.lex_state = 214}, - [5113] = {.lex_state = 60}, - [5114] = {.lex_state = 0}, - [5115] = {.lex_state = 60}, - [5116] = {.lex_state = 60}, - [5117] = {.lex_state = 60}, - [5118] = {.lex_state = 65}, - [5119] = {.lex_state = 186}, - [5120] = {.lex_state = 508}, - [5121] = {.lex_state = 508}, - [5122] = {.lex_state = 186}, - [5123] = {.lex_state = 508}, - [5124] = {.lex_state = 508}, - [5125] = {.lex_state = 508}, - [5126] = {.lex_state = 508}, - [5127] = {.lex_state = 508}, - [5128] = {.lex_state = 508}, - [5129] = {.lex_state = 0}, - [5130] = {.lex_state = 65}, - [5131] = {.lex_state = 508}, - [5132] = {.lex_state = 186}, - [5133] = {.lex_state = 508}, - [5134] = {.lex_state = 508}, - [5135] = {.lex_state = 508}, - [5136] = {.lex_state = 508}, - [5137] = {.lex_state = 508}, - [5138] = {.lex_state = 508}, - [5139] = {.lex_state = 508}, + [5036] = {.lex_state = 201}, + [5037] = {.lex_state = 525}, + [5038] = {.lex_state = 0}, + [5039] = {.lex_state = 540}, + [5040] = {.lex_state = 540}, + [5041] = {.lex_state = 540}, + [5042] = {.lex_state = 201}, + [5043] = {.lex_state = 540}, + [5044] = {.lex_state = 201}, + [5045] = {.lex_state = 201}, + [5046] = {.lex_state = 201}, + [5047] = {.lex_state = 0}, + [5048] = {.lex_state = 64}, + [5049] = {.lex_state = 253}, + [5050] = {.lex_state = 0}, + [5051] = {.lex_state = 201}, + [5052] = {.lex_state = 540}, + [5053] = {.lex_state = 64}, + [5054] = {.lex_state = 540}, + [5055] = {.lex_state = 64}, + [5056] = {.lex_state = 228}, + [5057] = {.lex_state = 201}, + [5058] = {.lex_state = 540}, + [5059] = {.lex_state = 0}, + [5060] = {.lex_state = 64}, + [5061] = {.lex_state = 540}, + [5062] = {.lex_state = 64}, + [5063] = {.lex_state = 253}, + [5064] = {.lex_state = 201}, + [5065] = {.lex_state = 201}, + [5066] = {.lex_state = 540}, + [5067] = {.lex_state = 201}, + [5068] = {.lex_state = 64}, + [5069] = {.lex_state = 540}, + [5070] = {.lex_state = 540}, + [5071] = {.lex_state = 540}, + [5072] = {.lex_state = 540}, + [5073] = {.lex_state = 201}, + [5074] = {.lex_state = 540}, + [5075] = {.lex_state = 540}, + [5076] = {.lex_state = 540}, + [5077] = {.lex_state = 253}, + [5078] = {.lex_state = 64}, + [5079] = {.lex_state = 81}, + [5080] = {.lex_state = 201}, + [5081] = {.lex_state = 0}, + [5082] = {.lex_state = 540}, + [5083] = {.lex_state = 201}, + [5084] = {.lex_state = 540}, + [5085] = {.lex_state = 540}, + [5086] = {.lex_state = 540}, + [5087] = {.lex_state = 540}, + [5088] = {.lex_state = 540}, + [5089] = {.lex_state = 540}, + [5090] = {.lex_state = 540}, + [5091] = {.lex_state = 253}, + [5092] = {.lex_state = 64}, + [5093] = {.lex_state = 201}, + [5094] = {.lex_state = 540}, + [5095] = {.lex_state = 201}, + [5096] = {.lex_state = 0}, + [5097] = {.lex_state = 0}, + [5098] = {.lex_state = 201}, + [5099] = {.lex_state = 540}, + [5100] = {.lex_state = 540}, + [5101] = {.lex_state = 540}, + [5102] = {.lex_state = 0}, + [5103] = {.lex_state = 540}, + [5104] = {.lex_state = 540}, + [5105] = {.lex_state = 540}, + [5106] = {.lex_state = 540}, + [5107] = {.lex_state = 540}, + [5108] = {.lex_state = 201}, + [5109] = {.lex_state = 64}, + [5110] = {.lex_state = 253}, + [5111] = {.lex_state = 0}, + [5112] = {.lex_state = 0}, + [5113] = {.lex_state = 540}, + [5114] = {.lex_state = 201}, + [5115] = {.lex_state = 201}, + [5116] = {.lex_state = 64}, + [5117] = {.lex_state = 201}, + [5118] = {.lex_state = 64}, + [5119] = {.lex_state = 64}, + [5120] = {.lex_state = 540}, + [5121] = {.lex_state = 540}, + [5122] = {.lex_state = 540}, + [5123] = {.lex_state = 0}, + [5124] = {.lex_state = 540}, + [5125] = {.lex_state = 0}, + [5126] = {.lex_state = 202}, + [5127] = {.lex_state = 0}, + [5128] = {.lex_state = 201}, + [5129] = {.lex_state = 525}, + [5130] = {.lex_state = 64}, + [5131] = {.lex_state = 540}, + [5132] = {.lex_state = 540}, + [5133] = {.lex_state = 540}, + [5134] = {.lex_state = 0}, + [5135] = {.lex_state = 0}, + [5136] = {.lex_state = 540}, + [5137] = {.lex_state = 253}, + [5138] = {.lex_state = 201}, + [5139] = {.lex_state = 540}, [5140] = {.lex_state = 0}, [5141] = {.lex_state = 0}, - [5142] = {.lex_state = 0}, - [5143] = {.lex_state = 508}, - [5144] = {.lex_state = 214}, - [5145] = {.lex_state = 65}, - [5146] = {.lex_state = 508}, - [5147] = {.lex_state = 186}, - [5148] = {.lex_state = 508}, - [5149] = {.lex_state = 508}, - [5150] = {.lex_state = 186}, - [5151] = {.lex_state = 508}, - [5152] = {.lex_state = 508}, - [5153] = {.lex_state = 508}, - [5154] = {.lex_state = 508}, - [5155] = {.lex_state = 0}, - [5156] = {.lex_state = 0}, - [5157] = {.lex_state = 65}, - [5158] = {.lex_state = 508}, - [5159] = {.lex_state = 508}, - [5160] = {.lex_state = 508}, - [5161] = {.lex_state = 508}, - [5162] = {.lex_state = 186}, - [5163] = {.lex_state = 508}, - [5164] = {.lex_state = 508}, - [5165] = {.lex_state = 508}, - [5166] = {.lex_state = 508}, - [5167] = {.lex_state = 508}, - [5168] = {.lex_state = 508}, - [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 508}, - [5171] = {.lex_state = 186}, - [5172] = {.lex_state = 214}, - [5173] = {.lex_state = 508}, - [5174] = {.lex_state = 186}, - [5175] = {.lex_state = 186}, - [5176] = {.lex_state = 508}, - [5177] = {.lex_state = 508}, - [5178] = {.lex_state = 508}, - [5179] = {.lex_state = 0}, - [5180] = {.lex_state = 508}, - [5181] = {.lex_state = 508}, - [5182] = {.lex_state = 0}, - [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 508}, - [5185] = {.lex_state = 186}, + [5142] = {.lex_state = 253}, + [5143] = {.lex_state = 64}, + [5144] = {.lex_state = 0}, + [5145] = {.lex_state = 0}, + [5146] = {.lex_state = 0}, + [5147] = {.lex_state = 540}, + [5148] = {.lex_state = 201}, + [5149] = {.lex_state = 540}, + [5150] = {.lex_state = 540}, + [5151] = {.lex_state = 540}, + [5152] = {.lex_state = 64}, + [5153] = {.lex_state = 253}, + [5154] = {.lex_state = 540}, + [5155] = {.lex_state = 540}, + [5156] = {.lex_state = 540}, + [5157] = {.lex_state = 201}, + [5158] = {.lex_state = 201}, + [5159] = {.lex_state = 540}, + [5160] = {.lex_state = 201}, + [5161] = {.lex_state = 540}, + [5162] = {.lex_state = 0}, + [5163] = {.lex_state = 540}, + [5164] = {.lex_state = 0}, + [5165] = {.lex_state = 0}, + [5166] = {.lex_state = 64}, + [5167] = {.lex_state = 0}, + [5168] = {.lex_state = 64}, + [5169] = {.lex_state = 64}, + [5170] = {.lex_state = 64}, + [5171] = {.lex_state = 540}, + [5172] = {.lex_state = 540}, + [5173] = {.lex_state = 540}, + [5174] = {.lex_state = 0}, + [5175] = {.lex_state = 0}, + [5176] = {.lex_state = 540}, + [5177] = {.lex_state = 0}, + [5178] = {.lex_state = 540}, + [5179] = {.lex_state = 540}, + [5180] = {.lex_state = 201}, + [5181] = {.lex_state = 64}, + [5182] = {.lex_state = 540}, + [5183] = {.lex_state = 540}, + [5184] = {.lex_state = 540}, + [5185] = {.lex_state = 0}, [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 508}, - [5188] = {.lex_state = 65}, - [5189] = {.lex_state = 65}, - [5190] = {.lex_state = 214}, - [5191] = {.lex_state = 508}, - [5192] = {.lex_state = 508}, - [5193] = {.lex_state = 508}, - [5194] = {.lex_state = 60}, - [5195] = {.lex_state = 0}, - [5196] = {.lex_state = 508}, - [5197] = {.lex_state = 0}, - [5198] = {.lex_state = 0}, - [5199] = {.lex_state = 186}, - [5200] = {.lex_state = 508}, - [5201] = {.lex_state = 508}, - [5202] = {.lex_state = 186}, - [5203] = {.lex_state = 60}, - [5204] = {.lex_state = 508}, - [5205] = {.lex_state = 493}, + [5187] = {.lex_state = 0}, + [5188] = {.lex_state = 540}, + [5189] = {.lex_state = 540}, + [5190] = {.lex_state = 1892}, + [5191] = {.lex_state = 253}, + [5192] = {.lex_state = 540}, + [5193] = {.lex_state = 0}, + [5194] = {.lex_state = 64}, + [5195] = {.lex_state = 228}, + [5196] = {.lex_state = 243}, + [5197] = {.lex_state = 540}, + [5198] = {.lex_state = 540}, + [5199] = {.lex_state = 0}, + [5200] = {.lex_state = 1886}, + [5201] = {.lex_state = 540}, + [5202] = {.lex_state = 540}, + [5203] = {.lex_state = 64}, + [5204] = {.lex_state = 64}, + [5205] = {.lex_state = 226}, [5206] = {.lex_state = 0}, - [5207] = {.lex_state = 508}, - [5208] = {.lex_state = 0}, - [5209] = {.lex_state = 214}, - [5210] = {.lex_state = 65}, - [5211] = {.lex_state = 508}, - [5212] = {.lex_state = 508}, - [5213] = {.lex_state = 508}, - [5214] = {.lex_state = 60}, - [5215] = {.lex_state = 186}, - [5216] = {.lex_state = 214}, - [5217] = {.lex_state = 508}, - [5218] = {.lex_state = 508}, - [5219] = {.lex_state = 508}, - [5220] = {.lex_state = 65}, - [5221] = {.lex_state = 186}, - [5222] = {.lex_state = 186}, - [5223] = {.lex_state = 0}, - [5224] = {.lex_state = 65}, - [5225] = {.lex_state = 508}, - [5226] = {.lex_state = 186}, - [5227] = {.lex_state = 186}, - [5228] = {.lex_state = 508}, - [5229] = {.lex_state = 508}, - [5230] = {.lex_state = 508}, - [5231] = {.lex_state = 508}, - [5232] = {.lex_state = 508}, - [5233] = {.lex_state = 508}, + [5207] = {.lex_state = 253}, + [5208] = {.lex_state = 64}, + [5209] = {.lex_state = 201}, + [5210] = {.lex_state = 201}, + [5211] = {.lex_state = 64}, + [5212] = {.lex_state = 0}, + [5213] = {.lex_state = 201}, + [5214] = {.lex_state = 1892}, + [5215] = {.lex_state = 81}, + [5216] = {.lex_state = 540}, + [5217] = {.lex_state = 540}, + [5218] = {.lex_state = 64}, + [5219] = {.lex_state = 253}, + [5220] = {.lex_state = 201}, + [5221] = {.lex_state = 64}, + [5222] = {.lex_state = 201}, + [5223] = {.lex_state = 243}, + [5224] = {.lex_state = 201}, + [5225] = {.lex_state = 201}, + [5226] = {.lex_state = 64}, + [5227] = {.lex_state = 253}, + [5228] = {.lex_state = 64}, + [5229] = {.lex_state = 201}, + [5230] = {.lex_state = 540}, + [5231] = {.lex_state = 540}, + [5232] = {.lex_state = 0}, + [5233] = {.lex_state = 0}, [5234] = {.lex_state = 0}, - [5235] = {.lex_state = 186}, + [5235] = {.lex_state = 540}, [5236] = {.lex_state = 0}, - [5237] = {.lex_state = 186}, - [5238] = {.lex_state = 508}, - [5239] = {.lex_state = 508}, - [5240] = {.lex_state = 508}, - [5241] = {.lex_state = 186}, - [5242] = {.lex_state = 186}, - [5243] = {.lex_state = 186}, - [5244] = {.lex_state = 0}, - [5245] = {.lex_state = 508}, - [5246] = {.lex_state = 508}, - [5247] = {.lex_state = 508}, - [5248] = {.lex_state = 508}, - [5249] = {.lex_state = 508}, - [5250] = {.lex_state = 186}, - [5251] = {.lex_state = 186}, - [5252] = {.lex_state = 186}, - [5253] = {.lex_state = 186}, - [5254] = {.lex_state = 186}, - [5255] = {.lex_state = 508}, - [5256] = {.lex_state = 0}, - [5257] = {.lex_state = 186}, - [5258] = {.lex_state = 508}, - [5259] = {.lex_state = 508}, - [5260] = {.lex_state = 186}, - [5261] = {.lex_state = 508}, - [5262] = {.lex_state = 0}, - [5263] = {.lex_state = 508}, - [5264] = {.lex_state = 186}, - [5265] = {.lex_state = 508}, - [5266] = {.lex_state = 508}, - [5267] = {.lex_state = 508}, - [5268] = {.lex_state = 508}, - [5269] = {.lex_state = 508}, - [5270] = {.lex_state = 508}, - [5271] = {.lex_state = 508}, - [5272] = {.lex_state = 0}, - [5273] = {.lex_state = 0}, - [5274] = {.lex_state = 214}, - [5275] = {.lex_state = 65}, - [5276] = {.lex_state = 0}, - [5277] = {.lex_state = 508}, - [5278] = {.lex_state = 186}, - [5279] = {.lex_state = 204}, - [5280] = {.lex_state = 186}, - [5281] = {.lex_state = 508}, - [5282] = {.lex_state = 508}, - [5283] = {.lex_state = 508}, - [5284] = {.lex_state = 508}, - [5285] = {.lex_state = 186}, - [5286] = {.lex_state = 186}, - [5287] = {.lex_state = 508}, - [5288] = {.lex_state = 202}, - [5289] = {.lex_state = 60}, - [5290] = {.lex_state = 65}, - [5291] = {.lex_state = 208}, - [5292] = {.lex_state = 65}, - [5293] = {.lex_state = 584}, - [5294] = {.lex_state = 65}, - [5295] = {.lex_state = 60}, - [5296] = {.lex_state = 60}, - [5297] = {.lex_state = 60}, - [5298] = {.lex_state = 65}, - [5299] = {.lex_state = 60}, - [5300] = {.lex_state = 65}, - [5301] = {.lex_state = 208}, - [5302] = {.lex_state = 65}, - [5303] = {.lex_state = 60}, - [5304] = {.lex_state = 65}, - [5305] = {.lex_state = 493}, - [5306] = {.lex_state = 65}, - [5307] = {.lex_state = 208}, - [5308] = {.lex_state = 0}, - [5309] = {.lex_state = 493}, - [5310] = {.lex_state = 65}, - [5311] = {.lex_state = 65}, - [5312] = {.lex_state = 493}, - [5313] = {.lex_state = 60}, - [5314] = {.lex_state = 60}, - [5315] = {.lex_state = 208}, - [5316] = {.lex_state = 65}, - [5317] = {.lex_state = 65}, - [5318] = {.lex_state = 208}, - [5319] = {.lex_state = 65}, - [5320] = {.lex_state = 65}, - [5321] = {.lex_state = 584}, - [5322] = {.lex_state = 65}, - [5323] = {.lex_state = 208}, - [5324] = {.lex_state = 493}, - [5325] = {.lex_state = 65}, - [5326] = {.lex_state = 65}, - [5327] = {.lex_state = 584}, - [5328] = {.lex_state = 493}, - [5329] = {.lex_state = 493}, - [5330] = {.lex_state = 493}, - [5331] = {.lex_state = 493}, - [5332] = {.lex_state = 65}, - [5333] = {.lex_state = 508}, - [5334] = {.lex_state = 493}, - [5335] = {.lex_state = 508}, - [5336] = {.lex_state = 493}, - [5337] = {.lex_state = 223}, - [5338] = {.lex_state = 65}, - [5339] = {.lex_state = 584}, - [5340] = {.lex_state = 65}, - [5341] = {.lex_state = 65}, - [5342] = {.lex_state = 65}, - [5343] = {.lex_state = 223}, - [5344] = {.lex_state = 493}, - [5345] = {.lex_state = 493}, - [5346] = {.lex_state = 508}, - [5347] = {.lex_state = 493}, - [5348] = {.lex_state = 208}, - [5349] = {.lex_state = 65}, - [5350] = {.lex_state = 65}, - [5351] = {.lex_state = 493}, - [5352] = {.lex_state = 493}, - [5353] = {.lex_state = 0}, - [5354] = {.lex_state = 584}, - [5355] = {.lex_state = 208}, - [5356] = {.lex_state = 227}, - [5357] = {.lex_state = 208}, - [5358] = {.lex_state = 493}, - [5359] = {.lex_state = 65}, - [5360] = {.lex_state = 208}, - [5361] = {.lex_state = 224}, - [5362] = {.lex_state = 65}, - [5363] = {.lex_state = 208}, - [5364] = {.lex_state = 65}, - [5365] = {.lex_state = 65}, - [5366] = {.lex_state = 65}, - [5367] = {.lex_state = 60}, - [5368] = {.lex_state = 65}, - [5369] = {.lex_state = 65}, - [5370] = {.lex_state = 65}, - [5371] = {.lex_state = 208}, - [5372] = {.lex_state = 65}, - [5373] = {.lex_state = 65}, - [5374] = {.lex_state = 65}, - [5375] = {.lex_state = 508}, - [5376] = {.lex_state = 60}, - [5377] = {.lex_state = 65}, - [5378] = {.lex_state = 224}, - [5379] = {.lex_state = 65}, - [5380] = {.lex_state = 65}, - [5381] = {.lex_state = 65}, - [5382] = {.lex_state = 208}, - [5383] = {.lex_state = 65}, - [5384] = {.lex_state = 65}, - [5385] = {.lex_state = 508}, - [5386] = {.lex_state = 208}, - [5387] = {.lex_state = 493}, - [5388] = {.lex_state = 60}, - [5389] = {.lex_state = 60}, - [5390] = {.lex_state = 60}, - [5391] = {.lex_state = 493}, - [5392] = {.lex_state = 60}, - [5393] = {.lex_state = 227}, - [5394] = {.lex_state = 60}, - [5395] = {.lex_state = 227}, - [5396] = {.lex_state = 65}, - [5397] = {.lex_state = 186}, - [5398] = {.lex_state = 208}, - [5399] = {.lex_state = 60}, - [5400] = {.lex_state = 65}, - [5401] = {.lex_state = 493}, - [5402] = {.lex_state = 65}, - [5403] = {.lex_state = 493}, - [5404] = {.lex_state = 208}, - [5405] = {.lex_state = 208}, - [5406] = {.lex_state = 65}, - [5407] = {.lex_state = 211}, - [5408] = {.lex_state = 493}, - [5409] = {.lex_state = 208}, - [5410] = {.lex_state = 65}, - [5411] = {.lex_state = 65}, - [5412] = {.lex_state = 493}, - [5413] = {.lex_state = 65}, - [5414] = {.lex_state = 65}, - [5415] = {.lex_state = 60}, - [5416] = {.lex_state = 493}, - [5417] = {.lex_state = 208}, - [5418] = {.lex_state = 208}, - [5419] = {.lex_state = 208}, - [5420] = {.lex_state = 65}, - [5421] = {.lex_state = 219}, - [5422] = {.lex_state = 493}, - [5423] = {.lex_state = 65}, - [5424] = {.lex_state = 65}, - [5425] = {.lex_state = 60}, - [5426] = {.lex_state = 208}, - [5427] = {.lex_state = 211}, - [5428] = {.lex_state = 65}, - [5429] = {.lex_state = 493}, - [5430] = {.lex_state = 60}, - [5431] = {.lex_state = 211}, - [5432] = {.lex_state = 65}, - [5433] = {.lex_state = 208}, - [5434] = {.lex_state = 211}, - [5435] = {.lex_state = 65}, - [5436] = {.lex_state = 65}, - [5437] = {.lex_state = 493}, - [5438] = {.lex_state = 493}, - [5439] = {.lex_state = 65}, - [5440] = {.lex_state = 211}, - [5441] = {.lex_state = 65}, - [5442] = {.lex_state = 65}, - [5443] = {.lex_state = 584}, - [5444] = {.lex_state = 220}, - [5445] = {.lex_state = 219}, - [5446] = {.lex_state = 65}, - [5447] = {.lex_state = 208}, - [5448] = {.lex_state = 220}, - [5449] = {.lex_state = 60}, - [5450] = {.lex_state = 0}, - [5451] = {.lex_state = 208}, - [5452] = {.lex_state = 65}, + [5237] = {.lex_state = 0}, + [5238] = {.lex_state = 64}, + [5239] = {.lex_state = 0}, + [5240] = {.lex_state = 201}, + [5241] = {.lex_state = 253}, + [5242] = {.lex_state = 0}, + [5243] = {.lex_state = 0}, + [5244] = {.lex_state = 64}, + [5245] = {.lex_state = 0}, + [5246] = {.lex_state = 540}, + [5247] = {.lex_state = 201}, + [5248] = {.lex_state = 0}, + [5249] = {.lex_state = 0}, + [5250] = {.lex_state = 201}, + [5251] = {.lex_state = 0}, + [5252] = {.lex_state = 201}, + [5253] = {.lex_state = 540}, + [5254] = {.lex_state = 540}, + [5255] = {.lex_state = 540}, + [5256] = {.lex_state = 540}, + [5257] = {.lex_state = 540}, + [5258] = {.lex_state = 540}, + [5259] = {.lex_state = 540}, + [5260] = {.lex_state = 540}, + [5261] = {.lex_state = 0}, + [5262] = {.lex_state = 540}, + [5263] = {.lex_state = 540}, + [5264] = {.lex_state = 540}, + [5265] = {.lex_state = 540}, + [5266] = {.lex_state = 540}, + [5267] = {.lex_state = 540}, + [5268] = {.lex_state = 540}, + [5269] = {.lex_state = 540}, + [5270] = {.lex_state = 540}, + [5271] = {.lex_state = 540}, + [5272] = {.lex_state = 253}, + [5273] = {.lex_state = 64}, + [5274] = {.lex_state = 540}, + [5275] = {.lex_state = 201}, + [5276] = {.lex_state = 540}, + [5277] = {.lex_state = 540}, + [5278] = {.lex_state = 540}, + [5279] = {.lex_state = 540}, + [5280] = {.lex_state = 540}, + [5281] = {.lex_state = 540}, + [5282] = {.lex_state = 540}, + [5283] = {.lex_state = 201}, + [5284] = {.lex_state = 540}, + [5285] = {.lex_state = 540}, + [5286] = {.lex_state = 540}, + [5287] = {.lex_state = 540}, + [5288] = {.lex_state = 540}, + [5289] = {.lex_state = 540}, + [5290] = {.lex_state = 0}, + [5291] = {.lex_state = 201}, + [5292] = {.lex_state = 201}, + [5293] = {.lex_state = 201}, + [5294] = {.lex_state = 540}, + [5295] = {.lex_state = 201}, + [5296] = {.lex_state = 201}, + [5297] = {.lex_state = 0}, + [5298] = {.lex_state = 201}, + [5299] = {.lex_state = 201}, + [5300] = {.lex_state = 201}, + [5301] = {.lex_state = 540}, + [5302] = {.lex_state = 540}, + [5303] = {.lex_state = 201}, + [5304] = {.lex_state = 201}, + [5305] = {.lex_state = 201}, + [5306] = {.lex_state = 201}, + [5307] = {.lex_state = 540}, + [5308] = {.lex_state = 540}, + [5309] = {.lex_state = 540}, + [5310] = {.lex_state = 540}, + [5311] = {.lex_state = 0}, + [5312] = {.lex_state = 540}, + [5313] = {.lex_state = 540}, + [5314] = {.lex_state = 540}, + [5315] = {.lex_state = 540}, + [5316] = {.lex_state = 540}, + [5317] = {.lex_state = 540}, + [5318] = {.lex_state = 0}, + [5319] = {.lex_state = 253}, + [5320] = {.lex_state = 64}, + [5321] = {.lex_state = 540}, + [5322] = {.lex_state = 540}, + [5323] = {.lex_state = 201}, + [5324] = {.lex_state = 540}, + [5325] = {.lex_state = 540}, + [5326] = {.lex_state = 540}, + [5327] = {.lex_state = 201}, + [5328] = {.lex_state = 201}, + [5329] = {.lex_state = 201}, + [5330] = {.lex_state = 540}, + [5331] = {.lex_state = 540}, + [5332] = {.lex_state = 201}, + [5333] = {.lex_state = 253}, + [5334] = {.lex_state = 64}, + [5335] = {.lex_state = 201}, + [5336] = {.lex_state = 201}, + [5337] = {.lex_state = 0}, + [5338] = {.lex_state = 201}, + [5339] = {.lex_state = 64}, + [5340] = {.lex_state = 64}, + [5341] = {.lex_state = 64}, + [5342] = {.lex_state = 64}, + [5343] = {.lex_state = 525}, + [5344] = {.lex_state = 64}, + [5345] = {.lex_state = 266}, + [5346] = {.lex_state = 269}, + [5347] = {.lex_state = 525}, + [5348] = {.lex_state = 525}, + [5349] = {.lex_state = 64}, + [5350] = {.lex_state = 64}, + [5351] = {.lex_state = 616}, + [5352] = {.lex_state = 525}, + [5353] = {.lex_state = 64}, + [5354] = {.lex_state = 232}, + [5355] = {.lex_state = 64}, + [5356] = {.lex_state = 64}, + [5357] = {.lex_state = 232}, + [5358] = {.lex_state = 232}, + [5359] = {.lex_state = 232}, + [5360] = {.lex_state = 64}, + [5361] = {.lex_state = 64}, + [5362] = {.lex_state = 64}, + [5363] = {.lex_state = 616}, + [5364] = {.lex_state = 525}, + [5365] = {.lex_state = 64}, + [5366] = {.lex_state = 52}, + [5367] = {.lex_state = 64}, + [5368] = {.lex_state = 265}, + [5369] = {.lex_state = 64}, + [5370] = {.lex_state = 232}, + [5371] = {.lex_state = 232}, + [5372] = {.lex_state = 52}, + [5373] = {.lex_state = 64}, + [5374] = {.lex_state = 64}, + [5375] = {.lex_state = 64}, + [5376] = {.lex_state = 232}, + [5377] = {.lex_state = 266}, + [5378] = {.lex_state = 64}, + [5379] = {.lex_state = 0}, + [5380] = {.lex_state = 232}, + [5381] = {.lex_state = 64}, + [5382] = {.lex_state = 52}, + [5383] = {.lex_state = 64}, + [5384] = {.lex_state = 52}, + [5385] = {.lex_state = 64}, + [5386] = {.lex_state = 64}, + [5387] = {.lex_state = 525}, + [5388] = {.lex_state = 0}, + [5389] = {.lex_state = 232}, + [5390] = {.lex_state = 64}, + [5391] = {.lex_state = 64}, + [5392] = {.lex_state = 232}, + [5393] = {.lex_state = 525}, + [5394] = {.lex_state = 64}, + [5395] = {.lex_state = 64}, + [5396] = {.lex_state = 232}, + [5397] = {.lex_state = 525}, + [5398] = {.lex_state = 525}, + [5399] = {.lex_state = 525}, + [5400] = {.lex_state = 525}, + [5401] = {.lex_state = 525}, + [5402] = {.lex_state = 226}, + [5403] = {.lex_state = 232}, + [5404] = {.lex_state = 64}, + [5405] = {.lex_state = 525}, + [5406] = {.lex_state = 64}, + [5407] = {.lex_state = 616}, + [5408] = {.lex_state = 232}, + [5409] = {.lex_state = 64}, + [5410] = {.lex_state = 232}, + [5411] = {.lex_state = 64}, + [5412] = {.lex_state = 64}, + [5413] = {.lex_state = 64}, + [5414] = {.lex_state = 64}, + [5415] = {.lex_state = 232}, + [5416] = {.lex_state = 64}, + [5417] = {.lex_state = 525}, + [5418] = {.lex_state = 64}, + [5419] = {.lex_state = 232}, + [5420] = {.lex_state = 244}, + [5421] = {.lex_state = 232}, + [5422] = {.lex_state = 64}, + [5423] = {.lex_state = 64}, + [5424] = {.lex_state = 64}, + [5425] = {.lex_state = 64}, + [5426] = {.lex_state = 64}, + [5427] = {.lex_state = 232}, + [5428] = {.lex_state = 64}, + [5429] = {.lex_state = 64}, + [5430] = {.lex_state = 64}, + [5431] = {.lex_state = 64}, + [5432] = {.lex_state = 64}, + [5433] = {.lex_state = 64}, + [5434] = {.lex_state = 64}, + [5435] = {.lex_state = 232}, + [5436] = {.lex_state = 540}, + [5437] = {.lex_state = 540}, + [5438] = {.lex_state = 525}, + [5439] = {.lex_state = 525}, + [5440] = {.lex_state = 64}, + [5441] = {.lex_state = 525}, + [5442] = {.lex_state = 525}, + [5443] = {.lex_state = 525}, + [5444] = {.lex_state = 525}, + [5445] = {.lex_state = 64}, + [5446] = {.lex_state = 616}, + [5447] = {.lex_state = 525}, + [5448] = {.lex_state = 259}, + [5449] = {.lex_state = 232}, + [5450] = {.lex_state = 64}, + [5451] = {.lex_state = 232}, + [5452] = {.lex_state = 616}, [5453] = {.lex_state = 65}, - [5454] = {.lex_state = 65}, - [5455] = {.lex_state = 208}, - [5456] = {.lex_state = 60}, - [5457] = {.lex_state = 60}, - [5458] = {.lex_state = 65}, - [5459] = {.lex_state = 60}, - [5460] = {.lex_state = 60}, - [5461] = {.lex_state = 65}, - [5462] = {.lex_state = 208}, - [5463] = {.lex_state = 208}, - [5464] = {.lex_state = 65}, - [5465] = {.lex_state = 0}, - [5466] = {.lex_state = 0}, - [5467] = {.lex_state = 0}, - [5468] = {.lex_state = 65}, - [5469] = {.lex_state = 0}, - [5470] = {.lex_state = 65}, - [5471] = {.lex_state = 0}, - [5472] = {.lex_state = 0}, - [5473] = {.lex_state = 1854}, - [5474] = {.lex_state = 0}, - [5475] = {.lex_state = 0}, - [5476] = {.lex_state = 0}, - [5477] = {.lex_state = 0}, - [5478] = {.lex_state = 225}, - [5479] = {.lex_state = 0}, - [5480] = {.lex_state = 221}, - [5481] = {.lex_state = 0}, - [5482] = {.lex_state = 65}, - [5483] = {.lex_state = 0}, - [5484] = {.lex_state = 209}, - [5485] = {.lex_state = 212}, - [5486] = {.lex_state = 0}, - [5487] = {.lex_state = 212}, - [5488] = {.lex_state = 209}, - [5489] = {.lex_state = 0}, - [5490] = {.lex_state = 0}, - [5491] = {.lex_state = 0}, - [5492] = {.lex_state = 0}, - [5493] = {.lex_state = 212}, - [5494] = {.lex_state = 60}, - [5495] = {.lex_state = 225}, - [5496] = {.lex_state = 209}, - [5497] = {.lex_state = 0}, - [5498] = {.lex_state = 65}, - [5499] = {.lex_state = 0}, - [5500] = {.lex_state = 0}, - [5501] = {.lex_state = 209}, - [5502] = {.lex_state = 65}, - [5503] = {.lex_state = 65}, + [5454] = {.lex_state = 64}, + [5455] = {.lex_state = 64}, + [5456] = {.lex_state = 64}, + [5457] = {.lex_state = 244}, + [5458] = {.lex_state = 616}, + [5459] = {.lex_state = 64}, + [5460] = {.lex_state = 64}, + [5461] = {.lex_state = 232}, + [5462] = {.lex_state = 64}, + [5463] = {.lex_state = 64}, + [5464] = {.lex_state = 64}, + [5465] = {.lex_state = 64}, + [5466] = {.lex_state = 64}, + [5467] = {.lex_state = 261}, + [5468] = {.lex_state = 232}, + [5469] = {.lex_state = 64}, + [5470] = {.lex_state = 64}, + [5471] = {.lex_state = 64}, + [5472] = {.lex_state = 244}, + [5473] = {.lex_state = 525}, + [5474] = {.lex_state = 540}, + [5475] = {.lex_state = 269}, + [5476] = {.lex_state = 540}, + [5477] = {.lex_state = 540}, + [5478] = {.lex_state = 65}, + [5479] = {.lex_state = 244}, + [5480] = {.lex_state = 64}, + [5481] = {.lex_state = 232}, + [5482] = {.lex_state = 232}, + [5483] = {.lex_state = 32}, + [5484] = {.lex_state = 64}, + [5485] = {.lex_state = 64}, + [5486] = {.lex_state = 64}, + [5487] = {.lex_state = 64}, + [5488] = {.lex_state = 64}, + [5489] = {.lex_state = 64}, + [5490] = {.lex_state = 64}, + [5491] = {.lex_state = 232}, + [5492] = {.lex_state = 525}, + [5493] = {.lex_state = 525}, + [5494] = {.lex_state = 525}, + [5495] = {.lex_state = 64}, + [5496] = {.lex_state = 64}, + [5497] = {.lex_state = 232}, + [5498] = {.lex_state = 64}, + [5499] = {.lex_state = 64}, + [5500] = {.lex_state = 64}, + [5501] = {.lex_state = 525}, + [5502] = {.lex_state = 64}, + [5503] = {.lex_state = 265}, [5504] = {.lex_state = 0}, - [5505] = {.lex_state = 0}, - [5506] = {.lex_state = 0}, - [5507] = {.lex_state = 0}, - [5508] = {.lex_state = 0}, - [5509] = {.lex_state = 0}, - [5510] = {.lex_state = 212}, - [5511] = {.lex_state = 65}, - [5512] = {.lex_state = 0}, - [5513] = {.lex_state = 0}, - [5514] = {.lex_state = 0}, - [5515] = {.lex_state = 65}, - [5516] = {.lex_state = 202}, - [5517] = {.lex_state = 212}, - [5518] = {.lex_state = 65}, - [5519] = {.lex_state = 0}, - [5520] = {.lex_state = 0}, - [5521] = {.lex_state = 0}, - [5522] = {.lex_state = 209}, - [5523] = {.lex_state = 0}, + [5505] = {.lex_state = 64}, + [5506] = {.lex_state = 244}, + [5507] = {.lex_state = 64}, + [5508] = {.lex_state = 64}, + [5509] = {.lex_state = 64}, + [5510] = {.lex_state = 64}, + [5511] = {.lex_state = 64}, + [5512] = {.lex_state = 64}, + [5513] = {.lex_state = 64}, + [5514] = {.lex_state = 269}, + [5515] = {.lex_state = 525}, + [5516] = {.lex_state = 201}, + [5517] = {.lex_state = 232}, + [5518] = {.lex_state = 262}, + [5519] = {.lex_state = 262}, + [5520] = {.lex_state = 259}, + [5521] = {.lex_state = 64}, + [5522] = {.lex_state = 0}, + [5523] = {.lex_state = 252}, [5524] = {.lex_state = 0}, - [5525] = {.lex_state = 65}, - [5526] = {.lex_state = 65}, + [5525] = {.lex_state = 267}, + [5526] = {.lex_state = 0}, [5527] = {.lex_state = 0}, - [5528] = {.lex_state = 209}, - [5529] = {.lex_state = 208}, - [5530] = {.lex_state = 225}, - [5531] = {.lex_state = 209}, + [5528] = {.lex_state = 0}, + [5529] = {.lex_state = 0}, + [5530] = {.lex_state = 0}, + [5531] = {.lex_state = 0}, [5532] = {.lex_state = 0}, [5533] = {.lex_state = 0}, [5534] = {.lex_state = 0}, - [5535] = {.lex_state = 60}, + [5535] = {.lex_state = 0}, [5536] = {.lex_state = 0}, [5537] = {.lex_state = 0}, [5538] = {.lex_state = 0}, [5539] = {.lex_state = 0}, - [5540] = {.lex_state = 1854}, - [5541] = {.lex_state = 213}, + [5540] = {.lex_state = 52}, + [5541] = {.lex_state = 3128}, [5542] = {.lex_state = 0}, [5543] = {.lex_state = 0}, [5544] = {.lex_state = 0}, [5545] = {.lex_state = 0}, - [5546] = {.lex_state = 3093}, - [5547] = {.lex_state = 221}, - [5548] = {.lex_state = 0}, - [5549] = {.lex_state = 65}, - [5550] = {.lex_state = 0}, - [5551] = {.lex_state = 212}, - [5552] = {.lex_state = 209}, - [5553] = {.lex_state = 0}, - [5554] = {.lex_state = 65}, + [5546] = {.lex_state = 0}, + [5547] = {.lex_state = 0}, + [5548] = {.lex_state = 1887}, + [5549] = {.lex_state = 0}, + [5550] = {.lex_state = 52}, + [5551] = {.lex_state = 0}, + [5552] = {.lex_state = 267}, + [5553] = {.lex_state = 65}, + [5554] = {.lex_state = 0}, [5555] = {.lex_state = 0}, - [5556] = {.lex_state = 65}, - [5557] = {.lex_state = 209}, + [5556] = {.lex_state = 0}, + [5557] = {.lex_state = 0}, [5558] = {.lex_state = 0}, - [5559] = {.lex_state = 65}, - [5560] = {.lex_state = 221}, - [5561] = {.lex_state = 209}, + [5559] = {.lex_state = 0}, + [5560] = {.lex_state = 267}, + [5561] = {.lex_state = 0}, [5562] = {.lex_state = 0}, - [5563] = {.lex_state = 65}, - [5564] = {.lex_state = 1855}, - [5565] = {.lex_state = 1855}, + [5563] = {.lex_state = 264}, + [5564] = {.lex_state = 0}, + [5565] = {.lex_state = 233}, [5566] = {.lex_state = 0}, [5567] = {.lex_state = 0}, - [5568] = {.lex_state = 0}, + [5568] = {.lex_state = 52}, [5569] = {.lex_state = 0}, - [5570] = {.lex_state = 222}, - [5571] = {.lex_state = 65}, - [5572] = {.lex_state = 1855}, - [5573] = {.lex_state = 65}, - [5574] = {.lex_state = 0}, - [5575] = {.lex_state = 65}, - [5576] = {.lex_state = 1855}, + [5570] = {.lex_state = 245}, + [5571] = {.lex_state = 64}, + [5572] = {.lex_state = 263}, + [5573] = {.lex_state = 52}, + [5574] = {.lex_state = 264}, + [5575] = {.lex_state = 1887}, + [5576] = {.lex_state = 233}, [5577] = {.lex_state = 0}, - [5578] = {.lex_state = 65}, - [5579] = {.lex_state = 0}, - [5580] = {.lex_state = 0}, - [5581] = {.lex_state = 65}, - [5582] = {.lex_state = 222}, - [5583] = {.lex_state = 0}, - [5584] = {.lex_state = 0}, - [5585] = {.lex_state = 0}, - [5586] = {.lex_state = 65}, + [5578] = {.lex_state = 1887}, + [5579] = {.lex_state = 52}, + [5580] = {.lex_state = 52}, + [5581] = {.lex_state = 0}, + [5582] = {.lex_state = 245}, + [5583] = {.lex_state = 245}, + [5584] = {.lex_state = 245}, + [5585] = {.lex_state = 1887}, + [5586] = {.lex_state = 233}, [5587] = {.lex_state = 0}, - [5588] = {.lex_state = 65}, - [5589] = {.lex_state = 0}, - [5590] = {.lex_state = 65}, - [5591] = {.lex_state = 65}, - [5592] = {.lex_state = 0}, - [5593] = {.lex_state = 65}, - [5594] = {.lex_state = 0}, - [5595] = {.lex_state = 0}, - [5596] = {.lex_state = 0}, - [5597] = {.lex_state = 0}, - [5598] = {.lex_state = 1855}, - [5599] = {.lex_state = 65}, - [5600] = {.lex_state = 1855}, - [5601] = {.lex_state = 65}, - [5602] = {.lex_state = 0}, - [5603] = {.lex_state = 65}, - [5604] = {.lex_state = 1855}, + [5588] = {.lex_state = 52}, + [5589] = {.lex_state = 245}, + [5590] = {.lex_state = 0}, + [5591] = {.lex_state = 0}, + [5592] = {.lex_state = 233}, + [5593] = {.lex_state = 0}, + [5594] = {.lex_state = 264}, + [5595] = {.lex_state = 52}, + [5596] = {.lex_state = 52}, + [5597] = {.lex_state = 52}, + [5598] = {.lex_state = 233}, + [5599] = {.lex_state = 0}, + [5600] = {.lex_state = 0}, + [5601] = {.lex_state = 0}, + [5602] = {.lex_state = 52}, + [5603] = {.lex_state = 0}, + [5604] = {.lex_state = 233}, [5605] = {.lex_state = 0}, [5606] = {.lex_state = 0}, - [5607] = {.lex_state = 65}, - [5608] = {.lex_state = 0}, - [5609] = {.lex_state = 65}, - [5610] = {.lex_state = 65}, - [5611] = {.lex_state = 65}, - [5612] = {.lex_state = 0}, - [5613] = {.lex_state = 65}, - [5614] = {.lex_state = 65}, - [5615] = {.lex_state = 0}, - [5616] = {.lex_state = 0}, - [5617] = {.lex_state = 222}, - [5618] = {.lex_state = 0}, - [5619] = {.lex_state = 0}, - [5620] = {.lex_state = 0}, - [5621] = {.lex_state = 0}, - [5622] = {.lex_state = 65}, - [5623] = {.lex_state = 1855}, - [5624] = {.lex_state = 65}, - [5625] = {.lex_state = 0}, - [5626] = {.lex_state = 65}, - [5627] = {.lex_state = 1855}, - [5628] = {.lex_state = 65}, - [5629] = {.lex_state = 65}, - [5630] = {.lex_state = 65}, - [5631] = {.lex_state = 0}, - [5632] = {.lex_state = 65}, - [5633] = {.lex_state = 65}, - [5634] = {.lex_state = 65}, - [5635] = {.lex_state = 1855}, - [5636] = {.lex_state = 0}, - [5637] = {.lex_state = 0}, - [5638] = {.lex_state = 0}, - [5639] = {.lex_state = 65}, + [5607] = {.lex_state = 0}, + [5608] = {.lex_state = 226}, + [5609] = {.lex_state = 0}, + [5610] = {.lex_state = 52}, + [5611] = {.lex_state = 233}, + [5612] = {.lex_state = 64}, + [5613] = {.lex_state = 245}, + [5614] = {.lex_state = 233}, + [5615] = {.lex_state = 233}, + [5616] = {.lex_state = 64}, + [5617] = {.lex_state = 232}, + [5618] = {.lex_state = 52}, + [5619] = {.lex_state = 52}, + [5620] = {.lex_state = 233}, + [5621] = {.lex_state = 64}, + [5622] = {.lex_state = 0}, + [5623] = {.lex_state = 0}, + [5624] = {.lex_state = 0}, + [5625] = {.lex_state = 52}, + [5626] = {.lex_state = 52}, + [5627] = {.lex_state = 1888}, + [5628] = {.lex_state = 0}, + [5629] = {.lex_state = 52}, + [5630] = {.lex_state = 1888}, + [5631] = {.lex_state = 52}, + [5632] = {.lex_state = 0}, + [5633] = {.lex_state = 52}, + [5634] = {.lex_state = 0}, + [5635] = {.lex_state = 1888}, + [5636] = {.lex_state = 52}, + [5637] = {.lex_state = 1888}, + [5638] = {.lex_state = 52}, + [5639] = {.lex_state = 0}, [5640] = {.lex_state = 0}, - [5641] = {.lex_state = 65}, - [5642] = {.lex_state = 65}, - [5643] = {.lex_state = 65}, + [5641] = {.lex_state = 0}, + [5642] = {.lex_state = 0}, + [5643] = {.lex_state = 0}, [5644] = {.lex_state = 0}, - [5645] = {.lex_state = 65}, - [5646] = {.lex_state = 65}, - [5647] = {.lex_state = 222}, + [5645] = {.lex_state = 263}, + [5646] = {.lex_state = 0}, + [5647] = {.lex_state = 263}, [5648] = {.lex_state = 0}, - [5649] = {.lex_state = 0}, + [5649] = {.lex_state = 52}, [5650] = {.lex_state = 0}, - [5651] = {.lex_state = 0}, - [5652] = {.lex_state = 65}, + [5651] = {.lex_state = 52}, + [5652] = {.lex_state = 52}, [5653] = {.lex_state = 0}, - [5654] = {.lex_state = 65}, - [5655] = {.lex_state = 65}, - [5656] = {.lex_state = 65}, - [5657] = {.lex_state = 1855}, - [5658] = {.lex_state = 65}, - [5659] = {.lex_state = 65}, - [5660] = {.lex_state = 65}, - [5661] = {.lex_state = 1855}, - [5662] = {.lex_state = 65}, - [5663] = {.lex_state = 0}, + [5654] = {.lex_state = 1888}, + [5655] = {.lex_state = 0}, + [5656] = {.lex_state = 52}, + [5657] = {.lex_state = 0}, + [5658] = {.lex_state = 52}, + [5659] = {.lex_state = 0}, + [5660] = {.lex_state = 1888}, + [5661] = {.lex_state = 52}, + [5662] = {.lex_state = 0}, + [5663] = {.lex_state = 52}, [5664] = {.lex_state = 0}, - [5665] = {.lex_state = 65}, - [5666] = {.lex_state = 65}, - [5667] = {.lex_state = 0}, - [5668] = {.lex_state = 65}, - [5669] = {.lex_state = 65}, - [5670] = {.lex_state = 1855}, - [5671] = {.lex_state = 65}, - [5672] = {.lex_state = 65}, + [5665] = {.lex_state = 52}, + [5666] = {.lex_state = 52}, + [5667] = {.lex_state = 52}, + [5668] = {.lex_state = 263}, + [5669] = {.lex_state = 0}, + [5670] = {.lex_state = 0}, + [5671] = {.lex_state = 0}, + [5672] = {.lex_state = 0}, [5673] = {.lex_state = 0}, [5674] = {.lex_state = 0}, [5675] = {.lex_state = 0}, - [5676] = {.lex_state = 65}, - [5677] = {.lex_state = 0}, - [5678] = {.lex_state = 65}, - [5679] = {.lex_state = 0}, - [5680] = {.lex_state = 65}, - [5681] = {.lex_state = 65}, - [5682] = {.lex_state = 65}, - [5683] = {.lex_state = 31}, - [5684] = {.lex_state = 65}, - [5685] = {.lex_state = 65}, - [5686] = {.lex_state = 222}, - [5687] = {.lex_state = 0}, - [5688] = {.lex_state = 0}, - [5689] = {.lex_state = 0}, - [5690] = {.lex_state = 0}, - [5691] = {.lex_state = 65}, + [5676] = {.lex_state = 0}, + [5677] = {.lex_state = 52}, + [5678] = {.lex_state = 1888}, + [5679] = {.lex_state = 52}, + [5680] = {.lex_state = 1888}, + [5681] = {.lex_state = 0}, + [5682] = {.lex_state = 52}, + [5683] = {.lex_state = 52}, + [5684] = {.lex_state = 0}, + [5685] = {.lex_state = 52}, + [5686] = {.lex_state = 52}, + [5687] = {.lex_state = 52}, + [5688] = {.lex_state = 52}, + [5689] = {.lex_state = 52}, + [5690] = {.lex_state = 1888}, + [5691] = {.lex_state = 0}, [5692] = {.lex_state = 0}, - [5693] = {.lex_state = 65}, - [5694] = {.lex_state = 65}, - [5695] = {.lex_state = 1855}, - [5696] = {.lex_state = 65}, - [5697] = {.lex_state = 1855}, - [5698] = {.lex_state = 65}, - [5699] = {.lex_state = 0}, - [5700] = {.lex_state = 65}, - [5701] = {.lex_state = 0}, - [5702] = {.lex_state = 65}, - [5703] = {.lex_state = 65}, + [5693] = {.lex_state = 0}, + [5694] = {.lex_state = 0}, + [5695] = {.lex_state = 52}, + [5696] = {.lex_state = 0}, + [5697] = {.lex_state = 0}, + [5698] = {.lex_state = 52}, + [5699] = {.lex_state = 52}, + [5700] = {.lex_state = 0}, + [5701] = {.lex_state = 52}, + [5702] = {.lex_state = 52}, + [5703] = {.lex_state = 52}, [5704] = {.lex_state = 0}, - [5705] = {.lex_state = 1855}, + [5705] = {.lex_state = 263}, [5706] = {.lex_state = 0}, [5707] = {.lex_state = 0}, - [5708] = {.lex_state = 0}, - [5709] = {.lex_state = 65}, + [5708] = {.lex_state = 52}, + [5709] = {.lex_state = 0}, [5710] = {.lex_state = 0}, - [5711] = {.lex_state = 0}, - [5712] = {.lex_state = 65}, - [5713] = {.lex_state = 65}, - [5714] = {.lex_state = 0}, - [5715] = {.lex_state = 0}, - [5716] = {.lex_state = 0}, - [5717] = {.lex_state = 0}, - [5718] = {.lex_state = 65}, - [5719] = {.lex_state = 0}, - [5720] = {.lex_state = 65}, - [5721] = {.lex_state = 584}, - [5722] = {.lex_state = 584}, - [5723] = {.lex_state = 1855}, - [5724] = {.lex_state = 0}, - [5725] = {.lex_state = 65}, - [5726] = {.lex_state = 222}, - [5727] = {.lex_state = 65}, - [5728] = {.lex_state = 0}, + [5711] = {.lex_state = 52}, + [5712] = {.lex_state = 52}, + [5713] = {.lex_state = 0}, + [5714] = {.lex_state = 52}, + [5715] = {.lex_state = 52}, + [5716] = {.lex_state = 52}, + [5717] = {.lex_state = 1888}, + [5718] = {.lex_state = 52}, + [5719] = {.lex_state = 1888}, + [5720] = {.lex_state = 0}, + [5721] = {.lex_state = 52}, + [5722] = {.lex_state = 52}, + [5723] = {.lex_state = 0}, + [5724] = {.lex_state = 52}, + [5725] = {.lex_state = 52}, + [5726] = {.lex_state = 52}, + [5727] = {.lex_state = 52}, + [5728] = {.lex_state = 52}, [5729] = {.lex_state = 0}, - [5730] = {.lex_state = 0}, + [5730] = {.lex_state = 1888}, [5731] = {.lex_state = 0}, - [5732] = {.lex_state = 65}, + [5732] = {.lex_state = 0}, [5733] = {.lex_state = 0}, - [5734] = {.lex_state = 65}, - [5735] = {.lex_state = 65}, - [5736] = {.lex_state = 1855}, - [5737] = {.lex_state = 65}, - [5738] = {.lex_state = 0}, - [5739] = {.lex_state = 65}, - [5740] = {.lex_state = 65}, - [5741] = {.lex_state = 65}, - [5742] = {.lex_state = 65}, + [5734] = {.lex_state = 52}, + [5735] = {.lex_state = 0}, + [5736] = {.lex_state = 52}, + [5737] = {.lex_state = 52}, + [5738] = {.lex_state = 52}, + [5739] = {.lex_state = 0}, + [5740] = {.lex_state = 52}, + [5741] = {.lex_state = 52}, + [5742] = {.lex_state = 0}, [5743] = {.lex_state = 0}, [5744] = {.lex_state = 0}, - [5745] = {.lex_state = 65}, - [5746] = {.lex_state = 65}, - [5747] = {.lex_state = 65}, - [5748] = {.lex_state = 0}, - [5749] = {.lex_state = 1855}, - [5750] = {.lex_state = 0}, - [5751] = {.lex_state = 0}, + [5745] = {.lex_state = 616}, + [5746] = {.lex_state = 0}, + [5747] = {.lex_state = 52}, + [5748] = {.lex_state = 616}, + [5749] = {.lex_state = 263}, + [5750] = {.lex_state = 52}, + [5751] = {.lex_state = 52}, [5752] = {.lex_state = 0}, - [5753] = {.lex_state = 0}, - [5754] = {.lex_state = 0}, - [5755] = {.lex_state = 1855}, + [5753] = {.lex_state = 52}, + [5754] = {.lex_state = 52}, + [5755] = {.lex_state = 0}, [5756] = {.lex_state = 0}, [5757] = {.lex_state = 0}, - [5758] = {.lex_state = 0}, - [5759] = {.lex_state = 3094}, - [5760] = {.lex_state = 222}, - [5761] = {.lex_state = 0}, - [5762] = {.lex_state = 0}, - [5763] = {.lex_state = 0}, - [5764] = {.lex_state = 0}, - [5765] = {.lex_state = 0}, + [5758] = {.lex_state = 52}, + [5759] = {.lex_state = 0}, + [5760] = {.lex_state = 52}, + [5761] = {.lex_state = 1888}, + [5762] = {.lex_state = 52}, + [5763] = {.lex_state = 52}, + [5764] = {.lex_state = 1888}, + [5765] = {.lex_state = 52}, [5766] = {.lex_state = 0}, - [5767] = {.lex_state = 0}, + [5767] = {.lex_state = 52}, [5768] = {.lex_state = 0}, [5769] = {.lex_state = 0}, - [5770] = {.lex_state = 0}, - [5771] = {.lex_state = 0}, + [5770] = {.lex_state = 52}, + [5771] = {.lex_state = 1888}, [5772] = {.lex_state = 0}, - [5773] = {.lex_state = 0}, - [5774] = {.lex_state = 65}, - [5775] = {.lex_state = 1855}, - [5776] = {.lex_state = 65}, - [5777] = {.lex_state = 60}, - [5778] = {.lex_state = 1855}, - [5779] = {.lex_state = 65}, - [5780] = {.lex_state = 0}, - [5781] = {.lex_state = 23}, - [5782] = {.lex_state = 65}, - [5783] = {.lex_state = 0}, - [5784] = {.lex_state = 1855}, - [5785] = {.lex_state = 0}, + [5773] = {.lex_state = 52}, + [5774] = {.lex_state = 0}, + [5775] = {.lex_state = 0}, + [5776] = {.lex_state = 52}, + [5777] = {.lex_state = 0}, + [5778] = {.lex_state = 0}, + [5779] = {.lex_state = 52}, + [5780] = {.lex_state = 36}, + [5781] = {.lex_state = 616}, + [5782] = {.lex_state = 52}, + [5783] = {.lex_state = 1888}, + [5784] = {.lex_state = 0}, + [5785] = {.lex_state = 263}, [5786] = {.lex_state = 0}, - [5787] = {.lex_state = 218}, - [5788] = {.lex_state = 0}, - [5789] = {.lex_state = 65}, + [5787] = {.lex_state = 0}, + [5788] = {.lex_state = 52}, + [5789] = {.lex_state = 0}, [5790] = {.lex_state = 0}, - [5791] = {.lex_state = 0}, + [5791] = {.lex_state = 52}, [5792] = {.lex_state = 0}, - [5793] = {.lex_state = 0}, - [5794] = {.lex_state = 584}, + [5793] = {.lex_state = 52}, + [5794] = {.lex_state = 1888}, [5795] = {.lex_state = 0}, - [5796] = {.lex_state = 31}, - [5797] = {.lex_state = 0}, - [5798] = {.lex_state = 65}, - [5799] = {.lex_state = 65}, - [5800] = {.lex_state = 0}, - [5801] = {.lex_state = 222}, + [5796] = {.lex_state = 52}, + [5797] = {.lex_state = 52}, + [5798] = {.lex_state = 52}, + [5799] = {.lex_state = 1888}, + [5800] = {.lex_state = 52}, + [5801] = {.lex_state = 0}, [5802] = {.lex_state = 0}, - [5803] = {.lex_state = 0}, - [5804] = {.lex_state = 0}, - [5805] = {.lex_state = 0}, - [5806] = {.lex_state = 65}, - [5807] = {.lex_state = 1855}, - [5808] = {.lex_state = 65}, + [5803] = {.lex_state = 52}, + [5804] = {.lex_state = 52}, + [5805] = {.lex_state = 52}, + [5806] = {.lex_state = 0}, + [5807] = {.lex_state = 1888}, + [5808] = {.lex_state = 0}, [5809] = {.lex_state = 0}, - [5810] = {.lex_state = 0}, + [5810] = {.lex_state = 52}, [5811] = {.lex_state = 0}, - [5812] = {.lex_state = 65}, - [5813] = {.lex_state = 65}, - [5814] = {.lex_state = 0}, - [5815] = {.lex_state = 65}, - [5816] = {.lex_state = 0}, - [5817] = {.lex_state = 1855}, - [5818] = {.lex_state = 0}, - [5819] = {.lex_state = 0}, + [5812] = {.lex_state = 52}, + [5813] = {.lex_state = 0}, + [5814] = {.lex_state = 52}, + [5815] = {.lex_state = 0}, + [5816] = {.lex_state = 52}, + [5817] = {.lex_state = 0}, + [5818] = {.lex_state = 52}, + [5819] = {.lex_state = 3129}, [5820] = {.lex_state = 0}, [5821] = {.lex_state = 0}, - [5822] = {.lex_state = 0}, - [5823] = {.lex_state = 0}, - [5824] = {.lex_state = 0}, - [5825] = {.lex_state = 0}, + [5822] = {.lex_state = 52}, + [5823] = {.lex_state = 263}, + [5824] = {.lex_state = 52}, + [5825] = {.lex_state = 52}, [5826] = {.lex_state = 0}, - [5827] = {.lex_state = 65}, - [5828] = {.lex_state = 0}, - [5829] = {.lex_state = 175}, - [5830] = {.lex_state = 175}, - [5831] = {.lex_state = 204}, - [5832] = {.lex_state = 217}, - [5833] = {.lex_state = 0}, - [5834] = {.lex_state = 222}, + [5827] = {.lex_state = 0}, + [5828] = {.lex_state = 52}, + [5829] = {.lex_state = 0}, + [5830] = {.lex_state = 52}, + [5831] = {.lex_state = 0}, + [5832] = {.lex_state = 0}, + [5833] = {.lex_state = 52}, + [5834] = {.lex_state = 1888}, [5835] = {.lex_state = 0}, - [5836] = {.lex_state = 0}, - [5837] = {.lex_state = 0}, + [5836] = {.lex_state = 52}, + [5837] = {.lex_state = 1888}, [5838] = {.lex_state = 0}, - [5839] = {.lex_state = 65}, - [5840] = {.lex_state = 1855}, - [5841] = {.lex_state = 65}, - [5842] = {.lex_state = 1855}, - [5843] = {.lex_state = 65}, + [5839] = {.lex_state = 52}, + [5840] = {.lex_state = 0}, + [5841] = {.lex_state = 0}, + [5842] = {.lex_state = 52}, + [5843] = {.lex_state = 0}, [5844] = {.lex_state = 0}, - [5845] = {.lex_state = 65}, - [5846] = {.lex_state = 218}, + [5845] = {.lex_state = 0}, + [5846] = {.lex_state = 0}, [5847] = {.lex_state = 0}, [5848] = {.lex_state = 0}, - [5849] = {.lex_state = 65}, - [5850] = {.lex_state = 1855}, + [5849] = {.lex_state = 0}, + [5850] = {.lex_state = 1888}, [5851] = {.lex_state = 0}, [5852] = {.lex_state = 0}, - [5853] = {.lex_state = 0}, + [5853] = {.lex_state = 64}, [5854] = {.lex_state = 0}, - [5855] = {.lex_state = 0}, - [5856] = {.lex_state = 65}, - [5857] = {.lex_state = 0}, - [5858] = {.lex_state = 0}, - [5859] = {.lex_state = 65}, - [5860] = {.lex_state = 222}, - [5861] = {.lex_state = 0}, - [5862] = {.lex_state = 0}, - [5863] = {.lex_state = 174}, - [5864] = {.lex_state = 0}, - [5865] = {.lex_state = 0}, - [5866] = {.lex_state = 65}, - [5867] = {.lex_state = 1855}, + [5855] = {.lex_state = 52}, + [5856] = {.lex_state = 0}, + [5857] = {.lex_state = 28}, + [5858] = {.lex_state = 52}, + [5859] = {.lex_state = 52}, + [5860] = {.lex_state = 0}, + [5861] = {.lex_state = 190}, + [5862] = {.lex_state = 190}, + [5863] = {.lex_state = 258}, + [5864] = {.lex_state = 228}, + [5865] = {.lex_state = 257}, + [5866] = {.lex_state = 0}, + [5867] = {.lex_state = 263}, [5868] = {.lex_state = 0}, - [5869] = {.lex_state = 1855}, - [5870] = {.lex_state = 65}, + [5869] = {.lex_state = 0}, + [5870] = {.lex_state = 0}, [5871] = {.lex_state = 0}, [5872] = {.lex_state = 0}, - [5873] = {.lex_state = 65}, + [5873] = {.lex_state = 36}, [5874] = {.lex_state = 0}, [5875] = {.lex_state = 0}, - [5876] = {.lex_state = 1855}, - [5877] = {.lex_state = 23}, - [5878] = {.lex_state = 0}, - [5879] = {.lex_state = 0}, - [5880] = {.lex_state = 0}, - [5881] = {.lex_state = 0}, + [5876] = {.lex_state = 0}, + [5877] = {.lex_state = 52}, + [5878] = {.lex_state = 1888}, + [5879] = {.lex_state = 52}, + [5880] = {.lex_state = 1888}, + [5881] = {.lex_state = 52}, [5882] = {.lex_state = 0}, - [5883] = {.lex_state = 65}, + [5883] = {.lex_state = 52}, [5884] = {.lex_state = 0}, - [5885] = {.lex_state = 0}, + [5885] = {.lex_state = 1888}, [5886] = {.lex_state = 0}, [5887] = {.lex_state = 0}, - [5888] = {.lex_state = 222}, + [5888] = {.lex_state = 0}, [5889] = {.lex_state = 0}, [5890] = {.lex_state = 0}, [5891] = {.lex_state = 0}, - [5892] = {.lex_state = 0}, - [5893] = {.lex_state = 65}, - [5894] = {.lex_state = 1855}, - [5895] = {.lex_state = 65}, - [5896] = {.lex_state = 1855}, - [5897] = {.lex_state = 65}, + [5892] = {.lex_state = 52}, + [5893] = {.lex_state = 0}, + [5894] = {.lex_state = 0}, + [5895] = {.lex_state = 0}, + [5896] = {.lex_state = 0}, + [5897] = {.lex_state = 0}, [5898] = {.lex_state = 0}, [5899] = {.lex_state = 0}, - [5900] = {.lex_state = 65}, + [5900] = {.lex_state = 0}, [5901] = {.lex_state = 0}, [5902] = {.lex_state = 0}, - [5903] = {.lex_state = 1855}, - [5904] = {.lex_state = 0}, - [5905] = {.lex_state = 190}, - [5906] = {.lex_state = 0}, + [5903] = {.lex_state = 0}, + [5904] = {.lex_state = 268}, + [5905] = {.lex_state = 0}, + [5906] = {.lex_state = 263}, [5907] = {.lex_state = 0}, - [5908] = {.lex_state = 65}, - [5909] = {.lex_state = 23}, + [5908] = {.lex_state = 0}, + [5909] = {.lex_state = 0}, [5910] = {.lex_state = 0}, - [5911] = {.lex_state = 222}, - [5912] = {.lex_state = 0}, - [5913] = {.lex_state = 584}, - [5914] = {.lex_state = 0}, - [5915] = {.lex_state = 0}, + [5911] = {.lex_state = 52}, + [5912] = {.lex_state = 1888}, + [5913] = {.lex_state = 52}, + [5914] = {.lex_state = 1888}, + [5915] = {.lex_state = 52}, [5916] = {.lex_state = 0}, - [5917] = {.lex_state = 0}, + [5917] = {.lex_state = 52}, [5918] = {.lex_state = 0}, - [5919] = {.lex_state = 0}, + [5919] = {.lex_state = 1888}, [5920] = {.lex_state = 0}, - [5921] = {.lex_state = 65}, - [5922] = {.lex_state = 1855}, - [5923] = {.lex_state = 584}, - [5924] = {.lex_state = 65}, - [5925] = {.lex_state = 1855}, - [5926] = {.lex_state = 65}, + [5921] = {.lex_state = 258}, + [5922] = {.lex_state = 0}, + [5923] = {.lex_state = 0}, + [5924] = {.lex_state = 0}, + [5925] = {.lex_state = 52}, + [5926] = {.lex_state = 52}, [5927] = {.lex_state = 0}, [5928] = {.lex_state = 0}, - [5929] = {.lex_state = 65}, + [5929] = {.lex_state = 0}, [5930] = {.lex_state = 0}, - [5931] = {.lex_state = 1855}, - [5932] = {.lex_state = 23}, + [5931] = {.lex_state = 263}, + [5932] = {.lex_state = 0}, [5933] = {.lex_state = 0}, - [5934] = {.lex_state = 1855}, + [5934] = {.lex_state = 0}, [5935] = {.lex_state = 0}, - [5936] = {.lex_state = 226}, - [5937] = {.lex_state = 0}, - [5938] = {.lex_state = 0}, - [5939] = {.lex_state = 0}, - [5940] = {.lex_state = 0}, - [5941] = {.lex_state = 0}, + [5936] = {.lex_state = 52}, + [5937] = {.lex_state = 189}, + [5938] = {.lex_state = 1888}, + [5939] = {.lex_state = 52}, + [5940] = {.lex_state = 1888}, + [5941] = {.lex_state = 52}, [5942] = {.lex_state = 0}, - [5943] = {.lex_state = 23}, + [5943] = {.lex_state = 52}, [5944] = {.lex_state = 0}, - [5945] = {.lex_state = 65}, + [5945] = {.lex_state = 1888}, [5946] = {.lex_state = 0}, [5947] = {.lex_state = 0}, - [5948] = {.lex_state = 3094}, - [5949] = {.lex_state = 0}, + [5948] = {.lex_state = 0}, + [5949] = {.lex_state = 52}, [5950] = {.lex_state = 0}, - [5951] = {.lex_state = 0}, + [5951] = {.lex_state = 263}, [5952] = {.lex_state = 0}, - [5953] = {.lex_state = 23}, - [5954] = {.lex_state = 584}, - [5955] = {.lex_state = 584}, + [5953] = {.lex_state = 52}, + [5954] = {.lex_state = 28}, + [5955] = {.lex_state = 0}, [5956] = {.lex_state = 0}, - [5957] = {.lex_state = 23}, + [5957] = {.lex_state = 0}, [5958] = {.lex_state = 0}, [5959] = {.lex_state = 0}, - [5960] = {.lex_state = 0}, + [5960] = {.lex_state = 52}, [5961] = {.lex_state = 0}, - [5962] = {.lex_state = 65}, - [5963] = {.lex_state = 23}, - [5964] = {.lex_state = 0}, - [5965] = {.lex_state = 0}, - [5966] = {.lex_state = 0}, - [5967] = {.lex_state = 60}, - [5968] = {.lex_state = 65}, + [5962] = {.lex_state = 0}, + [5963] = {.lex_state = 0}, + [5964] = {.lex_state = 1888}, + [5965] = {.lex_state = 52}, + [5966] = {.lex_state = 1888}, + [5967] = {.lex_state = 52}, + [5968] = {.lex_state = 0}, [5969] = {.lex_state = 0}, - [5970] = {.lex_state = 0}, + [5970] = {.lex_state = 52}, [5971] = {.lex_state = 0}, - [5972] = {.lex_state = 60}, - [5973] = {.lex_state = 23}, + [5972] = {.lex_state = 0}, + [5973] = {.lex_state = 1888}, [5974] = {.lex_state = 0}, - [5975] = {.lex_state = 3143}, + [5975] = {.lex_state = 0}, [5976] = {.lex_state = 0}, - [5977] = {.lex_state = 0}, + [5977] = {.lex_state = 52}, [5978] = {.lex_state = 0}, - [5979] = {.lex_state = 0}, - [5980] = {.lex_state = 0}, - [5981] = {.lex_state = 0}, - [5982] = {.lex_state = 222}, - [5983] = {.lex_state = 23}, - [5984] = {.lex_state = 584}, - [5985] = {.lex_state = 174}, + [5979] = {.lex_state = 52}, + [5980] = {.lex_state = 263}, + [5981] = {.lex_state = 207}, + [5982] = {.lex_state = 616}, + [5983] = {.lex_state = 0}, + [5984] = {.lex_state = 28}, + [5985] = {.lex_state = 0}, [5986] = {.lex_state = 0}, [5987] = {.lex_state = 0}, [5988] = {.lex_state = 0}, - [5989] = {.lex_state = 0}, - [5990] = {.lex_state = 0}, + [5989] = {.lex_state = 52}, + [5990] = {.lex_state = 1888}, [5991] = {.lex_state = 0}, [5992] = {.lex_state = 0}, - [5993] = {.lex_state = 23}, - [5994] = {.lex_state = 0}, - [5995] = {.lex_state = 65}, - [5996] = {.lex_state = 0}, - [5997] = {.lex_state = 0}, + [5993] = {.lex_state = 0}, + [5994] = {.lex_state = 52}, + [5995] = {.lex_state = 1888}, + [5996] = {.lex_state = 52}, + [5997] = {.lex_state = 616}, [5998] = {.lex_state = 0}, [5999] = {.lex_state = 0}, - [6000] = {.lex_state = 0}, + [6000] = {.lex_state = 52}, [6001] = {.lex_state = 0}, - [6002] = {.lex_state = 206}, - [6003] = {.lex_state = 23}, - [6004] = {.lex_state = 1855}, + [6002] = {.lex_state = 65}, + [6003] = {.lex_state = 1888}, + [6004] = {.lex_state = 0}, [6005] = {.lex_state = 0}, - [6006] = {.lex_state = 23}, - [6007] = {.lex_state = 65}, - [6008] = {.lex_state = 0}, - [6009] = {.lex_state = 0}, - [6010] = {.lex_state = 0}, + [6006] = {.lex_state = 0}, + [6007] = {.lex_state = 28}, + [6008] = {.lex_state = 52}, + [6009] = {.lex_state = 1888}, + [6010] = {.lex_state = 1888}, [6011] = {.lex_state = 0}, - [6012] = {.lex_state = 23}, - [6013] = {.lex_state = 1855}, + [6012] = {.lex_state = 0}, + [6013] = {.lex_state = 0}, [6014] = {.lex_state = 0}, [6015] = {.lex_state = 0}, - [6016] = {.lex_state = 65}, + [6016] = {.lex_state = 0}, [6017] = {.lex_state = 0}, - [6018] = {.lex_state = 0}, - [6019] = {.lex_state = 0}, + [6018] = {.lex_state = 28}, + [6019] = {.lex_state = 190}, [6020] = {.lex_state = 0}, [6021] = {.lex_state = 0}, - [6022] = {.lex_state = 0}, - [6023] = {.lex_state = 65}, + [6022] = {.lex_state = 3129}, + [6023] = {.lex_state = 0}, [6024] = {.lex_state = 0}, [6025] = {.lex_state = 0}, [6026] = {.lex_state = 0}, - [6027] = {.lex_state = 0}, - [6028] = {.lex_state = 0}, - [6029] = {.lex_state = 0}, - [6030] = {.lex_state = 1855}, + [6027] = {.lex_state = 616}, + [6028] = {.lex_state = 28}, + [6029] = {.lex_state = 616}, + [6030] = {.lex_state = 28}, [6031] = {.lex_state = 0}, [6032] = {.lex_state = 0}, [6033] = {.lex_state = 0}, [6034] = {.lex_state = 0}, - [6035] = {.lex_state = 584}, + [6035] = {.lex_state = 0}, [6036] = {.lex_state = 0}, [6037] = {.lex_state = 0}, - [6038] = {.lex_state = 0}, + [6038] = {.lex_state = 28}, [6039] = {.lex_state = 0}, - [6040] = {.lex_state = 584}, + [6040] = {.lex_state = 0}, [6041] = {.lex_state = 0}, - [6042] = {.lex_state = 0}, - [6043] = {.lex_state = 0}, + [6042] = {.lex_state = 52}, + [6043] = {.lex_state = 616}, [6044] = {.lex_state = 0}, [6045] = {.lex_state = 0}, [6046] = {.lex_state = 0}, - [6047] = {.lex_state = 0}, - [6048] = {.lex_state = 0}, + [6047] = {.lex_state = 616}, + [6048] = {.lex_state = 28}, [6049] = {.lex_state = 65}, - [6050] = {.lex_state = 0}, + [6050] = {.lex_state = 3178}, [6051] = {.lex_state = 0}, [6052] = {.lex_state = 0}, - [6053] = {.lex_state = 0}, + [6053] = {.lex_state = 189}, [6054] = {.lex_state = 0}, - [6055] = {.lex_state = 584}, + [6055] = {.lex_state = 0}, [6056] = {.lex_state = 0}, - [6057] = {.lex_state = 174}, - [6058] = {.lex_state = 0}, - [6059] = {.lex_state = 65}, - [6060] = {.lex_state = 0}, + [6057] = {.lex_state = 0}, + [6058] = {.lex_state = 28}, + [6059] = {.lex_state = 52}, + [6060] = {.lex_state = 268}, [6061] = {.lex_state = 0}, [6062] = {.lex_state = 0}, - [6063] = {.lex_state = 0}, + [6063] = {.lex_state = 263}, [6064] = {.lex_state = 0}, - [6065] = {.lex_state = 60}, + [6065] = {.lex_state = 0}, [6066] = {.lex_state = 0}, - [6067] = {.lex_state = 0}, - [6068] = {.lex_state = 0}, - [6069] = {.lex_state = 584}, - [6070] = {.lex_state = 1855}, + [6067] = {.lex_state = 616}, + [6068] = {.lex_state = 28}, + [6069] = {.lex_state = 263}, + [6070] = {.lex_state = 616}, [6071] = {.lex_state = 0}, - [6072] = {.lex_state = 0}, - [6073] = {.lex_state = 206}, - [6074] = {.lex_state = 3094}, - [6075] = {.lex_state = 60}, - [6076] = {.lex_state = 584}, + [6072] = {.lex_state = 616}, + [6073] = {.lex_state = 28}, + [6074] = {.lex_state = 0}, + [6075] = {.lex_state = 0}, + [6076] = {.lex_state = 0}, [6077] = {.lex_state = 0}, - [6078] = {.lex_state = 0}, + [6078] = {.lex_state = 28}, [6079] = {.lex_state = 0}, - [6080] = {.lex_state = 65}, - [6081] = {.lex_state = 60}, + [6080] = {.lex_state = 0}, + [6081] = {.lex_state = 0}, [6082] = {.lex_state = 0}, - [6083] = {.lex_state = 65}, + [6083] = {.lex_state = 0}, [6084] = {.lex_state = 0}, [6085] = {.lex_state = 0}, [6086] = {.lex_state = 0}, - [6087] = {.lex_state = 65}, + [6087] = {.lex_state = 28}, [6088] = {.lex_state = 0}, [6089] = {.lex_state = 0}, - [6090] = {.lex_state = 0}, - [6091] = {.lex_state = 584}, - [6092] = {.lex_state = 584}, - [6093] = {.lex_state = 584}, + [6090] = {.lex_state = 263}, + [6091] = {.lex_state = 616}, + [6092] = {.lex_state = 0}, + [6093] = {.lex_state = 0}, [6094] = {.lex_state = 0}, - [6095] = {.lex_state = 226}, - [6096] = {.lex_state = 584}, - [6097] = {.lex_state = 584}, - [6098] = {.lex_state = 222}, + [6095] = {.lex_state = 0}, + [6096] = {.lex_state = 0}, + [6097] = {.lex_state = 0}, + [6098] = {.lex_state = 0}, [6099] = {.lex_state = 0}, - [6100] = {.lex_state = 3}, + [6100] = {.lex_state = 0}, [6101] = {.lex_state = 0}, - [6102] = {.lex_state = 60}, - [6103] = {.lex_state = 31}, - [6104] = {.lex_state = 0}, + [6102] = {.lex_state = 0}, + [6103] = {.lex_state = 0}, + [6104] = {.lex_state = 52}, [6105] = {.lex_state = 0}, - [6106] = {.lex_state = 175}, - [6107] = {.lex_state = 31}, + [6106] = {.lex_state = 0}, + [6107] = {.lex_state = 0}, [6108] = {.lex_state = 0}, - [6109] = {.lex_state = 31}, + [6109] = {.lex_state = 0}, [6110] = {.lex_state = 0}, - [6111] = {.lex_state = 31}, + [6111] = {.lex_state = 0}, [6112] = {.lex_state = 0}, - [6113] = {.lex_state = 31}, + [6113] = {.lex_state = 0}, [6114] = {.lex_state = 0}, - [6115] = {.lex_state = 31}, - [6116] = {.lex_state = 0}, - [6117] = {.lex_state = 31}, + [6115] = {.lex_state = 0}, + [6116] = {.lex_state = 230}, + [6117] = {.lex_state = 0}, [6118] = {.lex_state = 0}, - [6119] = {.lex_state = 31}, + [6119] = {.lex_state = 1888}, [6120] = {.lex_state = 0}, [6121] = {.lex_state = 0}, - [6122] = {.lex_state = 0}, + [6122] = {.lex_state = 52}, [6123] = {.lex_state = 0}, [6124] = {.lex_state = 0}, - [6125] = {.lex_state = 65}, + [6125] = {.lex_state = 0}, [6126] = {.lex_state = 0}, - [6127] = {.lex_state = 65}, - [6128] = {.lex_state = 65}, - [6129] = {.lex_state = 222}, - [6130] = {.lex_state = 65}, - [6131] = {.lex_state = 222}, - [6132] = {.lex_state = 226}, - [6133] = {.lex_state = 222}, - [6134] = {.lex_state = 222}, - [6135] = {.lex_state = 226}, - [6136] = {.lex_state = 226}, - [6137] = {(TSStateId)(-1)}, + [6127] = {.lex_state = 0}, + [6128] = {.lex_state = 0}, + [6129] = {.lex_state = 0}, + [6130] = {.lex_state = 1888}, + [6131] = {.lex_state = 0}, + [6132] = {.lex_state = 616}, + [6133] = {.lex_state = 0}, + [6134] = {.lex_state = 52}, + [6135] = {.lex_state = 0}, + [6136] = {.lex_state = 64}, + [6137] = {.lex_state = 0}, + [6138] = {.lex_state = 0}, + [6139] = {.lex_state = 0}, + [6140] = {.lex_state = 0}, + [6141] = {.lex_state = 0}, + [6142] = {.lex_state = 0}, + [6143] = {.lex_state = 0}, + [6144] = {.lex_state = 52}, + [6145] = {.lex_state = 0}, + [6146] = {.lex_state = 52}, + [6147] = {.lex_state = 0}, + [6148] = {.lex_state = 0}, + [6149] = {.lex_state = 1888}, + [6150] = {.lex_state = 616}, + [6151] = {.lex_state = 616}, + [6152] = {.lex_state = 0}, + [6153] = {.lex_state = 0}, + [6154] = {.lex_state = 263}, + [6155] = {.lex_state = 52}, + [6156] = {.lex_state = 65}, + [6157] = {.lex_state = 263}, + [6158] = {.lex_state = 0}, + [6159] = {.lex_state = 263}, + [6160] = {.lex_state = 65}, + [6161] = {.lex_state = 0}, + [6162] = {.lex_state = 52}, + [6163] = {.lex_state = 52}, + [6164] = {.lex_state = 0}, + [6165] = {.lex_state = 52}, + [6166] = {.lex_state = 616}, + [6167] = {.lex_state = 268}, + [6168] = {.lex_state = 0}, + [6169] = {.lex_state = 0}, + [6170] = {.lex_state = 189}, + [6171] = {.lex_state = 268}, + [6172] = {.lex_state = 7}, + [6173] = {.lex_state = 0}, + [6174] = {.lex_state = 0}, + [6175] = {.lex_state = 0}, + [6176] = {.lex_state = 36}, + [6177] = {.lex_state = 0}, + [6178] = {.lex_state = 36}, + [6179] = {.lex_state = 0}, + [6180] = {.lex_state = 36}, + [6181] = {.lex_state = 0}, + [6182] = {.lex_state = 36}, + [6183] = {.lex_state = 0}, + [6184] = {.lex_state = 36}, + [6185] = {.lex_state = 0}, + [6186] = {.lex_state = 36}, + [6187] = {.lex_state = 0}, + [6188] = {.lex_state = 36}, + [6189] = {.lex_state = 0}, + [6190] = {.lex_state = 36}, + [6191] = {.lex_state = 0}, + [6192] = {.lex_state = 0}, + [6193] = {.lex_state = 0}, + [6194] = {.lex_state = 0}, + [6195] = {.lex_state = 0}, + [6196] = {.lex_state = 268}, + [6197] = {.lex_state = 0}, + [6198] = {.lex_state = 616}, + [6199] = {.lex_state = 64}, + [6200] = {.lex_state = 3129}, + [6201] = {.lex_state = 230}, + [6202] = {.lex_state = 52}, + [6203] = {.lex_state = 0}, + [6204] = {.lex_state = 0}, + [6205] = {.lex_state = 0}, + [6206] = {.lex_state = 0}, + [6207] = {.lex_state = 0}, + [6208] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -71371,6 +72871,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT2] = ACTIONS(1), [anon_sym_DOLLAR2] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1), [anon_sym_QMARK2] = ACTIONS(1), [anon_sym_STAR_STAR] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), @@ -71410,86 +72914,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [1] = { - [sym_nu_script] = STATE(5978), - [sym_shebang] = STATE(145), - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4660), - [sym__declaration_last] = STATE(5429), - [sym_decl_alias_last] = STATE(5408), - [sym_stmt_let_last] = STATE(5403), - [sym_stmt_mut_last] = STATE(5403), - [sym_stmt_const_last] = STATE(5403), - [sym__statement_last] = STATE(5429), - [sym_pipeline_last] = STATE(5403), - [sym__block_body] = STATE(5965), - [sym_decl_def] = STATE(1507), - [sym_decl_export] = STATE(1507), - [sym_decl_extern] = STATE(1507), - [sym_decl_module] = STATE(1507), - [sym_decl_use] = STATE(1507), - [sym__ctrl_statement] = STATE(1510), - [sym__ctrl_expression] = STATE(4714), - [sym_ctrl_for] = STATE(1513), - [sym_ctrl_loop] = STATE(1513), - [sym_ctrl_error] = STATE(1513), - [sym_ctrl_while] = STATE(1513), - [sym_ctrl_do] = STATE(4919), - [sym_ctrl_if] = STATE(4919), - [sym_ctrl_match] = STATE(4919), - [sym_ctrl_try] = STATE(4919), - [sym_ctrl_return] = STATE(4919), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4913), - [sym_stmt_source] = STATE(1510), - [sym_stmt_register] = STATE(1510), - [sym__stmt_hide] = STATE(1510), - [sym_hide_mod] = STATE(1514), - [sym_hide_env] = STATE(1514), - [sym__stmt_overlay] = STATE(1510), - [sym_overlay_list] = STATE(1517), - [sym_overlay_hide] = STATE(1517), - [sym_overlay_new] = STATE(1517), - [sym_overlay_use] = STATE(1517), - [sym_assignment] = STATE(1510), - [sym_where_command] = STATE(4798), - [sym__expression] = STATE(4798), - [sym_expr_unary] = STATE(3190), - [sym__expr_unary_minus] = STATE(3186), - [sym_expr_binary] = STATE(3190), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3029), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(3190), - [sym_val_nothing] = STATE(3212), - [sym_val_bool] = STATE(3212), - [sym_val_variable] = STATE(2614), - [sym__var] = STATE(2434), - [sym_val_number] = STATE(464), - [sym__val_number_decimal] = STATE(428), - [sym__val_number] = STATE(426), - [sym_val_duration] = STATE(3212), - [sym_val_filesize] = STATE(3212), - [sym_val_binary] = STATE(3212), - [sym_val_string] = STATE(3212), - [sym__str_double_quotes] = STATE(3222), - [sym_val_interpolated] = STATE(3212), - [sym__inter_single_quotes] = STATE(3185), - [sym__inter_double_quotes] = STATE(3179), - [sym_val_list] = STATE(3212), - [sym_val_record] = STATE(3212), - [sym_val_table] = STATE(3212), - [sym_val_closure] = STATE(3212), - [sym_command] = STATE(4798), + [sym_nu_script] = STATE(6052), + [sym_shebang] = STATE(168), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4842), + [sym__declaration_last] = STATE(5494), + [sym_decl_alias_last] = STATE(5493), + [sym_stmt_let_last] = STATE(5492), + [sym_stmt_mut_last] = STATE(5492), + [sym_stmt_const_last] = STATE(5492), + [sym__statement_last] = STATE(5494), + [sym_pipeline_last] = STATE(5492), + [sym__block_body] = STATE(6033), + [sym_decl_def] = STATE(1533), + [sym_decl_export] = STATE(1533), + [sym_decl_extern] = STATE(1533), + [sym_decl_module] = STATE(1533), + [sym_decl_use] = STATE(1533), + [sym__ctrl_statement] = STATE(1535), + [sym__ctrl_expression] = STATE(4813), + [sym_ctrl_for] = STATE(1541), + [sym_ctrl_loop] = STATE(1541), + [sym_ctrl_error] = STATE(1541), + [sym_ctrl_while] = STATE(1541), + [sym_ctrl_do] = STATE(5043), + [sym_ctrl_if] = STATE(5043), + [sym_ctrl_match] = STATE(5043), + [sym_ctrl_try] = STATE(5043), + [sym_ctrl_return] = STATE(5043), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5037), + [sym_stmt_source] = STATE(1535), + [sym_stmt_register] = STATE(1535), + [sym__stmt_hide] = STATE(1535), + [sym_hide_mod] = STATE(1545), + [sym_hide_env] = STATE(1545), + [sym__stmt_overlay] = STATE(1535), + [sym_overlay_list] = STATE(1546), + [sym_overlay_hide] = STATE(1546), + [sym_overlay_new] = STATE(1546), + [sym_overlay_use] = STATE(1546), + [sym_assignment] = STATE(1535), + [sym_where_command] = STATE(4875), + [sym__expression] = STATE(4875), + [sym_expr_unary] = STATE(3244), + [sym__expr_unary_minus] = STATE(3248), + [sym_expr_binary] = STATE(3244), + [sym__expr_binary_expression] = STATE(3553), + [sym_expr_parenthesized] = STATE(3074), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(3244), + [sym_val_nothing] = STATE(3230), + [sym_val_bool] = STATE(3230), + [sym_val_variable] = STATE(2635), + [sym__var] = STATE(2466), + [sym_val_number] = STATE(451), + [sym__val_number_decimal] = STATE(408), + [sym__val_number] = STATE(422), + [sym_val_duration] = STATE(3230), + [sym_val_filesize] = STATE(3230), + [sym_val_binary] = STATE(3230), + [sym_val_string] = STATE(3230), + [sym__str_double_quotes] = STATE(3238), + [sym_val_interpolated] = STATE(3230), + [sym__inter_single_quotes] = STATE(3256), + [sym__inter_double_quotes] = STATE(3257), + [sym_val_list] = STATE(3230), + [sym_val_record] = STATE(3230), + [sym_val_table] = STATE(3230), + [sym_val_closure] = STATE(3230), + [sym_command] = STATE(4875), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(831), - [aux_sym__block_body_repeat2] = STATE(236), + [aux_sym_pipeline_repeat1] = STATE(855), + [aux_sym__block_body_repeat2] = STATE(238), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -71900,6 +73404,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [4] = { [sym_comment] = STATE(4), + [ts_builtin_sym_end] = ACTIONS(109), + [anon_sym_export] = ACTIONS(107), + [anon_sym_alias] = ACTIONS(107), + [anon_sym_let] = ACTIONS(107), + [anon_sym_let_DASHenv] = ACTIONS(107), + [anon_sym_mut] = ACTIONS(107), + [anon_sym_const] = ACTIONS(107), + [anon_sym_SEMI] = ACTIONS(107), + [sym_cmd_identifier] = ACTIONS(107), + [anon_sym_LF] = ACTIONS(109), + [anon_sym_def] = ACTIONS(107), + [anon_sym_export_DASHenv] = ACTIONS(107), + [anon_sym_extern] = ACTIONS(107), + [anon_sym_module] = ACTIONS(107), + [anon_sym_use] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(107), + [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_error] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_break] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(107), + [anon_sym_for] = ACTIONS(107), + [anon_sym_in] = ACTIONS(107), + [anon_sym_loop] = ACTIONS(107), + [anon_sym_while] = ACTIONS(107), + [anon_sym_do] = ACTIONS(107), + [anon_sym_if] = ACTIONS(107), + [anon_sym_match] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_DOT] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_try] = ACTIONS(107), + [anon_sym_return] = ACTIONS(107), + [anon_sym_source] = ACTIONS(107), + [anon_sym_source_DASHenv] = ACTIONS(107), + [anon_sym_register] = ACTIONS(107), + [anon_sym_hide] = ACTIONS(107), + [anon_sym_hide_DASHenv] = ACTIONS(107), + [anon_sym_overlay] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_where] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(107), + [anon_sym_PLUS_PLUS] = ACTIONS(107), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(107), + [anon_sym_bit_DASHshr] = ACTIONS(107), + [anon_sym_EQ_EQ] = ACTIONS(107), + [anon_sym_BANG_EQ] = ACTIONS(107), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(107), + [anon_sym_GT_EQ] = ACTIONS(107), + [anon_sym_not_DASHin] = ACTIONS(107), + [anon_sym_starts_DASHwith] = ACTIONS(107), + [anon_sym_ends_DASHwith] = ACTIONS(107), + [anon_sym_EQ_TILDE] = ACTIONS(107), + [anon_sym_BANG_TILDE] = ACTIONS(107), + [anon_sym_bit_DASHand] = ACTIONS(107), + [anon_sym_bit_DASHxor] = ACTIONS(107), + [anon_sym_bit_DASHor] = ACTIONS(107), + [anon_sym_and] = ACTIONS(107), + [anon_sym_xor] = ACTIONS(107), + [anon_sym_or] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [aux_sym__immediate_decimal_token1] = ACTIONS(123), + [aux_sym__immediate_decimal_token2] = ACTIONS(125), + [anon_sym_null] = ACTIONS(107), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [aux_sym__val_number_decimal_token1] = ACTIONS(107), + [aux_sym__val_number_token1] = ACTIONS(107), + [aux_sym__val_number_token2] = ACTIONS(107), + [aux_sym__val_number_token3] = ACTIONS(107), + [aux_sym__val_number_token4] = ACTIONS(107), + [aux_sym__val_number_token5] = ACTIONS(107), + [aux_sym__val_number_token6] = ACTIONS(107), + [anon_sym_ns] = ACTIONS(107), + [anon_sym_s] = ACTIONS(107), + [anon_sym_us] = ACTIONS(107), + [anon_sym_ms] = ACTIONS(107), + [anon_sym_sec] = ACTIONS(107), + [anon_sym_min] = ACTIONS(107), + [anon_sym_hr] = ACTIONS(107), + [anon_sym_day] = ACTIONS(107), + [anon_sym_wk] = ACTIONS(107), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(107), + [anon_sym_kb] = ACTIONS(107), + [anon_sym_kB] = ACTIONS(107), + [anon_sym_Kb] = ACTIONS(107), + [anon_sym_KB] = ACTIONS(107), + [anon_sym_mb] = ACTIONS(107), + [anon_sym_mB] = ACTIONS(107), + [anon_sym_Mb] = ACTIONS(107), + [anon_sym_MB] = ACTIONS(107), + [anon_sym_gb] = ACTIONS(107), + [anon_sym_gB] = ACTIONS(107), + [anon_sym_Gb] = ACTIONS(107), + [anon_sym_GB] = ACTIONS(107), + [anon_sym_tb] = ACTIONS(107), + [anon_sym_tB] = ACTIONS(107), + [anon_sym_Tb] = ACTIONS(107), + [anon_sym_TB] = ACTIONS(107), + [anon_sym_pb] = ACTIONS(107), + [anon_sym_pB] = ACTIONS(107), + [anon_sym_Pb] = ACTIONS(107), + [anon_sym_PB] = ACTIONS(107), + [anon_sym_eb] = ACTIONS(107), + [anon_sym_eB] = ACTIONS(107), + [anon_sym_Eb] = ACTIONS(107), + [anon_sym_EB] = ACTIONS(107), + [anon_sym_kib] = ACTIONS(107), + [anon_sym_kiB] = ACTIONS(107), + [anon_sym_kIB] = ACTIONS(107), + [anon_sym_kIb] = ACTIONS(107), + [anon_sym_Kib] = ACTIONS(107), + [anon_sym_KIb] = ACTIONS(107), + [anon_sym_KIB] = ACTIONS(107), + [anon_sym_mib] = ACTIONS(107), + [anon_sym_miB] = ACTIONS(107), + [anon_sym_mIB] = ACTIONS(107), + [anon_sym_mIb] = ACTIONS(107), + [anon_sym_Mib] = ACTIONS(107), + [anon_sym_MIb] = ACTIONS(107), + [anon_sym_MIB] = ACTIONS(107), + [anon_sym_gib] = ACTIONS(107), + [anon_sym_giB] = ACTIONS(107), + [anon_sym_gIB] = ACTIONS(107), + [anon_sym_gIb] = ACTIONS(107), + [anon_sym_Gib] = ACTIONS(107), + [anon_sym_GIb] = ACTIONS(107), + [anon_sym_GIB] = ACTIONS(107), + [anon_sym_tib] = ACTIONS(107), + [anon_sym_tiB] = ACTIONS(107), + [anon_sym_tIB] = ACTIONS(107), + [anon_sym_tIb] = ACTIONS(107), + [anon_sym_Tib] = ACTIONS(107), + [anon_sym_TIb] = ACTIONS(107), + [anon_sym_TIB] = ACTIONS(107), + [anon_sym_pib] = ACTIONS(107), + [anon_sym_piB] = ACTIONS(107), + [anon_sym_pIB] = ACTIONS(107), + [anon_sym_pIb] = ACTIONS(107), + [anon_sym_Pib] = ACTIONS(107), + [anon_sym_PIb] = ACTIONS(107), + [anon_sym_PIB] = ACTIONS(107), + [anon_sym_eib] = ACTIONS(107), + [anon_sym_eiB] = ACTIONS(107), + [anon_sym_eIB] = ACTIONS(107), + [anon_sym_eIb] = ACTIONS(107), + [anon_sym_Eib] = ACTIONS(107), + [anon_sym_EIb] = ACTIONS(107), + [anon_sym_EIB] = ACTIONS(107), + [anon_sym_0b] = ACTIONS(107), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(107), + [sym__str_back_ticks] = ACTIONS(107), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), + [anon_sym_POUND] = ACTIONS(105), + }, + [5] = { + [sym_comment] = STATE(5), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), [anon_sym_let] = ACTIONS(115), @@ -71933,7 +73609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(127), [anon_sym_try] = ACTIONS(115), [anon_sym_return] = ACTIONS(115), [anon_sym_source] = ACTIONS(115), @@ -71969,8 +73645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(123), - [aux_sym__immediate_decimal_token2] = ACTIONS(125), + [aux_sym__immediate_decimal_token2] = ACTIONS(121), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -72068,182 +73743,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [anon_sym_CARET] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), - }, - [5] = { - [sym_comment] = STATE(5), - [anon_sym_export] = ACTIONS(127), - [anon_sym_alias] = ACTIONS(127), - [anon_sym_let] = ACTIONS(127), - [anon_sym_let_DASHenv] = ACTIONS(127), - [anon_sym_mut] = ACTIONS(127), - [anon_sym_const] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(127), - [sym_cmd_identifier] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_def] = ACTIONS(127), - [anon_sym_export_DASHenv] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(127), - [anon_sym_module] = ACTIONS(127), - [anon_sym_use] = ACTIONS(127), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_error] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_break] = ACTIONS(127), - [anon_sym_continue] = ACTIONS(127), - [anon_sym_for] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_loop] = ACTIONS(127), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(127), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(131), - [anon_sym_try] = ACTIONS(127), - [anon_sym_return] = ACTIONS(127), - [anon_sym_source] = ACTIONS(127), - [anon_sym_source_DASHenv] = ACTIONS(127), - [anon_sym_register] = ACTIONS(127), - [anon_sym_hide] = ACTIONS(127), - [anon_sym_hide_DASHenv] = ACTIONS(127), - [anon_sym_overlay] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_where] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [anon_sym_not] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(134), - [anon_sym_null] = ACTIONS(127), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(127), - [aux_sym__val_number_token2] = ACTIONS(127), - [aux_sym__val_number_token3] = ACTIONS(127), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(127), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(127), - [sym__str_single_quotes] = ACTIONS(127), - [sym__str_back_ticks] = ACTIONS(127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, [6] = { [sym_comment] = STATE(6), + [anon_sym_export] = ACTIONS(130), + [anon_sym_alias] = ACTIONS(130), + [anon_sym_let] = ACTIONS(130), + [anon_sym_let_DASHenv] = ACTIONS(130), + [anon_sym_mut] = ACTIONS(130), + [anon_sym_const] = ACTIONS(130), + [anon_sym_SEMI] = ACTIONS(130), + [sym_cmd_identifier] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_def] = ACTIONS(130), + [anon_sym_export_DASHenv] = ACTIONS(130), + [anon_sym_extern] = ACTIONS(130), + [anon_sym_module] = ACTIONS(130), + [anon_sym_use] = ACTIONS(130), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_RPAREN] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(130), + [anon_sym_error] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_break] = ACTIONS(130), + [anon_sym_continue] = ACTIONS(130), + [anon_sym_for] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_loop] = ACTIONS(130), + [anon_sym_while] = ACTIONS(130), + [anon_sym_do] = ACTIONS(130), + [anon_sym_if] = ACTIONS(130), + [anon_sym_match] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(134), + [anon_sym_try] = ACTIONS(130), + [anon_sym_return] = ACTIONS(130), + [anon_sym_source] = ACTIONS(130), + [anon_sym_source_DASHenv] = ACTIONS(130), + [anon_sym_register] = ACTIONS(130), + [anon_sym_hide] = ACTIONS(130), + [anon_sym_hide_DASHenv] = ACTIONS(130), + [anon_sym_overlay] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_where] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [anon_sym_not] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(137), + [anon_sym_null] = ACTIONS(130), + [anon_sym_true] = ACTIONS(130), + [anon_sym_false] = ACTIONS(130), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(130), + [aux_sym__val_number_token2] = ACTIONS(130), + [aux_sym__val_number_token3] = ACTIONS(130), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(130), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym__str_single_quotes] = ACTIONS(130), + [sym__str_back_ticks] = ACTIONS(130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(130), + [anon_sym_CARET] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), + }, + [7] = { + [sym_comment] = STATE(7), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_export] = ACTIONS(115), + [anon_sym_alias] = ACTIONS(115), + [anon_sym_let] = ACTIONS(115), + [anon_sym_let_DASHenv] = ACTIONS(115), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(115), + [sym_cmd_identifier] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_def] = ACTIONS(115), + [anon_sym_export_DASHenv] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_use] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_error] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_break] = ACTIONS(115), + [anon_sym_continue] = ACTIONS(115), + [anon_sym_for] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_loop] = ACTIONS(115), + [anon_sym_while] = ACTIONS(115), + [anon_sym_do] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_match] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_try] = ACTIONS(115), + [anon_sym_return] = ACTIONS(115), + [anon_sym_source] = ACTIONS(115), + [anon_sym_source_DASHenv] = ACTIONS(115), + [anon_sym_register] = ACTIONS(115), + [anon_sym_hide] = ACTIONS(115), + [anon_sym_hide_DASHenv] = ACTIONS(115), + [anon_sym_overlay] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_where] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_not] = ACTIONS(115), + [aux_sym__immediate_decimal_token1] = ACTIONS(139), + [aux_sym__immediate_decimal_token2] = ACTIONS(141), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [8] = { + [sym_comment] = STATE(8), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), [anon_sym_let] = ACTIONS(107), @@ -72313,7 +74161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(113), + [aux_sym__immediate_decimal_token1] = ACTIONS(143), + [aux_sym__immediate_decimal_token2] = ACTIONS(145), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -72411,12 +74260,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), [anon_sym_CARET] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [7] = { - [sym_comment] = STATE(7), - [ts_builtin_sym_end] = ACTIONS(117), + [9] = { + [sym_comment] = STATE(9), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_error] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_where] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_not] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(151), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [10] = { + [sym_comment] = STATE(10), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), [anon_sym_let] = ACTIONS(115), @@ -72433,6 +74452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_error] = ACTIONS(115), [anon_sym_GT] = ACTIONS(115), @@ -72447,6 +74467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(115), [anon_sym_match] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_try] = ACTIONS(115), @@ -72484,8 +74505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(136), - [aux_sym__immediate_decimal_token2] = ACTIONS(138), + [aux_sym__immediate_decimal_token2] = ACTIONS(121), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -72586,8 +74606,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [8] = { - [sym_comment] = STATE(8), + [11] = { + [sym_comment] = STATE(11), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), [anon_sym_let] = ACTIONS(115), @@ -72657,7 +74677,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(121), + [aux_sym__immediate_decimal_token1] = ACTIONS(153), + [aux_sym__immediate_decimal_token2] = ACTIONS(155), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -72755,11 +74776,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [anon_sym_CARET] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [9] = { - [sym_comment] = STATE(9), + [12] = { + [sym_comment] = STATE(12), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), [anon_sym_let] = ACTIONS(107), @@ -72829,8 +74849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(140), - [aux_sym__immediate_decimal_token2] = ACTIONS(142), + [aux_sym__immediate_decimal_token2] = ACTIONS(113), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -72928,354 +74947,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), [anon_sym_CARET] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [10] = { - [sym_comment] = STATE(10), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(144), - [aux_sym__immediate_decimal_token2] = ACTIONS(146), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), + [13] = { + [sym_comment] = STATE(13), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(157), + [anon_sym_let] = ACTIONS(157), + [anon_sym_let_DASHenv] = ACTIONS(157), + [anon_sym_mut] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [sym_cmd_identifier] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_def] = ACTIONS(157), + [anon_sym_export_DASHenv] = ACTIONS(157), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_module] = ACTIONS(157), + [anon_sym_use] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_error] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_for] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_loop] = ACTIONS(157), + [anon_sym_while] = ACTIONS(157), + [anon_sym_do] = ACTIONS(157), + [anon_sym_if] = ACTIONS(157), + [anon_sym_match] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_try] = ACTIONS(157), + [anon_sym_return] = ACTIONS(157), + [anon_sym_source] = ACTIONS(157), + [anon_sym_source_DASHenv] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_hide] = ACTIONS(157), + [anon_sym_hide_DASHenv] = ACTIONS(157), + [anon_sym_overlay] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_where] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_not] = ACTIONS(157), + [anon_sym_null] = ACTIONS(157), + [anon_sym_true] = ACTIONS(157), + [anon_sym_false] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(157), + [aux_sym__val_number_token2] = ACTIONS(157), + [aux_sym__val_number_token3] = ACTIONS(157), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(157), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym__str_single_quotes] = ACTIONS(157), + [sym__str_back_ticks] = ACTIONS(157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(105), }, - [11] = { - [sym_comment] = STATE(11), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_error] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(152), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_CARET] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [14] = { + [sym_comment] = STATE(14), + [anon_sym_export] = ACTIONS(130), + [anon_sym_alias] = ACTIONS(130), + [anon_sym_let] = ACTIONS(130), + [anon_sym_let_DASHenv] = ACTIONS(130), + [anon_sym_mut] = ACTIONS(130), + [anon_sym_const] = ACTIONS(130), + [anon_sym_SEMI] = ACTIONS(130), + [sym_cmd_identifier] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_def] = ACTIONS(130), + [anon_sym_export_DASHenv] = ACTIONS(130), + [anon_sym_extern] = ACTIONS(130), + [anon_sym_module] = ACTIONS(130), + [anon_sym_use] = ACTIONS(130), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_RPAREN] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(130), + [anon_sym_error] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_break] = ACTIONS(130), + [anon_sym_continue] = ACTIONS(130), + [anon_sym_for] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_loop] = ACTIONS(130), + [anon_sym_while] = ACTIONS(130), + [anon_sym_do] = ACTIONS(130), + [anon_sym_if] = ACTIONS(130), + [anon_sym_match] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(161), + [anon_sym_try] = ACTIONS(130), + [anon_sym_return] = ACTIONS(130), + [anon_sym_source] = ACTIONS(130), + [anon_sym_source_DASHenv] = ACTIONS(130), + [anon_sym_register] = ACTIONS(130), + [anon_sym_hide] = ACTIONS(130), + [anon_sym_hide_DASHenv] = ACTIONS(130), + [anon_sym_overlay] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_where] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [anon_sym_not] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(164), + [anon_sym_null] = ACTIONS(130), + [anon_sym_true] = ACTIONS(130), + [anon_sym_false] = ACTIONS(130), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(130), + [aux_sym__val_number_token2] = ACTIONS(130), + [aux_sym__val_number_token3] = ACTIONS(130), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(130), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym__str_single_quotes] = ACTIONS(130), + [sym__str_back_ticks] = ACTIONS(130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(130), + [anon_sym_CARET] = ACTIONS(130), [anon_sym_POUND] = ACTIONS(105), }, - [12] = { - [sym_comment] = STATE(12), + [15] = { + [sym_comment] = STATE(15), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), [anon_sym_let] = ACTIONS(107), @@ -73309,7 +75327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(107), [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(154), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_try] = ACTIONS(107), [anon_sym_return] = ACTIONS(107), [anon_sym_source] = ACTIONS(107), @@ -73345,7 +75363,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(113), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -73446,179 +75463,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [13] = { - [sym_comment] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(157), - [aux_sym__immediate_decimal_token2] = ACTIONS(159), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), + [16] = { + [sym_comment] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(132), + [anon_sym_export] = ACTIONS(130), + [anon_sym_alias] = ACTIONS(130), + [anon_sym_let] = ACTIONS(130), + [anon_sym_let_DASHenv] = ACTIONS(130), + [anon_sym_mut] = ACTIONS(130), + [anon_sym_const] = ACTIONS(130), + [anon_sym_SEMI] = ACTIONS(130), + [sym_cmd_identifier] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_def] = ACTIONS(130), + [anon_sym_export_DASHenv] = ACTIONS(130), + [anon_sym_extern] = ACTIONS(130), + [anon_sym_module] = ACTIONS(130), + [anon_sym_use] = ACTIONS(130), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(130), + [anon_sym_error] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_break] = ACTIONS(130), + [anon_sym_continue] = ACTIONS(130), + [anon_sym_for] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_loop] = ACTIONS(130), + [anon_sym_while] = ACTIONS(130), + [anon_sym_do] = ACTIONS(130), + [anon_sym_if] = ACTIONS(130), + [anon_sym_match] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(166), + [anon_sym_try] = ACTIONS(130), + [anon_sym_return] = ACTIONS(130), + [anon_sym_source] = ACTIONS(130), + [anon_sym_source_DASHenv] = ACTIONS(130), + [anon_sym_register] = ACTIONS(130), + [anon_sym_hide] = ACTIONS(130), + [anon_sym_hide_DASHenv] = ACTIONS(130), + [anon_sym_overlay] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_where] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [anon_sym_not] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(169), + [anon_sym_null] = ACTIONS(130), + [anon_sym_true] = ACTIONS(130), + [anon_sym_false] = ACTIONS(130), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(130), + [aux_sym__val_number_token2] = ACTIONS(130), + [aux_sym__val_number_token3] = ACTIONS(130), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(130), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym__str_single_quotes] = ACTIONS(130), + [sym__str_back_ticks] = ACTIONS(130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(130), + [anon_sym_CARET] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), [anon_sym_POUND] = ACTIONS(105), }, - [14] = { - [sym_comment] = STATE(14), + [17] = { + [sym_comment] = STATE(17), [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), @@ -73651,7 +75668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(171), [anon_sym_try] = ACTIONS(115), [anon_sym_return] = ACTIONS(115), [anon_sym_source] = ACTIONS(115), @@ -73687,8 +75704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(161), - [aux_sym__immediate_decimal_token2] = ACTIONS(163), + [aux_sym__immediate_decimal_token2] = ACTIONS(141), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -73786,865 +75802,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [anon_sym_CARET] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), - }, - [15] = { - [sym_comment] = STATE(15), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(146), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [16] = { - [sym_comment] = STATE(16), - [anon_sym_export] = ACTIONS(165), - [anon_sym_alias] = ACTIONS(165), - [anon_sym_let] = ACTIONS(165), - [anon_sym_let_DASHenv] = ACTIONS(165), - [anon_sym_mut] = ACTIONS(165), - [anon_sym_const] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_def] = ACTIONS(165), - [anon_sym_export_DASHenv] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(165), - [anon_sym_module] = ACTIONS(165), - [anon_sym_use] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_error] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_loop] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_match] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_try] = ACTIONS(165), - [anon_sym_return] = ACTIONS(165), - [anon_sym_source] = ACTIONS(165), - [anon_sym_source_DASHenv] = ACTIONS(165), - [anon_sym_register] = ACTIONS(165), - [anon_sym_hide] = ACTIONS(165), - [anon_sym_hide_DASHenv] = ACTIONS(165), - [anon_sym_overlay] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_where] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_not] = ACTIONS(165), - [anon_sym_null] = ACTIONS(165), - [anon_sym_true] = ACTIONS(165), - [anon_sym_false] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(165), - [aux_sym__val_number_token2] = ACTIONS(165), - [aux_sym__val_number_token3] = ACTIONS(165), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(165), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(165), - [sym__str_single_quotes] = ACTIONS(165), - [sym__str_back_ticks] = ACTIONS(165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(105), - }, - [17] = { - [sym_comment] = STATE(17), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_error] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(169), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_CARET] = ACTIONS(148), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, [18] = { [sym_comment] = STATE(18), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_error] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_CARET] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(105), - }, - [19] = { - [sym_comment] = STATE(19), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_error] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(175), - [anon_sym_try] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_where] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_not] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(177), - [anon_sym_POUND] = ACTIONS(105), - }, - [20] = { - [sym_comment] = STATE(20), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), [anon_sym_let] = ACTIONS(115), @@ -74714,6 +75876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(155), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -74811,353 +75974,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [anon_sym_CARET] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), - }, - [21] = { - [sym_comment] = STATE(21), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(179), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(142), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [22] = { - [sym_comment] = STATE(22), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(142), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [23] = { - [sym_comment] = STATE(23), + [19] = { + [sym_comment] = STATE(19), + [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), [anon_sym_let] = ACTIONS(107), @@ -75174,7 +75995,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(107), [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), [anon_sym_DOLLAR] = ACTIONS(107), [anon_sym_error] = ACTIONS(107), [anon_sym_GT] = ACTIONS(107), @@ -75189,7 +76009,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(107), [anon_sym_match] = ACTIONS(107), [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_DOT] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_try] = ACTIONS(107), @@ -75227,6 +76046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), [anon_sym_not] = ACTIONS(107), + [aux_sym__immediate_decimal_token1] = ACTIONS(174), + [aux_sym__immediate_decimal_token2] = ACTIONS(176), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -75324,182 +76145,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), [anon_sym_CARET] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [24] = { - [sym_comment] = STATE(24), - [anon_sym_export] = ACTIONS(127), - [anon_sym_alias] = ACTIONS(127), - [anon_sym_let] = ACTIONS(127), - [anon_sym_let_DASHenv] = ACTIONS(127), - [anon_sym_mut] = ACTIONS(127), - [anon_sym_const] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(127), - [sym_cmd_identifier] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_def] = ACTIONS(127), - [anon_sym_export_DASHenv] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(127), - [anon_sym_module] = ACTIONS(127), - [anon_sym_use] = ACTIONS(127), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_error] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_break] = ACTIONS(127), - [anon_sym_continue] = ACTIONS(127), - [anon_sym_for] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_loop] = ACTIONS(127), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(127), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(182), - [anon_sym_try] = ACTIONS(127), - [anon_sym_return] = ACTIONS(127), - [anon_sym_source] = ACTIONS(127), - [anon_sym_source_DASHenv] = ACTIONS(127), - [anon_sym_register] = ACTIONS(127), - [anon_sym_hide] = ACTIONS(127), - [anon_sym_hide_DASHenv] = ACTIONS(127), - [anon_sym_overlay] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_where] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [anon_sym_not] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(185), - [anon_sym_null] = ACTIONS(127), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(127), - [aux_sym__val_number_token2] = ACTIONS(127), - [aux_sym__val_number_token3] = ACTIONS(127), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(127), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(127), - [sym__str_single_quotes] = ACTIONS(127), - [sym__str_back_ticks] = ACTIONS(127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(127), [anon_sym_POUND] = ACTIONS(105), }, - [25] = { - [sym_comment] = STATE(25), + [20] = { + [sym_comment] = STATE(20), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), [anon_sym_let] = ACTIONS(115), @@ -75569,7 +76218,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(125), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -75667,352 +76315,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [anon_sym_CARET] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [26] = { - [sym_comment] = STATE(26), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(187), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(146), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [27] = { - [sym_comment] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(129), - [anon_sym_export] = ACTIONS(127), - [anon_sym_alias] = ACTIONS(127), - [anon_sym_let] = ACTIONS(127), - [anon_sym_let_DASHenv] = ACTIONS(127), - [anon_sym_mut] = ACTIONS(127), - [anon_sym_const] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(127), - [sym_cmd_identifier] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_def] = ACTIONS(127), - [anon_sym_export_DASHenv] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(127), - [anon_sym_module] = ACTIONS(127), - [anon_sym_use] = ACTIONS(127), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_error] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_break] = ACTIONS(127), - [anon_sym_continue] = ACTIONS(127), - [anon_sym_for] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_loop] = ACTIONS(127), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(127), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(190), - [anon_sym_try] = ACTIONS(127), - [anon_sym_return] = ACTIONS(127), - [anon_sym_source] = ACTIONS(127), - [anon_sym_source_DASHenv] = ACTIONS(127), - [anon_sym_register] = ACTIONS(127), - [anon_sym_hide] = ACTIONS(127), - [anon_sym_hide_DASHenv] = ACTIONS(127), - [anon_sym_overlay] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_where] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [anon_sym_not] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(193), - [anon_sym_null] = ACTIONS(127), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(127), - [aux_sym__val_number_token2] = ACTIONS(127), - [aux_sym__val_number_token3] = ACTIONS(127), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(127), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(127), - [sym__str_single_quotes] = ACTIONS(127), - [sym__str_back_ticks] = ACTIONS(127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(105), - }, - [28] = { - [sym_comment] = STATE(28), + [21] = { + [sym_comment] = STATE(21), [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), @@ -76081,7 +76388,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(138), + [aux_sym__immediate_decimal_token1] = ACTIONS(178), + [aux_sym__immediate_decimal_token2] = ACTIONS(180), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -76179,182 +76487,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [anon_sym_CARET] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), - }, - [29] = { - [sym_comment] = STATE(29), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_error] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(195), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_CARET] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), [anon_sym_POUND] = ACTIONS(105), }, - [30] = { - [sym_comment] = STATE(30), + [22] = { + [sym_comment] = STATE(22), [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), @@ -76423,6 +76559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(141), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -76523,518 +76660,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [31] = { - [sym_comment] = STATE(31), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_error] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_where] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_not] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(177), - [anon_sym_POUND] = ACTIONS(105), - }, - [32] = { - [sym_comment] = STATE(32), - [anon_sym_export] = ACTIONS(165), - [anon_sym_alias] = ACTIONS(165), - [anon_sym_let] = ACTIONS(165), - [anon_sym_let_DASHenv] = ACTIONS(165), - [anon_sym_mut] = ACTIONS(165), - [anon_sym_const] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_def] = ACTIONS(165), - [anon_sym_export_DASHenv] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(165), - [anon_sym_module] = ACTIONS(165), - [anon_sym_use] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_error] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_loop] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_match] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_try] = ACTIONS(165), - [anon_sym_return] = ACTIONS(165), - [anon_sym_source] = ACTIONS(165), - [anon_sym_source_DASHenv] = ACTIONS(165), - [anon_sym_register] = ACTIONS(165), - [anon_sym_hide] = ACTIONS(165), - [anon_sym_hide_DASHenv] = ACTIONS(165), - [anon_sym_overlay] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_where] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_not] = ACTIONS(165), - [anon_sym_null] = ACTIONS(165), - [anon_sym_true] = ACTIONS(165), - [anon_sym_false] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(165), - [aux_sym__val_number_token2] = ACTIONS(165), - [aux_sym__val_number_token3] = ACTIONS(165), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(165), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(165), - [sym__str_single_quotes] = ACTIONS(165), - [sym__str_back_ticks] = ACTIONS(165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(105), - }, - [33] = { - [sym_comment] = STATE(33), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_error] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(105), - }, - [34] = { - [sym_comment] = STATE(34), + [23] = { + [sym_comment] = STATE(23), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), [anon_sym_let] = ACTIONS(115), @@ -77068,7 +76695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(182), [anon_sym_try] = ACTIONS(115), [anon_sym_return] = ACTIONS(115), [anon_sym_source] = ACTIONS(115), @@ -77104,6 +76731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(155), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -77203,348 +76831,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [35] = { - [sym_comment] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(197), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(159), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), + [24] = { + [sym_comment] = STATE(24), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_error] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_where] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_not] = ACTIONS(147), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, - [36] = { - [sym_comment] = STATE(36), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_error] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_CARET] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [25] = { + [sym_comment] = STATE(25), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_error] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_where] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_not] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(185), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, - [37] = { - [sym_comment] = STATE(37), + [26] = { + [sym_comment] = STATE(26), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), @@ -77613,6 +77243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), [anon_sym_not] = ACTIONS(107), + [aux_sym__immediate_decimal_token2] = ACTIONS(125), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -77713,348 +77344,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [38] = { - [sym_comment] = STATE(38), - [ts_builtin_sym_end] = ACTIONS(167), - [anon_sym_export] = ACTIONS(165), - [anon_sym_alias] = ACTIONS(165), - [anon_sym_let] = ACTIONS(165), - [anon_sym_let_DASHenv] = ACTIONS(165), - [anon_sym_mut] = ACTIONS(165), - [anon_sym_const] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_def] = ACTIONS(165), - [anon_sym_export_DASHenv] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(165), - [anon_sym_module] = ACTIONS(165), - [anon_sym_use] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_error] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_loop] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_match] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_try] = ACTIONS(165), - [anon_sym_return] = ACTIONS(165), - [anon_sym_source] = ACTIONS(165), - [anon_sym_source_DASHenv] = ACTIONS(165), - [anon_sym_register] = ACTIONS(165), - [anon_sym_hide] = ACTIONS(165), - [anon_sym_hide_DASHenv] = ACTIONS(165), - [anon_sym_overlay] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_where] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_not] = ACTIONS(165), - [anon_sym_null] = ACTIONS(165), - [anon_sym_true] = ACTIONS(165), - [anon_sym_false] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(165), - [aux_sym__val_number_token2] = ACTIONS(165), - [aux_sym__val_number_token3] = ACTIONS(165), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(165), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(165), - [sym__str_single_quotes] = ACTIONS(165), - [sym__str_back_ticks] = ACTIONS(165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), + [27] = { + [sym_comment] = STATE(27), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_error] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(191), + [anon_sym_try] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_where] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_not] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_CARET] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(193), [anon_sym_POUND] = ACTIONS(105), }, - [39] = { - [sym_comment] = STATE(39), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_error] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(200), - [anon_sym_try] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_where] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_not] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(171), + [28] = { + [sym_comment] = STATE(28), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_error] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_where] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_not] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(195), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, - [40] = { - [sym_comment] = STATE(40), + [29] = { + [sym_comment] = STATE(29), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), [anon_sym_let] = ACTIONS(107), @@ -78124,6 +77757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), [anon_sym_not] = ACTIONS(107), + [aux_sym__immediate_decimal_token2] = ACTIONS(145), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -78223,348 +77857,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [41] = { - [sym_comment] = STATE(41), - [ts_builtin_sym_end] = ACTIONS(129), - [anon_sym_export] = ACTIONS(127), - [anon_sym_alias] = ACTIONS(127), - [anon_sym_let] = ACTIONS(127), - [anon_sym_let_DASHenv] = ACTIONS(127), - [anon_sym_mut] = ACTIONS(127), - [anon_sym_const] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(127), - [sym_cmd_identifier] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_def] = ACTIONS(127), - [anon_sym_export_DASHenv] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(127), - [anon_sym_module] = ACTIONS(127), - [anon_sym_use] = ACTIONS(127), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_error] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_break] = ACTIONS(127), - [anon_sym_continue] = ACTIONS(127), - [anon_sym_for] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_loop] = ACTIONS(127), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(127), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(202), - [anon_sym_try] = ACTIONS(127), - [anon_sym_return] = ACTIONS(127), - [anon_sym_source] = ACTIONS(127), - [anon_sym_source_DASHenv] = ACTIONS(127), - [anon_sym_register] = ACTIONS(127), - [anon_sym_hide] = ACTIONS(127), - [anon_sym_hide_DASHenv] = ACTIONS(127), - [anon_sym_overlay] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_where] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [anon_sym_not] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(205), - [anon_sym_null] = ACTIONS(127), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(127), - [aux_sym__val_number_token2] = ACTIONS(127), - [aux_sym__val_number_token3] = ACTIONS(127), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(127), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(127), - [sym__str_single_quotes] = ACTIONS(127), - [sym__str_back_ticks] = ACTIONS(127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(127), + [30] = { + [sym_comment] = STATE(30), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_error] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(197), + [anon_sym_try] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_where] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_not] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_CARET] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(105), }, - [42] = { - [sym_comment] = STATE(42), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_error] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(207), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_CARET] = ACTIONS(148), + [31] = { + [sym_comment] = STATE(31), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_export] = ACTIONS(115), + [anon_sym_alias] = ACTIONS(115), + [anon_sym_let] = ACTIONS(115), + [anon_sym_let_DASHenv] = ACTIONS(115), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(115), + [sym_cmd_identifier] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_def] = ACTIONS(115), + [anon_sym_export_DASHenv] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_use] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_error] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_break] = ACTIONS(115), + [anon_sym_continue] = ACTIONS(115), + [anon_sym_for] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_loop] = ACTIONS(115), + [anon_sym_while] = ACTIONS(115), + [anon_sym_do] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_match] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_try] = ACTIONS(115), + [anon_sym_return] = ACTIONS(115), + [anon_sym_source] = ACTIONS(115), + [anon_sym_source_DASHenv] = ACTIONS(115), + [anon_sym_register] = ACTIONS(115), + [anon_sym_hide] = ACTIONS(115), + [anon_sym_hide_DASHenv] = ACTIONS(115), + [anon_sym_overlay] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_where] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_not] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(180), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [43] = { - [sym_comment] = STATE(43), + [32] = { + [sym_comment] = STATE(32), [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), @@ -78597,6 +78231,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(199), + [anon_sym_try] = ACTIONS(115), + [anon_sym_return] = ACTIONS(115), + [anon_sym_source] = ACTIONS(115), + [anon_sym_source_DASHenv] = ACTIONS(115), + [anon_sym_register] = ACTIONS(115), + [anon_sym_hide] = ACTIONS(115), + [anon_sym_hide_DASHenv] = ACTIONS(115), + [anon_sym_overlay] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_where] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_not] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(180), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [33] = { + [sym_comment] = STATE(33), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_error] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_where] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_not] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(202), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [34] = { + [sym_comment] = STATE(34), + [anon_sym_export] = ACTIONS(115), + [anon_sym_alias] = ACTIONS(115), + [anon_sym_let] = ACTIONS(115), + [anon_sym_let_DASHenv] = ACTIONS(115), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(115), + [sym_cmd_identifier] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_def] = ACTIONS(115), + [anon_sym_export_DASHenv] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_use] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_error] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_break] = ACTIONS(115), + [anon_sym_continue] = ACTIONS(115), + [anon_sym_for] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_loop] = ACTIONS(115), + [anon_sym_while] = ACTIONS(115), + [anon_sym_do] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_match] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_try] = ACTIONS(115), [anon_sym_return] = ACTIONS(115), @@ -78633,7 +78608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), [anon_sym_not] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(163), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -78733,178 +78707,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [44] = { - [sym_comment] = STATE(44), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_error] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(209), - [anon_sym_try] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_where] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_not] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(211), + [35] = { + [sym_comment] = STATE(35), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(157), + [anon_sym_let] = ACTIONS(157), + [anon_sym_let_DASHenv] = ACTIONS(157), + [anon_sym_mut] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [sym_cmd_identifier] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_def] = ACTIONS(157), + [anon_sym_export_DASHenv] = ACTIONS(157), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_module] = ACTIONS(157), + [anon_sym_use] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_error] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_for] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_loop] = ACTIONS(157), + [anon_sym_while] = ACTIONS(157), + [anon_sym_do] = ACTIONS(157), + [anon_sym_if] = ACTIONS(157), + [anon_sym_match] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_try] = ACTIONS(157), + [anon_sym_return] = ACTIONS(157), + [anon_sym_source] = ACTIONS(157), + [anon_sym_source_DASHenv] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_hide] = ACTIONS(157), + [anon_sym_hide_DASHenv] = ACTIONS(157), + [anon_sym_overlay] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_where] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_not] = ACTIONS(157), + [anon_sym_null] = ACTIONS(157), + [anon_sym_true] = ACTIONS(157), + [anon_sym_false] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(157), + [aux_sym__val_number_token2] = ACTIONS(157), + [aux_sym__val_number_token3] = ACTIONS(157), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(157), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym__str_single_quotes] = ACTIONS(157), + [sym__str_back_ticks] = ACTIONS(157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(105), }, - [45] = { - [sym_comment] = STATE(45), + [36] = { + [sym_comment] = STATE(36), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), @@ -78973,7 +78947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), [anon_sym_not] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(159), + [aux_sym__immediate_decimal_token2] = ACTIONS(176), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -79073,177 +79047,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [46] = { - [sym_comment] = STATE(46), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_error] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_where] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_not] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(171), + [37] = { + [sym_comment] = STATE(37), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_export] = ACTIONS(115), + [anon_sym_alias] = ACTIONS(115), + [anon_sym_let] = ACTIONS(115), + [anon_sym_let_DASHenv] = ACTIONS(115), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(115), + [sym_cmd_identifier] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_def] = ACTIONS(115), + [anon_sym_export_DASHenv] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_use] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_error] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_break] = ACTIONS(115), + [anon_sym_continue] = ACTIONS(115), + [anon_sym_for] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_loop] = ACTIONS(115), + [anon_sym_while] = ACTIONS(115), + [anon_sym_do] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_match] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_try] = ACTIONS(115), + [anon_sym_return] = ACTIONS(115), + [anon_sym_source] = ACTIONS(115), + [anon_sym_source_DASHenv] = ACTIONS(115), + [anon_sym_register] = ACTIONS(115), + [anon_sym_hide] = ACTIONS(115), + [anon_sym_hide_DASHenv] = ACTIONS(115), + [anon_sym_overlay] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_where] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_not] = ACTIONS(115), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [47] = { - [sym_comment] = STATE(47), + [38] = { + [sym_comment] = STATE(38), + [ts_builtin_sym_end] = ACTIONS(132), + [anon_sym_export] = ACTIONS(130), + [anon_sym_alias] = ACTIONS(130), + [anon_sym_let] = ACTIONS(130), + [anon_sym_let_DASHenv] = ACTIONS(130), + [anon_sym_mut] = ACTIONS(130), + [anon_sym_const] = ACTIONS(130), + [anon_sym_SEMI] = ACTIONS(130), + [sym_cmd_identifier] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_def] = ACTIONS(130), + [anon_sym_export_DASHenv] = ACTIONS(130), + [anon_sym_extern] = ACTIONS(130), + [anon_sym_module] = ACTIONS(130), + [anon_sym_use] = ACTIONS(130), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(130), + [anon_sym_error] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_break] = ACTIONS(130), + [anon_sym_continue] = ACTIONS(130), + [anon_sym_for] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_loop] = ACTIONS(130), + [anon_sym_while] = ACTIONS(130), + [anon_sym_do] = ACTIONS(130), + [anon_sym_if] = ACTIONS(130), + [anon_sym_match] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(204), + [anon_sym_try] = ACTIONS(130), + [anon_sym_return] = ACTIONS(130), + [anon_sym_source] = ACTIONS(130), + [anon_sym_source_DASHenv] = ACTIONS(130), + [anon_sym_register] = ACTIONS(130), + [anon_sym_hide] = ACTIONS(130), + [anon_sym_hide_DASHenv] = ACTIONS(130), + [anon_sym_overlay] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_where] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [anon_sym_not] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(207), + [anon_sym_null] = ACTIONS(130), + [anon_sym_true] = ACTIONS(130), + [anon_sym_false] = ACTIONS(130), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(130), + [aux_sym__val_number_token2] = ACTIONS(130), + [aux_sym__val_number_token3] = ACTIONS(130), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(130), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym__str_single_quotes] = ACTIONS(130), + [sym__str_back_ticks] = ACTIONS(130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(130), + [anon_sym_CARET] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), + }, + [39] = { + [sym_comment] = STATE(39), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), @@ -79409,10 +79554,1200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), [anon_sym_CARET] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [48] = { - [sym_comment] = STATE(48), + [40] = { + [sym_comment] = STATE(40), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_error] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_where] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_not] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_CARET] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(193), + [anon_sym_POUND] = ACTIONS(105), + }, + [41] = { + [sym_comment] = STATE(41), + [ts_builtin_sym_end] = ACTIONS(159), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(157), + [anon_sym_let] = ACTIONS(157), + [anon_sym_let_DASHenv] = ACTIONS(157), + [anon_sym_mut] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [sym_cmd_identifier] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_def] = ACTIONS(157), + [anon_sym_export_DASHenv] = ACTIONS(157), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_module] = ACTIONS(157), + [anon_sym_use] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_error] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_for] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_loop] = ACTIONS(157), + [anon_sym_while] = ACTIONS(157), + [anon_sym_do] = ACTIONS(157), + [anon_sym_if] = ACTIONS(157), + [anon_sym_match] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_try] = ACTIONS(157), + [anon_sym_return] = ACTIONS(157), + [anon_sym_source] = ACTIONS(157), + [anon_sym_source_DASHenv] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_hide] = ACTIONS(157), + [anon_sym_hide_DASHenv] = ACTIONS(157), + [anon_sym_overlay] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_where] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_not] = ACTIONS(157), + [anon_sym_null] = ACTIONS(157), + [anon_sym_true] = ACTIONS(157), + [anon_sym_false] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(157), + [aux_sym__val_number_token2] = ACTIONS(157), + [aux_sym__val_number_token3] = ACTIONS(157), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(157), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym__str_single_quotes] = ACTIONS(157), + [sym__str_back_ticks] = ACTIONS(157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(105), + }, + [42] = { + [sym_comment] = STATE(42), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_error] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_where] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_not] = ACTIONS(147), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [43] = { + [sym_comment] = STATE(43), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_error] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(209), + [anon_sym_try] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_where] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_not] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_CARET] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(105), + }, + [44] = { + [sym_comment] = STATE(44), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_error] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_where] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_not] = ACTIONS(147), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [45] = { + [sym_comment] = STATE(45), + [anon_sym_export] = ACTIONS(107), + [anon_sym_alias] = ACTIONS(107), + [anon_sym_let] = ACTIONS(107), + [anon_sym_let_DASHenv] = ACTIONS(107), + [anon_sym_mut] = ACTIONS(107), + [anon_sym_const] = ACTIONS(107), + [anon_sym_SEMI] = ACTIONS(107), + [sym_cmd_identifier] = ACTIONS(107), + [anon_sym_LF] = ACTIONS(109), + [anon_sym_def] = ACTIONS(107), + [anon_sym_export_DASHenv] = ACTIONS(107), + [anon_sym_extern] = ACTIONS(107), + [anon_sym_module] = ACTIONS(107), + [anon_sym_use] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(107), + [anon_sym_RPAREN] = ACTIONS(107), + [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_error] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_break] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(107), + [anon_sym_for] = ACTIONS(107), + [anon_sym_in] = ACTIONS(107), + [anon_sym_loop] = ACTIONS(107), + [anon_sym_while] = ACTIONS(107), + [anon_sym_do] = ACTIONS(107), + [anon_sym_if] = ACTIONS(107), + [anon_sym_match] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_DOT] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_try] = ACTIONS(107), + [anon_sym_return] = ACTIONS(107), + [anon_sym_source] = ACTIONS(107), + [anon_sym_source_DASHenv] = ACTIONS(107), + [anon_sym_register] = ACTIONS(107), + [anon_sym_hide] = ACTIONS(107), + [anon_sym_hide_DASHenv] = ACTIONS(107), + [anon_sym_overlay] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_where] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(107), + [anon_sym_PLUS_PLUS] = ACTIONS(107), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(107), + [anon_sym_bit_DASHshr] = ACTIONS(107), + [anon_sym_EQ_EQ] = ACTIONS(107), + [anon_sym_BANG_EQ] = ACTIONS(107), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(107), + [anon_sym_GT_EQ] = ACTIONS(107), + [anon_sym_not_DASHin] = ACTIONS(107), + [anon_sym_starts_DASHwith] = ACTIONS(107), + [anon_sym_ends_DASHwith] = ACTIONS(107), + [anon_sym_EQ_TILDE] = ACTIONS(107), + [anon_sym_BANG_TILDE] = ACTIONS(107), + [anon_sym_bit_DASHand] = ACTIONS(107), + [anon_sym_bit_DASHxor] = ACTIONS(107), + [anon_sym_bit_DASHor] = ACTIONS(107), + [anon_sym_and] = ACTIONS(107), + [anon_sym_xor] = ACTIONS(107), + [anon_sym_or] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_null] = ACTIONS(107), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [aux_sym__val_number_decimal_token1] = ACTIONS(107), + [aux_sym__val_number_token1] = ACTIONS(107), + [aux_sym__val_number_token2] = ACTIONS(107), + [aux_sym__val_number_token3] = ACTIONS(107), + [aux_sym__val_number_token4] = ACTIONS(107), + [aux_sym__val_number_token5] = ACTIONS(107), + [aux_sym__val_number_token6] = ACTIONS(107), + [anon_sym_ns] = ACTIONS(107), + [anon_sym_s] = ACTIONS(107), + [anon_sym_us] = ACTIONS(107), + [anon_sym_ms] = ACTIONS(107), + [anon_sym_sec] = ACTIONS(107), + [anon_sym_min] = ACTIONS(107), + [anon_sym_hr] = ACTIONS(107), + [anon_sym_day] = ACTIONS(107), + [anon_sym_wk] = ACTIONS(107), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(107), + [anon_sym_kb] = ACTIONS(107), + [anon_sym_kB] = ACTIONS(107), + [anon_sym_Kb] = ACTIONS(107), + [anon_sym_KB] = ACTIONS(107), + [anon_sym_mb] = ACTIONS(107), + [anon_sym_mB] = ACTIONS(107), + [anon_sym_Mb] = ACTIONS(107), + [anon_sym_MB] = ACTIONS(107), + [anon_sym_gb] = ACTIONS(107), + [anon_sym_gB] = ACTIONS(107), + [anon_sym_Gb] = ACTIONS(107), + [anon_sym_GB] = ACTIONS(107), + [anon_sym_tb] = ACTIONS(107), + [anon_sym_tB] = ACTIONS(107), + [anon_sym_Tb] = ACTIONS(107), + [anon_sym_TB] = ACTIONS(107), + [anon_sym_pb] = ACTIONS(107), + [anon_sym_pB] = ACTIONS(107), + [anon_sym_Pb] = ACTIONS(107), + [anon_sym_PB] = ACTIONS(107), + [anon_sym_eb] = ACTIONS(107), + [anon_sym_eB] = ACTIONS(107), + [anon_sym_Eb] = ACTIONS(107), + [anon_sym_EB] = ACTIONS(107), + [anon_sym_kib] = ACTIONS(107), + [anon_sym_kiB] = ACTIONS(107), + [anon_sym_kIB] = ACTIONS(107), + [anon_sym_kIb] = ACTIONS(107), + [anon_sym_Kib] = ACTIONS(107), + [anon_sym_KIb] = ACTIONS(107), + [anon_sym_KIB] = ACTIONS(107), + [anon_sym_mib] = ACTIONS(107), + [anon_sym_miB] = ACTIONS(107), + [anon_sym_mIB] = ACTIONS(107), + [anon_sym_mIb] = ACTIONS(107), + [anon_sym_Mib] = ACTIONS(107), + [anon_sym_MIb] = ACTIONS(107), + [anon_sym_MIB] = ACTIONS(107), + [anon_sym_gib] = ACTIONS(107), + [anon_sym_giB] = ACTIONS(107), + [anon_sym_gIB] = ACTIONS(107), + [anon_sym_gIb] = ACTIONS(107), + [anon_sym_Gib] = ACTIONS(107), + [anon_sym_GIb] = ACTIONS(107), + [anon_sym_GIB] = ACTIONS(107), + [anon_sym_tib] = ACTIONS(107), + [anon_sym_tiB] = ACTIONS(107), + [anon_sym_tIB] = ACTIONS(107), + [anon_sym_tIb] = ACTIONS(107), + [anon_sym_Tib] = ACTIONS(107), + [anon_sym_TIb] = ACTIONS(107), + [anon_sym_TIB] = ACTIONS(107), + [anon_sym_pib] = ACTIONS(107), + [anon_sym_piB] = ACTIONS(107), + [anon_sym_pIB] = ACTIONS(107), + [anon_sym_pIb] = ACTIONS(107), + [anon_sym_Pib] = ACTIONS(107), + [anon_sym_PIb] = ACTIONS(107), + [anon_sym_PIB] = ACTIONS(107), + [anon_sym_eib] = ACTIONS(107), + [anon_sym_eiB] = ACTIONS(107), + [anon_sym_eIB] = ACTIONS(107), + [anon_sym_eIb] = ACTIONS(107), + [anon_sym_Eib] = ACTIONS(107), + [anon_sym_EIb] = ACTIONS(107), + [anon_sym_EIB] = ACTIONS(107), + [anon_sym_0b] = ACTIONS(107), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(107), + [sym__str_back_ticks] = ACTIONS(107), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_POUND] = ACTIONS(105), + }, + [46] = { + [sym_comment] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_export] = ACTIONS(115), + [anon_sym_alias] = ACTIONS(115), + [anon_sym_let] = ACTIONS(115), + [anon_sym_let_DASHenv] = ACTIONS(115), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(115), + [sym_cmd_identifier] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_def] = ACTIONS(115), + [anon_sym_export_DASHenv] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_use] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_error] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_break] = ACTIONS(115), + [anon_sym_continue] = ACTIONS(115), + [anon_sym_for] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_loop] = ACTIONS(115), + [anon_sym_while] = ACTIONS(115), + [anon_sym_do] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_match] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_try] = ACTIONS(115), + [anon_sym_return] = ACTIONS(115), + [anon_sym_source] = ACTIONS(115), + [anon_sym_source_DASHenv] = ACTIONS(115), + [anon_sym_register] = ACTIONS(115), + [anon_sym_hide] = ACTIONS(115), + [anon_sym_hide_DASHenv] = ACTIONS(115), + [anon_sym_overlay] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_where] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_not] = ACTIONS(115), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [47] = { + [sym_comment] = STATE(47), [anon_sym_export] = ACTIONS(213), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(213), @@ -79580,177 +80915,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(105), }, - [49] = { - [sym_comment] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_error] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_where] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_not] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(211), + [48] = { + [sym_comment] = STATE(48), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_error] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_where] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_not] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_CARET] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(105), }, - [50] = { - [sym_comment] = STATE(50), + [49] = { + [sym_comment] = STATE(49), [anon_sym_export] = ACTIONS(221), [anon_sym_alias] = ACTIONS(221), [anon_sym_let] = ACTIONS(221), @@ -79918,680 +81253,849 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(221), [anon_sym_POUND] = ACTIONS(105), }, + [50] = { + [sym_comment] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(159), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(157), + [anon_sym_let] = ACTIONS(157), + [anon_sym_let_DASHenv] = ACTIONS(157), + [anon_sym_mut] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [sym_cmd_identifier] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_def] = ACTIONS(157), + [anon_sym_export_DASHenv] = ACTIONS(157), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_module] = ACTIONS(157), + [anon_sym_use] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_error] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_for] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_loop] = ACTIONS(157), + [anon_sym_while] = ACTIONS(157), + [anon_sym_do] = ACTIONS(157), + [anon_sym_if] = ACTIONS(157), + [anon_sym_match] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_try] = ACTIONS(157), + [anon_sym_return] = ACTIONS(157), + [anon_sym_source] = ACTIONS(157), + [anon_sym_source_DASHenv] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_hide] = ACTIONS(157), + [anon_sym_hide_DASHenv] = ACTIONS(157), + [anon_sym_overlay] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_where] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_not] = ACTIONS(157), + [anon_sym_null] = ACTIONS(157), + [anon_sym_true] = ACTIONS(157), + [anon_sym_false] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(157), + [aux_sym__val_number_token2] = ACTIONS(157), + [aux_sym__val_number_token3] = ACTIONS(157), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(157), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym__str_single_quotes] = ACTIONS(157), + [sym__str_back_ticks] = ACTIONS(157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(105), + }, [51] = { [sym_comment] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(117), - [anon_sym_export] = ACTIONS(115), - [anon_sym_alias] = ACTIONS(115), - [anon_sym_let] = ACTIONS(115), - [anon_sym_let_DASHenv] = ACTIONS(115), - [anon_sym_mut] = ACTIONS(115), - [anon_sym_const] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(115), - [sym_cmd_identifier] = ACTIONS(115), - [anon_sym_LF] = ACTIONS(117), - [anon_sym_def] = ACTIONS(115), - [anon_sym_export_DASHenv] = ACTIONS(115), - [anon_sym_extern] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_use] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_error] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_break] = ACTIONS(115), - [anon_sym_continue] = ACTIONS(115), - [anon_sym_for] = ACTIONS(115), - [anon_sym_in] = ACTIONS(115), - [anon_sym_loop] = ACTIONS(115), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(115), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_try] = ACTIONS(115), - [anon_sym_return] = ACTIONS(115), - [anon_sym_source] = ACTIONS(115), - [anon_sym_source_DASHenv] = ACTIONS(115), - [anon_sym_register] = ACTIONS(115), - [anon_sym_hide] = ACTIONS(115), - [anon_sym_hide_DASHenv] = ACTIONS(115), - [anon_sym_overlay] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_where] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(115), - [anon_sym_bit_DASHshr] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_not_DASHin] = ACTIONS(115), - [anon_sym_starts_DASHwith] = ACTIONS(115), - [anon_sym_ends_DASHwith] = ACTIONS(115), - [anon_sym_EQ_TILDE] = ACTIONS(115), - [anon_sym_BANG_TILDE] = ACTIONS(115), - [anon_sym_bit_DASHand] = ACTIONS(115), - [anon_sym_bit_DASHxor] = ACTIONS(115), - [anon_sym_bit_DASHor] = ACTIONS(115), - [anon_sym_and] = ACTIONS(115), - [anon_sym_xor] = ACTIONS(115), - [anon_sym_or] = ACTIONS(115), - [anon_sym_not] = ACTIONS(115), - [anon_sym_null] = ACTIONS(115), - [anon_sym_true] = ACTIONS(115), - [anon_sym_false] = ACTIONS(115), - [aux_sym__val_number_decimal_token1] = ACTIONS(115), - [aux_sym__val_number_token1] = ACTIONS(115), - [aux_sym__val_number_token2] = ACTIONS(115), - [aux_sym__val_number_token3] = ACTIONS(115), - [aux_sym__val_number_token4] = ACTIONS(115), - [aux_sym__val_number_token5] = ACTIONS(115), - [aux_sym__val_number_token6] = ACTIONS(115), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [anon_sym_0b] = ACTIONS(115), - [anon_sym_0o] = ACTIONS(115), - [anon_sym_0x] = ACTIONS(115), - [sym_val_date] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym__str_single_quotes] = ACTIONS(115), - [sym__str_back_ticks] = ACTIONS(115), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_CARET] = ACTIONS(115), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_error] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(225), + [anon_sym_try] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_where] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_not] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_CARET] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(105), }, [52] = { [sym_comment] = STATE(52), - [ts_builtin_sym_end] = ACTIONS(167), - [anon_sym_export] = ACTIONS(165), - [anon_sym_alias] = ACTIONS(165), - [anon_sym_let] = ACTIONS(165), - [anon_sym_let_DASHenv] = ACTIONS(165), - [anon_sym_mut] = ACTIONS(165), - [anon_sym_const] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_def] = ACTIONS(165), - [anon_sym_export_DASHenv] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(165), - [anon_sym_module] = ACTIONS(165), - [anon_sym_use] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_error] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_loop] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_match] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_try] = ACTIONS(165), - [anon_sym_return] = ACTIONS(165), - [anon_sym_source] = ACTIONS(165), - [anon_sym_source_DASHenv] = ACTIONS(165), - [anon_sym_register] = ACTIONS(165), - [anon_sym_hide] = ACTIONS(165), - [anon_sym_hide_DASHenv] = ACTIONS(165), - [anon_sym_overlay] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_where] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_not] = ACTIONS(165), - [anon_sym_null] = ACTIONS(165), - [anon_sym_true] = ACTIONS(165), - [anon_sym_false] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(165), - [aux_sym__val_number_token2] = ACTIONS(165), - [aux_sym__val_number_token3] = ACTIONS(165), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(165), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(165), - [sym__str_single_quotes] = ACTIONS(165), - [sym__str_back_ticks] = ACTIONS(165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(165), - [anon_sym_CARET] = ACTIONS(165), + [ts_builtin_sym_end] = ACTIONS(109), + [anon_sym_export] = ACTIONS(107), + [anon_sym_alias] = ACTIONS(107), + [anon_sym_let] = ACTIONS(107), + [anon_sym_let_DASHenv] = ACTIONS(107), + [anon_sym_mut] = ACTIONS(107), + [anon_sym_const] = ACTIONS(107), + [anon_sym_SEMI] = ACTIONS(107), + [sym_cmd_identifier] = ACTIONS(107), + [anon_sym_LF] = ACTIONS(109), + [anon_sym_def] = ACTIONS(107), + [anon_sym_export_DASHenv] = ACTIONS(107), + [anon_sym_extern] = ACTIONS(107), + [anon_sym_module] = ACTIONS(107), + [anon_sym_use] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(107), + [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_error] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_break] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(107), + [anon_sym_for] = ACTIONS(107), + [anon_sym_in] = ACTIONS(107), + [anon_sym_loop] = ACTIONS(107), + [anon_sym_while] = ACTIONS(107), + [anon_sym_do] = ACTIONS(107), + [anon_sym_if] = ACTIONS(107), + [anon_sym_match] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_DOT] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_try] = ACTIONS(107), + [anon_sym_return] = ACTIONS(107), + [anon_sym_source] = ACTIONS(107), + [anon_sym_source_DASHenv] = ACTIONS(107), + [anon_sym_register] = ACTIONS(107), + [anon_sym_hide] = ACTIONS(107), + [anon_sym_hide_DASHenv] = ACTIONS(107), + [anon_sym_overlay] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_where] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(107), + [anon_sym_PLUS_PLUS] = ACTIONS(107), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(107), + [anon_sym_bit_DASHshr] = ACTIONS(107), + [anon_sym_EQ_EQ] = ACTIONS(107), + [anon_sym_BANG_EQ] = ACTIONS(107), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(107), + [anon_sym_GT_EQ] = ACTIONS(107), + [anon_sym_not_DASHin] = ACTIONS(107), + [anon_sym_starts_DASHwith] = ACTIONS(107), + [anon_sym_ends_DASHwith] = ACTIONS(107), + [anon_sym_EQ_TILDE] = ACTIONS(107), + [anon_sym_BANG_TILDE] = ACTIONS(107), + [anon_sym_bit_DASHand] = ACTIONS(107), + [anon_sym_bit_DASHxor] = ACTIONS(107), + [anon_sym_bit_DASHor] = ACTIONS(107), + [anon_sym_and] = ACTIONS(107), + [anon_sym_xor] = ACTIONS(107), + [anon_sym_or] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_null] = ACTIONS(107), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [aux_sym__val_number_decimal_token1] = ACTIONS(107), + [aux_sym__val_number_token1] = ACTIONS(107), + [aux_sym__val_number_token2] = ACTIONS(107), + [aux_sym__val_number_token3] = ACTIONS(107), + [aux_sym__val_number_token4] = ACTIONS(107), + [aux_sym__val_number_token5] = ACTIONS(107), + [aux_sym__val_number_token6] = ACTIONS(107), + [anon_sym_ns] = ACTIONS(107), + [anon_sym_s] = ACTIONS(107), + [anon_sym_us] = ACTIONS(107), + [anon_sym_ms] = ACTIONS(107), + [anon_sym_sec] = ACTIONS(107), + [anon_sym_min] = ACTIONS(107), + [anon_sym_hr] = ACTIONS(107), + [anon_sym_day] = ACTIONS(107), + [anon_sym_wk] = ACTIONS(107), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(107), + [anon_sym_kb] = ACTIONS(107), + [anon_sym_kB] = ACTIONS(107), + [anon_sym_Kb] = ACTIONS(107), + [anon_sym_KB] = ACTIONS(107), + [anon_sym_mb] = ACTIONS(107), + [anon_sym_mB] = ACTIONS(107), + [anon_sym_Mb] = ACTIONS(107), + [anon_sym_MB] = ACTIONS(107), + [anon_sym_gb] = ACTIONS(107), + [anon_sym_gB] = ACTIONS(107), + [anon_sym_Gb] = ACTIONS(107), + [anon_sym_GB] = ACTIONS(107), + [anon_sym_tb] = ACTIONS(107), + [anon_sym_tB] = ACTIONS(107), + [anon_sym_Tb] = ACTIONS(107), + [anon_sym_TB] = ACTIONS(107), + [anon_sym_pb] = ACTIONS(107), + [anon_sym_pB] = ACTIONS(107), + [anon_sym_Pb] = ACTIONS(107), + [anon_sym_PB] = ACTIONS(107), + [anon_sym_eb] = ACTIONS(107), + [anon_sym_eB] = ACTIONS(107), + [anon_sym_Eb] = ACTIONS(107), + [anon_sym_EB] = ACTIONS(107), + [anon_sym_kib] = ACTIONS(107), + [anon_sym_kiB] = ACTIONS(107), + [anon_sym_kIB] = ACTIONS(107), + [anon_sym_kIb] = ACTIONS(107), + [anon_sym_Kib] = ACTIONS(107), + [anon_sym_KIb] = ACTIONS(107), + [anon_sym_KIB] = ACTIONS(107), + [anon_sym_mib] = ACTIONS(107), + [anon_sym_miB] = ACTIONS(107), + [anon_sym_mIB] = ACTIONS(107), + [anon_sym_mIb] = ACTIONS(107), + [anon_sym_Mib] = ACTIONS(107), + [anon_sym_MIb] = ACTIONS(107), + [anon_sym_MIB] = ACTIONS(107), + [anon_sym_gib] = ACTIONS(107), + [anon_sym_giB] = ACTIONS(107), + [anon_sym_gIB] = ACTIONS(107), + [anon_sym_gIb] = ACTIONS(107), + [anon_sym_Gib] = ACTIONS(107), + [anon_sym_GIb] = ACTIONS(107), + [anon_sym_GIB] = ACTIONS(107), + [anon_sym_tib] = ACTIONS(107), + [anon_sym_tiB] = ACTIONS(107), + [anon_sym_tIB] = ACTIONS(107), + [anon_sym_tIb] = ACTIONS(107), + [anon_sym_Tib] = ACTIONS(107), + [anon_sym_TIb] = ACTIONS(107), + [anon_sym_TIB] = ACTIONS(107), + [anon_sym_pib] = ACTIONS(107), + [anon_sym_piB] = ACTIONS(107), + [anon_sym_pIB] = ACTIONS(107), + [anon_sym_pIb] = ACTIONS(107), + [anon_sym_Pib] = ACTIONS(107), + [anon_sym_PIb] = ACTIONS(107), + [anon_sym_PIB] = ACTIONS(107), + [anon_sym_eib] = ACTIONS(107), + [anon_sym_eiB] = ACTIONS(107), + [anon_sym_eIB] = ACTIONS(107), + [anon_sym_eIb] = ACTIONS(107), + [anon_sym_Eib] = ACTIONS(107), + [anon_sym_EIb] = ACTIONS(107), + [anon_sym_EIB] = ACTIONS(107), + [anon_sym_0b] = ACTIONS(107), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(107), + [sym__str_back_ticks] = ACTIONS(107), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, [53] = { [sym_comment] = STATE(53), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_error] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(225), - [anon_sym_try] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_where] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_not] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(171), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_error] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_where] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_not] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_CARET] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(211), [anon_sym_POUND] = ACTIONS(105), }, [54] = { [sym_comment] = STATE(54), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_error] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_CARET] = ACTIONS(148), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_error] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_where] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_not] = ACTIONS(147), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, [55] = { @@ -80932,170 +82436,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [57] = { [sym_comment] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_error] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_where] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_not] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(171), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_error] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_where] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_not] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_CARET] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(105), }, [58] = { @@ -81591,165 +83095,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [61] = { [sym_comment] = STATE(61), - [anon_sym_export] = ACTIONS(115), - [anon_sym_alias] = ACTIONS(115), - [anon_sym_let] = ACTIONS(115), - [anon_sym_let_DASHenv] = ACTIONS(115), - [anon_sym_mut] = ACTIONS(115), - [anon_sym_const] = ACTIONS(115), - [sym_cmd_identifier] = ACTIONS(115), - [anon_sym_def] = ACTIONS(115), - [anon_sym_export_DASHenv] = ACTIONS(115), - [anon_sym_extern] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_use] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_error] = ACTIONS(115), - [anon_sym_list] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_break] = ACTIONS(115), - [anon_sym_continue] = ACTIONS(115), - [anon_sym_for] = ACTIONS(115), - [anon_sym_in] = ACTIONS(115), - [anon_sym_loop] = ACTIONS(115), - [anon_sym_make] = ACTIONS(115), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(115), - [anon_sym_if] = ACTIONS(115), - [anon_sym_else] = ACTIONS(115), - [anon_sym_match] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_try] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(115), - [anon_sym_return] = ACTIONS(115), - [anon_sym_source] = ACTIONS(115), - [anon_sym_source_DASHenv] = ACTIONS(115), - [anon_sym_register] = ACTIONS(115), - [anon_sym_hide] = ACTIONS(115), - [anon_sym_hide_DASHenv] = ACTIONS(115), - [anon_sym_overlay] = ACTIONS(115), - [anon_sym_new] = ACTIONS(115), - [anon_sym_as] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(115), - [anon_sym_bit_DASHshr] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(115), - [anon_sym_starts_DASHwith] = ACTIONS(115), - [anon_sym_ends_DASHwith] = ACTIONS(115), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(115), - [anon_sym_bit_DASHxor] = ACTIONS(115), - [anon_sym_bit_DASHor] = ACTIONS(115), - [anon_sym_and] = ACTIONS(115), - [anon_sym_xor] = ACTIONS(115), - [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(237), - [aux_sym__val_number_decimal_token1] = ACTIONS(115), - [aux_sym__val_number_token1] = ACTIONS(117), - [aux_sym__val_number_token2] = ACTIONS(117), - [aux_sym__val_number_token3] = ACTIONS(117), - [aux_sym__val_number_token4] = ACTIONS(115), - [aux_sym__val_number_token5] = ACTIONS(117), - [aux_sym__val_number_token6] = ACTIONS(115), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym__str_single_quotes] = ACTIONS(117), - [sym__str_back_ticks] = ACTIONS(117), - [aux_sym__record_key_token2] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_export] = ACTIONS(130), + [anon_sym_alias] = ACTIONS(130), + [anon_sym_let] = ACTIONS(130), + [anon_sym_let_DASHenv] = ACTIONS(130), + [anon_sym_mut] = ACTIONS(130), + [anon_sym_const] = ACTIONS(130), + [sym_cmd_identifier] = ACTIONS(130), + [anon_sym_def] = ACTIONS(130), + [anon_sym_export_DASHenv] = ACTIONS(130), + [anon_sym_extern] = ACTIONS(130), + [anon_sym_module] = ACTIONS(130), + [anon_sym_use] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_error] = ACTIONS(130), + [anon_sym_list] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_break] = ACTIONS(130), + [anon_sym_continue] = ACTIONS(130), + [anon_sym_for] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_loop] = ACTIONS(130), + [anon_sym_make] = ACTIONS(130), + [anon_sym_while] = ACTIONS(130), + [anon_sym_do] = ACTIONS(130), + [anon_sym_if] = ACTIONS(130), + [anon_sym_else] = ACTIONS(130), + [anon_sym_match] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(132), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(239), + [anon_sym_try] = ACTIONS(130), + [anon_sym_catch] = ACTIONS(130), + [anon_sym_return] = ACTIONS(130), + [anon_sym_source] = ACTIONS(130), + [anon_sym_source_DASHenv] = ACTIONS(130), + [anon_sym_register] = ACTIONS(130), + [anon_sym_hide] = ACTIONS(130), + [anon_sym_hide_DASHenv] = ACTIONS(130), + [anon_sym_overlay] = ACTIONS(130), + [anon_sym_new] = ACTIONS(130), + [anon_sym_as] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(242), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(132), + [aux_sym__val_number_token2] = ACTIONS(132), + [aux_sym__val_number_token3] = ACTIONS(132), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(132), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(132), + [sym__str_single_quotes] = ACTIONS(132), + [sym__str_back_ticks] = ACTIONS(132), + [aux_sym__record_key_token2] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), [anon_sym_POUND] = ACTIONS(3), }, [62] = { @@ -81786,7 +83290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(115), [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(244), [anon_sym_try] = ACTIONS(115), [anon_sym_catch] = ACTIONS(115), [anon_sym_return] = ACTIONS(115), @@ -81823,8 +83327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(239), - [aux_sym__immediate_decimal_token2] = ACTIONS(241), + [aux_sym__immediate_decimal_token2] = ACTIONS(237), [aux_sym__val_number_decimal_token1] = ACTIONS(115), [aux_sym__val_number_token1] = ACTIONS(117), [aux_sym__val_number_token2] = ACTIONS(117), @@ -81913,495 +83416,496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), [aux_sym__record_key_token2] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [63] = { [sym_comment] = STATE(63), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_def] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_error] = ACTIONS(107), - [anon_sym_list] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_make] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_else] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_try] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_new] = ACTIONS(107), - [anon_sym_as] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(243), - [aux_sym__immediate_decimal_token2] = ACTIONS(245), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(109), - [aux_sym__val_number_token2] = ACTIONS(109), - [aux_sym__val_number_token3] = ACTIONS(109), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(109), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [aux_sym__record_key_token2] = ACTIONS(107), + [anon_sym_export] = ACTIONS(115), + [anon_sym_alias] = ACTIONS(115), + [anon_sym_let] = ACTIONS(115), + [anon_sym_let_DASHenv] = ACTIONS(115), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(115), + [sym_cmd_identifier] = ACTIONS(115), + [anon_sym_def] = ACTIONS(115), + [anon_sym_export_DASHenv] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_use] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_error] = ACTIONS(115), + [anon_sym_list] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_break] = ACTIONS(115), + [anon_sym_continue] = ACTIONS(115), + [anon_sym_for] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_loop] = ACTIONS(115), + [anon_sym_make] = ACTIONS(115), + [anon_sym_while] = ACTIONS(115), + [anon_sym_do] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_else] = ACTIONS(115), + [anon_sym_match] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_try] = ACTIONS(115), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_return] = ACTIONS(115), + [anon_sym_source] = ACTIONS(115), + [anon_sym_source_DASHenv] = ACTIONS(115), + [anon_sym_register] = ACTIONS(115), + [anon_sym_hide] = ACTIONS(115), + [anon_sym_hide_DASHenv] = ACTIONS(115), + [anon_sym_overlay] = ACTIONS(115), + [anon_sym_new] = ACTIONS(115), + [anon_sym_as] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(237), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [aux_sym__record_key_token2] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [64] = { [sym_comment] = STATE(64), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_error] = ACTIONS(148), - [anon_sym_list] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_make] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_else] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_catch] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_new] = ACTIONS(148), - [anon_sym_as] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(247), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [aux_sym__record_key_token2] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [anon_sym_export] = ACTIONS(115), + [anon_sym_alias] = ACTIONS(115), + [anon_sym_let] = ACTIONS(115), + [anon_sym_let_DASHenv] = ACTIONS(115), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(115), + [sym_cmd_identifier] = ACTIONS(115), + [anon_sym_def] = ACTIONS(115), + [anon_sym_export_DASHenv] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_use] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_error] = ACTIONS(115), + [anon_sym_list] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_break] = ACTIONS(115), + [anon_sym_continue] = ACTIONS(115), + [anon_sym_for] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_loop] = ACTIONS(115), + [anon_sym_make] = ACTIONS(115), + [anon_sym_while] = ACTIONS(115), + [anon_sym_do] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_else] = ACTIONS(115), + [anon_sym_match] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_try] = ACTIONS(115), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_return] = ACTIONS(115), + [anon_sym_source] = ACTIONS(115), + [anon_sym_source_DASHenv] = ACTIONS(115), + [anon_sym_register] = ACTIONS(115), + [anon_sym_hide] = ACTIONS(115), + [anon_sym_hide_DASHenv] = ACTIONS(115), + [anon_sym_overlay] = ACTIONS(115), + [anon_sym_new] = ACTIONS(115), + [anon_sym_as] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token1] = ACTIONS(247), + [aux_sym__immediate_decimal_token2] = ACTIONS(249), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [aux_sym__record_key_token2] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [65] = { [sym_comment] = STATE(65), - [anon_sym_export] = ACTIONS(127), - [anon_sym_alias] = ACTIONS(127), - [anon_sym_let] = ACTIONS(127), - [anon_sym_let_DASHenv] = ACTIONS(127), - [anon_sym_mut] = ACTIONS(127), - [anon_sym_const] = ACTIONS(127), - [sym_cmd_identifier] = ACTIONS(127), - [anon_sym_def] = ACTIONS(127), - [anon_sym_export_DASHenv] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(127), - [anon_sym_module] = ACTIONS(127), - [anon_sym_use] = ACTIONS(127), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_error] = ACTIONS(127), - [anon_sym_list] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_break] = ACTIONS(127), - [anon_sym_continue] = ACTIONS(127), - [anon_sym_for] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_loop] = ACTIONS(127), - [anon_sym_make] = ACTIONS(127), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(127), - [anon_sym_if] = ACTIONS(127), - [anon_sym_else] = ACTIONS(127), - [anon_sym_match] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(249), - [anon_sym_try] = ACTIONS(127), - [anon_sym_catch] = ACTIONS(127), - [anon_sym_return] = ACTIONS(127), - [anon_sym_source] = ACTIONS(127), - [anon_sym_source_DASHenv] = ACTIONS(127), - [anon_sym_register] = ACTIONS(127), - [anon_sym_hide] = ACTIONS(127), - [anon_sym_hide_DASHenv] = ACTIONS(127), - [anon_sym_overlay] = ACTIONS(127), - [anon_sym_new] = ACTIONS(127), - [anon_sym_as] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(252), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(129), - [aux_sym__val_number_token2] = ACTIONS(129), - [aux_sym__val_number_token3] = ACTIONS(129), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(129), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(129), - [sym__str_single_quotes] = ACTIONS(129), - [sym__str_back_ticks] = ACTIONS(129), - [aux_sym__record_key_token2] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_error] = ACTIONS(147), + [anon_sym_list] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_make] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_else] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_catch] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_new] = ACTIONS(147), + [anon_sym_as] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(251), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym__record_key_token2] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, [66] = { @@ -82438,7 +83942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(107), [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(254), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_try] = ACTIONS(107), [anon_sym_catch] = ACTIONS(107), [anon_sym_return] = ACTIONS(107), @@ -82475,7 +83979,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(233), + [aux_sym__immediate_decimal_token1] = ACTIONS(253), + [aux_sym__immediate_decimal_token2] = ACTIONS(255), [aux_sym__val_number_decimal_token1] = ACTIONS(107), [aux_sym__val_number_token1] = ACTIONS(109), [aux_sym__val_number_token2] = ACTIONS(109), @@ -82564,821 +84069,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(109), [sym__str_back_ticks] = ACTIONS(109), [aux_sym__record_key_token2] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, [67] = { [sym_comment] = STATE(67), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_def] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_error] = ACTIONS(107), - [anon_sym_list] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_make] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_else] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_try] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_new] = ACTIONS(107), - [anon_sym_as] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(245), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(109), - [aux_sym__val_number_token2] = ACTIONS(109), - [aux_sym__val_number_token3] = ACTIONS(109), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(109), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [aux_sym__record_key_token2] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [68] = { - [sym_comment] = STATE(68), - [anon_sym_export] = ACTIONS(165), - [anon_sym_alias] = ACTIONS(165), - [anon_sym_let] = ACTIONS(165), - [anon_sym_let_DASHenv] = ACTIONS(165), - [anon_sym_mut] = ACTIONS(165), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(165), - [anon_sym_def] = ACTIONS(165), - [anon_sym_export_DASHenv] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(165), - [anon_sym_module] = ACTIONS(165), - [anon_sym_use] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_error] = ACTIONS(165), - [anon_sym_list] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_loop] = ACTIONS(165), - [anon_sym_make] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_else] = ACTIONS(165), - [anon_sym_match] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_try] = ACTIONS(165), - [anon_sym_catch] = ACTIONS(165), - [anon_sym_return] = ACTIONS(165), - [anon_sym_source] = ACTIONS(165), - [anon_sym_source_DASHenv] = ACTIONS(165), - [anon_sym_register] = ACTIONS(165), - [anon_sym_hide] = ACTIONS(165), - [anon_sym_hide_DASHenv] = ACTIONS(165), - [anon_sym_overlay] = ACTIONS(165), - [anon_sym_new] = ACTIONS(165), - [anon_sym_as] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(167), - [aux_sym__val_number_token2] = ACTIONS(167), - [aux_sym__val_number_token3] = ACTIONS(167), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(167), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym__str_single_quotes] = ACTIONS(167), - [sym__str_back_ticks] = ACTIONS(167), - [aux_sym__record_key_token2] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(3), - }, - [69] = { - [sym_comment] = STATE(69), - [anon_sym_export] = ACTIONS(115), - [anon_sym_alias] = ACTIONS(115), - [anon_sym_let] = ACTIONS(115), - [anon_sym_let_DASHenv] = ACTIONS(115), - [anon_sym_mut] = ACTIONS(115), - [anon_sym_const] = ACTIONS(115), - [sym_cmd_identifier] = ACTIONS(115), - [anon_sym_def] = ACTIONS(115), - [anon_sym_export_DASHenv] = ACTIONS(115), - [anon_sym_extern] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_use] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_error] = ACTIONS(115), - [anon_sym_list] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_break] = ACTIONS(115), - [anon_sym_continue] = ACTIONS(115), - [anon_sym_for] = ACTIONS(115), - [anon_sym_in] = ACTIONS(115), - [anon_sym_loop] = ACTIONS(115), - [anon_sym_make] = ACTIONS(115), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(115), - [anon_sym_if] = ACTIONS(115), - [anon_sym_else] = ACTIONS(115), - [anon_sym_match] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_try] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(115), - [anon_sym_return] = ACTIONS(115), - [anon_sym_source] = ACTIONS(115), - [anon_sym_source_DASHenv] = ACTIONS(115), - [anon_sym_register] = ACTIONS(115), - [anon_sym_hide] = ACTIONS(115), - [anon_sym_hide_DASHenv] = ACTIONS(115), - [anon_sym_overlay] = ACTIONS(115), - [anon_sym_new] = ACTIONS(115), - [anon_sym_as] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(115), - [anon_sym_bit_DASHshr] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(115), - [anon_sym_starts_DASHwith] = ACTIONS(115), - [anon_sym_ends_DASHwith] = ACTIONS(115), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(115), - [anon_sym_bit_DASHxor] = ACTIONS(115), - [anon_sym_bit_DASHor] = ACTIONS(115), - [anon_sym_and] = ACTIONS(115), - [anon_sym_xor] = ACTIONS(115), - [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(241), - [aux_sym__val_number_decimal_token1] = ACTIONS(115), - [aux_sym__val_number_token1] = ACTIONS(117), - [aux_sym__val_number_token2] = ACTIONS(117), - [aux_sym__val_number_token3] = ACTIONS(117), - [aux_sym__val_number_token4] = ACTIONS(115), - [aux_sym__val_number_token5] = ACTIONS(117), - [aux_sym__val_number_token6] = ACTIONS(115), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym__str_single_quotes] = ACTIONS(117), - [sym__str_back_ticks] = ACTIONS(117), - [aux_sym__record_key_token2] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [70] = { - [sym_comment] = STATE(70), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_error] = ACTIONS(148), - [anon_sym_list] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_make] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_else] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_catch] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_new] = ACTIONS(148), - [anon_sym_as] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(257), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [aux_sym__record_key_token2] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [71] = { - [sym_comment] = STATE(71), - [anon_sym_export] = ACTIONS(127), - [anon_sym_alias] = ACTIONS(127), - [anon_sym_let] = ACTIONS(127), - [anon_sym_let_DASHenv] = ACTIONS(127), - [anon_sym_mut] = ACTIONS(127), - [anon_sym_const] = ACTIONS(127), - [sym_cmd_identifier] = ACTIONS(127), - [anon_sym_def] = ACTIONS(127), - [anon_sym_export_DASHenv] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(127), - [anon_sym_module] = ACTIONS(127), - [anon_sym_use] = ACTIONS(127), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_error] = ACTIONS(127), - [anon_sym_list] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_break] = ACTIONS(127), - [anon_sym_continue] = ACTIONS(127), - [anon_sym_for] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_loop] = ACTIONS(127), - [anon_sym_make] = ACTIONS(127), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(127), - [anon_sym_if] = ACTIONS(127), - [anon_sym_else] = ACTIONS(127), - [anon_sym_match] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(259), - [anon_sym_try] = ACTIONS(127), - [anon_sym_catch] = ACTIONS(127), - [anon_sym_return] = ACTIONS(127), - [anon_sym_source] = ACTIONS(127), - [anon_sym_source_DASHenv] = ACTIONS(127), - [anon_sym_register] = ACTIONS(127), - [anon_sym_hide] = ACTIONS(127), - [anon_sym_hide_DASHenv] = ACTIONS(127), - [anon_sym_overlay] = ACTIONS(127), - [anon_sym_new] = ACTIONS(127), - [anon_sym_as] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(262), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(129), - [aux_sym__val_number_token2] = ACTIONS(129), - [aux_sym__val_number_token3] = ACTIONS(129), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(129), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(129), - [sym__str_single_quotes] = ACTIONS(129), - [sym__str_back_ticks] = ACTIONS(129), - [aux_sym__record_key_token2] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(3), - }, - [72] = { - [sym_comment] = STATE(72), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), [anon_sym_let] = ACTIONS(115), @@ -83448,6 +84142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(249), [aux_sym__val_number_decimal_token1] = ACTIONS(115), [aux_sym__val_number_token1] = ACTIONS(117), [aux_sym__val_number_token2] = ACTIONS(117), @@ -83536,173 +84231,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), [aux_sym__record_key_token2] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [73] = { - [sym_comment] = STATE(73), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_error] = ACTIONS(148), - [anon_sym_list] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_make] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_else] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_catch] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_new] = ACTIONS(148), - [anon_sym_as] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [aux_sym__record_key_token2] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), [anon_sym_POUND] = ACTIONS(3), }, - [74] = { - [sym_comment] = STATE(74), + [68] = { + [sym_comment] = STATE(68), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), [anon_sym_let] = ACTIONS(107), @@ -83772,6 +84304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), + [aux_sym__immediate_decimal_token2] = ACTIONS(255), [aux_sym__val_number_decimal_token1] = ACTIONS(107), [aux_sym__val_number_token1] = ACTIONS(109), [aux_sym__val_number_token2] = ACTIONS(109), @@ -83860,173 +84393,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(109), [sym__str_back_ticks] = ACTIONS(109), [aux_sym__record_key_token2] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [75] = { - [sym_comment] = STATE(75), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_error] = ACTIONS(171), - [anon_sym_list] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_make] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(264), - [anon_sym_try] = ACTIONS(171), - [anon_sym_catch] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_new] = ACTIONS(171), - [anon_sym_as] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [aux_sym__record_key_token2] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(266), + [69] = { + [sym_comment] = STATE(69), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(157), + [anon_sym_let] = ACTIONS(157), + [anon_sym_let_DASHenv] = ACTIONS(157), + [anon_sym_mut] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [sym_cmd_identifier] = ACTIONS(157), + [anon_sym_def] = ACTIONS(157), + [anon_sym_export_DASHenv] = ACTIONS(157), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_module] = ACTIONS(157), + [anon_sym_use] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_error] = ACTIONS(157), + [anon_sym_list] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_for] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_loop] = ACTIONS(157), + [anon_sym_make] = ACTIONS(157), + [anon_sym_while] = ACTIONS(157), + [anon_sym_do] = ACTIONS(157), + [anon_sym_if] = ACTIONS(157), + [anon_sym_else] = ACTIONS(157), + [anon_sym_match] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_try] = ACTIONS(157), + [anon_sym_catch] = ACTIONS(157), + [anon_sym_return] = ACTIONS(157), + [anon_sym_source] = ACTIONS(157), + [anon_sym_source_DASHenv] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_hide] = ACTIONS(157), + [anon_sym_hide_DASHenv] = ACTIONS(157), + [anon_sym_overlay] = ACTIONS(157), + [anon_sym_new] = ACTIONS(157), + [anon_sym_as] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(159), + [aux_sym__val_number_token2] = ACTIONS(159), + [aux_sym__val_number_token3] = ACTIONS(159), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(159), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym__str_single_quotes] = ACTIONS(159), + [sym__str_back_ticks] = ACTIONS(159), + [aux_sym__record_key_token2] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(3), }, - [76] = { - [sym_comment] = STATE(76), + [70] = { + [sym_comment] = STATE(70), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_error] = ACTIONS(147), + [anon_sym_list] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_make] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_else] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_catch] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_new] = ACTIONS(147), + [anon_sym_as] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym__record_key_token2] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [71] = { + [sym_comment] = STATE(71), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), [anon_sym_let] = ACTIONS(107), @@ -84059,7 +84753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(107), [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(268), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_try] = ACTIONS(107), [anon_sym_catch] = ACTIONS(107), [anon_sym_return] = ACTIONS(107), @@ -84096,7 +84790,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(245), [aux_sym__val_number_decimal_token1] = ACTIONS(107), [aux_sym__val_number_token1] = ACTIONS(109), [aux_sym__val_number_token2] = ACTIONS(109), @@ -84185,10 +84878,659 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(109), [sym__str_back_ticks] = ACTIONS(109), [aux_sym__record_key_token2] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [77] = { - [sym_comment] = STATE(77), + [72] = { + [sym_comment] = STATE(72), + [anon_sym_export] = ACTIONS(130), + [anon_sym_alias] = ACTIONS(130), + [anon_sym_let] = ACTIONS(130), + [anon_sym_let_DASHenv] = ACTIONS(130), + [anon_sym_mut] = ACTIONS(130), + [anon_sym_const] = ACTIONS(130), + [sym_cmd_identifier] = ACTIONS(130), + [anon_sym_def] = ACTIONS(130), + [anon_sym_export_DASHenv] = ACTIONS(130), + [anon_sym_extern] = ACTIONS(130), + [anon_sym_module] = ACTIONS(130), + [anon_sym_use] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_error] = ACTIONS(130), + [anon_sym_list] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_break] = ACTIONS(130), + [anon_sym_continue] = ACTIONS(130), + [anon_sym_for] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_loop] = ACTIONS(130), + [anon_sym_make] = ACTIONS(130), + [anon_sym_while] = ACTIONS(130), + [anon_sym_do] = ACTIONS(130), + [anon_sym_if] = ACTIONS(130), + [anon_sym_else] = ACTIONS(130), + [anon_sym_match] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(132), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(257), + [anon_sym_try] = ACTIONS(130), + [anon_sym_catch] = ACTIONS(130), + [anon_sym_return] = ACTIONS(130), + [anon_sym_source] = ACTIONS(130), + [anon_sym_source_DASHenv] = ACTIONS(130), + [anon_sym_register] = ACTIONS(130), + [anon_sym_hide] = ACTIONS(130), + [anon_sym_hide_DASHenv] = ACTIONS(130), + [anon_sym_overlay] = ACTIONS(130), + [anon_sym_new] = ACTIONS(130), + [anon_sym_as] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(260), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(132), + [aux_sym__val_number_token2] = ACTIONS(132), + [aux_sym__val_number_token3] = ACTIONS(132), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(132), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(132), + [sym__str_single_quotes] = ACTIONS(132), + [sym__str_back_ticks] = ACTIONS(132), + [aux_sym__record_key_token2] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [73] = { + [sym_comment] = STATE(73), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(157), + [anon_sym_let] = ACTIONS(157), + [anon_sym_let_DASHenv] = ACTIONS(157), + [anon_sym_mut] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [sym_cmd_identifier] = ACTIONS(157), + [anon_sym_def] = ACTIONS(157), + [anon_sym_export_DASHenv] = ACTIONS(157), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_module] = ACTIONS(157), + [anon_sym_use] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(159), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_error] = ACTIONS(157), + [anon_sym_list] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_for] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_loop] = ACTIONS(157), + [anon_sym_make] = ACTIONS(157), + [anon_sym_while] = ACTIONS(157), + [anon_sym_do] = ACTIONS(157), + [anon_sym_if] = ACTIONS(157), + [anon_sym_else] = ACTIONS(157), + [anon_sym_match] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_try] = ACTIONS(157), + [anon_sym_catch] = ACTIONS(157), + [anon_sym_return] = ACTIONS(157), + [anon_sym_source] = ACTIONS(157), + [anon_sym_source_DASHenv] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_hide] = ACTIONS(157), + [anon_sym_hide_DASHenv] = ACTIONS(157), + [anon_sym_overlay] = ACTIONS(157), + [anon_sym_new] = ACTIONS(157), + [anon_sym_as] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(159), + [aux_sym__val_number_token2] = ACTIONS(159), + [aux_sym__val_number_token3] = ACTIONS(159), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(159), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym__str_single_quotes] = ACTIONS(159), + [sym__str_back_ticks] = ACTIONS(159), + [aux_sym__record_key_token2] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(3), + }, + [74] = { + [sym_comment] = STATE(74), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_error] = ACTIONS(147), + [anon_sym_list] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_make] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_else] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_catch] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_new] = ACTIONS(147), + [anon_sym_as] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(262), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym__record_key_token2] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [75] = { + [sym_comment] = STATE(75), + [anon_sym_export] = ACTIONS(147), + [anon_sym_alias] = ACTIONS(147), + [anon_sym_let] = ACTIONS(147), + [anon_sym_let_DASHenv] = ACTIONS(147), + [anon_sym_mut] = ACTIONS(147), + [anon_sym_const] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(147), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_use] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_error] = ACTIONS(147), + [anon_sym_list] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_loop] = ACTIONS(147), + [anon_sym_make] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_else] = ACTIONS(147), + [anon_sym_match] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_try] = ACTIONS(147), + [anon_sym_catch] = ACTIONS(147), + [anon_sym_return] = ACTIONS(147), + [anon_sym_source] = ACTIONS(147), + [anon_sym_source_DASHenv] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_hide] = ACTIONS(147), + [anon_sym_hide_DASHenv] = ACTIONS(147), + [anon_sym_overlay] = ACTIONS(147), + [anon_sym_new] = ACTIONS(147), + [anon_sym_as] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym__record_key_token2] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [76] = { + [sym_comment] = STATE(76), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(115), [anon_sym_let] = ACTIONS(115), @@ -84346,332 +85688,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), [aux_sym__record_key_token2] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [78] = { - [sym_comment] = STATE(78), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_error] = ACTIONS(171), - [anon_sym_list] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_make] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(271), - [anon_sym_try] = ACTIONS(171), - [anon_sym_catch] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_new] = ACTIONS(171), - [anon_sym_as] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [aux_sym__record_key_token2] = ACTIONS(171), - [anon_sym_POUND] = ACTIONS(3), - }, - [79] = { - [sym_comment] = STATE(79), - [anon_sym_export] = ACTIONS(165), - [anon_sym_alias] = ACTIONS(165), - [anon_sym_let] = ACTIONS(165), - [anon_sym_let_DASHenv] = ACTIONS(165), - [anon_sym_mut] = ACTIONS(165), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(165), - [anon_sym_def] = ACTIONS(165), - [anon_sym_export_DASHenv] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(165), - [anon_sym_module] = ACTIONS(165), - [anon_sym_use] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_error] = ACTIONS(165), - [anon_sym_list] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_loop] = ACTIONS(165), - [anon_sym_make] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_else] = ACTIONS(165), - [anon_sym_match] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_try] = ACTIONS(165), - [anon_sym_catch] = ACTIONS(165), - [anon_sym_return] = ACTIONS(165), - [anon_sym_source] = ACTIONS(165), - [anon_sym_source_DASHenv] = ACTIONS(165), - [anon_sym_register] = ACTIONS(165), - [anon_sym_hide] = ACTIONS(165), - [anon_sym_hide_DASHenv] = ACTIONS(165), - [anon_sym_overlay] = ACTIONS(165), - [anon_sym_new] = ACTIONS(165), - [anon_sym_as] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(167), - [aux_sym__val_number_token2] = ACTIONS(167), - [aux_sym__val_number_token3] = ACTIONS(167), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(167), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym__str_single_quotes] = ACTIONS(167), - [sym__str_back_ticks] = ACTIONS(167), - [aux_sym__record_key_token2] = ACTIONS(165), + [77] = { + [sym_comment] = STATE(77), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_error] = ACTIONS(187), + [anon_sym_list] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_make] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_else] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(264), + [anon_sym_try] = ACTIONS(187), + [anon_sym_catch] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_new] = ACTIONS(187), + [anon_sym_as] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym__record_key_token2] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(266), [anon_sym_POUND] = ACTIONS(3), }, - [80] = { - [sym_comment] = STATE(80), + [78] = { + [sym_comment] = STATE(78), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(107), [anon_sym_let] = ACTIONS(107), @@ -84684,6 +85867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(107), [anon_sym_module] = ACTIONS(107), [anon_sym_use] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(109), @@ -84831,650 +86015,814 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [81] = { - [sym_comment] = STATE(81), - [anon_sym_export] = ACTIONS(148), - [anon_sym_alias] = ACTIONS(148), - [anon_sym_let] = ACTIONS(148), - [anon_sym_let_DASHenv] = ACTIONS(148), - [anon_sym_mut] = ACTIONS(148), - [anon_sym_const] = ACTIONS(148), - [sym_cmd_identifier] = ACTIONS(148), - [anon_sym_def] = ACTIONS(148), - [anon_sym_export_DASHenv] = ACTIONS(148), - [anon_sym_extern] = ACTIONS(148), - [anon_sym_module] = ACTIONS(148), - [anon_sym_use] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_error] = ACTIONS(148), - [anon_sym_list] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(148), - [anon_sym_for] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_loop] = ACTIONS(148), - [anon_sym_make] = ACTIONS(148), - [anon_sym_while] = ACTIONS(148), - [anon_sym_do] = ACTIONS(148), - [anon_sym_if] = ACTIONS(148), - [anon_sym_else] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_try] = ACTIONS(148), - [anon_sym_catch] = ACTIONS(148), - [anon_sym_return] = ACTIONS(148), - [anon_sym_source] = ACTIONS(148), - [anon_sym_source_DASHenv] = ACTIONS(148), - [anon_sym_register] = ACTIONS(148), - [anon_sym_hide] = ACTIONS(148), - [anon_sym_hide_DASHenv] = ACTIONS(148), - [anon_sym_overlay] = ACTIONS(148), - [anon_sym_new] = ACTIONS(148), - [anon_sym_as] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [aux_sym__record_key_token2] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [82] = { - [sym_comment] = STATE(82), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_error] = ACTIONS(171), - [anon_sym_list] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_make] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(173), - [anon_sym_try] = ACTIONS(171), - [anon_sym_catch] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_new] = ACTIONS(171), - [anon_sym_as] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [aux_sym__record_key_token2] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(266), - [anon_sym_POUND] = ACTIONS(3), - }, - [83] = { - [sym_comment] = STATE(83), - [anon_sym_export] = ACTIONS(213), - [anon_sym_alias] = ACTIONS(213), - [anon_sym_let] = ACTIONS(213), - [anon_sym_let_DASHenv] = ACTIONS(213), - [anon_sym_mut] = ACTIONS(213), - [anon_sym_const] = ACTIONS(213), - [sym_cmd_identifier] = ACTIONS(213), - [anon_sym_def] = ACTIONS(213), - [anon_sym_export_DASHenv] = ACTIONS(213), - [anon_sym_extern] = ACTIONS(213), - [anon_sym_module] = ACTIONS(213), - [anon_sym_use] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_error] = ACTIONS(213), - [anon_sym_list] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_break] = ACTIONS(213), - [anon_sym_continue] = ACTIONS(213), - [anon_sym_for] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_loop] = ACTIONS(213), - [anon_sym_make] = ACTIONS(213), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(213), - [anon_sym_if] = ACTIONS(213), - [anon_sym_else] = ACTIONS(213), - [anon_sym_match] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_try] = ACTIONS(213), - [anon_sym_catch] = ACTIONS(213), - [anon_sym_return] = ACTIONS(213), - [anon_sym_source] = ACTIONS(213), - [anon_sym_source_DASHenv] = ACTIONS(213), - [anon_sym_register] = ACTIONS(213), - [anon_sym_hide] = ACTIONS(213), - [anon_sym_hide_DASHenv] = ACTIONS(213), - [anon_sym_overlay] = ACTIONS(213), - [anon_sym_new] = ACTIONS(213), - [anon_sym_as] = ACTIONS(213), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(213), - [anon_sym_SLASH_SLASH] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(213), - [anon_sym_bit_DASHshr] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(215), - [anon_sym_GT_EQ] = ACTIONS(215), - [anon_sym_not_DASHin] = ACTIONS(213), - [anon_sym_starts_DASHwith] = ACTIONS(213), - [anon_sym_ends_DASHwith] = ACTIONS(213), - [anon_sym_EQ_TILDE] = ACTIONS(215), - [anon_sym_BANG_TILDE] = ACTIONS(215), - [anon_sym_bit_DASHand] = ACTIONS(213), - [anon_sym_bit_DASHxor] = ACTIONS(213), - [anon_sym_bit_DASHor] = ACTIONS(213), - [anon_sym_and] = ACTIONS(213), - [anon_sym_xor] = ACTIONS(213), - [anon_sym_or] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(215), - [aux_sym__val_number_token2] = ACTIONS(215), - [aux_sym__val_number_token3] = ACTIONS(215), - [aux_sym__val_number_token4] = ACTIONS(213), - [aux_sym__val_number_token5] = ACTIONS(215), - [aux_sym__val_number_token6] = ACTIONS(213), - [anon_sym_ns] = ACTIONS(273), - [anon_sym_s] = ACTIONS(273), - [anon_sym_us] = ACTIONS(273), - [anon_sym_ms] = ACTIONS(273), - [anon_sym_sec] = ACTIONS(273), - [anon_sym_min] = ACTIONS(273), - [anon_sym_hr] = ACTIONS(273), - [anon_sym_day] = ACTIONS(273), - [anon_sym_wk] = ACTIONS(273), - [anon_sym_b] = ACTIONS(275), - [anon_sym_B] = ACTIONS(275), - [anon_sym_kb] = ACTIONS(275), - [anon_sym_kB] = ACTIONS(275), - [anon_sym_Kb] = ACTIONS(275), - [anon_sym_KB] = ACTIONS(275), - [anon_sym_mb] = ACTIONS(275), - [anon_sym_mB] = ACTIONS(275), - [anon_sym_Mb] = ACTIONS(275), - [anon_sym_MB] = ACTIONS(275), - [anon_sym_gb] = ACTIONS(275), - [anon_sym_gB] = ACTIONS(275), - [anon_sym_Gb] = ACTIONS(275), - [anon_sym_GB] = ACTIONS(275), - [anon_sym_tb] = ACTIONS(275), - [anon_sym_tB] = ACTIONS(275), - [anon_sym_Tb] = ACTIONS(275), - [anon_sym_TB] = ACTIONS(275), - [anon_sym_pb] = ACTIONS(275), - [anon_sym_pB] = ACTIONS(275), - [anon_sym_Pb] = ACTIONS(275), - [anon_sym_PB] = ACTIONS(275), - [anon_sym_eb] = ACTIONS(275), - [anon_sym_eB] = ACTIONS(275), - [anon_sym_Eb] = ACTIONS(275), - [anon_sym_EB] = ACTIONS(275), - [anon_sym_kib] = ACTIONS(275), - [anon_sym_kiB] = ACTIONS(275), - [anon_sym_kIB] = ACTIONS(275), - [anon_sym_kIb] = ACTIONS(275), - [anon_sym_Kib] = ACTIONS(275), - [anon_sym_KIb] = ACTIONS(275), - [anon_sym_KIB] = ACTIONS(275), - [anon_sym_mib] = ACTIONS(275), - [anon_sym_miB] = ACTIONS(275), - [anon_sym_mIB] = ACTIONS(275), - [anon_sym_mIb] = ACTIONS(275), - [anon_sym_Mib] = ACTIONS(275), - [anon_sym_MIb] = ACTIONS(275), - [anon_sym_MIB] = ACTIONS(275), - [anon_sym_gib] = ACTIONS(275), - [anon_sym_giB] = ACTIONS(275), - [anon_sym_gIB] = ACTIONS(275), - [anon_sym_gIb] = ACTIONS(275), - [anon_sym_Gib] = ACTIONS(275), - [anon_sym_GIb] = ACTIONS(275), - [anon_sym_GIB] = ACTIONS(275), - [anon_sym_tib] = ACTIONS(275), - [anon_sym_tiB] = ACTIONS(275), - [anon_sym_tIB] = ACTIONS(275), - [anon_sym_tIb] = ACTIONS(275), - [anon_sym_Tib] = ACTIONS(275), - [anon_sym_TIb] = ACTIONS(275), - [anon_sym_TIB] = ACTIONS(275), - [anon_sym_pib] = ACTIONS(275), - [anon_sym_piB] = ACTIONS(275), - [anon_sym_pIB] = ACTIONS(275), - [anon_sym_pIb] = ACTIONS(275), - [anon_sym_Pib] = ACTIONS(275), - [anon_sym_PIb] = ACTIONS(275), - [anon_sym_PIB] = ACTIONS(275), - [anon_sym_eib] = ACTIONS(275), - [anon_sym_eiB] = ACTIONS(275), - [anon_sym_eIB] = ACTIONS(275), - [anon_sym_eIb] = ACTIONS(275), - [anon_sym_Eib] = ACTIONS(275), - [anon_sym_EIb] = ACTIONS(275), - [anon_sym_EIB] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym__str_single_quotes] = ACTIONS(215), - [sym__str_back_ticks] = ACTIONS(215), - [aux_sym__record_key_token2] = ACTIONS(213), + [79] = { + [sym_comment] = STATE(79), + [anon_sym_export] = ACTIONS(115), + [anon_sym_alias] = ACTIONS(115), + [anon_sym_let] = ACTIONS(115), + [anon_sym_let_DASHenv] = ACTIONS(115), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(115), + [sym_cmd_identifier] = ACTIONS(115), + [anon_sym_def] = ACTIONS(115), + [anon_sym_export_DASHenv] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_use] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_error] = ACTIONS(115), + [anon_sym_list] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_break] = ACTIONS(115), + [anon_sym_continue] = ACTIONS(115), + [anon_sym_for] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_loop] = ACTIONS(115), + [anon_sym_make] = ACTIONS(115), + [anon_sym_while] = ACTIONS(115), + [anon_sym_do] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_else] = ACTIONS(115), + [anon_sym_match] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(268), + [anon_sym_try] = ACTIONS(115), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_return] = ACTIONS(115), + [anon_sym_source] = ACTIONS(115), + [anon_sym_source_DASHenv] = ACTIONS(115), + [anon_sym_register] = ACTIONS(115), + [anon_sym_hide] = ACTIONS(115), + [anon_sym_hide_DASHenv] = ACTIONS(115), + [anon_sym_overlay] = ACTIONS(115), + [anon_sym_new] = ACTIONS(115), + [anon_sym_as] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(249), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [aux_sym__record_key_token2] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [84] = { - [sym_comment] = STATE(84), - [anon_sym_export] = ACTIONS(171), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(171), - [anon_sym_let_DASHenv] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(171), - [anon_sym_const] = ACTIONS(171), - [sym_cmd_identifier] = ACTIONS(171), - [anon_sym_def] = ACTIONS(171), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(171), - [anon_sym_module] = ACTIONS(171), - [anon_sym_use] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_error] = ACTIONS(171), - [anon_sym_list] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(171), - [anon_sym_for] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_make] = ACTIONS(171), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(171), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(171), - [anon_sym_match] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(173), - [anon_sym_try] = ACTIONS(171), - [anon_sym_catch] = ACTIONS(171), - [anon_sym_return] = ACTIONS(171), - [anon_sym_source] = ACTIONS(171), - [anon_sym_source_DASHenv] = ACTIONS(171), - [anon_sym_register] = ACTIONS(171), - [anon_sym_hide] = ACTIONS(171), - [anon_sym_hide_DASHenv] = ACTIONS(171), - [anon_sym_overlay] = ACTIONS(171), - [anon_sym_new] = ACTIONS(171), - [anon_sym_as] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [aux_sym__record_key_token2] = ACTIONS(171), + [80] = { + [sym_comment] = STATE(80), + [anon_sym_export] = ACTIONS(115), + [anon_sym_alias] = ACTIONS(115), + [anon_sym_let] = ACTIONS(115), + [anon_sym_let_DASHenv] = ACTIONS(115), + [anon_sym_mut] = ACTIONS(115), + [anon_sym_const] = ACTIONS(115), + [sym_cmd_identifier] = ACTIONS(115), + [anon_sym_def] = ACTIONS(115), + [anon_sym_export_DASHenv] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_use] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_error] = ACTIONS(115), + [anon_sym_list] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_break] = ACTIONS(115), + [anon_sym_continue] = ACTIONS(115), + [anon_sym_for] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_loop] = ACTIONS(115), + [anon_sym_make] = ACTIONS(115), + [anon_sym_while] = ACTIONS(115), + [anon_sym_do] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_else] = ACTIONS(115), + [anon_sym_match] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_try] = ACTIONS(115), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_return] = ACTIONS(115), + [anon_sym_source] = ACTIONS(115), + [anon_sym_source_DASHenv] = ACTIONS(115), + [anon_sym_register] = ACTIONS(115), + [anon_sym_hide] = ACTIONS(115), + [anon_sym_hide_DASHenv] = ACTIONS(115), + [anon_sym_overlay] = ACTIONS(115), + [anon_sym_new] = ACTIONS(115), + [anon_sym_as] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [aux_sym__record_key_token2] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [85] = { - [sym_comment] = STATE(85), + [81] = { + [sym_comment] = STATE(81), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_error] = ACTIONS(187), + [anon_sym_list] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_make] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_else] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(187), + [anon_sym_catch] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_new] = ACTIONS(187), + [anon_sym_as] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym__record_key_token2] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(266), + [anon_sym_POUND] = ACTIONS(3), + }, + [82] = { + [sym_comment] = STATE(82), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_error] = ACTIONS(187), + [anon_sym_list] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_make] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_else] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(271), + [anon_sym_try] = ACTIONS(187), + [anon_sym_catch] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_new] = ACTIONS(187), + [anon_sym_as] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym__record_key_token2] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(3), + }, + [83] = { + [sym_comment] = STATE(83), + [anon_sym_export] = ACTIONS(187), + [anon_sym_alias] = ACTIONS(187), + [anon_sym_let] = ACTIONS(187), + [anon_sym_let_DASHenv] = ACTIONS(187), + [anon_sym_mut] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [sym_cmd_identifier] = ACTIONS(187), + [anon_sym_def] = ACTIONS(187), + [anon_sym_export_DASHenv] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(187), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_error] = ACTIONS(187), + [anon_sym_list] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_for] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_make] = ACTIONS(187), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(187), + [anon_sym_if] = ACTIONS(187), + [anon_sym_else] = ACTIONS(187), + [anon_sym_match] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(187), + [anon_sym_catch] = ACTIONS(187), + [anon_sym_return] = ACTIONS(187), + [anon_sym_source] = ACTIONS(187), + [anon_sym_source_DASHenv] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_hide] = ACTIONS(187), + [anon_sym_hide_DASHenv] = ACTIONS(187), + [anon_sym_overlay] = ACTIONS(187), + [anon_sym_new] = ACTIONS(187), + [anon_sym_as] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym__record_key_token2] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(3), + }, + [84] = { + [sym_comment] = STATE(84), [anon_sym_export] = ACTIONS(221), [anon_sym_alias] = ACTIONS(221), [anon_sym_let] = ACTIONS(221), @@ -85633,89 +86981,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(221), [anon_sym_POUND] = ACTIONS(3), }, + [85] = { + [sym_comment] = STATE(85), + [anon_sym_export] = ACTIONS(213), + [anon_sym_alias] = ACTIONS(213), + [anon_sym_let] = ACTIONS(213), + [anon_sym_let_DASHenv] = ACTIONS(213), + [anon_sym_mut] = ACTIONS(213), + [anon_sym_const] = ACTIONS(213), + [sym_cmd_identifier] = ACTIONS(213), + [anon_sym_def] = ACTIONS(213), + [anon_sym_export_DASHenv] = ACTIONS(213), + [anon_sym_extern] = ACTIONS(213), + [anon_sym_module] = ACTIONS(213), + [anon_sym_use] = ACTIONS(213), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(215), + [anon_sym_error] = ACTIONS(213), + [anon_sym_list] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_break] = ACTIONS(213), + [anon_sym_continue] = ACTIONS(213), + [anon_sym_for] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_loop] = ACTIONS(213), + [anon_sym_make] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [anon_sym_do] = ACTIONS(213), + [anon_sym_if] = ACTIONS(213), + [anon_sym_else] = ACTIONS(213), + [anon_sym_match] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(215), + [anon_sym_try] = ACTIONS(213), + [anon_sym_catch] = ACTIONS(213), + [anon_sym_return] = ACTIONS(213), + [anon_sym_source] = ACTIONS(213), + [anon_sym_source_DASHenv] = ACTIONS(213), + [anon_sym_register] = ACTIONS(213), + [anon_sym_hide] = ACTIONS(213), + [anon_sym_hide_DASHenv] = ACTIONS(213), + [anon_sym_overlay] = ACTIONS(213), + [anon_sym_new] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(215), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(213), + [anon_sym_bit_DASHshr] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(215), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(215), + [anon_sym_not_DASHin] = ACTIONS(213), + [anon_sym_starts_DASHwith] = ACTIONS(213), + [anon_sym_ends_DASHwith] = ACTIONS(213), + [anon_sym_EQ_TILDE] = ACTIONS(215), + [anon_sym_BANG_TILDE] = ACTIONS(215), + [anon_sym_bit_DASHand] = ACTIONS(213), + [anon_sym_bit_DASHxor] = ACTIONS(213), + [anon_sym_bit_DASHor] = ACTIONS(213), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(215), + [aux_sym__val_number_token2] = ACTIONS(215), + [aux_sym__val_number_token3] = ACTIONS(215), + [aux_sym__val_number_token4] = ACTIONS(213), + [aux_sym__val_number_token5] = ACTIONS(215), + [aux_sym__val_number_token6] = ACTIONS(213), + [anon_sym_ns] = ACTIONS(273), + [anon_sym_s] = ACTIONS(273), + [anon_sym_us] = ACTIONS(273), + [anon_sym_ms] = ACTIONS(273), + [anon_sym_sec] = ACTIONS(273), + [anon_sym_min] = ACTIONS(273), + [anon_sym_hr] = ACTIONS(273), + [anon_sym_day] = ACTIONS(273), + [anon_sym_wk] = ACTIONS(273), + [anon_sym_b] = ACTIONS(275), + [anon_sym_B] = ACTIONS(275), + [anon_sym_kb] = ACTIONS(275), + [anon_sym_kB] = ACTIONS(275), + [anon_sym_Kb] = ACTIONS(275), + [anon_sym_KB] = ACTIONS(275), + [anon_sym_mb] = ACTIONS(275), + [anon_sym_mB] = ACTIONS(275), + [anon_sym_Mb] = ACTIONS(275), + [anon_sym_MB] = ACTIONS(275), + [anon_sym_gb] = ACTIONS(275), + [anon_sym_gB] = ACTIONS(275), + [anon_sym_Gb] = ACTIONS(275), + [anon_sym_GB] = ACTIONS(275), + [anon_sym_tb] = ACTIONS(275), + [anon_sym_tB] = ACTIONS(275), + [anon_sym_Tb] = ACTIONS(275), + [anon_sym_TB] = ACTIONS(275), + [anon_sym_pb] = ACTIONS(275), + [anon_sym_pB] = ACTIONS(275), + [anon_sym_Pb] = ACTIONS(275), + [anon_sym_PB] = ACTIONS(275), + [anon_sym_eb] = ACTIONS(275), + [anon_sym_eB] = ACTIONS(275), + [anon_sym_Eb] = ACTIONS(275), + [anon_sym_EB] = ACTIONS(275), + [anon_sym_kib] = ACTIONS(275), + [anon_sym_kiB] = ACTIONS(275), + [anon_sym_kIB] = ACTIONS(275), + [anon_sym_kIb] = ACTIONS(275), + [anon_sym_Kib] = ACTIONS(275), + [anon_sym_KIb] = ACTIONS(275), + [anon_sym_KIB] = ACTIONS(275), + [anon_sym_mib] = ACTIONS(275), + [anon_sym_miB] = ACTIONS(275), + [anon_sym_mIB] = ACTIONS(275), + [anon_sym_mIb] = ACTIONS(275), + [anon_sym_Mib] = ACTIONS(275), + [anon_sym_MIb] = ACTIONS(275), + [anon_sym_MIB] = ACTIONS(275), + [anon_sym_gib] = ACTIONS(275), + [anon_sym_giB] = ACTIONS(275), + [anon_sym_gIB] = ACTIONS(275), + [anon_sym_gIb] = ACTIONS(275), + [anon_sym_Gib] = ACTIONS(275), + [anon_sym_GIb] = ACTIONS(275), + [anon_sym_GIB] = ACTIONS(275), + [anon_sym_tib] = ACTIONS(275), + [anon_sym_tiB] = ACTIONS(275), + [anon_sym_tIB] = ACTIONS(275), + [anon_sym_tIb] = ACTIONS(275), + [anon_sym_Tib] = ACTIONS(275), + [anon_sym_TIb] = ACTIONS(275), + [anon_sym_TIB] = ACTIONS(275), + [anon_sym_pib] = ACTIONS(275), + [anon_sym_piB] = ACTIONS(275), + [anon_sym_pIB] = ACTIONS(275), + [anon_sym_pIb] = ACTIONS(275), + [anon_sym_Pib] = ACTIONS(275), + [anon_sym_PIb] = ACTIONS(275), + [anon_sym_PIB] = ACTIONS(275), + [anon_sym_eib] = ACTIONS(275), + [anon_sym_eiB] = ACTIONS(275), + [anon_sym_eIB] = ACTIONS(275), + [anon_sym_eIb] = ACTIONS(275), + [anon_sym_Eib] = ACTIONS(275), + [anon_sym_EIb] = ACTIONS(275), + [anon_sym_EIB] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(215), + [sym__str_single_quotes] = ACTIONS(215), + [sym__str_back_ticks] = ACTIONS(215), + [aux_sym__record_key_token2] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + }, [86] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5907), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(179), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6006), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(202), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym__match_pattern_record_variable] = STATE(2301), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(544), + [sym__var] = STATE(517), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2316), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1121), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym__match_pattern_record_repeat1] = STATE(1113), + [aux_sym_val_record_repeat1] = STATE(1182), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -85787,88 +87297,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [87] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5640), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(224), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5976), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(176), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1164), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1161), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -85884,7 +87394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -85900,7 +87410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(383), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -85940,88 +87450,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [88] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5608), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(218), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6158), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(207), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1165), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1172), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -86037,7 +87547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -86053,7 +87563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(385), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -86093,88 +87603,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [89] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5616), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5891), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), [sym_parameter_pipes] = STATE(230), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1157), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1164), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -86190,7 +87700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -86206,7 +87716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -86246,88 +87756,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [90] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5944), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(174), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5948), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(178), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(90), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1142), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1193), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -86343,7 +87853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -86359,7 +87869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -86399,88 +87909,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [91] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5711), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(193), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5735), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(233), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(91), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1161), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1170), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -86496,7 +88006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -86512,7 +88022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(391), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -86552,88 +88062,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [92] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5928), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(220), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5696), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(228), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(92), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1138), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1178), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -86649,7 +88159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -86665,7 +88175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -86705,88 +88215,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [93] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5753), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(187), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5813), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(221), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(93), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1140), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1174), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -86802,7 +88312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -86818,7 +88328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(395), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -86858,88 +88368,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [94] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5899), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(218), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5704), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(225), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(94), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1165), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1199), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -86955,7 +88465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -86971,7 +88481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -87011,88 +88521,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [95] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5788), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(196), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5657), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(224), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(95), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1125), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1179), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -87108,7 +88618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -87124,7 +88634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -87164,88 +88674,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [96] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5675), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(228), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5969), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(224), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(96), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1162), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1179), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -87261,7 +88771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -87277,7 +88787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -87317,88 +88827,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [97] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5855), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(183), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5923), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(211), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(97), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1172), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1202), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -87414,7 +88924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -87430,7 +88940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -87470,88 +88980,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [98] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5868), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(220), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5775), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(232), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(98), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1138), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1197), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -87567,7 +89077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -87583,7 +89093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(405), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -87623,88 +89133,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [99] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5826), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(201), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6006), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(202), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(99), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1124), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1182), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -87720,7 +89230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -87736,7 +89246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -87776,88 +89286,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [100] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(6046), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(210), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2954), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2512), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(433), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3021), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5999), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(178), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(100), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [aux_sym_val_record_repeat1] = STATE(1175), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1193), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(281), @@ -87873,7 +89383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(307), [anon_sym_list] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(311), @@ -87889,7 +89399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_DOT] = ACTIONS(333), [anon_sym_try] = ACTIONS(335), [anon_sym_catch] = ACTIONS(309), @@ -87929,7 +89439,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [101] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5854), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(185), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(3030), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2520), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(441), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3067), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(101), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [aux_sym_val_record_repeat1] = STATE(1163), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(279), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(283), + [anon_sym_const] = ACTIONS(285), + [sym_cmd_identifier] = ACTIONS(287), + [anon_sym_def] = ACTIONS(289), + [anon_sym_export_DASHenv] = ACTIONS(291), + [anon_sym_extern] = ACTIONS(293), + [anon_sym_module] = ACTIONS(295), + [anon_sym_use] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(307), + [anon_sym_list] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_break] = ACTIONS(313), + [anon_sym_continue] = ACTIONS(315), + [anon_sym_for] = ACTIONS(317), + [anon_sym_in] = ACTIONS(309), + [anon_sym_loop] = ACTIONS(319), + [anon_sym_make] = ACTIONS(309), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(335), + [anon_sym_catch] = ACTIONS(309), + [anon_sym_return] = ACTIONS(337), + [anon_sym_source] = ACTIONS(339), + [anon_sym_source_DASHenv] = ACTIONS(339), + [anon_sym_register] = ACTIONS(341), + [anon_sym_hide] = ACTIONS(343), + [anon_sym_hide_DASHenv] = ACTIONS(345), + [anon_sym_overlay] = ACTIONS(347), + [anon_sym_new] = ACTIONS(309), + [anon_sym_as] = ACTIONS(309), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [aux_sym__record_key_token2] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_POUND] = ACTIONS(3), + }, + [102] = { + [sym_comment] = STATE(102), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token1] = ACTIONS(413), + [aux_sym__immediate_decimal_token2] = ACTIONS(415), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(115), + [anon_sym_out_GT] = ACTIONS(115), + [anon_sym_e_GT] = ACTIONS(115), + [anon_sym_o_GT] = ACTIONS(115), + [anon_sym_err_PLUSout_GT] = ACTIONS(115), + [anon_sym_out_PLUSerr_GT] = ACTIONS(115), + [anon_sym_o_PLUSe_GT] = ACTIONS(115), + [anon_sym_e_PLUSo_GT] = ACTIONS(115), + [aux_sym_unquoted_token1] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [103] = { + [sym_comment] = STATE(103), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(107), @@ -87969,8 +89783,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(409), - [aux_sym__immediate_decimal_token2] = ACTIONS(411), + [aux_sym__immediate_decimal_token1] = ACTIONS(417), + [aux_sym__immediate_decimal_token2] = ACTIONS(419), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -88079,8 +89893,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [102] = { - [sym_comment] = STATE(102), + [104] = { + [sym_comment] = STATE(104), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(421), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_err_GT] = ACTIONS(147), + [anon_sym_out_GT] = ACTIONS(147), + [anon_sym_e_GT] = ACTIONS(147), + [anon_sym_o_GT] = ACTIONS(147), + [anon_sym_err_PLUSout_GT] = ACTIONS(147), + [anon_sym_out_PLUSerr_GT] = ACTIONS(147), + [anon_sym_o_PLUSe_GT] = ACTIONS(147), + [anon_sym_e_PLUSo_GT] = ACTIONS(147), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [105] = { + [sym_comment] = STATE(105), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_RPAREN] = ACTIONS(130), + [anon_sym_PIPE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(426), + [anon_sym_null] = ACTIONS(130), + [anon_sym_true] = ACTIONS(130), + [anon_sym_false] = ACTIONS(130), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(130), + [aux_sym__val_number_token2] = ACTIONS(130), + [aux_sym__val_number_token3] = ACTIONS(130), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(130), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym__str_single_quotes] = ACTIONS(130), + [sym__str_back_ticks] = ACTIONS(130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(130), + [anon_sym_err_GT] = ACTIONS(130), + [anon_sym_out_GT] = ACTIONS(130), + [anon_sym_e_GT] = ACTIONS(130), + [anon_sym_o_GT] = ACTIONS(130), + [anon_sym_err_PLUSout_GT] = ACTIONS(130), + [anon_sym_out_PLUSerr_GT] = ACTIONS(130), + [anon_sym_o_PLUSe_GT] = ACTIONS(130), + [anon_sym_e_PLUSo_GT] = ACTIONS(130), + [aux_sym_unquoted_token1] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), + }, + [106] = { + [sym_comment] = STATE(106), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(115), @@ -88094,7 +90208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(428), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(115), [anon_sym_PLUS_PLUS] = ACTIONS(115), @@ -88120,7 +90234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(413), [aux_sym__immediate_decimal_token2] = ACTIONS(415), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), @@ -88230,8 +90343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [103] = { - [sym_comment] = STATE(103), + [107] = { + [sym_comment] = STATE(107), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(107), @@ -88271,7 +90384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(411), + [aux_sym__immediate_decimal_token2] = ACTIONS(419), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -88380,8 +90493,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [104] = { - [sym_comment] = STATE(104), + [108] = { + [sym_comment] = STATE(108), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), @@ -88420,8 +90533,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(417), - [aux_sym__immediate_decimal_token2] = ACTIONS(419), + [aux_sym__immediate_decimal_token1] = ACTIONS(431), + [aux_sym__immediate_decimal_token2] = ACTIONS(433), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -88530,308 +90643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [105] = { - [sym_comment] = STATE(105), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(421), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_err_GT] = ACTIONS(148), - [anon_sym_out_GT] = ACTIONS(148), - [anon_sym_e_GT] = ACTIONS(148), - [anon_sym_o_GT] = ACTIONS(148), - [anon_sym_err_PLUSout_GT] = ACTIONS(148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(148), - [anon_sym_o_PLUSe_GT] = ACTIONS(148), - [anon_sym_e_PLUSo_GT] = ACTIONS(148), - [aux_sym_unquoted_token1] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(105), - }, - [106] = { - [sym_comment] = STATE(106), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(426), - [anon_sym_null] = ACTIONS(127), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(127), - [aux_sym__val_number_token2] = ACTIONS(127), - [aux_sym__val_number_token3] = ACTIONS(127), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(127), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(127), - [sym__str_single_quotes] = ACTIONS(127), - [sym__str_back_ticks] = ACTIONS(127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(127), - [anon_sym_err_GT] = ACTIONS(127), - [anon_sym_out_GT] = ACTIONS(127), - [anon_sym_e_GT] = ACTIONS(127), - [anon_sym_o_GT] = ACTIONS(127), - [anon_sym_err_PLUSout_GT] = ACTIONS(127), - [anon_sym_out_PLUSerr_GT] = ACTIONS(127), - [anon_sym_o_PLUSe_GT] = ACTIONS(127), - [anon_sym_e_PLUSo_GT] = ACTIONS(127), - [aux_sym_unquoted_token1] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(105), - }, - [107] = { - [sym_comment] = STATE(107), + [109] = { + [sym_comment] = STATE(109), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(115), @@ -88980,158 +90793,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [108] = { - [sym_comment] = STATE(108), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(428), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(411), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [109] = { - [sym_comment] = STATE(109), + [110] = { + [sym_comment] = STATE(110), [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), @@ -89170,8 +90833,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(431), - [aux_sym__immediate_decimal_token2] = ACTIONS(433), + [aux_sym__immediate_decimal_token1] = ACTIONS(435), + [aux_sym__immediate_decimal_token2] = ACTIONS(437), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -89280,604 +90943,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [110] = { - [sym_comment] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(438), - [anon_sym_null] = ACTIONS(127), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(127), - [aux_sym__val_number_token2] = ACTIONS(127), - [aux_sym__val_number_token3] = ACTIONS(127), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(127), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(127), - [sym__str_single_quotes] = ACTIONS(127), - [sym__str_back_ticks] = ACTIONS(127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(127), - [anon_sym_err_GT] = ACTIONS(127), - [anon_sym_out_GT] = ACTIONS(127), - [anon_sym_e_GT] = ACTIONS(127), - [anon_sym_o_GT] = ACTIONS(127), - [anon_sym_err_PLUSout_GT] = ACTIONS(127), - [anon_sym_out_PLUSerr_GT] = ACTIONS(127), - [anon_sym_o_PLUSe_GT] = ACTIONS(127), - [anon_sym_e_PLUSo_GT] = ACTIONS(127), - [aux_sym_unquoted_token1] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(105), - }, [111] = { [sym_comment] = STATE(111), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [112] = { - [sym_comment] = STATE(112), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_null] = ACTIONS(165), - [anon_sym_true] = ACTIONS(165), - [anon_sym_false] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(165), - [aux_sym__val_number_token2] = ACTIONS(165), - [aux_sym__val_number_token3] = ACTIONS(165), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(165), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(165), - [sym__str_single_quotes] = ACTIONS(165), - [sym__str_back_ticks] = ACTIONS(165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(165), - [anon_sym_err_GT] = ACTIONS(165), - [anon_sym_out_GT] = ACTIONS(165), - [anon_sym_e_GT] = ACTIONS(165), - [anon_sym_o_GT] = ACTIONS(165), - [anon_sym_err_PLUSout_GT] = ACTIONS(165), - [anon_sym_out_PLUSerr_GT] = ACTIONS(165), - [anon_sym_o_PLUSe_GT] = ACTIONS(165), - [anon_sym_e_PLUSo_GT] = ACTIONS(165), - [aux_sym_unquoted_token1] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(105), - }, - [113] = { - [sym_comment] = STATE(113), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(442), - [anon_sym_POUND] = ACTIONS(105), - }, - [114] = { - [sym_comment] = STATE(114), [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), @@ -89916,7 +90983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(433), + [aux_sym__immediate_decimal_token2] = ACTIONS(437), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -90025,8 +91092,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [115] = { - [sym_comment] = STATE(115), + [112] = { + [sym_comment] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(132), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_PIPE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(442), + [anon_sym_null] = ACTIONS(130), + [anon_sym_true] = ACTIONS(130), + [anon_sym_false] = ACTIONS(130), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(130), + [aux_sym__val_number_token2] = ACTIONS(130), + [aux_sym__val_number_token3] = ACTIONS(130), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(130), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym__str_single_quotes] = ACTIONS(130), + [sym__str_back_ticks] = ACTIONS(130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(130), + [anon_sym_err_GT] = ACTIONS(130), + [anon_sym_out_GT] = ACTIONS(130), + [anon_sym_e_GT] = ACTIONS(130), + [anon_sym_o_GT] = ACTIONS(130), + [anon_sym_err_PLUSout_GT] = ACTIONS(130), + [anon_sym_out_PLUSerr_GT] = ACTIONS(130), + [anon_sym_o_PLUSe_GT] = ACTIONS(130), + [anon_sym_e_PLUSo_GT] = ACTIONS(130), + [aux_sym_unquoted_token1] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), + }, + [113] = { + [sym_comment] = STATE(113), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(115), @@ -90174,468 +91390,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [116] = { - [sym_comment] = STATE(116), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), + [114] = { + [sym_comment] = STATE(114), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), [anon_sym_DOT2] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), [aux_sym_unquoted_token6] = ACTIONS(446), [anon_sym_POUND] = ACTIONS(105), }, - [117] = { - [sym_comment] = STATE(117), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(448), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_err_GT] = ACTIONS(148), - [anon_sym_out_GT] = ACTIONS(148), - [anon_sym_e_GT] = ACTIONS(148), - [anon_sym_o_GT] = ACTIONS(148), - [anon_sym_err_PLUSout_GT] = ACTIONS(148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(148), - [anon_sym_o_PLUSe_GT] = ACTIONS(148), - [anon_sym_e_PLUSo_GT] = ACTIONS(148), - [aux_sym_unquoted_token1] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(105), - }, - [118] = { - [sym_comment] = STATE(118), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_err_GT] = ACTIONS(148), - [anon_sym_out_GT] = ACTIONS(148), - [anon_sym_e_GT] = ACTIONS(148), - [anon_sym_o_GT] = ACTIONS(148), - [anon_sym_err_PLUSout_GT] = ACTIONS(148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(148), - [anon_sym_o_PLUSe_GT] = ACTIONS(148), - [anon_sym_e_PLUSo_GT] = ACTIONS(148), - [aux_sym_unquoted_token1] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [115] = { + [sym_comment] = STATE(115), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_null] = ACTIONS(157), + [anon_sym_true] = ACTIONS(157), + [anon_sym_false] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(157), + [aux_sym__val_number_token2] = ACTIONS(157), + [aux_sym__val_number_token3] = ACTIONS(157), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(157), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym__str_single_quotes] = ACTIONS(157), + [sym__str_back_ticks] = ACTIONS(157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(157), + [anon_sym_err_GT] = ACTIONS(157), + [anon_sym_out_GT] = ACTIONS(157), + [anon_sym_e_GT] = ACTIONS(157), + [anon_sym_o_GT] = ACTIONS(157), + [anon_sym_err_PLUSout_GT] = ACTIONS(157), + [anon_sym_out_PLUSerr_GT] = ACTIONS(157), + [anon_sym_o_PLUSe_GT] = ACTIONS(157), + [anon_sym_e_PLUSo_GT] = ACTIONS(157), + [aux_sym_unquoted_token1] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(105), }, - [119] = { - [sym_comment] = STATE(119), - [ts_builtin_sym_end] = ACTIONS(109), + [116] = { + [sym_comment] = STATE(116), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(107), + [anon_sym_RPAREN] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(107), [anon_sym_DOLLAR] = ACTIONS(107), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(450), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(107), [anon_sym_PLUS_PLUS] = ACTIONS(107), @@ -90661,7 +91729,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(419), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -90770,8 +91837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [120] = { - [sym_comment] = STATE(120), + [117] = { + [sym_comment] = STATE(117), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), @@ -90810,7 +91877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(419), + [aux_sym__immediate_decimal_token2] = ACTIONS(433), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -90919,748 +91986,1640 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, + [118] = { + [sym_comment] = STATE(118), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_err_GT] = ACTIONS(147), + [anon_sym_out_GT] = ACTIONS(147), + [anon_sym_e_GT] = ACTIONS(147), + [anon_sym_o_GT] = ACTIONS(147), + [anon_sym_err_PLUSout_GT] = ACTIONS(147), + [anon_sym_out_PLUSerr_GT] = ACTIONS(147), + [anon_sym_o_PLUSe_GT] = ACTIONS(147), + [anon_sym_e_PLUSo_GT] = ACTIONS(147), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [119] = { + [sym_comment] = STATE(119), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(437), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(115), + [anon_sym_out_GT] = ACTIONS(115), + [anon_sym_e_GT] = ACTIONS(115), + [anon_sym_o_GT] = ACTIONS(115), + [anon_sym_err_PLUSout_GT] = ACTIONS(115), + [anon_sym_out_PLUSerr_GT] = ACTIONS(115), + [anon_sym_o_PLUSe_GT] = ACTIONS(115), + [anon_sym_e_PLUSo_GT] = ACTIONS(115), + [aux_sym_unquoted_token1] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [120] = { + [sym_comment] = STATE(120), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(105), + }, [121] = { [sym_comment] = STATE(121), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(446), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(455), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_err_GT] = ACTIONS(147), + [anon_sym_out_GT] = ACTIONS(147), + [anon_sym_e_GT] = ACTIONS(147), + [anon_sym_o_GT] = ACTIONS(147), + [anon_sym_err_PLUSout_GT] = ACTIONS(147), + [anon_sym_out_PLUSerr_GT] = ACTIONS(147), + [anon_sym_o_PLUSe_GT] = ACTIONS(147), + [anon_sym_e_PLUSo_GT] = ACTIONS(147), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, [122] = { [sym_comment] = STATE(122), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(455), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(457), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(459), [anon_sym_POUND] = ACTIONS(105), }, [123] = { [sym_comment] = STATE(123), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(442), + [ts_builtin_sym_end] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_null] = ACTIONS(157), + [anon_sym_true] = ACTIONS(157), + [anon_sym_false] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(157), + [aux_sym__val_number_token2] = ACTIONS(157), + [aux_sym__val_number_token3] = ACTIONS(157), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(157), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym__str_single_quotes] = ACTIONS(157), + [sym__str_back_ticks] = ACTIONS(157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(157), + [anon_sym_err_GT] = ACTIONS(157), + [anon_sym_out_GT] = ACTIONS(157), + [anon_sym_e_GT] = ACTIONS(157), + [anon_sym_o_GT] = ACTIONS(157), + [anon_sym_err_PLUSout_GT] = ACTIONS(157), + [anon_sym_out_PLUSerr_GT] = ACTIONS(157), + [anon_sym_o_PLUSe_GT] = ACTIONS(157), + [anon_sym_e_PLUSo_GT] = ACTIONS(157), + [aux_sym_unquoted_token1] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(105), }, [124] = { [sym_comment] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_err_GT] = ACTIONS(148), - [anon_sym_out_GT] = ACTIONS(148), - [anon_sym_e_GT] = ACTIONS(148), - [anon_sym_o_GT] = ACTIONS(148), - [anon_sym_err_PLUSout_GT] = ACTIONS(148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(148), - [anon_sym_o_PLUSe_GT] = ACTIONS(148), - [anon_sym_e_PLUSo_GT] = ACTIONS(148), - [aux_sym_unquoted_token1] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(115), + [anon_sym_out_GT] = ACTIONS(115), + [anon_sym_e_GT] = ACTIONS(115), + [anon_sym_o_GT] = ACTIONS(115), + [anon_sym_err_PLUSout_GT] = ACTIONS(115), + [anon_sym_out_PLUSerr_GT] = ACTIONS(115), + [anon_sym_o_PLUSe_GT] = ACTIONS(115), + [anon_sym_e_PLUSo_GT] = ACTIONS(115), + [aux_sym_unquoted_token1] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, [125] = { [sym_comment] = STATE(125), - [ts_builtin_sym_end] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_null] = ACTIONS(165), - [anon_sym_true] = ACTIONS(165), - [anon_sym_false] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(165), - [aux_sym__val_number_token2] = ACTIONS(165), - [aux_sym__val_number_token3] = ACTIONS(165), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(165), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(165), - [sym__str_single_quotes] = ACTIONS(165), - [sym__str_back_ticks] = ACTIONS(165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(165), - [anon_sym_err_GT] = ACTIONS(165), - [anon_sym_out_GT] = ACTIONS(165), - [anon_sym_e_GT] = ACTIONS(165), - [anon_sym_o_GT] = ACTIONS(165), - [anon_sym_err_PLUSout_GT] = ACTIONS(165), - [anon_sym_out_PLUSerr_GT] = ACTIONS(165), - [anon_sym_o_PLUSe_GT] = ACTIONS(165), - [anon_sym_e_PLUSo_GT] = ACTIONS(165), - [aux_sym_unquoted_token1] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_err_GT] = ACTIONS(147), + [anon_sym_out_GT] = ACTIONS(147), + [anon_sym_e_GT] = ACTIONS(147), + [anon_sym_o_GT] = ACTIONS(147), + [anon_sym_err_PLUSout_GT] = ACTIONS(147), + [anon_sym_out_PLUSerr_GT] = ACTIONS(147), + [anon_sym_o_PLUSe_GT] = ACTIONS(147), + [anon_sym_e_PLUSo_GT] = ACTIONS(147), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, [126] = { [sym_comment] = STATE(126), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(105), + }, + [127] = { + [sym_comment] = STATE(127), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(463), + [anon_sym_POUND] = ACTIONS(105), + }, + [128] = { + [sym_comment] = STATE(128), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(446), + [anon_sym_POUND] = ACTIONS(105), + }, + [129] = { + [sym_comment] = STATE(129), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), @@ -91807,451 +93766,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [127] = { - [sym_comment] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(105), - }, - [128] = { - [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LF] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_in] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(115), - [anon_sym_bit_DASHshr] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_not_DASHin] = ACTIONS(115), - [anon_sym_starts_DASHwith] = ACTIONS(115), - [anon_sym_ends_DASHwith] = ACTIONS(115), - [anon_sym_EQ_TILDE] = ACTIONS(115), - [anon_sym_BANG_TILDE] = ACTIONS(115), - [anon_sym_bit_DASHand] = ACTIONS(115), - [anon_sym_bit_DASHxor] = ACTIONS(115), - [anon_sym_bit_DASHor] = ACTIONS(115), - [anon_sym_and] = ACTIONS(115), - [anon_sym_xor] = ACTIONS(115), - [anon_sym_or] = ACTIONS(115), - [anon_sym_null] = ACTIONS(115), - [anon_sym_true] = ACTIONS(115), - [anon_sym_false] = ACTIONS(115), - [aux_sym__val_number_decimal_token1] = ACTIONS(115), - [aux_sym__val_number_token1] = ACTIONS(115), - [aux_sym__val_number_token2] = ACTIONS(115), - [aux_sym__val_number_token3] = ACTIONS(115), - [aux_sym__val_number_token4] = ACTIONS(115), - [aux_sym__val_number_token5] = ACTIONS(115), - [aux_sym__val_number_token6] = ACTIONS(115), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [anon_sym_0b] = ACTIONS(115), - [anon_sym_0o] = ACTIONS(115), - [anon_sym_0x] = ACTIONS(115), - [sym_val_date] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym__str_single_quotes] = ACTIONS(115), - [sym__str_back_ticks] = ACTIONS(115), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(115), - [anon_sym_out_GT] = ACTIONS(115), - [anon_sym_e_GT] = ACTIONS(115), - [anon_sym_o_GT] = ACTIONS(115), - [anon_sym_err_PLUSout_GT] = ACTIONS(115), - [anon_sym_out_PLUSerr_GT] = ACTIONS(115), - [anon_sym_o_PLUSe_GT] = ACTIONS(115), - [anon_sym_e_PLUSo_GT] = ACTIONS(115), - [aux_sym_unquoted_token1] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), + [130] = { + [sym_comment] = STATE(130), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(463), [anon_sym_POUND] = ACTIONS(105), }, - [129] = { - [sym_comment] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), + [131] = { + [sym_comment] = STATE(131), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), [aux_sym_unquoted_token6] = ACTIONS(459), [anon_sym_POUND] = ACTIONS(105), }, - [130] = { - [sym_comment] = STATE(130), + [132] = { + [sym_comment] = STATE(132), [anon_sym_SEMI] = ACTIONS(221), [anon_sym_LF] = ACTIONS(223), [anon_sym_LBRACK] = ACTIONS(221), @@ -92397,302 +94207,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(221), [anon_sym_POUND] = ACTIONS(105), }, - [131] = { - [sym_comment] = STATE(131), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [anon_sym_POUND] = ACTIONS(105), - }, - [132] = { - [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(455), - [anon_sym_POUND] = ACTIONS(105), - }, [133] = { [sym_comment] = STATE(133), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(105), + }, + [134] = { + [sym_comment] = STATE(134), [anon_sym_SEMI] = ACTIONS(213), [anon_sym_LF] = ACTIONS(215), [anon_sym_LBRACK] = ACTIONS(213), @@ -92741,83 +94404,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(213), [aux_sym__val_number_token5] = ACTIONS(213), [aux_sym__val_number_token6] = ACTIONS(213), - [anon_sym_ns] = ACTIONS(461), - [anon_sym_s] = ACTIONS(461), - [anon_sym_us] = ACTIONS(461), - [anon_sym_ms] = ACTIONS(461), - [anon_sym_sec] = ACTIONS(461), - [anon_sym_min] = ACTIONS(461), - [anon_sym_hr] = ACTIONS(461), - [anon_sym_day] = ACTIONS(461), - [anon_sym_wk] = ACTIONS(461), - [anon_sym_b] = ACTIONS(463), - [anon_sym_B] = ACTIONS(463), - [anon_sym_kb] = ACTIONS(463), - [anon_sym_kB] = ACTIONS(463), - [anon_sym_Kb] = ACTIONS(463), - [anon_sym_KB] = ACTIONS(463), - [anon_sym_mb] = ACTIONS(463), - [anon_sym_mB] = ACTIONS(463), - [anon_sym_Mb] = ACTIONS(463), - [anon_sym_MB] = ACTIONS(463), - [anon_sym_gb] = ACTIONS(463), - [anon_sym_gB] = ACTIONS(463), - [anon_sym_Gb] = ACTIONS(463), - [anon_sym_GB] = ACTIONS(463), - [anon_sym_tb] = ACTIONS(463), - [anon_sym_tB] = ACTIONS(463), - [anon_sym_Tb] = ACTIONS(463), - [anon_sym_TB] = ACTIONS(463), - [anon_sym_pb] = ACTIONS(463), - [anon_sym_pB] = ACTIONS(463), - [anon_sym_Pb] = ACTIONS(463), - [anon_sym_PB] = ACTIONS(463), - [anon_sym_eb] = ACTIONS(463), - [anon_sym_eB] = ACTIONS(463), - [anon_sym_Eb] = ACTIONS(463), - [anon_sym_EB] = ACTIONS(463), - [anon_sym_kib] = ACTIONS(463), - [anon_sym_kiB] = ACTIONS(463), - [anon_sym_kIB] = ACTIONS(463), - [anon_sym_kIb] = ACTIONS(463), - [anon_sym_Kib] = ACTIONS(463), - [anon_sym_KIb] = ACTIONS(463), - [anon_sym_KIB] = ACTIONS(463), - [anon_sym_mib] = ACTIONS(463), - [anon_sym_miB] = ACTIONS(463), - [anon_sym_mIB] = ACTIONS(463), - [anon_sym_mIb] = ACTIONS(463), - [anon_sym_Mib] = ACTIONS(463), - [anon_sym_MIb] = ACTIONS(463), - [anon_sym_MIB] = ACTIONS(463), - [anon_sym_gib] = ACTIONS(463), - [anon_sym_giB] = ACTIONS(463), - [anon_sym_gIB] = ACTIONS(463), - [anon_sym_gIb] = ACTIONS(463), - [anon_sym_Gib] = ACTIONS(463), - [anon_sym_GIb] = ACTIONS(463), - [anon_sym_GIB] = ACTIONS(463), - [anon_sym_tib] = ACTIONS(463), - [anon_sym_tiB] = ACTIONS(463), - [anon_sym_tIB] = ACTIONS(463), - [anon_sym_tIb] = ACTIONS(463), - [anon_sym_Tib] = ACTIONS(463), - [anon_sym_TIb] = ACTIONS(463), - [anon_sym_TIB] = ACTIONS(463), - [anon_sym_pib] = ACTIONS(463), - [anon_sym_piB] = ACTIONS(463), - [anon_sym_pIB] = ACTIONS(463), - [anon_sym_pIb] = ACTIONS(463), - [anon_sym_Pib] = ACTIONS(463), - [anon_sym_PIb] = ACTIONS(463), - [anon_sym_PIB] = ACTIONS(463), - [anon_sym_eib] = ACTIONS(463), - [anon_sym_eiB] = ACTIONS(463), - [anon_sym_eIB] = ACTIONS(463), - [anon_sym_eIb] = ACTIONS(463), - [anon_sym_Eib] = ACTIONS(463), - [anon_sym_EIb] = ACTIONS(463), - [anon_sym_EIB] = ACTIONS(463), + [anon_sym_ns] = ACTIONS(465), + [anon_sym_s] = ACTIONS(465), + [anon_sym_us] = ACTIONS(465), + [anon_sym_ms] = ACTIONS(465), + [anon_sym_sec] = ACTIONS(465), + [anon_sym_min] = ACTIONS(465), + [anon_sym_hr] = ACTIONS(465), + [anon_sym_day] = ACTIONS(465), + [anon_sym_wk] = ACTIONS(465), + [anon_sym_b] = ACTIONS(467), + [anon_sym_B] = ACTIONS(467), + [anon_sym_kb] = ACTIONS(467), + [anon_sym_kB] = ACTIONS(467), + [anon_sym_Kb] = ACTIONS(467), + [anon_sym_KB] = ACTIONS(467), + [anon_sym_mb] = ACTIONS(467), + [anon_sym_mB] = ACTIONS(467), + [anon_sym_Mb] = ACTIONS(467), + [anon_sym_MB] = ACTIONS(467), + [anon_sym_gb] = ACTIONS(467), + [anon_sym_gB] = ACTIONS(467), + [anon_sym_Gb] = ACTIONS(467), + [anon_sym_GB] = ACTIONS(467), + [anon_sym_tb] = ACTIONS(467), + [anon_sym_tB] = ACTIONS(467), + [anon_sym_Tb] = ACTIONS(467), + [anon_sym_TB] = ACTIONS(467), + [anon_sym_pb] = ACTIONS(467), + [anon_sym_pB] = ACTIONS(467), + [anon_sym_Pb] = ACTIONS(467), + [anon_sym_PB] = ACTIONS(467), + [anon_sym_eb] = ACTIONS(467), + [anon_sym_eB] = ACTIONS(467), + [anon_sym_Eb] = ACTIONS(467), + [anon_sym_EB] = ACTIONS(467), + [anon_sym_kib] = ACTIONS(467), + [anon_sym_kiB] = ACTIONS(467), + [anon_sym_kIB] = ACTIONS(467), + [anon_sym_kIb] = ACTIONS(467), + [anon_sym_Kib] = ACTIONS(467), + [anon_sym_KIb] = ACTIONS(467), + [anon_sym_KIB] = ACTIONS(467), + [anon_sym_mib] = ACTIONS(467), + [anon_sym_miB] = ACTIONS(467), + [anon_sym_mIB] = ACTIONS(467), + [anon_sym_mIb] = ACTIONS(467), + [anon_sym_Mib] = ACTIONS(467), + [anon_sym_MIb] = ACTIONS(467), + [anon_sym_MIB] = ACTIONS(467), + [anon_sym_gib] = ACTIONS(467), + [anon_sym_giB] = ACTIONS(467), + [anon_sym_gIB] = ACTIONS(467), + [anon_sym_gIb] = ACTIONS(467), + [anon_sym_Gib] = ACTIONS(467), + [anon_sym_GIb] = ACTIONS(467), + [anon_sym_GIB] = ACTIONS(467), + [anon_sym_tib] = ACTIONS(467), + [anon_sym_tiB] = ACTIONS(467), + [anon_sym_tIB] = ACTIONS(467), + [anon_sym_tIb] = ACTIONS(467), + [anon_sym_Tib] = ACTIONS(467), + [anon_sym_TIb] = ACTIONS(467), + [anon_sym_TIB] = ACTIONS(467), + [anon_sym_pib] = ACTIONS(467), + [anon_sym_piB] = ACTIONS(467), + [anon_sym_pIB] = ACTIONS(467), + [anon_sym_pIb] = ACTIONS(467), + [anon_sym_Pib] = ACTIONS(467), + [anon_sym_PIb] = ACTIONS(467), + [anon_sym_PIB] = ACTIONS(467), + [anon_sym_eib] = ACTIONS(467), + [anon_sym_eiB] = ACTIONS(467), + [anon_sym_eIB] = ACTIONS(467), + [anon_sym_eIb] = ACTIONS(467), + [anon_sym_Eib] = ACTIONS(467), + [anon_sym_EIb] = ACTIONS(467), + [anon_sym_EIB] = ACTIONS(467), [anon_sym_0b] = ACTIONS(213), [anon_sym_0o] = ACTIONS(213), [anon_sym_0x] = ACTIONS(213), @@ -92838,8 +94501,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(105), }, - [134] = { - [sym_comment] = STATE(134), + [135] = { + [sym_comment] = STATE(135), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(105), + }, + [136] = { + [sym_comment] = STATE(136), + [ts_builtin_sym_end] = ACTIONS(215), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(213), + [anon_sym_bit_DASHshr] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_not_DASHin] = ACTIONS(213), + [anon_sym_starts_DASHwith] = ACTIONS(213), + [anon_sym_ends_DASHwith] = ACTIONS(213), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_BANG_TILDE] = ACTIONS(213), + [anon_sym_bit_DASHand] = ACTIONS(213), + [anon_sym_bit_DASHxor] = ACTIONS(213), + [anon_sym_bit_DASHor] = ACTIONS(213), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(213), + [aux_sym__val_number_token2] = ACTIONS(213), + [aux_sym__val_number_token3] = ACTIONS(213), + [aux_sym__val_number_token4] = ACTIONS(213), + [aux_sym__val_number_token5] = ACTIONS(213), + [aux_sym__val_number_token6] = ACTIONS(213), + [anon_sym_ns] = ACTIONS(469), + [anon_sym_s] = ACTIONS(469), + [anon_sym_us] = ACTIONS(469), + [anon_sym_ms] = ACTIONS(469), + [anon_sym_sec] = ACTIONS(469), + [anon_sym_min] = ACTIONS(469), + [anon_sym_hr] = ACTIONS(469), + [anon_sym_day] = ACTIONS(469), + [anon_sym_wk] = ACTIONS(469), + [anon_sym_b] = ACTIONS(471), + [anon_sym_B] = ACTIONS(471), + [anon_sym_kb] = ACTIONS(471), + [anon_sym_kB] = ACTIONS(471), + [anon_sym_Kb] = ACTIONS(471), + [anon_sym_KB] = ACTIONS(471), + [anon_sym_mb] = ACTIONS(471), + [anon_sym_mB] = ACTIONS(471), + [anon_sym_Mb] = ACTIONS(471), + [anon_sym_MB] = ACTIONS(471), + [anon_sym_gb] = ACTIONS(471), + [anon_sym_gB] = ACTIONS(471), + [anon_sym_Gb] = ACTIONS(471), + [anon_sym_GB] = ACTIONS(471), + [anon_sym_tb] = ACTIONS(471), + [anon_sym_tB] = ACTIONS(471), + [anon_sym_Tb] = ACTIONS(471), + [anon_sym_TB] = ACTIONS(471), + [anon_sym_pb] = ACTIONS(471), + [anon_sym_pB] = ACTIONS(471), + [anon_sym_Pb] = ACTIONS(471), + [anon_sym_PB] = ACTIONS(471), + [anon_sym_eb] = ACTIONS(471), + [anon_sym_eB] = ACTIONS(471), + [anon_sym_Eb] = ACTIONS(471), + [anon_sym_EB] = ACTIONS(471), + [anon_sym_kib] = ACTIONS(471), + [anon_sym_kiB] = ACTIONS(471), + [anon_sym_kIB] = ACTIONS(471), + [anon_sym_kIb] = ACTIONS(471), + [anon_sym_Kib] = ACTIONS(471), + [anon_sym_KIb] = ACTIONS(471), + [anon_sym_KIB] = ACTIONS(471), + [anon_sym_mib] = ACTIONS(471), + [anon_sym_miB] = ACTIONS(471), + [anon_sym_mIB] = ACTIONS(471), + [anon_sym_mIb] = ACTIONS(471), + [anon_sym_Mib] = ACTIONS(471), + [anon_sym_MIb] = ACTIONS(471), + [anon_sym_MIB] = ACTIONS(471), + [anon_sym_gib] = ACTIONS(471), + [anon_sym_giB] = ACTIONS(471), + [anon_sym_gIB] = ACTIONS(471), + [anon_sym_gIb] = ACTIONS(471), + [anon_sym_Gib] = ACTIONS(471), + [anon_sym_GIb] = ACTIONS(471), + [anon_sym_GIB] = ACTIONS(471), + [anon_sym_tib] = ACTIONS(471), + [anon_sym_tiB] = ACTIONS(471), + [anon_sym_tIB] = ACTIONS(471), + [anon_sym_tIb] = ACTIONS(471), + [anon_sym_Tib] = ACTIONS(471), + [anon_sym_TIb] = ACTIONS(471), + [anon_sym_TIB] = ACTIONS(471), + [anon_sym_pib] = ACTIONS(471), + [anon_sym_piB] = ACTIONS(471), + [anon_sym_pIB] = ACTIONS(471), + [anon_sym_pIb] = ACTIONS(471), + [anon_sym_Pib] = ACTIONS(471), + [anon_sym_PIb] = ACTIONS(471), + [anon_sym_PIB] = ACTIONS(471), + [anon_sym_eib] = ACTIONS(471), + [anon_sym_eiB] = ACTIONS(471), + [anon_sym_eIB] = ACTIONS(471), + [anon_sym_eIb] = ACTIONS(471), + [anon_sym_Eib] = ACTIONS(471), + [anon_sym_EIb] = ACTIONS(471), + [anon_sym_EIB] = ACTIONS(471), + [anon_sym_0b] = ACTIONS(213), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [sym__str_single_quotes] = ACTIONS(213), + [sym__str_back_ticks] = ACTIONS(213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), + [anon_sym_err_GT] = ACTIONS(213), + [anon_sym_out_GT] = ACTIONS(213), + [anon_sym_e_GT] = ACTIONS(213), + [anon_sym_o_GT] = ACTIONS(213), + [anon_sym_err_PLUSout_GT] = ACTIONS(213), + [anon_sym_out_PLUSerr_GT] = ACTIONS(213), + [anon_sym_o_PLUSe_GT] = ACTIONS(213), + [anon_sym_e_PLUSo_GT] = ACTIONS(213), + [aux_sym_unquoted_token1] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(105), + }, + [137] = { + [sym_comment] = STATE(137), [ts_builtin_sym_end] = ACTIONS(223), [anon_sym_SEMI] = ACTIONS(221), [anon_sym_LF] = ACTIONS(223), @@ -92984,417 +94939,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(221), [anon_sym_POUND] = ACTIONS(105), }, - [135] = { - [sym_comment] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LF] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(213), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(213), - [anon_sym_SLASH_SLASH] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(213), - [anon_sym_bit_DASHshr] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_not_DASHin] = ACTIONS(213), - [anon_sym_starts_DASHwith] = ACTIONS(213), - [anon_sym_ends_DASHwith] = ACTIONS(213), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_BANG_TILDE] = ACTIONS(213), - [anon_sym_bit_DASHand] = ACTIONS(213), - [anon_sym_bit_DASHxor] = ACTIONS(213), - [anon_sym_bit_DASHor] = ACTIONS(213), - [anon_sym_and] = ACTIONS(213), - [anon_sym_xor] = ACTIONS(213), - [anon_sym_or] = ACTIONS(213), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(213), - [aux_sym__val_number_token2] = ACTIONS(213), - [aux_sym__val_number_token3] = ACTIONS(213), - [aux_sym__val_number_token4] = ACTIONS(213), - [aux_sym__val_number_token5] = ACTIONS(213), - [aux_sym__val_number_token6] = ACTIONS(213), - [anon_sym_ns] = ACTIONS(465), - [anon_sym_s] = ACTIONS(465), - [anon_sym_us] = ACTIONS(465), - [anon_sym_ms] = ACTIONS(465), - [anon_sym_sec] = ACTIONS(465), - [anon_sym_min] = ACTIONS(465), - [anon_sym_hr] = ACTIONS(465), - [anon_sym_day] = ACTIONS(465), - [anon_sym_wk] = ACTIONS(465), - [anon_sym_b] = ACTIONS(467), - [anon_sym_B] = ACTIONS(467), - [anon_sym_kb] = ACTIONS(467), - [anon_sym_kB] = ACTIONS(467), - [anon_sym_Kb] = ACTIONS(467), - [anon_sym_KB] = ACTIONS(467), - [anon_sym_mb] = ACTIONS(467), - [anon_sym_mB] = ACTIONS(467), - [anon_sym_Mb] = ACTIONS(467), - [anon_sym_MB] = ACTIONS(467), - [anon_sym_gb] = ACTIONS(467), - [anon_sym_gB] = ACTIONS(467), - [anon_sym_Gb] = ACTIONS(467), - [anon_sym_GB] = ACTIONS(467), - [anon_sym_tb] = ACTIONS(467), - [anon_sym_tB] = ACTIONS(467), - [anon_sym_Tb] = ACTIONS(467), - [anon_sym_TB] = ACTIONS(467), - [anon_sym_pb] = ACTIONS(467), - [anon_sym_pB] = ACTIONS(467), - [anon_sym_Pb] = ACTIONS(467), - [anon_sym_PB] = ACTIONS(467), - [anon_sym_eb] = ACTIONS(467), - [anon_sym_eB] = ACTIONS(467), - [anon_sym_Eb] = ACTIONS(467), - [anon_sym_EB] = ACTIONS(467), - [anon_sym_kib] = ACTIONS(467), - [anon_sym_kiB] = ACTIONS(467), - [anon_sym_kIB] = ACTIONS(467), - [anon_sym_kIb] = ACTIONS(467), - [anon_sym_Kib] = ACTIONS(467), - [anon_sym_KIb] = ACTIONS(467), - [anon_sym_KIB] = ACTIONS(467), - [anon_sym_mib] = ACTIONS(467), - [anon_sym_miB] = ACTIONS(467), - [anon_sym_mIB] = ACTIONS(467), - [anon_sym_mIb] = ACTIONS(467), - [anon_sym_Mib] = ACTIONS(467), - [anon_sym_MIb] = ACTIONS(467), - [anon_sym_MIB] = ACTIONS(467), - [anon_sym_gib] = ACTIONS(467), - [anon_sym_giB] = ACTIONS(467), - [anon_sym_gIB] = ACTIONS(467), - [anon_sym_gIb] = ACTIONS(467), - [anon_sym_Gib] = ACTIONS(467), - [anon_sym_GIb] = ACTIONS(467), - [anon_sym_GIB] = ACTIONS(467), - [anon_sym_tib] = ACTIONS(467), - [anon_sym_tiB] = ACTIONS(467), - [anon_sym_tIB] = ACTIONS(467), - [anon_sym_tIb] = ACTIONS(467), - [anon_sym_Tib] = ACTIONS(467), - [anon_sym_TIb] = ACTIONS(467), - [anon_sym_TIB] = ACTIONS(467), - [anon_sym_pib] = ACTIONS(467), - [anon_sym_piB] = ACTIONS(467), - [anon_sym_pIB] = ACTIONS(467), - [anon_sym_pIb] = ACTIONS(467), - [anon_sym_Pib] = ACTIONS(467), - [anon_sym_PIb] = ACTIONS(467), - [anon_sym_PIB] = ACTIONS(467), - [anon_sym_eib] = ACTIONS(467), - [anon_sym_eiB] = ACTIONS(467), - [anon_sym_eIB] = ACTIONS(467), - [anon_sym_eIb] = ACTIONS(467), - [anon_sym_Eib] = ACTIONS(467), - [anon_sym_EIb] = ACTIONS(467), - [anon_sym_EIB] = ACTIONS(467), - [anon_sym_0b] = ACTIONS(213), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym__str_single_quotes] = ACTIONS(213), - [sym__str_back_ticks] = ACTIONS(213), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), - [anon_sym_err_GT] = ACTIONS(213), - [anon_sym_out_GT] = ACTIONS(213), - [anon_sym_e_GT] = ACTIONS(213), - [anon_sym_o_GT] = ACTIONS(213), - [anon_sym_err_PLUSout_GT] = ACTIONS(213), - [anon_sym_out_PLUSerr_GT] = ACTIONS(213), - [anon_sym_o_PLUSe_GT] = ACTIONS(213), - [anon_sym_e_PLUSo_GT] = ACTIONS(213), - [aux_sym_unquoted_token1] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(105), - }, - [136] = { - [sym_comment] = STATE(136), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [anon_sym_POUND] = ACTIONS(105), - }, - [137] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(6022), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(179), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [138] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6142), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(198), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(138), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(515), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -93418,125 +95081,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [138] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5800), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(213), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [139] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6142), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(176), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(139), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -93560,125 +95223,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [139] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5800), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(230), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [140] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5860), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(188), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(140), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -93702,125 +95365,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [140] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(6022), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym_parameter_pipes] = STATE(226), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [141] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5860), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym_parameter_pipes] = STATE(225), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(141), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -93844,125 +95507,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [141] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5887), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(141), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [142] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5784), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(142), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(555), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -93981,125 +95644,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [142] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5580), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(142), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [143] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5694), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_RPAREN2] = ACTIONS(559), @@ -94121,128 +95784,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [143] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(6029), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(143), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [144] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5843), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(144), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), + [anon_sym_RPAREN2] = ACTIONS(563), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -94261,128 +95924,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [144] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5852), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(144), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [145] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5835), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(145), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(561), + [anon_sym_RPAREN2] = ACTIONS(565), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -94401,268 +96064,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(3), - }, - [145] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4660), - [sym__declaration_last] = STATE(5429), - [sym_decl_alias_last] = STATE(5408), - [sym_stmt_let_last] = STATE(5403), - [sym_stmt_mut_last] = STATE(5403), - [sym_stmt_const_last] = STATE(5403), - [sym__statement_last] = STATE(5429), - [sym_pipeline_last] = STATE(5403), - [sym__block_body] = STATE(5710), - [sym_decl_def] = STATE(1507), - [sym_decl_export] = STATE(1507), - [sym_decl_extern] = STATE(1507), - [sym_decl_module] = STATE(1507), - [sym_decl_use] = STATE(1507), - [sym__ctrl_statement] = STATE(1510), - [sym__ctrl_expression] = STATE(4714), - [sym_ctrl_for] = STATE(1513), - [sym_ctrl_loop] = STATE(1513), - [sym_ctrl_error] = STATE(1513), - [sym_ctrl_while] = STATE(1513), - [sym_ctrl_do] = STATE(4919), - [sym_ctrl_if] = STATE(4919), - [sym_ctrl_match] = STATE(4919), - [sym_ctrl_try] = STATE(4919), - [sym_ctrl_return] = STATE(4919), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4913), - [sym_stmt_source] = STATE(1510), - [sym_stmt_register] = STATE(1510), - [sym__stmt_hide] = STATE(1510), - [sym_hide_mod] = STATE(1514), - [sym_hide_env] = STATE(1514), - [sym__stmt_overlay] = STATE(1510), - [sym_overlay_list] = STATE(1517), - [sym_overlay_hide] = STATE(1517), - [sym_overlay_new] = STATE(1517), - [sym_overlay_use] = STATE(1517), - [sym_assignment] = STATE(1510), - [sym_where_command] = STATE(4798), - [sym__expression] = STATE(4798), - [sym_expr_unary] = STATE(3190), - [sym__expr_unary_minus] = STATE(3186), - [sym_expr_binary] = STATE(3190), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3029), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(3190), - [sym_val_nothing] = STATE(3212), - [sym_val_bool] = STATE(3212), - [sym_val_variable] = STATE(2614), - [sym__var] = STATE(2434), - [sym_val_number] = STATE(464), - [sym__val_number_decimal] = STATE(428), - [sym__val_number] = STATE(426), - [sym_val_duration] = STATE(3212), - [sym_val_filesize] = STATE(3212), - [sym_val_binary] = STATE(3212), - [sym_val_string] = STATE(3212), - [sym__str_double_quotes] = STATE(3222), - [sym_val_interpolated] = STATE(3212), - [sym__inter_single_quotes] = STATE(3185), - [sym__inter_double_quotes] = STATE(3179), - [sym_val_list] = STATE(3212), - [sym_val_record] = STATE(3212), - [sym_val_table] = STATE(3212), - [sym_val_closure] = STATE(3212), - [sym_command] = STATE(4798), - [sym_comment] = STATE(145), - [aux_sym_pipeline_repeat1] = STATE(831), - [aux_sym__block_body_repeat2] = STATE(236), - [ts_builtin_sym_end] = ACTIONS(563), - [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), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_export_DASHenv] = ACTIONS(23), - [anon_sym_extern] = ACTIONS(25), - [anon_sym_module] = ACTIONS(27), - [anon_sym_use] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_error] = ACTIONS(37), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_try] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_source] = ACTIONS(65), - [anon_sym_source_DASHenv] = ACTIONS(65), - [anon_sym_register] = ACTIONS(67), - [anon_sym_hide] = ACTIONS(69), - [anon_sym_hide_DASHenv] = ACTIONS(71), - [anon_sym_overlay] = ACTIONS(73), - [anon_sym_where] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_not] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_token1] = ACTIONS(87), - [aux_sym__val_number_token2] = ACTIONS(87), - [aux_sym__val_number_token3] = ACTIONS(87), - [aux_sym__val_number_token4] = ACTIONS(89), - [aux_sym__val_number_token5] = ACTIONS(87), - [aux_sym__val_number_token6] = ACTIONS(89), - [anon_sym_0b] = ACTIONS(91), - [anon_sym_0o] = ACTIONS(91), - [anon_sym_0x] = ACTIONS(91), - [sym_val_date] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym__str_single_quotes] = ACTIONS(97), - [sym__str_back_ticks] = ACTIONS(97), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(99), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(103), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [146] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5757), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5905), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), + [anon_sym_RPAREN2] = ACTIONS(567), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -94681,128 +96204,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [147] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5857), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5795), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(147), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(561), + [anon_sym_RPAREN2] = ACTIONS(559), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -94821,128 +96344,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [148] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5754), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5778), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(148), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(565), + [anon_sym_RPAREN2] = ACTIONS(569), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -94961,128 +96484,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [149] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5828), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5759), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(149), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(567), + [anon_sym_RPAREN2] = ACTIONS(571), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -95101,128 +96624,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [150] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5731), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5720), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(150), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(569), + [anon_sym_RPAREN2] = ACTIONS(573), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -95241,128 +96764,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [151] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5625), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5700), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(151), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(571), + [anon_sym_RPAREN2] = ACTIONS(575), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -95381,128 +96904,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [152] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5767), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5655), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(152), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(565), + [anon_sym_RPAREN2] = ACTIONS(569), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -95521,128 +97044,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [153] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5791), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5777), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(153), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(573), + [anon_sym_RPAREN2] = ACTIONS(567), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -95661,128 +97184,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [154] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5761), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5817), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(154), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(569), + [anon_sym_RPAREN2] = ACTIONS(577), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -95801,128 +97324,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [155] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5724), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5955), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(155), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(571), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -95941,128 +97464,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [156] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5708), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(6164), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(156), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(559), + [anon_sym_RPAREN2] = ACTIONS(579), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -96081,128 +97604,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [157] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5690), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5927), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(157), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(575), + [anon_sym_RPAREN2] = ACTIONS(581), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -96221,128 +97744,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [158] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5651), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5972), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(158), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(515), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(577), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -96361,128 +97884,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [159] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5644), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6148), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(567), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -96501,128 +98024,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [160] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5714), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5624), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(160), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(555), + [anon_sym_RPAREN2] = ACTIONS(583), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -96641,128 +98164,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [161] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5882), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5739), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(579), + [anon_sym_RPAREN2] = ACTIONS(573), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -96781,128 +98304,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [162] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5756), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5978), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(579), + [anon_sym_RPAREN2] = ACTIONS(577), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -96921,128 +98444,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [163] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5612), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5928), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(163), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(575), + [anon_sym_RPAREN2] = ACTIONS(581), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -97061,128 +98584,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [164] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(6011), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5648), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(581), + [anon_sym_RPAREN2] = ACTIONS(571), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -97201,128 +98724,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [165] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5933), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5893), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(511), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), + [anon_sym_RPAREN2] = ACTIONS(575), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -97341,128 +98864,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [166] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5947), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5827), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(166), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(583), + [anon_sym_RPAREN2] = ACTIONS(563), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -97481,128 +99004,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [167] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5902), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5802), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), + [anon_sym_RPAREN2] = ACTIONS(565), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -97621,267 +99144,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [168] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5679), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4842), + [sym__declaration_last] = STATE(5494), + [sym_decl_alias_last] = STATE(5493), + [sym_stmt_let_last] = STATE(5492), + [sym_stmt_mut_last] = STATE(5492), + [sym_stmt_const_last] = STATE(5492), + [sym__statement_last] = STATE(5494), + [sym_pipeline_last] = STATE(5492), + [sym__block_body] = STATE(5742), + [sym_decl_def] = STATE(1533), + [sym_decl_export] = STATE(1533), + [sym_decl_extern] = STATE(1533), + [sym_decl_module] = STATE(1533), + [sym_decl_use] = STATE(1533), + [sym__ctrl_statement] = STATE(1535), + [sym__ctrl_expression] = STATE(4813), + [sym_ctrl_for] = STATE(1541), + [sym_ctrl_loop] = STATE(1541), + [sym_ctrl_error] = STATE(1541), + [sym_ctrl_while] = STATE(1541), + [sym_ctrl_do] = STATE(5043), + [sym_ctrl_if] = STATE(5043), + [sym_ctrl_match] = STATE(5043), + [sym_ctrl_try] = STATE(5043), + [sym_ctrl_return] = STATE(5043), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5037), + [sym_stmt_source] = STATE(1535), + [sym_stmt_register] = STATE(1535), + [sym__stmt_hide] = STATE(1535), + [sym_hide_mod] = STATE(1545), + [sym_hide_env] = STATE(1545), + [sym__stmt_overlay] = STATE(1535), + [sym_overlay_list] = STATE(1546), + [sym_overlay_hide] = STATE(1546), + [sym_overlay_new] = STATE(1546), + [sym_overlay_use] = STATE(1546), + [sym_assignment] = STATE(1535), + [sym_where_command] = STATE(4875), + [sym__expression] = STATE(4875), + [sym_expr_unary] = STATE(3244), + [sym__expr_unary_minus] = STATE(3248), + [sym_expr_binary] = STATE(3244), + [sym__expr_binary_expression] = STATE(3553), + [sym_expr_parenthesized] = STATE(3074), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(3244), + [sym_val_nothing] = STATE(3230), + [sym_val_bool] = STATE(3230), + [sym_val_variable] = STATE(2635), + [sym__var] = STATE(2466), + [sym_val_number] = STATE(451), + [sym__val_number_decimal] = STATE(408), + [sym__val_number] = STATE(422), + [sym_val_duration] = STATE(3230), + [sym_val_filesize] = STATE(3230), + [sym_val_binary] = STATE(3230), + [sym_val_string] = STATE(3230), + [sym__str_double_quotes] = STATE(3238), + [sym_val_interpolated] = STATE(3230), + [sym__inter_single_quotes] = STATE(3256), + [sym__inter_double_quotes] = STATE(3257), + [sym_val_list] = STATE(3230), + [sym_val_record] = STATE(3230), + [sym_val_table] = STATE(3230), + [sym_val_closure] = STATE(3230), + [sym_command] = STATE(4875), [sym_comment] = STATE(168), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_RPAREN2] = ACTIONS(577), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [aux_sym_pipeline_repeat1] = STATE(855), + [aux_sym__block_body_repeat2] = STATE(238), + [ts_builtin_sym_end] = ACTIONS(585), + [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), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_export_DASHenv] = ACTIONS(23), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_use] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_error] = ACTIONS(37), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_source] = ACTIONS(65), + [anon_sym_source_DASHenv] = ACTIONS(65), + [anon_sym_register] = ACTIONS(67), + [anon_sym_hide] = ACTIONS(69), + [anon_sym_hide_DASHenv] = ACTIONS(71), + [anon_sym_overlay] = ACTIONS(73), + [anon_sym_where] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_not] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_token1] = ACTIONS(87), + [aux_sym__val_number_token2] = ACTIONS(87), + [aux_sym__val_number_token3] = ACTIONS(87), + [aux_sym__val_number_token4] = ACTIONS(89), + [aux_sym__val_number_token5] = ACTIONS(87), + [aux_sym__val_number_token6] = ACTIONS(89), + [anon_sym_0b] = ACTIONS(91), + [anon_sym_0o] = ACTIONS(91), + [anon_sym_0x] = ACTIONS(91), + [sym_val_date] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym__str_single_quotes] = ACTIONS(97), + [sym__str_back_ticks] = ACTIONS(97), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(99), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, [169] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5790), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5856), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(169), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), + [anon_sym_RPAREN2] = ACTIONS(587), [anon_sym_true] = ACTIONS(357), [anon_sym_false] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(359), @@ -97900,125 +99424,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [170] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5770), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5929), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(170), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -98039,125 +99563,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [171] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5677), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5664), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -98178,125 +99702,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [172] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5764), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5700), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(172), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -98317,125 +99841,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [173] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5714), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5843), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(173), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -98456,125 +99980,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [174] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5927), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5841), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -98595,125 +100119,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [175] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5930), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5971), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -98738,121 +100262,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [176] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5651), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5968), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(176), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -98873,125 +100397,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [177] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5667), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5707), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -99012,125 +100536,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [178] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5852), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5942), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(178), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -99151,125 +100675,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [179] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5898), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(6164), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(179), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -99290,125 +100814,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [180] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5748), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5624), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -99429,125 +100953,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [181] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5708), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5930), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -99568,125 +101092,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [182] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5772), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5838), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -99707,125 +101231,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [183] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5814), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5681), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -99846,125 +101370,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [184] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5771), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5768), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(184), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -99985,125 +101509,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [185] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5717), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5766), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(185), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -100124,125 +101648,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [186] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5766), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5844), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(186), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -100263,125 +101787,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [187] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5663), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5835), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -100402,125 +101926,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [188] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5664), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5916), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(188), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -100541,125 +102065,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, [189] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5795), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5848), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(189), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -100680,125 +102204,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [190] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5724), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5928), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(190), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -100819,125 +102343,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [191] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5704), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5832), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(3), + }, + [192] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5905), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(192), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(3), + }, + [193] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5845), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(193), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(3), + }, + [194] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5821), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(194), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(3), + }, + [195] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5978), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(195), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(3), + }, + [196] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5846), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(196), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(3), + }, + [197] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5806), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(197), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_POUND] = ACTIONS(3), + }, + [198] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5801), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_POUND] = ACTIONS(3), + }, + [199] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5918), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -100961,122 +103597,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [192] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5901), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(192), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [200] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5944), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(200), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -101100,122 +103736,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [193] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5631), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(193), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [201] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6001), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(201), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -101239,122 +103875,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [194] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5738), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(194), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [202] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5998), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(202), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -101375,125 +104011,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [195] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(6011), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(195), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [203] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5777), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(203), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -101514,125 +104150,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [196] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5701), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(196), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [204] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5815), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(204), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -101653,125 +104289,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [197] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5881), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(197), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [205] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6081), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -101795,122 +104431,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [198] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5816), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [206] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5817), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(206), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -101931,125 +104567,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [199] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5768), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(199), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [207] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6138), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -102070,125 +104706,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [200] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5758), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(200), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [208] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(6147), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(208), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -102209,125 +104845,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [201] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5780), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(201), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [209] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5927), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(209), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -102348,125 +104984,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [202] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5887), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(202), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [210] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5809), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(210), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -102487,125 +105123,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [203] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5783), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [211] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5882), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(211), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -102629,122 +105265,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [204] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5947), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(204), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [212] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5847), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(212), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -102765,125 +105401,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [205] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5606), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(205), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [213] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5884), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(213), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -102904,125 +105540,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [206] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5791), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(206), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [214] = { + [sym_comment] = STATE(214), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym__] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token1] = ACTIONS(589), + [aux_sym__immediate_decimal_token2] = ACTIONS(591), + [anon_sym_null] = ACTIONS(117), + [anon_sym_true] = ACTIONS(117), + [anon_sym_false] = ACTIONS(117), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(117), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(117), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [aux_sym_unquoted_token1] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [215] = { + [sym_comment] = STATE(215), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(109), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_in] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym__] = ACTIONS(107), + [anon_sym_DOT] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(109), + [anon_sym_PLUS_PLUS] = ACTIONS(109), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(109), + [anon_sym_SLASH_SLASH] = ACTIONS(109), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(109), + [anon_sym_bit_DASHshr] = ACTIONS(109), + [anon_sym_EQ_EQ] = ACTIONS(109), + [anon_sym_BANG_EQ] = ACTIONS(109), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(109), + [anon_sym_not_DASHin] = ACTIONS(109), + [anon_sym_starts_DASHwith] = ACTIONS(109), + [anon_sym_ends_DASHwith] = ACTIONS(109), + [anon_sym_EQ_TILDE] = ACTIONS(109), + [anon_sym_BANG_TILDE] = ACTIONS(109), + [anon_sym_bit_DASHand] = ACTIONS(109), + [anon_sym_bit_DASHxor] = ACTIONS(109), + [anon_sym_bit_DASHor] = ACTIONS(109), + [anon_sym_and] = ACTIONS(109), + [anon_sym_xor] = ACTIONS(109), + [anon_sym_or] = ACTIONS(109), + [aux_sym__immediate_decimal_token1] = ACTIONS(593), + [aux_sym__immediate_decimal_token2] = ACTIONS(595), + [anon_sym_null] = ACTIONS(109), + [anon_sym_true] = ACTIONS(109), + [anon_sym_false] = ACTIONS(109), + [aux_sym__val_number_decimal_token1] = ACTIONS(107), + [aux_sym__val_number_token1] = ACTIONS(109), + [aux_sym__val_number_token2] = ACTIONS(109), + [aux_sym__val_number_token3] = ACTIONS(109), + [aux_sym__val_number_token4] = ACTIONS(109), + [aux_sym__val_number_token5] = ACTIONS(109), + [aux_sym__val_number_token6] = ACTIONS(109), + [anon_sym_ns] = ACTIONS(109), + [anon_sym_s] = ACTIONS(109), + [anon_sym_us] = ACTIONS(109), + [anon_sym_ms] = ACTIONS(109), + [anon_sym_sec] = ACTIONS(109), + [anon_sym_min] = ACTIONS(109), + [anon_sym_hr] = ACTIONS(109), + [anon_sym_day] = ACTIONS(109), + [anon_sym_wk] = ACTIONS(109), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(109), + [anon_sym_kb] = ACTIONS(109), + [anon_sym_kB] = ACTIONS(109), + [anon_sym_Kb] = ACTIONS(109), + [anon_sym_KB] = ACTIONS(109), + [anon_sym_mb] = ACTIONS(109), + [anon_sym_mB] = ACTIONS(109), + [anon_sym_Mb] = ACTIONS(109), + [anon_sym_MB] = ACTIONS(109), + [anon_sym_gb] = ACTIONS(109), + [anon_sym_gB] = ACTIONS(109), + [anon_sym_Gb] = ACTIONS(109), + [anon_sym_GB] = ACTIONS(109), + [anon_sym_tb] = ACTIONS(109), + [anon_sym_tB] = ACTIONS(109), + [anon_sym_Tb] = ACTIONS(109), + [anon_sym_TB] = ACTIONS(109), + [anon_sym_pb] = ACTIONS(109), + [anon_sym_pB] = ACTIONS(109), + [anon_sym_Pb] = ACTIONS(109), + [anon_sym_PB] = ACTIONS(109), + [anon_sym_eb] = ACTIONS(109), + [anon_sym_eB] = ACTIONS(109), + [anon_sym_Eb] = ACTIONS(109), + [anon_sym_EB] = ACTIONS(109), + [anon_sym_kib] = ACTIONS(109), + [anon_sym_kiB] = ACTIONS(109), + [anon_sym_kIB] = ACTIONS(109), + [anon_sym_kIb] = ACTIONS(109), + [anon_sym_Kib] = ACTIONS(109), + [anon_sym_KIb] = ACTIONS(109), + [anon_sym_KIB] = ACTIONS(109), + [anon_sym_mib] = ACTIONS(109), + [anon_sym_miB] = ACTIONS(109), + [anon_sym_mIB] = ACTIONS(109), + [anon_sym_mIb] = ACTIONS(109), + [anon_sym_Mib] = ACTIONS(109), + [anon_sym_MIb] = ACTIONS(109), + [anon_sym_MIB] = ACTIONS(109), + [anon_sym_gib] = ACTIONS(109), + [anon_sym_giB] = ACTIONS(109), + [anon_sym_gIB] = ACTIONS(109), + [anon_sym_gIb] = ACTIONS(109), + [anon_sym_Gib] = ACTIONS(109), + [anon_sym_GIb] = ACTIONS(109), + [anon_sym_GIB] = ACTIONS(109), + [anon_sym_tib] = ACTIONS(109), + [anon_sym_tiB] = ACTIONS(109), + [anon_sym_tIB] = ACTIONS(109), + [anon_sym_tIb] = ACTIONS(109), + [anon_sym_Tib] = ACTIONS(109), + [anon_sym_TIb] = ACTIONS(109), + [anon_sym_TIB] = ACTIONS(109), + [anon_sym_pib] = ACTIONS(109), + [anon_sym_piB] = ACTIONS(109), + [anon_sym_pIB] = ACTIONS(109), + [anon_sym_pIb] = ACTIONS(109), + [anon_sym_Pib] = ACTIONS(109), + [anon_sym_PIb] = ACTIONS(109), + [anon_sym_PIB] = ACTIONS(109), + [anon_sym_eib] = ACTIONS(109), + [anon_sym_eiB] = ACTIONS(109), + [anon_sym_eIB] = ACTIONS(109), + [anon_sym_eIb] = ACTIONS(109), + [anon_sym_Eib] = ACTIONS(109), + [anon_sym_EIb] = ACTIONS(109), + [anon_sym_EIB] = ACTIONS(109), + [anon_sym_0b] = ACTIONS(107), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [aux_sym_unquoted_token1] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), + [anon_sym_POUND] = ACTIONS(3), + }, + [216] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5866), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(216), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -103043,125 +105957,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [207] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5857), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(207), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [217] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5795), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(217), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -103182,125 +106096,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [208] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(6015), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(208), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [218] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5720), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(218), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -103321,125 +106235,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [209] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5756), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(209), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [219] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5787), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(219), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -103460,125 +106374,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [210] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(6020), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(210), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [220] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5729), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(220), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -103602,122 +106516,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [211] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(6027), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(211), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [221] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5723), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(221), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -103741,122 +106655,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [212] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5767), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(212), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [222] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5778), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(222), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -103877,125 +106791,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [213] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5844), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(213), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [223] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5769), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(223), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -104016,125 +106930,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [214] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5847), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(214), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [224] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5662), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(224), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -104158,122 +107072,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [215] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5744), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(215), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [225] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5902), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(225), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -104294,125 +107208,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [216] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5644), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(216), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [226] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5733), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(226), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -104433,125 +107347,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [217] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5699), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(217), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [227] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5759), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(227), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -104572,125 +107486,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [218] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5587), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(218), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [228] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5632), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(228), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -104714,122 +107628,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [219] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5638), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(219), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [229] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5849), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(229), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -104850,125 +107764,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [220] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5872), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(220), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [230] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5840), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(230), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -104992,678 +107906,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [221] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5761), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(221), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(3), - }, - [222] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5874), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(222), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_POUND] = ACTIONS(3), - }, - [223] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5769), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(223), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(3), - }, - [224] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5574), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(224), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_POUND] = ACTIONS(3), - }, - [225] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5690), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(225), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [231] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5856), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(231), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -105684,125 +108042,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [226] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5743), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(226), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [232] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5684), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(232), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -105826,261 +108184,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [227] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5579), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(227), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(3), - }, - [228] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5602), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(228), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [233] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4431), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym__block_body] = STATE(5650), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(233), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(235), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -106104,122 +108323,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [229] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5750), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(229), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [234] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4713), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym__parenthesized_body] = STATE(5746), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(234), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(243), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -106240,125 +108459,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [230] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4285), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym__block_body] = STATE(5854), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(230), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(234), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), + [235] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4448), + [sym__declaration_last] = STATE(4957), + [sym_decl_alias_last] = STATE(4960), + [sym_stmt_let_last] = STATE(4961), + [sym_stmt_mut_last] = STATE(4961), + [sym_stmt_const_last] = STATE(4961), + [sym__statement_last] = STATE(4957), + [sym_pipeline_last] = STATE(4961), + [sym_decl_def] = STATE(1347), + [sym_decl_export] = STATE(1347), + [sym_decl_extern] = STATE(1347), + [sym_decl_module] = STATE(1347), + [sym_decl_use] = STATE(1347), + [sym__ctrl_statement] = STATE(1348), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_stmt_source] = STATE(1348), + [sym_stmt_register] = STATE(1348), + [sym__stmt_hide] = STATE(1348), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1348), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1348), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(235), + [aux_sym_pipeline_repeat1] = STATE(858), + [aux_sym__block_body_repeat2] = STATE(265), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(475), + [anon_sym_let] = ACTIONS(477), + [anon_sym_let_DASHenv] = ACTIONS(477), + [anon_sym_mut] = ACTIONS(479), + [anon_sym_const] = ACTIONS(481), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -106382,285 +108600,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [231] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4481), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym__parenthesized_body] = STATE(5882), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(231), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(3), - }, - [232] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym__block_body_statement_parenthesized_last] = STATE(4471), - [sym__declaration_parenthesized_last] = STATE(5412), - [sym_decl_alias_parenthesized_last] = STATE(5401), - [sym_stmt_let_parenthesized_last] = STATE(5391), - [sym_stmt_mut_parenthesized_last] = STATE(5391), - [sym_stmt_const_parenthesized_last] = STATE(5391), - [sym__statement_parenthesized_last] = STATE(5412), - [sym_pipeline_parenthesized_last] = STATE(5391), - [sym_decl_def] = STATE(1550), - [sym_decl_export] = STATE(1550), - [sym_decl_extern] = STATE(1550), - [sym_decl_module] = STATE(1550), - [sym_decl_use] = STATE(1550), - [sym__ctrl_statement] = STATE(1553), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_stmt_source] = STATE(1553), - [sym_stmt_register] = STATE(1553), - [sym__stmt_hide] = STATE(1553), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1553), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1553), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(232), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [aux_sym__parenthesized_body_repeat1] = STATE(263), - [anon_sym_export] = ACTIONS(535), - [anon_sym_alias] = ACTIONS(537), - [anon_sym_let] = ACTIONS(539), - [anon_sym_let_DASHenv] = ACTIONS(539), - [anon_sym_mut] = ACTIONS(541), - [anon_sym_const] = ACTIONS(543), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(3), - }, - [233] = { - [sym_comment] = STATE(233), + [236] = { + [sym_comment] = STATE(236), [anon_sym_LBRACK] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(109), @@ -106698,8 +108639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token1] = ACTIONS(585), - [aux_sym__immediate_decimal_token2] = ACTIONS(587), + [aux_sym__immediate_decimal_token1] = ACTIONS(597), + [aux_sym__immediate_decimal_token2] = ACTIONS(599), [anon_sym_null] = ACTIONS(109), [anon_sym_true] = ACTIONS(109), [anon_sym_false] = ACTIONS(109), @@ -106794,149 +108735,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(109), [sym__str_back_ticks] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [234] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4420), - [sym__declaration_last] = STATE(5087), - [sym_decl_alias_last] = STATE(5084), - [sym_stmt_let_last] = STATE(5076), - [sym_stmt_mut_last] = STATE(5076), - [sym_stmt_const_last] = STATE(5076), - [sym__statement_last] = STATE(5087), - [sym_pipeline_last] = STATE(5076), - [sym_decl_def] = STATE(1321), - [sym_decl_export] = STATE(1321), - [sym_decl_extern] = STATE(1321), - [sym_decl_module] = STATE(1321), - [sym_decl_use] = STATE(1321), - [sym__ctrl_statement] = STATE(1322), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_stmt_source] = STATE(1322), - [sym_stmt_register] = STATE(1322), - [sym__stmt_hide] = STATE(1322), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1322), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1322), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(234), - [aux_sym_pipeline_repeat1] = STATE(830), - [aux_sym__block_body_repeat2] = STATE(264), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(471), - [anon_sym_let] = ACTIONS(473), - [anon_sym_let_DASHenv] = ACTIONS(473), - [anon_sym_mut] = ACTIONS(475), - [anon_sym_const] = ACTIONS(477), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_def] = ACTIONS(481), - [anon_sym_export_DASHenv] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(485), - [anon_sym_module] = ACTIONS(487), - [anon_sym_use] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_error] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_for] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(501), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_source] = ACTIONS(517), - [anon_sym_source_DASHenv] = ACTIONS(517), - [anon_sym_register] = ACTIONS(519), - [anon_sym_hide] = ACTIONS(521), - [anon_sym_hide_DASHenv] = ACTIONS(523), - [anon_sym_overlay] = ACTIONS(525), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [aux_sym_unquoted_token1] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [235] = { - [sym_comment] = STATE(235), + [237] = { + [sym_comment] = STATE(237), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(117), @@ -106974,7 +108777,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(117), [anon_sym_xor] = ACTIONS(117), [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token1] = ACTIONS(589), [aux_sym__immediate_decimal_token2] = ACTIONS(591), [anon_sym_null] = ACTIONS(117), [anon_sym_true] = ACTIONS(117), @@ -107070,87 +108872,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(117), [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), + [aux_sym_unquoted_token1] = ACTIONS(115), [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [236] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym__block_body_statement_last] = STATE(4803), - [sym__declaration_last] = STATE(5429), - [sym_decl_alias_last] = STATE(5408), - [sym_stmt_let_last] = STATE(5403), - [sym_stmt_mut_last] = STATE(5403), - [sym_stmt_const_last] = STATE(5403), - [sym__statement_last] = STATE(5429), - [sym_pipeline_last] = STATE(5403), - [sym_decl_def] = STATE(1507), - [sym_decl_export] = STATE(1507), - [sym_decl_extern] = STATE(1507), - [sym_decl_module] = STATE(1507), - [sym_decl_use] = STATE(1507), - [sym__ctrl_statement] = STATE(1510), - [sym__ctrl_expression] = STATE(4714), - [sym_ctrl_for] = STATE(1513), - [sym_ctrl_loop] = STATE(1513), - [sym_ctrl_error] = STATE(1513), - [sym_ctrl_while] = STATE(1513), - [sym_ctrl_do] = STATE(4919), - [sym_ctrl_if] = STATE(4919), - [sym_ctrl_match] = STATE(4919), - [sym_ctrl_try] = STATE(4919), - [sym_ctrl_return] = STATE(4919), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4913), - [sym_stmt_source] = STATE(1510), - [sym_stmt_register] = STATE(1510), - [sym__stmt_hide] = STATE(1510), - [sym_hide_mod] = STATE(1514), - [sym_hide_env] = STATE(1514), - [sym__stmt_overlay] = STATE(1510), - [sym_overlay_list] = STATE(1517), - [sym_overlay_hide] = STATE(1517), - [sym_overlay_new] = STATE(1517), - [sym_overlay_use] = STATE(1517), - [sym_assignment] = STATE(1510), - [sym_where_command] = STATE(4798), - [sym__expression] = STATE(4798), - [sym_expr_unary] = STATE(3190), - [sym__expr_unary_minus] = STATE(3186), - [sym_expr_binary] = STATE(3190), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3029), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(3190), - [sym_val_nothing] = STATE(3212), - [sym_val_bool] = STATE(3212), - [sym_val_variable] = STATE(2614), - [sym__var] = STATE(2434), - [sym_val_number] = STATE(464), - [sym__val_number_decimal] = STATE(428), - [sym__val_number] = STATE(426), - [sym_val_duration] = STATE(3212), - [sym_val_filesize] = STATE(3212), - [sym_val_binary] = STATE(3212), - [sym_val_string] = STATE(3212), - [sym__str_double_quotes] = STATE(3222), - [sym_val_interpolated] = STATE(3212), - [sym__inter_single_quotes] = STATE(3185), - [sym__inter_double_quotes] = STATE(3179), - [sym_val_list] = STATE(3212), - [sym_val_record] = STATE(3212), - [sym_val_table] = STATE(3212), - [sym_val_closure] = STATE(3212), - [sym_command] = STATE(4798), - [sym_comment] = STATE(236), - [aux_sym_pipeline_repeat1] = STATE(831), - [aux_sym__block_body_repeat2] = STATE(264), + [238] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym__block_body_statement_last] = STATE(4901), + [sym__declaration_last] = STATE(5494), + [sym_decl_alias_last] = STATE(5493), + [sym_stmt_let_last] = STATE(5492), + [sym_stmt_mut_last] = STATE(5492), + [sym_stmt_const_last] = STATE(5492), + [sym__statement_last] = STATE(5494), + [sym_pipeline_last] = STATE(5492), + [sym_decl_def] = STATE(1533), + [sym_decl_export] = STATE(1533), + [sym_decl_extern] = STATE(1533), + [sym_decl_module] = STATE(1533), + [sym_decl_use] = STATE(1533), + [sym__ctrl_statement] = STATE(1535), + [sym__ctrl_expression] = STATE(4813), + [sym_ctrl_for] = STATE(1541), + [sym_ctrl_loop] = STATE(1541), + [sym_ctrl_error] = STATE(1541), + [sym_ctrl_while] = STATE(1541), + [sym_ctrl_do] = STATE(5043), + [sym_ctrl_if] = STATE(5043), + [sym_ctrl_match] = STATE(5043), + [sym_ctrl_try] = STATE(5043), + [sym_ctrl_return] = STATE(5043), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5037), + [sym_stmt_source] = STATE(1535), + [sym_stmt_register] = STATE(1535), + [sym__stmt_hide] = STATE(1535), + [sym_hide_mod] = STATE(1545), + [sym_hide_env] = STATE(1545), + [sym__stmt_overlay] = STATE(1535), + [sym_overlay_list] = STATE(1546), + [sym_overlay_hide] = STATE(1546), + [sym_overlay_new] = STATE(1546), + [sym_overlay_use] = STATE(1546), + [sym_assignment] = STATE(1535), + [sym_where_command] = STATE(4875), + [sym__expression] = STATE(4875), + [sym_expr_unary] = STATE(3244), + [sym__expr_unary_minus] = STATE(3248), + [sym_expr_binary] = STATE(3244), + [sym__expr_binary_expression] = STATE(3553), + [sym_expr_parenthesized] = STATE(3074), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(3244), + [sym_val_nothing] = STATE(3230), + [sym_val_bool] = STATE(3230), + [sym_val_variable] = STATE(2635), + [sym__var] = STATE(2466), + [sym_val_number] = STATE(451), + [sym__val_number_decimal] = STATE(408), + [sym__val_number] = STATE(422), + [sym_val_duration] = STATE(3230), + [sym_val_filesize] = STATE(3230), + [sym_val_binary] = STATE(3230), + [sym_val_string] = STATE(3230), + [sym__str_double_quotes] = STATE(3238), + [sym_val_interpolated] = STATE(3230), + [sym__inter_single_quotes] = STATE(3256), + [sym__inter_double_quotes] = STATE(3257), + [sym_val_list] = STATE(3230), + [sym_val_record] = STATE(3230), + [sym_val_table] = STATE(3230), + [sym_val_closure] = STATE(3230), + [sym_command] = STATE(4875), + [sym_comment] = STATE(238), + [aux_sym_pipeline_repeat1] = STATE(855), + [aux_sym__block_body_repeat2] = STATE(265), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -107211,145 +109014,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [237] = { - [sym_comment] = STATE(237), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym__] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(129), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(129), - [anon_sym_xor] = ACTIONS(129), - [anon_sym_or] = ACTIONS(129), - [aux_sym__immediate_decimal_token2] = ACTIONS(596), - [anon_sym_null] = ACTIONS(129), - [anon_sym_true] = ACTIONS(129), - [anon_sym_false] = ACTIONS(129), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(129), - [aux_sym__val_number_token2] = ACTIONS(129), - [aux_sym__val_number_token3] = ACTIONS(129), - [aux_sym__val_number_token4] = ACTIONS(129), - [aux_sym__val_number_token5] = ACTIONS(129), - [aux_sym__val_number_token6] = ACTIONS(129), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [sym__str_single_quotes] = ACTIONS(129), - [sym__str_back_ticks] = ACTIONS(129), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(3), - }, - [238] = { - [sym_comment] = STATE(238), + [239] = { + [sym_comment] = STATE(239), [anon_sym_LBRACK] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(109), @@ -107387,7 +109053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(587), + [aux_sym__immediate_decimal_token2] = ACTIONS(595), [anon_sym_null] = ACTIONS(109), [anon_sym_true] = ACTIONS(109), [anon_sym_false] = ACTIONS(109), @@ -107482,285 +109148,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(109), [sym__str_back_ticks] = ACTIONS(109), + [aux_sym_unquoted_token1] = ACTIONS(107), [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [239] = { - [sym_comment] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym__] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [aux_sym__immediate_decimal_token2] = ACTIONS(598), - [anon_sym_null] = ACTIONS(150), - [anon_sym_true] = ACTIONS(150), - [anon_sym_false] = ACTIONS(150), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(150), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, [240] = { [sym_comment] = STATE(240), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym__] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token1] = ACTIONS(600), - [aux_sym__immediate_decimal_token2] = ACTIONS(602), - [anon_sym_null] = ACTIONS(109), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(109), - [aux_sym__val_number_token2] = ACTIONS(109), - [aux_sym__val_number_token3] = ACTIONS(109), - [aux_sym__val_number_token4] = ACTIONS(109), - [aux_sym__val_number_token5] = ACTIONS(109), - [aux_sym__val_number_token6] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(3), - }, - [241] = { - [sym_comment] = STATE(241), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(117), @@ -107772,7 +109165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(117), [anon_sym__] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(601), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(117), [anon_sym_PLUS_PLUS] = ACTIONS(117), @@ -107798,8 +109191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(117), [anon_sym_xor] = ACTIONS(117), [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token1] = ACTIONS(604), - [aux_sym__immediate_decimal_token2] = ACTIONS(606), + [aux_sym__immediate_decimal_token2] = ACTIONS(591), [anon_sym_null] = ACTIONS(117), [anon_sym_true] = ACTIONS(117), [anon_sym_false] = ACTIONS(117), @@ -107894,10 +109286,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(117), [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), + [aux_sym_unquoted_token1] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [242] = { - [sym_comment] = STATE(242), + [241] = { + [sym_comment] = STATE(241), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(117), @@ -107935,7 +109329,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(117), [anon_sym_xor] = ACTIONS(117), [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token2] = ACTIONS(591), + [aux_sym__immediate_decimal_token1] = ACTIONS(604), + [aux_sym__immediate_decimal_token2] = ACTIONS(606), [anon_sym_null] = ACTIONS(117), [anon_sym_true] = ACTIONS(117), [anon_sym_false] = ACTIONS(117), @@ -108030,148 +109425,699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(117), [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), - [aux_sym_unquoted_token6] = ACTIONS(115), + [aux_sym_unquoted_token1] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [242] = { + [sym_comment] = STATE(242), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(132), + [anon_sym_RBRACE] = ACTIONS(132), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(608), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(132), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(132), + [anon_sym_xor] = ACTIONS(132), + [anon_sym_or] = ACTIONS(132), + [aux_sym__immediate_decimal_token2] = ACTIONS(611), + [anon_sym_null] = ACTIONS(132), + [anon_sym_true] = ACTIONS(132), + [anon_sym_false] = ACTIONS(132), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(132), + [aux_sym__val_number_token2] = ACTIONS(132), + [aux_sym__val_number_token3] = ACTIONS(132), + [aux_sym__val_number_token4] = ACTIONS(132), + [aux_sym__val_number_token5] = ACTIONS(132), + [aux_sym__val_number_token6] = ACTIONS(132), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(132), + [sym__str_single_quotes] = ACTIONS(132), + [sym__str_back_ticks] = ACTIONS(132), + [aux_sym_unquoted_token1] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), [anon_sym_POUND] = ACTIONS(3), }, [243] = { + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym__block_body_statement_parenthesized_last] = STATE(4536), + [sym__declaration_parenthesized_last] = STATE(5401), + [sym_decl_alias_parenthesized_last] = STATE(5400), + [sym_stmt_let_parenthesized_last] = STATE(5399), + [sym_stmt_mut_parenthesized_last] = STATE(5399), + [sym_stmt_const_parenthesized_last] = STATE(5399), + [sym__statement_parenthesized_last] = STATE(5401), + [sym_pipeline_parenthesized_last] = STATE(5399), + [sym_decl_def] = STATE(1622), + [sym_decl_export] = STATE(1622), + [sym_decl_extern] = STATE(1622), + [sym_decl_module] = STATE(1622), + [sym_decl_use] = STATE(1622), + [sym__ctrl_statement] = STATE(1624), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_stmt_source] = STATE(1624), + [sym_stmt_register] = STATE(1624), + [sym__stmt_hide] = STATE(1624), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1624), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1624), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(243), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym__] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(587), - [anon_sym_null] = ACTIONS(109), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(109), - [aux_sym__val_number_token2] = ACTIONS(109), - [aux_sym__val_number_token3] = ACTIONS(109), - [aux_sym__val_number_token4] = ACTIONS(109), - [aux_sym__val_number_token5] = ACTIONS(109), - [aux_sym__val_number_token6] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [aux_sym__parenthesized_body_repeat1] = STATE(264), + [anon_sym_export] = ACTIONS(539), + [anon_sym_alias] = ACTIONS(541), + [anon_sym_let] = ACTIONS(543), + [anon_sym_let_DASHenv] = ACTIONS(543), + [anon_sym_mut] = ACTIONS(545), + [anon_sym_const] = ACTIONS(547), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_def] = ACTIONS(485), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_module] = ACTIONS(491), + [anon_sym_use] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_for] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_while] = ACTIONS(507), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_source] = ACTIONS(521), + [anon_sym_source_DASHenv] = ACTIONS(521), + [anon_sym_register] = ACTIONS(523), + [anon_sym_hide] = ACTIONS(525), + [anon_sym_hide_DASHenv] = ACTIONS(527), + [anon_sym_overlay] = ACTIONS(529), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, [244] = { [sym_comment] = STATE(244), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym__] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(613), + [anon_sym_null] = ACTIONS(149), + [anon_sym_true] = ACTIONS(149), + [anon_sym_false] = ACTIONS(149), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(149), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [245] = { + [sym_comment] = STATE(245), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(132), + [anon_sym_RBRACE] = ACTIONS(132), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(132), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(132), + [anon_sym_xor] = ACTIONS(132), + [anon_sym_or] = ACTIONS(132), + [aux_sym__immediate_decimal_token2] = ACTIONS(618), + [anon_sym_null] = ACTIONS(132), + [anon_sym_true] = ACTIONS(132), + [anon_sym_false] = ACTIONS(132), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(132), + [aux_sym__val_number_token2] = ACTIONS(132), + [aux_sym__val_number_token3] = ACTIONS(132), + [aux_sym__val_number_token4] = ACTIONS(132), + [aux_sym__val_number_token5] = ACTIONS(132), + [aux_sym__val_number_token6] = ACTIONS(132), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(132), + [sym__str_single_quotes] = ACTIONS(132), + [sym__str_back_ticks] = ACTIONS(132), + [aux_sym_unquoted_token1] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [246] = { + [sym_comment] = STATE(246), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym__] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(620), + [anon_sym_null] = ACTIONS(149), + [anon_sym_true] = ACTIONS(149), + [anon_sym_false] = ACTIONS(149), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(149), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym_unquoted_token1] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [247] = { + [sym_comment] = STATE(247), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(117), @@ -108183,7 +110129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(117), [anon_sym__] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(622), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(117), [anon_sym_PLUS_PLUS] = ACTIONS(117), @@ -108209,6 +110155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(117), [anon_sym_xor] = ACTIONS(117), [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(606), [anon_sym_null] = ACTIONS(117), [anon_sym_true] = ACTIONS(117), [anon_sym_false] = ACTIONS(117), @@ -108303,147 +110250,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(117), [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), - [aux_sym_unquoted_token6] = ACTIONS(115), + [aux_sym_unquoted_token1] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [245] = { - [sym_comment] = STATE(245), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym__] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [aux_sym__immediate_decimal_token2] = ACTIONS(611), - [anon_sym_null] = ACTIONS(150), - [anon_sym_true] = ACTIONS(150), - [anon_sym_false] = ACTIONS(150), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(150), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), + [248] = { + [sym_comment] = STATE(248), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym__] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_null] = ACTIONS(189), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(189), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(627), [anon_sym_POUND] = ACTIONS(3), }, - [246] = { - [sym_comment] = STATE(246), + [249] = { + [sym_comment] = STATE(249), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym__] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [anon_sym_null] = ACTIONS(149), + [anon_sym_true] = ACTIONS(149), + [anon_sym_false] = ACTIONS(149), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(149), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [250] = { + [sym_comment] = STATE(250), [anon_sym_LBRACK] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(109), @@ -108481,7 +110566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(602), + [aux_sym__immediate_decimal_token2] = ACTIONS(599), [anon_sym_null] = ACTIONS(109), [anon_sym_true] = ACTIONS(109), [anon_sym_false] = ACTIONS(109), @@ -108576,146 +110661,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(109), [sym__str_back_ticks] = ACTIONS(109), + [aux_sym_unquoted_token1] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [247] = { - [sym_comment] = STATE(247), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym__] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(167), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(167), - [anon_sym_xor] = ACTIONS(167), - [anon_sym_or] = ACTIONS(167), - [anon_sym_null] = ACTIONS(167), - [anon_sym_true] = ACTIONS(167), - [anon_sym_false] = ACTIONS(167), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(167), - [aux_sym__val_number_token2] = ACTIONS(167), - [aux_sym__val_number_token3] = ACTIONS(167), - [aux_sym__val_number_token4] = ACTIONS(167), - [aux_sym__val_number_token5] = ACTIONS(167), - [aux_sym__val_number_token6] = ACTIONS(167), - [anon_sym_ns] = ACTIONS(167), - [anon_sym_s] = ACTIONS(167), - [anon_sym_us] = ACTIONS(167), - [anon_sym_ms] = ACTIONS(167), - [anon_sym_sec] = ACTIONS(167), - [anon_sym_min] = ACTIONS(167), - [anon_sym_hr] = ACTIONS(167), - [anon_sym_day] = ACTIONS(167), - [anon_sym_wk] = ACTIONS(167), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(167), - [anon_sym_kb] = ACTIONS(167), - [anon_sym_kB] = ACTIONS(167), - [anon_sym_Kb] = ACTIONS(167), - [anon_sym_KB] = ACTIONS(167), - [anon_sym_mb] = ACTIONS(167), - [anon_sym_mB] = ACTIONS(167), - [anon_sym_Mb] = ACTIONS(167), - [anon_sym_MB] = ACTIONS(167), - [anon_sym_gb] = ACTIONS(167), - [anon_sym_gB] = ACTIONS(167), - [anon_sym_Gb] = ACTIONS(167), - [anon_sym_GB] = ACTIONS(167), - [anon_sym_tb] = ACTIONS(167), - [anon_sym_tB] = ACTIONS(167), - [anon_sym_Tb] = ACTIONS(167), - [anon_sym_TB] = ACTIONS(167), - [anon_sym_pb] = ACTIONS(167), - [anon_sym_pB] = ACTIONS(167), - [anon_sym_Pb] = ACTIONS(167), - [anon_sym_PB] = ACTIONS(167), - [anon_sym_eb] = ACTIONS(167), - [anon_sym_eB] = ACTIONS(167), - [anon_sym_Eb] = ACTIONS(167), - [anon_sym_EB] = ACTIONS(167), - [anon_sym_kib] = ACTIONS(167), - [anon_sym_kiB] = ACTIONS(167), - [anon_sym_kIB] = ACTIONS(167), - [anon_sym_kIb] = ACTIONS(167), - [anon_sym_Kib] = ACTIONS(167), - [anon_sym_KIb] = ACTIONS(167), - [anon_sym_KIB] = ACTIONS(167), - [anon_sym_mib] = ACTIONS(167), - [anon_sym_miB] = ACTIONS(167), - [anon_sym_mIB] = ACTIONS(167), - [anon_sym_mIb] = ACTIONS(167), - [anon_sym_Mib] = ACTIONS(167), - [anon_sym_MIb] = ACTIONS(167), - [anon_sym_MIB] = ACTIONS(167), - [anon_sym_gib] = ACTIONS(167), - [anon_sym_giB] = ACTIONS(167), - [anon_sym_gIB] = ACTIONS(167), - [anon_sym_gIb] = ACTIONS(167), - [anon_sym_Gib] = ACTIONS(167), - [anon_sym_GIb] = ACTIONS(167), - [anon_sym_GIB] = ACTIONS(167), - [anon_sym_tib] = ACTIONS(167), - [anon_sym_tiB] = ACTIONS(167), - [anon_sym_tIB] = ACTIONS(167), - [anon_sym_tIb] = ACTIONS(167), - [anon_sym_Tib] = ACTIONS(167), - [anon_sym_TIb] = ACTIONS(167), - [anon_sym_TIB] = ACTIONS(167), - [anon_sym_pib] = ACTIONS(167), - [anon_sym_piB] = ACTIONS(167), - [anon_sym_pIB] = ACTIONS(167), - [anon_sym_pIb] = ACTIONS(167), - [anon_sym_Pib] = ACTIONS(167), - [anon_sym_PIb] = ACTIONS(167), - [anon_sym_PIB] = ACTIONS(167), - [anon_sym_eib] = ACTIONS(167), - [anon_sym_eiB] = ACTIONS(167), - [anon_sym_eIB] = ACTIONS(167), - [anon_sym_eIb] = ACTIONS(167), - [anon_sym_Eib] = ACTIONS(167), - [anon_sym_EIb] = ACTIONS(167), - [anon_sym_EIB] = ACTIONS(167), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym__str_single_quotes] = ACTIONS(167), - [sym__str_back_ticks] = ACTIONS(167), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(3), - }, - [248] = { - [sym_comment] = STATE(248), + [251] = { + [sym_comment] = STATE(251), [anon_sym_LBRACK] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(109), @@ -108727,7 +110677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(109), [anon_sym__] = ACTIONS(107), [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(613), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(109), [anon_sym_PLUS_PLUS] = ACTIONS(109), @@ -108753,7 +110703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(602), [anon_sym_null] = ACTIONS(109), [anon_sym_true] = ACTIONS(109), [anon_sym_false] = ACTIONS(109), @@ -108848,146 +110797,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(109), [sym__str_back_ticks] = ACTIONS(109), + [aux_sym_unquoted_token1] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [249] = { - [sym_comment] = STATE(249), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym__] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(129), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(129), - [anon_sym_xor] = ACTIONS(129), - [anon_sym_or] = ACTIONS(129), - [aux_sym__immediate_decimal_token2] = ACTIONS(619), - [anon_sym_null] = ACTIONS(129), - [anon_sym_true] = ACTIONS(129), - [anon_sym_false] = ACTIONS(129), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(129), - [aux_sym__val_number_token2] = ACTIONS(129), - [aux_sym__val_number_token3] = ACTIONS(129), - [aux_sym__val_number_token4] = ACTIONS(129), - [aux_sym__val_number_token5] = ACTIONS(129), - [aux_sym__val_number_token6] = ACTIONS(129), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [sym__str_single_quotes] = ACTIONS(129), - [sym__str_back_ticks] = ACTIONS(129), + [252] = { + [sym_comment] = STATE(252), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym__] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(159), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(159), + [anon_sym_xor] = ACTIONS(159), + [anon_sym_or] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(159), + [aux_sym__val_number_token2] = ACTIONS(159), + [aux_sym__val_number_token3] = ACTIONS(159), + [aux_sym__val_number_token4] = ACTIONS(159), + [aux_sym__val_number_token5] = ACTIONS(159), + [aux_sym__val_number_token6] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym__str_single_quotes] = ACTIONS(159), + [sym__str_back_ticks] = ACTIONS(159), + [aux_sym_unquoted_token1] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(3), }, - [250] = { - [sym_comment] = STATE(250), + [253] = { + [sym_comment] = STATE(253), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(117), @@ -109120,688 +111072,420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(117), [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(3), - }, - [251] = { - [sym_comment] = STATE(251), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym__] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [anon_sym_null] = ACTIONS(109), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(109), - [aux_sym__val_number_token2] = ACTIONS(109), - [aux_sym__val_number_token3] = ACTIONS(109), - [aux_sym__val_number_token4] = ACTIONS(109), - [aux_sym__val_number_token5] = ACTIONS(109), - [aux_sym__val_number_token6] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [252] = { - [sym_comment] = STATE(252), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym__] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_null] = ACTIONS(173), - [anon_sym_true] = ACTIONS(173), - [anon_sym_false] = ACTIONS(173), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(173), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [aux_sym_unquoted_token6] = ACTIONS(623), - [anon_sym_POUND] = ACTIONS(3), - }, - [253] = { - [sym_comment] = STATE(253), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym__] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [anon_sym_null] = ACTIONS(150), - [anon_sym_true] = ACTIONS(150), - [anon_sym_false] = ACTIONS(150), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(150), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [aux_sym_unquoted_token6] = ACTIONS(148), + [aux_sym_unquoted_token1] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [254] = { [sym_comment] = STATE(254), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym__] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_null] = ACTIONS(173), - [anon_sym_true] = ACTIONS(173), - [anon_sym_false] = ACTIONS(173), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(173), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym__] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [anon_sym_null] = ACTIONS(117), + [anon_sym_true] = ACTIONS(117), + [anon_sym_false] = ACTIONS(117), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(117), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(117), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [aux_sym_unquoted_token1] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [255] = { [sym_comment] = STATE(255), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym__] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(173), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_null] = ACTIONS(173), - [anon_sym_true] = ACTIONS(173), - [anon_sym_false] = ACTIONS(173), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(173), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [aux_sym_unquoted_token6] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym__] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_null] = ACTIONS(189), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(189), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym_unquoted_token1] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(3), }, [256] = { [sym_comment] = STATE(256), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym__] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [anon_sym_null] = ACTIONS(149), + [anon_sym_true] = ACTIONS(149), + [anon_sym_false] = ACTIONS(149), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(149), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym_unquoted_token1] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [257] = { + [sym_comment] = STATE(257), [anon_sym_LBRACK] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(109), @@ -109933,145 +111617,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(109), [sym__str_back_ticks] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(3), - }, - [257] = { - [sym_comment] = STATE(257), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym__] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(167), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(167), - [anon_sym_xor] = ACTIONS(167), - [anon_sym_or] = ACTIONS(167), - [anon_sym_null] = ACTIONS(167), - [anon_sym_true] = ACTIONS(167), - [anon_sym_false] = ACTIONS(167), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(167), - [aux_sym__val_number_token2] = ACTIONS(167), - [aux_sym__val_number_token3] = ACTIONS(167), - [aux_sym__val_number_token4] = ACTIONS(167), - [aux_sym__val_number_token5] = ACTIONS(167), - [aux_sym__val_number_token6] = ACTIONS(167), - [anon_sym_ns] = ACTIONS(167), - [anon_sym_s] = ACTIONS(167), - [anon_sym_us] = ACTIONS(167), - [anon_sym_ms] = ACTIONS(167), - [anon_sym_sec] = ACTIONS(167), - [anon_sym_min] = ACTIONS(167), - [anon_sym_hr] = ACTIONS(167), - [anon_sym_day] = ACTIONS(167), - [anon_sym_wk] = ACTIONS(167), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(167), - [anon_sym_kb] = ACTIONS(167), - [anon_sym_kB] = ACTIONS(167), - [anon_sym_Kb] = ACTIONS(167), - [anon_sym_KB] = ACTIONS(167), - [anon_sym_mb] = ACTIONS(167), - [anon_sym_mB] = ACTIONS(167), - [anon_sym_Mb] = ACTIONS(167), - [anon_sym_MB] = ACTIONS(167), - [anon_sym_gb] = ACTIONS(167), - [anon_sym_gB] = ACTIONS(167), - [anon_sym_Gb] = ACTIONS(167), - [anon_sym_GB] = ACTIONS(167), - [anon_sym_tb] = ACTIONS(167), - [anon_sym_tB] = ACTIONS(167), - [anon_sym_Tb] = ACTIONS(167), - [anon_sym_TB] = ACTIONS(167), - [anon_sym_pb] = ACTIONS(167), - [anon_sym_pB] = ACTIONS(167), - [anon_sym_Pb] = ACTIONS(167), - [anon_sym_PB] = ACTIONS(167), - [anon_sym_eb] = ACTIONS(167), - [anon_sym_eB] = ACTIONS(167), - [anon_sym_Eb] = ACTIONS(167), - [anon_sym_EB] = ACTIONS(167), - [anon_sym_kib] = ACTIONS(167), - [anon_sym_kiB] = ACTIONS(167), - [anon_sym_kIB] = ACTIONS(167), - [anon_sym_kIb] = ACTIONS(167), - [anon_sym_Kib] = ACTIONS(167), - [anon_sym_KIb] = ACTIONS(167), - [anon_sym_KIB] = ACTIONS(167), - [anon_sym_mib] = ACTIONS(167), - [anon_sym_miB] = ACTIONS(167), - [anon_sym_mIB] = ACTIONS(167), - [anon_sym_mIb] = ACTIONS(167), - [anon_sym_Mib] = ACTIONS(167), - [anon_sym_MIb] = ACTIONS(167), - [anon_sym_MIB] = ACTIONS(167), - [anon_sym_gib] = ACTIONS(167), - [anon_sym_giB] = ACTIONS(167), - [anon_sym_gIB] = ACTIONS(167), - [anon_sym_gIb] = ACTIONS(167), - [anon_sym_Gib] = ACTIONS(167), - [anon_sym_GIb] = ACTIONS(167), - [anon_sym_GIB] = ACTIONS(167), - [anon_sym_tib] = ACTIONS(167), - [anon_sym_tiB] = ACTIONS(167), - [anon_sym_tIB] = ACTIONS(167), - [anon_sym_tIb] = ACTIONS(167), - [anon_sym_Tib] = ACTIONS(167), - [anon_sym_TIb] = ACTIONS(167), - [anon_sym_TIB] = ACTIONS(167), - [anon_sym_pib] = ACTIONS(167), - [anon_sym_piB] = ACTIONS(167), - [anon_sym_pIB] = ACTIONS(167), - [anon_sym_pIb] = ACTIONS(167), - [anon_sym_Pib] = ACTIONS(167), - [anon_sym_PIb] = ACTIONS(167), - [anon_sym_PIB] = ACTIONS(167), - [anon_sym_eib] = ACTIONS(167), - [anon_sym_eiB] = ACTIONS(167), - [anon_sym_eIB] = ACTIONS(167), - [anon_sym_eIb] = ACTIONS(167), - [anon_sym_Eib] = ACTIONS(167), - [anon_sym_EIb] = ACTIONS(167), - [anon_sym_EIB] = ACTIONS(167), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym__str_single_quotes] = ACTIONS(167), - [sym__str_back_ticks] = ACTIONS(167), + [aux_sym_unquoted_token1] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, [258] = { [sym_comment] = STATE(258), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym__] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_null] = ACTIONS(189), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(189), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(627), + [anon_sym_POUND] = ACTIONS(3), + }, + [259] = { + [sym_comment] = STATE(259), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym__] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(159), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(159), + [anon_sym_xor] = ACTIONS(159), + [anon_sym_or] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(159), + [aux_sym__val_number_token2] = ACTIONS(159), + [aux_sym__val_number_token3] = ACTIONS(159), + [aux_sym__val_number_token4] = ACTIONS(159), + [aux_sym__val_number_token5] = ACTIONS(159), + [aux_sym__val_number_token6] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym__str_single_quotes] = ACTIONS(159), + [sym__str_back_ticks] = ACTIONS(159), + [aux_sym_unquoted_token1] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(3), + }, + [260] = { + [sym_comment] = STATE(260), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(117), @@ -110203,413 +112025,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(117), [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(3), - }, - [259] = { - [sym_comment] = STATE(259), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym__] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [anon_sym_null] = ACTIONS(150), - [anon_sym_true] = ACTIONS(150), - [anon_sym_false] = ACTIONS(150), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(150), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [anon_sym_POUND] = ACTIONS(3), - }, - [260] = { - [sym_comment] = STATE(260), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym__] = ACTIONS(213), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(215), - [anon_sym_SLASH_SLASH] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(215), - [anon_sym_bit_DASHshr] = ACTIONS(215), - [anon_sym_EQ_EQ] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(215), - [anon_sym_GT_EQ] = ACTIONS(215), - [anon_sym_not_DASHin] = ACTIONS(215), - [anon_sym_starts_DASHwith] = ACTIONS(215), - [anon_sym_ends_DASHwith] = ACTIONS(215), - [anon_sym_EQ_TILDE] = ACTIONS(215), - [anon_sym_BANG_TILDE] = ACTIONS(215), - [anon_sym_bit_DASHand] = ACTIONS(215), - [anon_sym_bit_DASHxor] = ACTIONS(215), - [anon_sym_bit_DASHor] = ACTIONS(215), - [anon_sym_and] = ACTIONS(215), - [anon_sym_xor] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [anon_sym_null] = ACTIONS(215), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(215), - [aux_sym__val_number_token2] = ACTIONS(215), - [aux_sym__val_number_token3] = ACTIONS(215), - [aux_sym__val_number_token4] = ACTIONS(215), - [aux_sym__val_number_token5] = ACTIONS(215), - [aux_sym__val_number_token6] = ACTIONS(215), - [anon_sym_ns] = ACTIONS(627), - [anon_sym_s] = ACTIONS(627), - [anon_sym_us] = ACTIONS(627), - [anon_sym_ms] = ACTIONS(627), - [anon_sym_sec] = ACTIONS(627), - [anon_sym_min] = ACTIONS(627), - [anon_sym_hr] = ACTIONS(627), - [anon_sym_day] = ACTIONS(627), - [anon_sym_wk] = ACTIONS(627), - [anon_sym_b] = ACTIONS(629), - [anon_sym_B] = ACTIONS(631), - [anon_sym_kb] = ACTIONS(631), - [anon_sym_kB] = ACTIONS(631), - [anon_sym_Kb] = ACTIONS(631), - [anon_sym_KB] = ACTIONS(631), - [anon_sym_mb] = ACTIONS(631), - [anon_sym_mB] = ACTIONS(631), - [anon_sym_Mb] = ACTIONS(631), - [anon_sym_MB] = ACTIONS(631), - [anon_sym_gb] = ACTIONS(631), - [anon_sym_gB] = ACTIONS(631), - [anon_sym_Gb] = ACTIONS(631), - [anon_sym_GB] = ACTIONS(631), - [anon_sym_tb] = ACTIONS(631), - [anon_sym_tB] = ACTIONS(631), - [anon_sym_Tb] = ACTIONS(631), - [anon_sym_TB] = ACTIONS(631), - [anon_sym_pb] = ACTIONS(631), - [anon_sym_pB] = ACTIONS(631), - [anon_sym_Pb] = ACTIONS(631), - [anon_sym_PB] = ACTIONS(631), - [anon_sym_eb] = ACTIONS(631), - [anon_sym_eB] = ACTIONS(631), - [anon_sym_Eb] = ACTIONS(631), - [anon_sym_EB] = ACTIONS(631), - [anon_sym_kib] = ACTIONS(631), - [anon_sym_kiB] = ACTIONS(631), - [anon_sym_kIB] = ACTIONS(631), - [anon_sym_kIb] = ACTIONS(631), - [anon_sym_Kib] = ACTIONS(631), - [anon_sym_KIb] = ACTIONS(631), - [anon_sym_KIB] = ACTIONS(631), - [anon_sym_mib] = ACTIONS(631), - [anon_sym_miB] = ACTIONS(631), - [anon_sym_mIB] = ACTIONS(631), - [anon_sym_mIb] = ACTIONS(631), - [anon_sym_Mib] = ACTIONS(631), - [anon_sym_MIb] = ACTIONS(631), - [anon_sym_MIB] = ACTIONS(631), - [anon_sym_gib] = ACTIONS(631), - [anon_sym_giB] = ACTIONS(631), - [anon_sym_gIB] = ACTIONS(631), - [anon_sym_gIb] = ACTIONS(631), - [anon_sym_Gib] = ACTIONS(631), - [anon_sym_GIb] = ACTIONS(631), - [anon_sym_GIB] = ACTIONS(631), - [anon_sym_tib] = ACTIONS(631), - [anon_sym_tiB] = ACTIONS(631), - [anon_sym_tIB] = ACTIONS(631), - [anon_sym_tIb] = ACTIONS(631), - [anon_sym_Tib] = ACTIONS(631), - [anon_sym_TIb] = ACTIONS(631), - [anon_sym_TIB] = ACTIONS(631), - [anon_sym_pib] = ACTIONS(631), - [anon_sym_piB] = ACTIONS(631), - [anon_sym_pIB] = ACTIONS(631), - [anon_sym_pIb] = ACTIONS(631), - [anon_sym_Pib] = ACTIONS(631), - [anon_sym_PIb] = ACTIONS(631), - [anon_sym_PIB] = ACTIONS(631), - [anon_sym_eib] = ACTIONS(631), - [anon_sym_eiB] = ACTIONS(631), - [anon_sym_eIB] = ACTIONS(631), - [anon_sym_eIb] = ACTIONS(631), - [anon_sym_Eib] = ACTIONS(631), - [anon_sym_EIb] = ACTIONS(631), - [anon_sym_EIB] = ACTIONS(631), - [anon_sym_0b] = ACTIONS(213), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym__str_single_quotes] = ACTIONS(215), - [sym__str_back_ticks] = ACTIONS(215), + [aux_sym_unquoted_token1] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [261] = { [sym_comment] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym__] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(173), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_null] = ACTIONS(173), - [anon_sym_true] = ACTIONS(173), - [anon_sym_false] = ACTIONS(173), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(173), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [anon_sym_POUND] = ACTIONS(3), - }, - [262] = { - [sym_comment] = STATE(262), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_COMMA] = ACTIONS(223), [anon_sym_LPAREN] = ACTIONS(223), @@ -110740,392 +112160,538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(223), [sym__str_single_quotes] = ACTIONS(223), [sym__str_back_ticks] = ACTIONS(223), + [aux_sym_unquoted_token1] = ACTIONS(221), + [anon_sym_POUND] = ACTIONS(3), + }, + [262] = { + [sym_comment] = STATE(262), + [anon_sym_LBRACK] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym__] = ACTIONS(213), + [anon_sym_DOT] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(215), + [anon_sym_SLASH_SLASH] = ACTIONS(215), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(215), + [anon_sym_bit_DASHshr] = ACTIONS(215), + [anon_sym_EQ_EQ] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(215), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(215), + [anon_sym_not_DASHin] = ACTIONS(215), + [anon_sym_starts_DASHwith] = ACTIONS(215), + [anon_sym_ends_DASHwith] = ACTIONS(215), + [anon_sym_EQ_TILDE] = ACTIONS(215), + [anon_sym_BANG_TILDE] = ACTIONS(215), + [anon_sym_bit_DASHand] = ACTIONS(215), + [anon_sym_bit_DASHxor] = ACTIONS(215), + [anon_sym_bit_DASHor] = ACTIONS(215), + [anon_sym_and] = ACTIONS(215), + [anon_sym_xor] = ACTIONS(215), + [anon_sym_or] = ACTIONS(215), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(215), + [aux_sym__val_number_token2] = ACTIONS(215), + [aux_sym__val_number_token3] = ACTIONS(215), + [aux_sym__val_number_token4] = ACTIONS(215), + [aux_sym__val_number_token5] = ACTIONS(215), + [aux_sym__val_number_token6] = ACTIONS(215), + [anon_sym_ns] = ACTIONS(631), + [anon_sym_s] = ACTIONS(631), + [anon_sym_us] = ACTIONS(631), + [anon_sym_ms] = ACTIONS(631), + [anon_sym_sec] = ACTIONS(631), + [anon_sym_min] = ACTIONS(631), + [anon_sym_hr] = ACTIONS(631), + [anon_sym_day] = ACTIONS(631), + [anon_sym_wk] = ACTIONS(631), + [anon_sym_b] = ACTIONS(633), + [anon_sym_B] = ACTIONS(635), + [anon_sym_kb] = ACTIONS(635), + [anon_sym_kB] = ACTIONS(635), + [anon_sym_Kb] = ACTIONS(635), + [anon_sym_KB] = ACTIONS(635), + [anon_sym_mb] = ACTIONS(635), + [anon_sym_mB] = ACTIONS(635), + [anon_sym_Mb] = ACTIONS(635), + [anon_sym_MB] = ACTIONS(635), + [anon_sym_gb] = ACTIONS(635), + [anon_sym_gB] = ACTIONS(635), + [anon_sym_Gb] = ACTIONS(635), + [anon_sym_GB] = ACTIONS(635), + [anon_sym_tb] = ACTIONS(635), + [anon_sym_tB] = ACTIONS(635), + [anon_sym_Tb] = ACTIONS(635), + [anon_sym_TB] = ACTIONS(635), + [anon_sym_pb] = ACTIONS(635), + [anon_sym_pB] = ACTIONS(635), + [anon_sym_Pb] = ACTIONS(635), + [anon_sym_PB] = ACTIONS(635), + [anon_sym_eb] = ACTIONS(635), + [anon_sym_eB] = ACTIONS(635), + [anon_sym_Eb] = ACTIONS(635), + [anon_sym_EB] = ACTIONS(635), + [anon_sym_kib] = ACTIONS(635), + [anon_sym_kiB] = ACTIONS(635), + [anon_sym_kIB] = ACTIONS(635), + [anon_sym_kIb] = ACTIONS(635), + [anon_sym_Kib] = ACTIONS(635), + [anon_sym_KIb] = ACTIONS(635), + [anon_sym_KIB] = ACTIONS(635), + [anon_sym_mib] = ACTIONS(635), + [anon_sym_miB] = ACTIONS(635), + [anon_sym_mIB] = ACTIONS(635), + [anon_sym_mIb] = ACTIONS(635), + [anon_sym_Mib] = ACTIONS(635), + [anon_sym_MIb] = ACTIONS(635), + [anon_sym_MIB] = ACTIONS(635), + [anon_sym_gib] = ACTIONS(635), + [anon_sym_giB] = ACTIONS(635), + [anon_sym_gIB] = ACTIONS(635), + [anon_sym_gIb] = ACTIONS(635), + [anon_sym_Gib] = ACTIONS(635), + [anon_sym_GIb] = ACTIONS(635), + [anon_sym_GIB] = ACTIONS(635), + [anon_sym_tib] = ACTIONS(635), + [anon_sym_tiB] = ACTIONS(635), + [anon_sym_tIB] = ACTIONS(635), + [anon_sym_tIb] = ACTIONS(635), + [anon_sym_Tib] = ACTIONS(635), + [anon_sym_TIb] = ACTIONS(635), + [anon_sym_TIB] = ACTIONS(635), + [anon_sym_pib] = ACTIONS(635), + [anon_sym_piB] = ACTIONS(635), + [anon_sym_pIB] = ACTIONS(635), + [anon_sym_pIb] = ACTIONS(635), + [anon_sym_Pib] = ACTIONS(635), + [anon_sym_PIb] = ACTIONS(635), + [anon_sym_PIB] = ACTIONS(635), + [anon_sym_eib] = ACTIONS(635), + [anon_sym_eiB] = ACTIONS(635), + [anon_sym_eIB] = ACTIONS(635), + [anon_sym_eIb] = ACTIONS(635), + [anon_sym_Eib] = ACTIONS(635), + [anon_sym_EIb] = ACTIONS(635), + [anon_sym_EIB] = ACTIONS(635), + [anon_sym_0b] = ACTIONS(213), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(215), + [sym__str_single_quotes] = ACTIONS(215), + [sym__str_back_ticks] = ACTIONS(215), + [aux_sym_unquoted_token1] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), }, [263] = { - [sym__block_body_statement_parenthesized] = STATE(1274), - [sym__declaration_parenthesized] = STATE(1639), - [sym_decl_alias_parenthesized] = STATE(1637), - [sym_stmt_let_parenthesized] = STATE(1651), - [sym_stmt_mut_parenthesized] = STATE(1651), - [sym_stmt_const_parenthesized] = STATE(1651), - [sym__statement_parenthesized] = STATE(1639), - [sym_pipeline_parenthesized] = STATE(1651), - [sym_decl_def] = STATE(1637), - [sym_decl_export] = STATE(1637), - [sym_decl_extern] = STATE(1637), - [sym_decl_module] = STATE(1637), - [sym_decl_use] = STATE(1637), - [sym__ctrl_statement] = STATE(1651), - [sym__ctrl_expression_parenthesized] = STATE(5044), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5958), - [sym_stmt_source] = STATE(1651), - [sym_stmt_register] = STATE(1651), - [sym__stmt_hide] = STATE(1651), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1651), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1651), - [sym_where_command] = STATE(4961), - [sym__expression] = STATE(4961), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(5042), [sym_comment] = STATE(263), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(829), - [aux_sym__parenthesized_body_repeat1] = STATE(263), - [anon_sym_export] = ACTIONS(633), - [anon_sym_alias] = ACTIONS(636), - [anon_sym_let] = ACTIONS(639), - [anon_sym_let_DASHenv] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(642), - [anon_sym_const] = ACTIONS(645), - [sym_cmd_identifier] = ACTIONS(648), - [anon_sym_def] = ACTIONS(651), - [anon_sym_export_DASHenv] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_module] = ACTIONS(660), - [anon_sym_use] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR] = ACTIONS(672), - [anon_sym_error] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_break] = ACTIONS(681), - [anon_sym_continue] = ACTIONS(684), - [anon_sym_for] = ACTIONS(687), - [anon_sym_loop] = ACTIONS(690), - [anon_sym_while] = ACTIONS(693), - [anon_sym_do] = ACTIONS(696), - [anon_sym_if] = ACTIONS(699), - [anon_sym_match] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_DOT] = ACTIONS(708), - [anon_sym_try] = ACTIONS(711), - [anon_sym_return] = ACTIONS(714), - [anon_sym_source] = ACTIONS(717), - [anon_sym_source_DASHenv] = ACTIONS(717), - [anon_sym_register] = ACTIONS(720), - [anon_sym_hide] = ACTIONS(723), - [anon_sym_hide_DASHenv] = ACTIONS(726), - [anon_sym_overlay] = ACTIONS(729), - [anon_sym_where] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_not] = ACTIONS(738), - [anon_sym_null] = ACTIONS(741), - [anon_sym_true] = ACTIONS(744), - [anon_sym_false] = ACTIONS(744), - [aux_sym__val_number_decimal_token1] = ACTIONS(747), - [aux_sym__val_number_token1] = ACTIONS(750), - [aux_sym__val_number_token2] = ACTIONS(750), - [aux_sym__val_number_token3] = ACTIONS(750), - [aux_sym__val_number_token4] = ACTIONS(753), - [aux_sym__val_number_token5] = ACTIONS(750), - [aux_sym__val_number_token6] = ACTIONS(753), - [anon_sym_0b] = ACTIONS(756), - [anon_sym_0o] = ACTIONS(756), - [anon_sym_0x] = ACTIONS(756), - [sym_val_date] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(762), - [sym__str_single_quotes] = ACTIONS(765), - [sym__str_back_ticks] = ACTIONS(765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym__] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_null] = ACTIONS(189), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(189), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym_unquoted_token1] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(3), }, [264] = { - [sym__block_body_statement] = STATE(1248), - [sym__declaration] = STATE(1634), - [sym_decl_alias] = STATE(1640), - [sym_stmt_let] = STATE(1626), - [sym_stmt_mut] = STATE(1626), - [sym_stmt_const] = STATE(1626), - [sym__statement] = STATE(1634), - [sym_pipeline] = STATE(1626), - [sym_decl_def] = STATE(1640), - [sym_decl_export] = STATE(1640), - [sym_decl_extern] = STATE(1640), - [sym_decl_module] = STATE(1640), - [sym_decl_use] = STATE(1640), - [sym__ctrl_statement] = STATE(1626), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_for] = STATE(1324), - [sym_ctrl_loop] = STATE(1324), - [sym_ctrl_error] = STATE(1324), - [sym_ctrl_while] = STATE(1324), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(5312), - [sym_stmt_source] = STATE(1626), - [sym_stmt_register] = STATE(1626), - [sym__stmt_hide] = STATE(1626), - [sym_hide_mod] = STATE(1327), - [sym_hide_env] = STATE(1327), - [sym__stmt_overlay] = STATE(1626), - [sym_overlay_list] = STATE(1328), - [sym_overlay_hide] = STATE(1328), - [sym_overlay_new] = STATE(1328), - [sym_overlay_use] = STATE(1328), - [sym_assignment] = STATE(1626), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2470), - [sym__var] = STATE(2332), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), + [sym__block_body_statement_parenthesized] = STATE(1401), + [sym__declaration_parenthesized] = STATE(1679), + [sym_decl_alias_parenthesized] = STATE(1676), + [sym_stmt_let_parenthesized] = STATE(1669), + [sym_stmt_mut_parenthesized] = STATE(1669), + [sym_stmt_const_parenthesized] = STATE(1669), + [sym__statement_parenthesized] = STATE(1679), + [sym_pipeline_parenthesized] = STATE(1669), + [sym_decl_def] = STATE(1676), + [sym_decl_export] = STATE(1676), + [sym_decl_extern] = STATE(1676), + [sym_decl_module] = STATE(1676), + [sym_decl_use] = STATE(1676), + [sym__ctrl_statement] = STATE(1669), + [sym__ctrl_expression_parenthesized] = STATE(4977), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(6040), + [sym_stmt_source] = STATE(1669), + [sym_stmt_register] = STATE(1669), + [sym__stmt_hide] = STATE(1669), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1669), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1669), + [sym_where_command] = STATE(4984), + [sym__expression] = STATE(4984), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4985), [sym_comment] = STATE(264), - [aux_sym_pipeline_repeat1] = STATE(832), - [aux_sym__block_body_repeat2] = STATE(264), - [anon_sym_export] = ACTIONS(777), - [anon_sym_alias] = ACTIONS(780), - [anon_sym_let] = ACTIONS(783), - [anon_sym_let_DASHenv] = ACTIONS(783), - [anon_sym_mut] = ACTIONS(786), - [anon_sym_const] = ACTIONS(789), - [sym_cmd_identifier] = ACTIONS(792), - [anon_sym_def] = ACTIONS(795), - [anon_sym_export_DASHenv] = ACTIONS(798), - [anon_sym_extern] = ACTIONS(801), - [anon_sym_module] = ACTIONS(804), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_error] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(822), - [anon_sym_break] = ACTIONS(825), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(831), - [anon_sym_loop] = ACTIONS(834), - [anon_sym_while] = ACTIONS(837), - [anon_sym_do] = ACTIONS(840), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(852), - [anon_sym_try] = ACTIONS(855), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(864), - [anon_sym_hide] = ACTIONS(867), - [anon_sym_hide_DASHenv] = ACTIONS(870), - [anon_sym_overlay] = ACTIONS(873), - [anon_sym_where] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_not] = ACTIONS(882), - [anon_sym_null] = ACTIONS(885), - [anon_sym_true] = ACTIONS(888), - [anon_sym_false] = ACTIONS(888), - [aux_sym__val_number_decimal_token1] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(894), - [aux_sym__val_number_token2] = ACTIONS(894), - [aux_sym__val_number_token3] = ACTIONS(894), - [aux_sym__val_number_token4] = ACTIONS(897), - [aux_sym__val_number_token5] = ACTIONS(894), - [aux_sym__val_number_token6] = ACTIONS(897), - [anon_sym_0b] = ACTIONS(900), - [anon_sym_0o] = ACTIONS(900), - [anon_sym_0x] = ACTIONS(900), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(906), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(912), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(918), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(856), + [aux_sym__parenthesized_body_repeat1] = STATE(264), + [anon_sym_export] = ACTIONS(637), + [anon_sym_alias] = ACTIONS(640), + [anon_sym_let] = ACTIONS(643), + [anon_sym_let_DASHenv] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(646), + [anon_sym_const] = ACTIONS(649), + [sym_cmd_identifier] = ACTIONS(652), + [anon_sym_def] = ACTIONS(655), + [anon_sym_export_DASHenv] = ACTIONS(658), + [anon_sym_extern] = ACTIONS(661), + [anon_sym_module] = ACTIONS(664), + [anon_sym_use] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(676), + [anon_sym_error] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_break] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_for] = ACTIONS(691), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_while] = ACTIONS(697), + [anon_sym_do] = ACTIONS(700), + [anon_sym_if] = ACTIONS(703), + [anon_sym_match] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(709), + [anon_sym_DOT] = ACTIONS(712), + [anon_sym_try] = ACTIONS(715), + [anon_sym_return] = ACTIONS(718), + [anon_sym_source] = ACTIONS(721), + [anon_sym_source_DASHenv] = ACTIONS(721), + [anon_sym_register] = ACTIONS(724), + [anon_sym_hide] = ACTIONS(727), + [anon_sym_hide_DASHenv] = ACTIONS(730), + [anon_sym_overlay] = ACTIONS(733), + [anon_sym_where] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_not] = ACTIONS(742), + [anon_sym_null] = ACTIONS(745), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [aux_sym__val_number_decimal_token1] = ACTIONS(751), + [aux_sym__val_number_token1] = ACTIONS(754), + [aux_sym__val_number_token2] = ACTIONS(754), + [aux_sym__val_number_token3] = ACTIONS(754), + [aux_sym__val_number_token4] = ACTIONS(757), + [aux_sym__val_number_token5] = ACTIONS(754), + [aux_sym__val_number_token6] = ACTIONS(757), + [anon_sym_0b] = ACTIONS(760), + [anon_sym_0o] = ACTIONS(760), + [anon_sym_0x] = ACTIONS(760), + [sym_val_date] = ACTIONS(763), + [anon_sym_DQUOTE] = ACTIONS(766), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(778), [anon_sym_POUND] = ACTIONS(3), }, [265] = { + [sym__block_body_statement] = STATE(1458), + [sym__declaration] = STATE(1667), + [sym_decl_alias] = STATE(1668), + [sym_stmt_let] = STATE(1670), + [sym_stmt_mut] = STATE(1670), + [sym_stmt_const] = STATE(1670), + [sym__statement] = STATE(1667), + [sym_pipeline] = STATE(1670), + [sym_decl_def] = STATE(1668), + [sym_decl_export] = STATE(1668), + [sym_decl_extern] = STATE(1668), + [sym_decl_module] = STATE(1668), + [sym_decl_use] = STATE(1668), + [sym__ctrl_statement] = STATE(1670), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_for] = STATE(1350), + [sym_ctrl_loop] = STATE(1350), + [sym_ctrl_error] = STATE(1350), + [sym_ctrl_while] = STATE(1350), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5439), + [sym_stmt_source] = STATE(1670), + [sym_stmt_register] = STATE(1670), + [sym__stmt_hide] = STATE(1670), + [sym_hide_mod] = STATE(1353), + [sym_hide_env] = STATE(1353), + [sym__stmt_overlay] = STATE(1670), + [sym_overlay_list] = STATE(1354), + [sym_overlay_hide] = STATE(1354), + [sym_overlay_new] = STATE(1354), + [sym_overlay_use] = STATE(1354), + [sym_assignment] = STATE(1670), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(2530), + [sym__var] = STATE(2365), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(265), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LF] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(115), - [anon_sym_RPAREN] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(921), - [aux_sym__immediate_decimal_token2] = ACTIONS(923), - [anon_sym_null] = ACTIONS(115), - [anon_sym_true] = ACTIONS(115), - [anon_sym_false] = ACTIONS(115), - [aux_sym__val_number_decimal_token1] = ACTIONS(115), - [aux_sym__val_number_token1] = ACTIONS(115), - [aux_sym__val_number_token2] = ACTIONS(115), - [aux_sym__val_number_token3] = ACTIONS(115), - [aux_sym__val_number_token4] = ACTIONS(115), - [aux_sym__val_number_token5] = ACTIONS(115), - [aux_sym__val_number_token6] = ACTIONS(115), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [anon_sym_0b] = ACTIONS(115), - [anon_sym_0o] = ACTIONS(115), - [anon_sym_0x] = ACTIONS(115), - [sym_val_date] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym__str_single_quotes] = ACTIONS(115), - [sym__str_back_ticks] = ACTIONS(115), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(115), - [anon_sym_out_GT] = ACTIONS(115), - [anon_sym_e_GT] = ACTIONS(115), - [anon_sym_o_GT] = ACTIONS(115), - [anon_sym_err_PLUSout_GT] = ACTIONS(115), - [anon_sym_out_PLUSerr_GT] = ACTIONS(115), - [anon_sym_o_PLUSe_GT] = ACTIONS(115), - [anon_sym_e_PLUSo_GT] = ACTIONS(115), - [aux_sym_unquoted_token1] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_pipeline_repeat1] = STATE(857), + [aux_sym__block_body_repeat2] = STATE(265), + [anon_sym_export] = ACTIONS(781), + [anon_sym_alias] = ACTIONS(784), + [anon_sym_let] = ACTIONS(787), + [anon_sym_let_DASHenv] = ACTIONS(787), + [anon_sym_mut] = ACTIONS(790), + [anon_sym_const] = ACTIONS(793), + [sym_cmd_identifier] = ACTIONS(796), + [anon_sym_def] = ACTIONS(799), + [anon_sym_export_DASHenv] = ACTIONS(802), + [anon_sym_extern] = ACTIONS(805), + [anon_sym_module] = ACTIONS(808), + [anon_sym_use] = ACTIONS(811), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(820), + [anon_sym_error] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_break] = ACTIONS(829), + [anon_sym_continue] = ACTIONS(832), + [anon_sym_for] = ACTIONS(835), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(841), + [anon_sym_do] = ACTIONS(844), + [anon_sym_if] = ACTIONS(847), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_DOT] = ACTIONS(856), + [anon_sym_try] = ACTIONS(859), + [anon_sym_return] = ACTIONS(862), + [anon_sym_source] = ACTIONS(865), + [anon_sym_source_DASHenv] = ACTIONS(865), + [anon_sym_register] = ACTIONS(868), + [anon_sym_hide] = ACTIONS(871), + [anon_sym_hide_DASHenv] = ACTIONS(874), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_where] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_not] = ACTIONS(886), + [anon_sym_null] = ACTIONS(889), + [anon_sym_true] = ACTIONS(892), + [anon_sym_false] = ACTIONS(892), + [aux_sym__val_number_decimal_token1] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(898), + [aux_sym__val_number_token2] = ACTIONS(898), + [aux_sym__val_number_token3] = ACTIONS(898), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(898), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(904), + [anon_sym_0o] = ACTIONS(904), + [anon_sym_0x] = ACTIONS(904), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(910), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_POUND] = ACTIONS(3), }, [266] = { [sym_comment] = STATE(266), @@ -111254,6 +112820,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [267] = { [sym_comment] = STATE(267), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [aux_sym__immediate_decimal_token1] = ACTIONS(929), + [aux_sym__immediate_decimal_token2] = ACTIONS(931), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(115), + [anon_sym_out_GT] = ACTIONS(115), + [anon_sym_e_GT] = ACTIONS(115), + [anon_sym_o_GT] = ACTIONS(115), + [anon_sym_err_PLUSout_GT] = ACTIONS(115), + [anon_sym_out_PLUSerr_GT] = ACTIONS(115), + [anon_sym_o_PLUSe_GT] = ACTIONS(115), + [anon_sym_e_PLUSo_GT] = ACTIONS(115), + [aux_sym_unquoted_token1] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [268] = { + [sym_comment] = STATE(268), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(107), @@ -111376,22 +113067,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [268] = { - [sym_comment] = STATE(268), + [269] = { + [sym_comment] = STATE(269), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_RPAREN] = ACTIONS(130), + [anon_sym_PIPE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(130), + [anon_sym_true] = ACTIONS(130), + [anon_sym_false] = ACTIONS(130), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(130), + [aux_sym__val_number_token2] = ACTIONS(130), + [aux_sym__val_number_token3] = ACTIONS(130), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(130), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym__str_single_quotes] = ACTIONS(130), + [sym__str_back_ticks] = ACTIONS(130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(130), + [anon_sym_err_GT] = ACTIONS(130), + [anon_sym_out_GT] = ACTIONS(130), + [anon_sym_e_GT] = ACTIONS(130), + [anon_sym_o_GT] = ACTIONS(130), + [anon_sym_err_PLUSout_GT] = ACTIONS(130), + [anon_sym_out_PLUSerr_GT] = ACTIONS(130), + [anon_sym_o_PLUSe_GT] = ACTIONS(130), + [anon_sym_e_PLUSo_GT] = ACTIONS(130), + [aux_sym_unquoted_token1] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), + }, + [270] = { + [sym_comment] = STATE(270), + [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(115), - [anon_sym_RPAREN] = ACTIONS(115), [anon_sym_PIPE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_PLUS] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(923), + [aux_sym__immediate_decimal_token1] = ACTIONS(938), + [aux_sym__immediate_decimal_token2] = ACTIONS(940), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -111500,8 +113315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [269] = { - [sym_comment] = STATE(269), + [271] = { + [sym_comment] = STATE(271), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), @@ -111514,8 +113329,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(929), - [aux_sym__immediate_decimal_token2] = ACTIONS(931), + [aux_sym__immediate_decimal_token1] = ACTIONS(942), + [aux_sym__immediate_decimal_token2] = ACTIONS(944), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -111624,270 +113439,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [270] = { - [sym_comment] = STATE(270), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(936), - [anon_sym_null] = ACTIONS(127), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(127), - [aux_sym__val_number_token2] = ACTIONS(127), - [aux_sym__val_number_token3] = ACTIONS(127), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(127), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(127), - [sym__str_single_quotes] = ACTIONS(127), - [sym__str_back_ticks] = ACTIONS(127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(127), - [anon_sym_err_GT] = ACTIONS(127), - [anon_sym_out_GT] = ACTIONS(127), - [anon_sym_e_GT] = ACTIONS(127), - [anon_sym_o_GT] = ACTIONS(127), - [anon_sym_err_PLUSout_GT] = ACTIONS(127), - [anon_sym_out_PLUSerr_GT] = ACTIONS(127), - [anon_sym_o_PLUSe_GT] = ACTIONS(127), - [anon_sym_e_PLUSo_GT] = ACTIONS(127), - [aux_sym_unquoted_token1] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(105), - }, - [271] = { - [sym_comment] = STATE(271), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(938), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_err_GT] = ACTIONS(148), - [anon_sym_out_GT] = ACTIONS(148), - [anon_sym_e_GT] = ACTIONS(148), - [anon_sym_o_GT] = ACTIONS(148), - [anon_sym_err_PLUSout_GT] = ACTIONS(148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(148), - [anon_sym_o_PLUSe_GT] = ACTIONS(148), - [anon_sym_e_PLUSo_GT] = ACTIONS(148), - [aux_sym_unquoted_token1] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(105), - }, [272] = { [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(946), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_err_GT] = ACTIONS(147), + [anon_sym_out_GT] = ACTIONS(147), + [anon_sym_e_GT] = ACTIONS(147), + [anon_sym_o_GT] = ACTIONS(147), + [anon_sym_err_PLUSout_GT] = ACTIONS(147), + [anon_sym_out_PLUSerr_GT] = ACTIONS(147), + [anon_sym_o_PLUSe_GT] = ACTIONS(147), + [anon_sym_e_PLUSo_GT] = ACTIONS(147), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [273] = { + [sym_comment] = STATE(273), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), [anon_sym_PIPE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_PLUS] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(940), - [aux_sym__immediate_decimal_token2] = ACTIONS(942), + [aux_sym__immediate_decimal_token2] = ACTIONS(931), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -111996,130 +113687,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [273] = { - [sym_comment] = STATE(273), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(927), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, [274] = { [sym_comment] = STATE(274), [anon_sym_SEMI] = ACTIONS(115), @@ -112133,8 +113700,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(948), [anon_sym_PLUS] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(931), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -112245,388 +113813,511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [275] = { [sym_comment] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(947), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_err_GT] = ACTIONS(148), - [anon_sym_out_GT] = ACTIONS(148), - [anon_sym_e_GT] = ACTIONS(148), - [anon_sym_o_GT] = ACTIONS(148), - [anon_sym_err_PLUSout_GT] = ACTIONS(148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(148), - [anon_sym_o_PLUSe_GT] = ACTIONS(148), - [anon_sym_e_PLUSo_GT] = ACTIONS(148), - [aux_sym_unquoted_token1] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_err_GT] = ACTIONS(147), + [anon_sym_out_GT] = ACTIONS(147), + [anon_sym_e_GT] = ACTIONS(147), + [anon_sym_o_GT] = ACTIONS(147), + [anon_sym_err_PLUSout_GT] = ACTIONS(147), + [anon_sym_out_PLUSerr_GT] = ACTIONS(147), + [anon_sym_o_PLUSe_GT] = ACTIONS(147), + [anon_sym_e_PLUSo_GT] = ACTIONS(147), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, [276] = { [sym_comment] = STATE(276), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_err_GT] = ACTIONS(148), - [anon_sym_out_GT] = ACTIONS(148), - [anon_sym_e_GT] = ACTIONS(148), - [anon_sym_o_GT] = ACTIONS(148), - [anon_sym_err_PLUSout_GT] = ACTIONS(148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(148), - [anon_sym_o_PLUSe_GT] = ACTIONS(148), - [anon_sym_e_PLUSo_GT] = ACTIONS(148), - [aux_sym_unquoted_token1] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(951), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_err_GT] = ACTIONS(147), + [anon_sym_out_GT] = ACTIONS(147), + [anon_sym_e_GT] = ACTIONS(147), + [anon_sym_o_GT] = ACTIONS(147), + [anon_sym_err_PLUSout_GT] = ACTIONS(147), + [anon_sym_out_PLUSerr_GT] = ACTIONS(147), + [anon_sym_o_PLUSe_GT] = ACTIONS(147), + [anon_sym_e_PLUSo_GT] = ACTIONS(147), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, [277] = { [sym_comment] = STATE(277), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(107), + [anon_sym_LF] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(107), + [anon_sym_RPAREN] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(107), + [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_DOT] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_null] = ACTIONS(107), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [aux_sym__val_number_decimal_token1] = ACTIONS(107), + [aux_sym__val_number_token1] = ACTIONS(107), + [aux_sym__val_number_token2] = ACTIONS(107), + [aux_sym__val_number_token3] = ACTIONS(107), + [aux_sym__val_number_token4] = ACTIONS(107), + [aux_sym__val_number_token5] = ACTIONS(107), + [aux_sym__val_number_token6] = ACTIONS(107), + [anon_sym_ns] = ACTIONS(107), + [anon_sym_s] = ACTIONS(107), + [anon_sym_us] = ACTIONS(107), + [anon_sym_ms] = ACTIONS(107), + [anon_sym_sec] = ACTIONS(107), + [anon_sym_min] = ACTIONS(107), + [anon_sym_hr] = ACTIONS(107), + [anon_sym_day] = ACTIONS(107), + [anon_sym_wk] = ACTIONS(107), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(107), + [anon_sym_kb] = ACTIONS(107), + [anon_sym_kB] = ACTIONS(107), + [anon_sym_Kb] = ACTIONS(107), + [anon_sym_KB] = ACTIONS(107), + [anon_sym_mb] = ACTIONS(107), + [anon_sym_mB] = ACTIONS(107), + [anon_sym_Mb] = ACTIONS(107), + [anon_sym_MB] = ACTIONS(107), + [anon_sym_gb] = ACTIONS(107), + [anon_sym_gB] = ACTIONS(107), + [anon_sym_Gb] = ACTIONS(107), + [anon_sym_GB] = ACTIONS(107), + [anon_sym_tb] = ACTIONS(107), + [anon_sym_tB] = ACTIONS(107), + [anon_sym_Tb] = ACTIONS(107), + [anon_sym_TB] = ACTIONS(107), + [anon_sym_pb] = ACTIONS(107), + [anon_sym_pB] = ACTIONS(107), + [anon_sym_Pb] = ACTIONS(107), + [anon_sym_PB] = ACTIONS(107), + [anon_sym_eb] = ACTIONS(107), + [anon_sym_eB] = ACTIONS(107), + [anon_sym_Eb] = ACTIONS(107), + [anon_sym_EB] = ACTIONS(107), + [anon_sym_kib] = ACTIONS(107), + [anon_sym_kiB] = ACTIONS(107), + [anon_sym_kIB] = ACTIONS(107), + [anon_sym_kIb] = ACTIONS(107), + [anon_sym_Kib] = ACTIONS(107), + [anon_sym_KIb] = ACTIONS(107), + [anon_sym_KIB] = ACTIONS(107), + [anon_sym_mib] = ACTIONS(107), + [anon_sym_miB] = ACTIONS(107), + [anon_sym_mIB] = ACTIONS(107), + [anon_sym_mIb] = ACTIONS(107), + [anon_sym_Mib] = ACTIONS(107), + [anon_sym_MIb] = ACTIONS(107), + [anon_sym_MIB] = ACTIONS(107), + [anon_sym_gib] = ACTIONS(107), + [anon_sym_giB] = ACTIONS(107), + [anon_sym_gIB] = ACTIONS(107), + [anon_sym_gIb] = ACTIONS(107), + [anon_sym_Gib] = ACTIONS(107), + [anon_sym_GIb] = ACTIONS(107), + [anon_sym_GIB] = ACTIONS(107), + [anon_sym_tib] = ACTIONS(107), + [anon_sym_tiB] = ACTIONS(107), + [anon_sym_tIB] = ACTIONS(107), + [anon_sym_tIb] = ACTIONS(107), + [anon_sym_Tib] = ACTIONS(107), + [anon_sym_TIb] = ACTIONS(107), + [anon_sym_TIB] = ACTIONS(107), + [anon_sym_pib] = ACTIONS(107), + [anon_sym_piB] = ACTIONS(107), + [anon_sym_pIB] = ACTIONS(107), + [anon_sym_pIb] = ACTIONS(107), + [anon_sym_Pib] = ACTIONS(107), + [anon_sym_PIb] = ACTIONS(107), + [anon_sym_PIB] = ACTIONS(107), + [anon_sym_eib] = ACTIONS(107), + [anon_sym_eiB] = ACTIONS(107), + [anon_sym_eIB] = ACTIONS(107), + [anon_sym_eIb] = ACTIONS(107), + [anon_sym_Eib] = ACTIONS(107), + [anon_sym_EIb] = ACTIONS(107), + [anon_sym_EIB] = ACTIONS(107), + [anon_sym_0b] = ACTIONS(107), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(107), + [sym__str_back_ticks] = ACTIONS(107), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), + [anon_sym_err_GT] = ACTIONS(107), + [anon_sym_out_GT] = ACTIONS(107), + [anon_sym_e_GT] = ACTIONS(107), + [anon_sym_o_GT] = ACTIONS(107), + [anon_sym_err_PLUSout_GT] = ACTIONS(107), + [anon_sym_out_PLUSerr_GT] = ACTIONS(107), + [anon_sym_o_PLUSe_GT] = ACTIONS(107), + [anon_sym_e_PLUSo_GT] = ACTIONS(107), + [aux_sym_unquoted_token1] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, [278] = { [sym_comment] = STATE(278), - [ts_builtin_sym_end] = ACTIONS(117), + [ts_builtin_sym_end] = ACTIONS(132), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_PIPE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(956), + [anon_sym_null] = ACTIONS(130), + [anon_sym_true] = ACTIONS(130), + [anon_sym_false] = ACTIONS(130), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(130), + [aux_sym__val_number_token2] = ACTIONS(130), + [aux_sym__val_number_token3] = ACTIONS(130), + [aux_sym__val_number_token4] = ACTIONS(130), + [aux_sym__val_number_token5] = ACTIONS(130), + [aux_sym__val_number_token6] = ACTIONS(130), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(130), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym__str_single_quotes] = ACTIONS(130), + [sym__str_back_ticks] = ACTIONS(130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(130), + [anon_sym_err_GT] = ACTIONS(130), + [anon_sym_out_GT] = ACTIONS(130), + [anon_sym_e_GT] = ACTIONS(130), + [anon_sym_o_GT] = ACTIONS(130), + [anon_sym_err_PLUSout_GT] = ACTIONS(130), + [anon_sym_out_PLUSerr_GT] = ACTIONS(130), + [anon_sym_o_PLUSe_GT] = ACTIONS(130), + [anon_sym_e_PLUSo_GT] = ACTIONS(130), + [aux_sym_unquoted_token1] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), + }, + [279] = { + [sym_comment] = STATE(279), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), [anon_sym_PIPE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_PLUS] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(942), [anon_sym_null] = ACTIONS(115), [anon_sym_true] = ACTIONS(115), [anon_sym_false] = ACTIONS(115), @@ -112735,144 +114426,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [279] = { - [sym_comment] = STATE(279), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_null] = ACTIONS(165), - [anon_sym_true] = ACTIONS(165), - [anon_sym_false] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(165), - [aux_sym__val_number_token2] = ACTIONS(165), - [aux_sym__val_number_token3] = ACTIONS(165), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(165), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(165), - [sym__str_single_quotes] = ACTIONS(165), - [sym__str_back_ticks] = ACTIONS(165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(165), - [anon_sym_err_GT] = ACTIONS(165), - [anon_sym_out_GT] = ACTIONS(165), - [anon_sym_e_GT] = ACTIONS(165), - [anon_sym_o_GT] = ACTIONS(165), - [anon_sym_err_PLUSout_GT] = ACTIONS(165), - [anon_sym_out_PLUSerr_GT] = ACTIONS(165), - [anon_sym_o_PLUSe_GT] = ACTIONS(165), - [anon_sym_e_PLUSo_GT] = ACTIONS(165), - [aux_sym_unquoted_token1] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(105), - }, [280] = { [sym_comment] = STATE(280), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(105), + }, + [281] = { + [sym_comment] = STATE(281), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_null] = ACTIONS(157), + [anon_sym_true] = ACTIONS(157), + [anon_sym_false] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(157), + [aux_sym__val_number_token2] = ACTIONS(157), + [aux_sym__val_number_token3] = ACTIONS(157), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(157), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym__str_single_quotes] = ACTIONS(157), + [sym__str_back_ticks] = ACTIONS(157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(157), + [anon_sym_err_GT] = ACTIONS(157), + [anon_sym_out_GT] = ACTIONS(157), + [anon_sym_e_GT] = ACTIONS(157), + [anon_sym_o_GT] = ACTIONS(157), + [anon_sym_err_PLUSout_GT] = ACTIONS(157), + [anon_sym_out_PLUSerr_GT] = ACTIONS(157), + [anon_sym_o_PLUSe_GT] = ACTIONS(157), + [anon_sym_e_PLUSo_GT] = ACTIONS(157), + [aux_sym_unquoted_token1] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(105), + }, + [282] = { + [sym_comment] = STATE(282), + [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(107), [anon_sym_DOLLAR] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(107), [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_DOT] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(107), + [aux_sym__immediate_decimal_token2] = ACTIONS(944), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -112981,254 +114795,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [281] = { - [sym_comment] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(931), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), + [283] = { + [sym_comment] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(940), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(115), + [anon_sym_out_GT] = ACTIONS(115), + [anon_sym_e_GT] = ACTIONS(115), + [anon_sym_o_GT] = ACTIONS(115), + [anon_sym_err_PLUSout_GT] = ACTIONS(115), + [anon_sym_out_PLUSerr_GT] = ACTIONS(115), + [anon_sym_o_PLUSe_GT] = ACTIONS(115), + [anon_sym_e_PLUSo_GT] = ACTIONS(115), + [aux_sym_unquoted_token1] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [282] = { - [sym_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(955), - [anon_sym_null] = ACTIONS(127), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(127), - [aux_sym__val_number_token2] = ACTIONS(127), - [aux_sym__val_number_token3] = ACTIONS(127), - [aux_sym__val_number_token4] = ACTIONS(127), - [aux_sym__val_number_token5] = ACTIONS(127), - [aux_sym__val_number_token6] = ACTIONS(127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(127), - [sym__str_single_quotes] = ACTIONS(127), - [sym__str_back_ticks] = ACTIONS(127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(127), - [anon_sym_err_GT] = ACTIONS(127), - [anon_sym_out_GT] = ACTIONS(127), - [anon_sym_e_GT] = ACTIONS(127), - [anon_sym_o_GT] = ACTIONS(127), - [anon_sym_err_PLUSout_GT] = ACTIONS(127), - [anon_sym_out_PLUSerr_GT] = ACTIONS(127), - [anon_sym_o_PLUSe_GT] = ACTIONS(127), - [anon_sym_e_PLUSo_GT] = ACTIONS(127), - [aux_sym_unquoted_token1] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), + [284] = { + [sym_comment] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(940), + [anon_sym_null] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(115), + [aux_sym__val_number_token2] = ACTIONS(115), + [aux_sym__val_number_token3] = ACTIONS(115), + [aux_sym__val_number_token4] = ACTIONS(115), + [aux_sym__val_number_token5] = ACTIONS(115), + [aux_sym__val_number_token6] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(115), + [anon_sym_out_GT] = ACTIONS(115), + [anon_sym_e_GT] = ACTIONS(115), + [anon_sym_o_GT] = ACTIONS(115), + [anon_sym_err_PLUSout_GT] = ACTIONS(115), + [anon_sym_out_PLUSerr_GT] = ACTIONS(115), + [anon_sym_o_PLUSe_GT] = ACTIONS(115), + [anon_sym_e_PLUSo_GT] = ACTIONS(115), + [aux_sym_unquoted_token1] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [283] = { - [sym_comment] = STATE(283), + [285] = { + [sym_comment] = STATE(285), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), @@ -113241,7 +115055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(931), [anon_sym_null] = ACTIONS(107), [anon_sym_true] = ACTIONS(107), [anon_sym_false] = ACTIONS(107), @@ -113350,130 +115163,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [284] = { - [sym_comment] = STATE(284), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(446), + [286] = { + [sym_comment] = STATE(286), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(105), }, - [285] = { - [sym_comment] = STATE(285), + [287] = { + [sym_comment] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_null] = ACTIONS(157), + [anon_sym_true] = ACTIONS(157), + [anon_sym_false] = ACTIONS(157), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(157), + [aux_sym__val_number_token2] = ACTIONS(157), + [aux_sym__val_number_token3] = ACTIONS(157), + [aux_sym__val_number_token4] = ACTIONS(157), + [aux_sym__val_number_token5] = ACTIONS(157), + [aux_sym__val_number_token6] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym__str_single_quotes] = ACTIONS(157), + [sym__str_back_ticks] = ACTIONS(157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(157), + [anon_sym_err_GT] = ACTIONS(157), + [anon_sym_out_GT] = ACTIONS(157), + [anon_sym_e_GT] = ACTIONS(157), + [anon_sym_o_GT] = ACTIONS(157), + [anon_sym_err_PLUSout_GT] = ACTIONS(157), + [anon_sym_out_PLUSerr_GT] = ACTIONS(157), + [anon_sym_o_PLUSe_GT] = ACTIONS(157), + [anon_sym_e_PLUSo_GT] = ACTIONS(157), + [aux_sym_unquoted_token1] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(105), + }, + [288] = { + [sym_comment] = STATE(288), [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), @@ -113594,152 +115529,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [286] = { - [sym_comment] = STATE(286), - [ts_builtin_sym_end] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_null] = ACTIONS(165), - [anon_sym_true] = ACTIONS(165), - [anon_sym_false] = ACTIONS(165), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(165), - [aux_sym__val_number_token2] = ACTIONS(165), - [aux_sym__val_number_token3] = ACTIONS(165), - [aux_sym__val_number_token4] = ACTIONS(165), - [aux_sym__val_number_token5] = ACTIONS(165), - [aux_sym__val_number_token6] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(165), - [sym__str_single_quotes] = ACTIONS(165), - [sym__str_back_ticks] = ACTIONS(165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(165), - [anon_sym_err_GT] = ACTIONS(165), - [anon_sym_out_GT] = ACTIONS(165), - [anon_sym_e_GT] = ACTIONS(165), - [anon_sym_o_GT] = ACTIONS(165), - [anon_sym_err_PLUSout_GT] = ACTIONS(165), - [anon_sym_out_PLUSerr_GT] = ACTIONS(165), - [anon_sym_o_PLUSe_GT] = ACTIONS(165), - [anon_sym_e_PLUSo_GT] = ACTIONS(165), - [aux_sym_unquoted_token1] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), + [289] = { + [sym_comment] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_null] = ACTIONS(147), + [anon_sym_true] = ACTIONS(147), + [anon_sym_false] = ACTIONS(147), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(147), + [aux_sym__val_number_token2] = ACTIONS(147), + [aux_sym__val_number_token3] = ACTIONS(147), + [aux_sym__val_number_token4] = ACTIONS(147), + [aux_sym__val_number_token5] = ACTIONS(147), + [aux_sym__val_number_token6] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym__str_single_quotes] = ACTIONS(147), + [sym__str_back_ticks] = ACTIONS(147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(147), + [anon_sym_err_GT] = ACTIONS(147), + [anon_sym_out_GT] = ACTIONS(147), + [anon_sym_e_GT] = ACTIONS(147), + [anon_sym_o_GT] = ACTIONS(147), + [anon_sym_err_PLUSout_GT] = ACTIONS(147), + [anon_sym_out_PLUSerr_GT] = ACTIONS(147), + [anon_sym_o_PLUSe_GT] = ACTIONS(147), + [anon_sym_e_PLUSo_GT] = ACTIONS(147), + [aux_sym_unquoted_token1] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, - [287] = { - [sym_comment] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), + [290] = { + [sym_comment] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(105), + }, + [291] = { + [sym_comment] = STATE(291), + [sym_identifier] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(109), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(109), [anon_sym_DASH] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_in] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(109), + [anon_sym_PLUS_PLUS] = ACTIONS(109), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_null] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(107), - [aux_sym__val_number_token2] = ACTIONS(107), - [aux_sym__val_number_token3] = ACTIONS(107), - [aux_sym__val_number_token4] = ACTIONS(107), - [aux_sym__val_number_token5] = ACTIONS(107), - [aux_sym__val_number_token6] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(109), + [anon_sym_bit_DASHshr] = ACTIONS(109), + [anon_sym_EQ_EQ] = ACTIONS(109), + [anon_sym_BANG_EQ] = ACTIONS(109), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(109), + [anon_sym_not_DASHin] = ACTIONS(109), + [anon_sym_starts_DASHwith] = ACTIONS(109), + [anon_sym_ends_DASHwith] = ACTIONS(109), + [anon_sym_EQ_TILDE] = ACTIONS(109), + [anon_sym_BANG_TILDE] = ACTIONS(109), + [anon_sym_bit_DASHand] = ACTIONS(109), + [anon_sym_bit_DASHxor] = ACTIONS(109), + [anon_sym_bit_DASHor] = ACTIONS(109), + [anon_sym_and] = ACTIONS(107), + [anon_sym_xor] = ACTIONS(107), + [anon_sym_or] = ACTIONS(107), + [aux_sym__immediate_decimal_token1] = ACTIONS(961), + [aux_sym__immediate_decimal_token2] = ACTIONS(963), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -113817,399 +115891,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [288] = { - [sym_comment] = STATE(288), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_null] = ACTIONS(148), - [anon_sym_true] = ACTIONS(148), - [anon_sym_false] = ACTIONS(148), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(148), - [aux_sym__val_number_token2] = ACTIONS(148), - [aux_sym__val_number_token3] = ACTIONS(148), - [aux_sym__val_number_token4] = ACTIONS(148), - [aux_sym__val_number_token5] = ACTIONS(148), - [aux_sym__val_number_token6] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(148), - [sym__str_single_quotes] = ACTIONS(148), - [sym__str_back_ticks] = ACTIONS(148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(148), - [anon_sym_err_GT] = ACTIONS(148), - [anon_sym_out_GT] = ACTIONS(148), - [anon_sym_e_GT] = ACTIONS(148), - [anon_sym_o_GT] = ACTIONS(148), - [anon_sym_err_PLUSout_GT] = ACTIONS(148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(148), - [anon_sym_o_PLUSe_GT] = ACTIONS(148), - [anon_sym_e_PLUSo_GT] = ACTIONS(148), - [aux_sym_unquoted_token1] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(105), - }, - [289] = { - [sym_comment] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(455), - [anon_sym_POUND] = ACTIONS(105), - }, - [290] = { - [sym_comment] = STATE(290), - [anon_sym_SEMI] = ACTIONS(221), - [anon_sym_LF] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_RBRACE] = ACTIONS(221), - [anon_sym_DOT] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_null] = ACTIONS(221), - [anon_sym_true] = ACTIONS(221), - [anon_sym_false] = ACTIONS(221), - [aux_sym__val_number_decimal_token1] = ACTIONS(221), - [aux_sym__val_number_token1] = ACTIONS(221), - [aux_sym__val_number_token2] = ACTIONS(221), - [aux_sym__val_number_token3] = ACTIONS(221), - [aux_sym__val_number_token4] = ACTIONS(221), - [aux_sym__val_number_token5] = ACTIONS(221), - [aux_sym__val_number_token6] = ACTIONS(221), - [anon_sym_ns] = ACTIONS(221), - [anon_sym_s] = ACTIONS(221), - [anon_sym_us] = ACTIONS(221), - [anon_sym_ms] = ACTIONS(221), - [anon_sym_sec] = ACTIONS(221), - [anon_sym_min] = ACTIONS(221), - [anon_sym_hr] = ACTIONS(221), - [anon_sym_day] = ACTIONS(221), - [anon_sym_wk] = ACTIONS(221), - [anon_sym_b] = ACTIONS(221), - [anon_sym_B] = ACTIONS(221), - [anon_sym_kb] = ACTIONS(221), - [anon_sym_kB] = ACTIONS(221), - [anon_sym_Kb] = ACTIONS(221), - [anon_sym_KB] = ACTIONS(221), - [anon_sym_mb] = ACTIONS(221), - [anon_sym_mB] = ACTIONS(221), - [anon_sym_Mb] = ACTIONS(221), - [anon_sym_MB] = ACTIONS(221), - [anon_sym_gb] = ACTIONS(221), - [anon_sym_gB] = ACTIONS(221), - [anon_sym_Gb] = ACTIONS(221), - [anon_sym_GB] = ACTIONS(221), - [anon_sym_tb] = ACTIONS(221), - [anon_sym_tB] = ACTIONS(221), - [anon_sym_Tb] = ACTIONS(221), - [anon_sym_TB] = ACTIONS(221), - [anon_sym_pb] = ACTIONS(221), - [anon_sym_pB] = ACTIONS(221), - [anon_sym_Pb] = ACTIONS(221), - [anon_sym_PB] = ACTIONS(221), - [anon_sym_eb] = ACTIONS(221), - [anon_sym_eB] = ACTIONS(221), - [anon_sym_Eb] = ACTIONS(221), - [anon_sym_EB] = ACTIONS(221), - [anon_sym_kib] = ACTIONS(221), - [anon_sym_kiB] = ACTIONS(221), - [anon_sym_kIB] = ACTIONS(221), - [anon_sym_kIb] = ACTIONS(221), - [anon_sym_Kib] = ACTIONS(221), - [anon_sym_KIb] = ACTIONS(221), - [anon_sym_KIB] = ACTIONS(221), - [anon_sym_mib] = ACTIONS(221), - [anon_sym_miB] = ACTIONS(221), - [anon_sym_mIB] = ACTIONS(221), - [anon_sym_mIb] = ACTIONS(221), - [anon_sym_Mib] = ACTIONS(221), - [anon_sym_MIb] = ACTIONS(221), - [anon_sym_MIB] = ACTIONS(221), - [anon_sym_gib] = ACTIONS(221), - [anon_sym_giB] = ACTIONS(221), - [anon_sym_gIB] = ACTIONS(221), - [anon_sym_gIb] = ACTIONS(221), - [anon_sym_Gib] = ACTIONS(221), - [anon_sym_GIb] = ACTIONS(221), - [anon_sym_GIB] = ACTIONS(221), - [anon_sym_tib] = ACTIONS(221), - [anon_sym_tiB] = ACTIONS(221), - [anon_sym_tIB] = ACTIONS(221), - [anon_sym_tIb] = ACTIONS(221), - [anon_sym_Tib] = ACTIONS(221), - [anon_sym_TIb] = ACTIONS(221), - [anon_sym_TIB] = ACTIONS(221), - [anon_sym_pib] = ACTIONS(221), - [anon_sym_piB] = ACTIONS(221), - [anon_sym_pIB] = ACTIONS(221), - [anon_sym_pIb] = ACTIONS(221), - [anon_sym_Pib] = ACTIONS(221), - [anon_sym_PIb] = ACTIONS(221), - [anon_sym_PIB] = ACTIONS(221), - [anon_sym_eib] = ACTIONS(221), - [anon_sym_eiB] = ACTIONS(221), - [anon_sym_eIB] = ACTIONS(221), - [anon_sym_eIb] = ACTIONS(221), - [anon_sym_Eib] = ACTIONS(221), - [anon_sym_EIb] = ACTIONS(221), - [anon_sym_EIB] = ACTIONS(221), - [anon_sym_0b] = ACTIONS(221), - [anon_sym_0o] = ACTIONS(221), - [anon_sym_0x] = ACTIONS(221), - [sym_val_date] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym__str_single_quotes] = ACTIONS(221), - [sym__str_back_ticks] = ACTIONS(221), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(221), - [anon_sym_err_GT] = ACTIONS(221), - [anon_sym_out_GT] = ACTIONS(221), - [anon_sym_e_GT] = ACTIONS(221), - [anon_sym_o_GT] = ACTIONS(221), - [anon_sym_err_PLUSout_GT] = ACTIONS(221), - [anon_sym_out_PLUSerr_GT] = ACTIONS(221), - [anon_sym_o_PLUSe_GT] = ACTIONS(221), - [anon_sym_e_PLUSo_GT] = ACTIONS(221), - [aux_sym_unquoted_token1] = ACTIONS(221), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(3), }, - [291] = { - [sym_comment] = STATE(291), + [292] = { + [sym_comment] = STATE(292), [sym_identifier] = ACTIONS(107), [anon_sym_COLON] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_RBRACK] = ACTIONS(109), [anon_sym_RPAREN] = ACTIONS(109), + [anon_sym_PIPE] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), @@ -114242,8 +115934,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(957), - [aux_sym__immediate_decimal_token2] = ACTIONS(959), + [aux_sym__immediate_decimal_token1] = ACTIONS(965), + [aux_sym__immediate_decimal_token2] = ACTIONS(967), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -114321,17 +116013,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [292] = { - [sym_comment] = STATE(292), + [293] = { + [sym_comment] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(105), + }, + [294] = { + [sym_comment] = STATE(294), [sym_identifier] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACK] = ACTIONS(117), [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_PIPE] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), [anon_sym_DOT_DOT_DOT] = ACTIONS(117), @@ -114364,8 +116175,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(961), - [aux_sym__immediate_decimal_token2] = ACTIONS(963), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token2] = ACTIONS(971), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -114443,15 +116254,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [293] = { - [sym_comment] = STATE(293), + [295] = { + [sym_comment] = STATE(295), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_null] = ACTIONS(221), + [anon_sym_true] = ACTIONS(221), + [anon_sym_false] = ACTIONS(221), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(221), + [aux_sym__val_number_token2] = ACTIONS(221), + [aux_sym__val_number_token3] = ACTIONS(221), + [aux_sym__val_number_token4] = ACTIONS(221), + [aux_sym__val_number_token5] = ACTIONS(221), + [aux_sym__val_number_token6] = ACTIONS(221), + [anon_sym_ns] = ACTIONS(221), + [anon_sym_s] = ACTIONS(221), + [anon_sym_us] = ACTIONS(221), + [anon_sym_ms] = ACTIONS(221), + [anon_sym_sec] = ACTIONS(221), + [anon_sym_min] = ACTIONS(221), + [anon_sym_hr] = ACTIONS(221), + [anon_sym_day] = ACTIONS(221), + [anon_sym_wk] = ACTIONS(221), + [anon_sym_b] = ACTIONS(221), + [anon_sym_B] = ACTIONS(221), + [anon_sym_kb] = ACTIONS(221), + [anon_sym_kB] = ACTIONS(221), + [anon_sym_Kb] = ACTIONS(221), + [anon_sym_KB] = ACTIONS(221), + [anon_sym_mb] = ACTIONS(221), + [anon_sym_mB] = ACTIONS(221), + [anon_sym_Mb] = ACTIONS(221), + [anon_sym_MB] = ACTIONS(221), + [anon_sym_gb] = ACTIONS(221), + [anon_sym_gB] = ACTIONS(221), + [anon_sym_Gb] = ACTIONS(221), + [anon_sym_GB] = ACTIONS(221), + [anon_sym_tb] = ACTIONS(221), + [anon_sym_tB] = ACTIONS(221), + [anon_sym_Tb] = ACTIONS(221), + [anon_sym_TB] = ACTIONS(221), + [anon_sym_pb] = ACTIONS(221), + [anon_sym_pB] = ACTIONS(221), + [anon_sym_Pb] = ACTIONS(221), + [anon_sym_PB] = ACTIONS(221), + [anon_sym_eb] = ACTIONS(221), + [anon_sym_eB] = ACTIONS(221), + [anon_sym_Eb] = ACTIONS(221), + [anon_sym_EB] = ACTIONS(221), + [anon_sym_kib] = ACTIONS(221), + [anon_sym_kiB] = ACTIONS(221), + [anon_sym_kIB] = ACTIONS(221), + [anon_sym_kIb] = ACTIONS(221), + [anon_sym_Kib] = ACTIONS(221), + [anon_sym_KIb] = ACTIONS(221), + [anon_sym_KIB] = ACTIONS(221), + [anon_sym_mib] = ACTIONS(221), + [anon_sym_miB] = ACTIONS(221), + [anon_sym_mIB] = ACTIONS(221), + [anon_sym_mIb] = ACTIONS(221), + [anon_sym_Mib] = ACTIONS(221), + [anon_sym_MIb] = ACTIONS(221), + [anon_sym_MIB] = ACTIONS(221), + [anon_sym_gib] = ACTIONS(221), + [anon_sym_giB] = ACTIONS(221), + [anon_sym_gIB] = ACTIONS(221), + [anon_sym_gIb] = ACTIONS(221), + [anon_sym_Gib] = ACTIONS(221), + [anon_sym_GIb] = ACTIONS(221), + [anon_sym_GIB] = ACTIONS(221), + [anon_sym_tib] = ACTIONS(221), + [anon_sym_tiB] = ACTIONS(221), + [anon_sym_tIB] = ACTIONS(221), + [anon_sym_tIb] = ACTIONS(221), + [anon_sym_Tib] = ACTIONS(221), + [anon_sym_TIb] = ACTIONS(221), + [anon_sym_TIB] = ACTIONS(221), + [anon_sym_pib] = ACTIONS(221), + [anon_sym_piB] = ACTIONS(221), + [anon_sym_pIB] = ACTIONS(221), + [anon_sym_pIb] = ACTIONS(221), + [anon_sym_Pib] = ACTIONS(221), + [anon_sym_PIb] = ACTIONS(221), + [anon_sym_PIB] = ACTIONS(221), + [anon_sym_eib] = ACTIONS(221), + [anon_sym_eiB] = ACTIONS(221), + [anon_sym_eIB] = ACTIONS(221), + [anon_sym_eIb] = ACTIONS(221), + [anon_sym_Eib] = ACTIONS(221), + [anon_sym_EIb] = ACTIONS(221), + [anon_sym_EIB] = ACTIONS(221), + [anon_sym_0b] = ACTIONS(221), + [anon_sym_0o] = ACTIONS(221), + [anon_sym_0x] = ACTIONS(221), + [sym_val_date] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym__str_single_quotes] = ACTIONS(221), + [sym__str_back_ticks] = ACTIONS(221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(221), + [anon_sym_err_GT] = ACTIONS(221), + [anon_sym_out_GT] = ACTIONS(221), + [anon_sym_e_GT] = ACTIONS(221), + [anon_sym_o_GT] = ACTIONS(221), + [anon_sym_err_PLUSout_GT] = ACTIONS(221), + [anon_sym_out_PLUSerr_GT] = ACTIONS(221), + [anon_sym_o_PLUSe_GT] = ACTIONS(221), + [anon_sym_e_PLUSo_GT] = ACTIONS(221), + [aux_sym_unquoted_token1] = ACTIONS(221), + [anon_sym_POUND] = ACTIONS(105), + }, + [296] = { + [sym_comment] = STATE(296), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(213), + [aux_sym__val_number_token2] = ACTIONS(213), + [aux_sym__val_number_token3] = ACTIONS(213), + [aux_sym__val_number_token4] = ACTIONS(213), + [aux_sym__val_number_token5] = ACTIONS(213), + [aux_sym__val_number_token6] = ACTIONS(213), + [anon_sym_ns] = ACTIONS(973), + [anon_sym_s] = ACTIONS(973), + [anon_sym_us] = ACTIONS(973), + [anon_sym_ms] = ACTIONS(973), + [anon_sym_sec] = ACTIONS(973), + [anon_sym_min] = ACTIONS(973), + [anon_sym_hr] = ACTIONS(973), + [anon_sym_day] = ACTIONS(973), + [anon_sym_wk] = ACTIONS(973), + [anon_sym_b] = ACTIONS(975), + [anon_sym_B] = ACTIONS(975), + [anon_sym_kb] = ACTIONS(975), + [anon_sym_kB] = ACTIONS(975), + [anon_sym_Kb] = ACTIONS(975), + [anon_sym_KB] = ACTIONS(975), + [anon_sym_mb] = ACTIONS(975), + [anon_sym_mB] = ACTIONS(975), + [anon_sym_Mb] = ACTIONS(975), + [anon_sym_MB] = ACTIONS(975), + [anon_sym_gb] = ACTIONS(975), + [anon_sym_gB] = ACTIONS(975), + [anon_sym_Gb] = ACTIONS(975), + [anon_sym_GB] = ACTIONS(975), + [anon_sym_tb] = ACTIONS(975), + [anon_sym_tB] = ACTIONS(975), + [anon_sym_Tb] = ACTIONS(975), + [anon_sym_TB] = ACTIONS(975), + [anon_sym_pb] = ACTIONS(975), + [anon_sym_pB] = ACTIONS(975), + [anon_sym_Pb] = ACTIONS(975), + [anon_sym_PB] = ACTIONS(975), + [anon_sym_eb] = ACTIONS(975), + [anon_sym_eB] = ACTIONS(975), + [anon_sym_Eb] = ACTIONS(975), + [anon_sym_EB] = ACTIONS(975), + [anon_sym_kib] = ACTIONS(975), + [anon_sym_kiB] = ACTIONS(975), + [anon_sym_kIB] = ACTIONS(975), + [anon_sym_kIb] = ACTIONS(975), + [anon_sym_Kib] = ACTIONS(975), + [anon_sym_KIb] = ACTIONS(975), + [anon_sym_KIB] = ACTIONS(975), + [anon_sym_mib] = ACTIONS(975), + [anon_sym_miB] = ACTIONS(975), + [anon_sym_mIB] = ACTIONS(975), + [anon_sym_mIb] = ACTIONS(975), + [anon_sym_Mib] = ACTIONS(975), + [anon_sym_MIb] = ACTIONS(975), + [anon_sym_MIB] = ACTIONS(975), + [anon_sym_gib] = ACTIONS(975), + [anon_sym_giB] = ACTIONS(975), + [anon_sym_gIB] = ACTIONS(975), + [anon_sym_gIb] = ACTIONS(975), + [anon_sym_Gib] = ACTIONS(975), + [anon_sym_GIb] = ACTIONS(975), + [anon_sym_GIB] = ACTIONS(975), + [anon_sym_tib] = ACTIONS(975), + [anon_sym_tiB] = ACTIONS(975), + [anon_sym_tIB] = ACTIONS(975), + [anon_sym_tIb] = ACTIONS(975), + [anon_sym_Tib] = ACTIONS(975), + [anon_sym_TIb] = ACTIONS(975), + [anon_sym_TIB] = ACTIONS(975), + [anon_sym_pib] = ACTIONS(975), + [anon_sym_piB] = ACTIONS(975), + [anon_sym_pIB] = ACTIONS(975), + [anon_sym_pIb] = ACTIONS(975), + [anon_sym_Pib] = ACTIONS(975), + [anon_sym_PIb] = ACTIONS(975), + [anon_sym_PIB] = ACTIONS(975), + [anon_sym_eib] = ACTIONS(975), + [anon_sym_eiB] = ACTIONS(975), + [anon_sym_eIB] = ACTIONS(975), + [anon_sym_eIb] = ACTIONS(975), + [anon_sym_Eib] = ACTIONS(975), + [anon_sym_EIb] = ACTIONS(975), + [anon_sym_EIB] = ACTIONS(975), + [anon_sym_0b] = ACTIONS(213), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [sym__str_single_quotes] = ACTIONS(213), + [sym__str_back_ticks] = ACTIONS(213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), + [anon_sym_err_GT] = ACTIONS(213), + [anon_sym_out_GT] = ACTIONS(213), + [anon_sym_e_GT] = ACTIONS(213), + [anon_sym_o_GT] = ACTIONS(213), + [anon_sym_err_PLUSout_GT] = ACTIONS(213), + [anon_sym_out_PLUSerr_GT] = ACTIONS(213), + [anon_sym_o_PLUSe_GT] = ACTIONS(213), + [anon_sym_e_PLUSo_GT] = ACTIONS(213), + [aux_sym_unquoted_token1] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(105), + }, + [297] = { + [sym_comment] = STATE(297), [sym_identifier] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACK] = ACTIONS(117), [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), [anon_sym_DOT_DOT_DOT] = ACTIONS(117), @@ -114484,8 +116539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(965), - [aux_sym__immediate_decimal_token2] = ACTIONS(967), + [aux_sym__immediate_decimal_token1] = ACTIONS(977), + [aux_sym__immediate_decimal_token2] = ACTIONS(979), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -114563,379 +116618,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [294] = { - [sym_comment] = STATE(294), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [anon_sym_POUND] = ACTIONS(105), - }, - [295] = { - [sym_comment] = STATE(295), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LF] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(213), - [aux_sym__val_number_token2] = ACTIONS(213), - [aux_sym__val_number_token3] = ACTIONS(213), - [aux_sym__val_number_token4] = ACTIONS(213), - [aux_sym__val_number_token5] = ACTIONS(213), - [aux_sym__val_number_token6] = ACTIONS(213), - [anon_sym_ns] = ACTIONS(969), - [anon_sym_s] = ACTIONS(969), - [anon_sym_us] = ACTIONS(969), - [anon_sym_ms] = ACTIONS(969), - [anon_sym_sec] = ACTIONS(969), - [anon_sym_min] = ACTIONS(969), - [anon_sym_hr] = ACTIONS(969), - [anon_sym_day] = ACTIONS(969), - [anon_sym_wk] = ACTIONS(969), - [anon_sym_b] = ACTIONS(971), - [anon_sym_B] = ACTIONS(971), - [anon_sym_kb] = ACTIONS(971), - [anon_sym_kB] = ACTIONS(971), - [anon_sym_Kb] = ACTIONS(971), - [anon_sym_KB] = ACTIONS(971), - [anon_sym_mb] = ACTIONS(971), - [anon_sym_mB] = ACTIONS(971), - [anon_sym_Mb] = ACTIONS(971), - [anon_sym_MB] = ACTIONS(971), - [anon_sym_gb] = ACTIONS(971), - [anon_sym_gB] = ACTIONS(971), - [anon_sym_Gb] = ACTIONS(971), - [anon_sym_GB] = ACTIONS(971), - [anon_sym_tb] = ACTIONS(971), - [anon_sym_tB] = ACTIONS(971), - [anon_sym_Tb] = ACTIONS(971), - [anon_sym_TB] = ACTIONS(971), - [anon_sym_pb] = ACTIONS(971), - [anon_sym_pB] = ACTIONS(971), - [anon_sym_Pb] = ACTIONS(971), - [anon_sym_PB] = ACTIONS(971), - [anon_sym_eb] = ACTIONS(971), - [anon_sym_eB] = ACTIONS(971), - [anon_sym_Eb] = ACTIONS(971), - [anon_sym_EB] = ACTIONS(971), - [anon_sym_kib] = ACTIONS(971), - [anon_sym_kiB] = ACTIONS(971), - [anon_sym_kIB] = ACTIONS(971), - [anon_sym_kIb] = ACTIONS(971), - [anon_sym_Kib] = ACTIONS(971), - [anon_sym_KIb] = ACTIONS(971), - [anon_sym_KIB] = ACTIONS(971), - [anon_sym_mib] = ACTIONS(971), - [anon_sym_miB] = ACTIONS(971), - [anon_sym_mIB] = ACTIONS(971), - [anon_sym_mIb] = ACTIONS(971), - [anon_sym_Mib] = ACTIONS(971), - [anon_sym_MIb] = ACTIONS(971), - [anon_sym_MIB] = ACTIONS(971), - [anon_sym_gib] = ACTIONS(971), - [anon_sym_giB] = ACTIONS(971), - [anon_sym_gIB] = ACTIONS(971), - [anon_sym_gIb] = ACTIONS(971), - [anon_sym_Gib] = ACTIONS(971), - [anon_sym_GIb] = ACTIONS(971), - [anon_sym_GIB] = ACTIONS(971), - [anon_sym_tib] = ACTIONS(971), - [anon_sym_tiB] = ACTIONS(971), - [anon_sym_tIB] = ACTIONS(971), - [anon_sym_tIb] = ACTIONS(971), - [anon_sym_Tib] = ACTIONS(971), - [anon_sym_TIb] = ACTIONS(971), - [anon_sym_TIB] = ACTIONS(971), - [anon_sym_pib] = ACTIONS(971), - [anon_sym_piB] = ACTIONS(971), - [anon_sym_pIB] = ACTIONS(971), - [anon_sym_pIb] = ACTIONS(971), - [anon_sym_Pib] = ACTIONS(971), - [anon_sym_PIb] = ACTIONS(971), - [anon_sym_PIB] = ACTIONS(971), - [anon_sym_eib] = ACTIONS(971), - [anon_sym_eiB] = ACTIONS(971), - [anon_sym_eIB] = ACTIONS(971), - [anon_sym_eIb] = ACTIONS(971), - [anon_sym_Eib] = ACTIONS(971), - [anon_sym_EIb] = ACTIONS(971), - [anon_sym_EIB] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(213), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym__str_single_quotes] = ACTIONS(213), - [sym__str_back_ticks] = ACTIONS(213), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), - [anon_sym_err_GT] = ACTIONS(213), - [anon_sym_out_GT] = ACTIONS(213), - [anon_sym_e_GT] = ACTIONS(213), - [anon_sym_o_GT] = ACTIONS(213), - [anon_sym_err_PLUSout_GT] = ACTIONS(213), - [anon_sym_out_PLUSerr_GT] = ACTIONS(213), - [anon_sym_o_PLUSe_GT] = ACTIONS(213), - [anon_sym_e_PLUSo_GT] = ACTIONS(213), - [aux_sym_unquoted_token1] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(105), - }, - [296] = { - [sym_comment] = STATE(296), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(455), + [298] = { + [sym_comment] = STATE(298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(105), }, - [297] = { - [sym_comment] = STATE(297), + [299] = { + [sym_comment] = STATE(299), [sym_identifier] = ACTIONS(107), [anon_sym_COLON] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(109), [anon_sym_PIPE] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), @@ -114969,8 +116779,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(973), - [aux_sym__immediate_decimal_token2] = ACTIONS(975), + [aux_sym__immediate_decimal_token1] = ACTIONS(981), + [aux_sym__immediate_decimal_token2] = ACTIONS(983), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -115048,970 +116858,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [298] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LF] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(213), - [aux_sym__val_number_token2] = ACTIONS(213), - [aux_sym__val_number_token3] = ACTIONS(213), - [aux_sym__val_number_token4] = ACTIONS(213), - [aux_sym__val_number_token5] = ACTIONS(213), - [aux_sym__val_number_token6] = ACTIONS(213), - [anon_sym_ns] = ACTIONS(977), - [anon_sym_s] = ACTIONS(977), - [anon_sym_us] = ACTIONS(977), - [anon_sym_ms] = ACTIONS(977), - [anon_sym_sec] = ACTIONS(977), - [anon_sym_min] = ACTIONS(977), - [anon_sym_hr] = ACTIONS(977), - [anon_sym_day] = ACTIONS(977), - [anon_sym_wk] = ACTIONS(977), - [anon_sym_b] = ACTIONS(979), - [anon_sym_B] = ACTIONS(979), - [anon_sym_kb] = ACTIONS(979), - [anon_sym_kB] = ACTIONS(979), - [anon_sym_Kb] = ACTIONS(979), - [anon_sym_KB] = ACTIONS(979), - [anon_sym_mb] = ACTIONS(979), - [anon_sym_mB] = ACTIONS(979), - [anon_sym_Mb] = ACTIONS(979), - [anon_sym_MB] = ACTIONS(979), - [anon_sym_gb] = ACTIONS(979), - [anon_sym_gB] = ACTIONS(979), - [anon_sym_Gb] = ACTIONS(979), - [anon_sym_GB] = ACTIONS(979), - [anon_sym_tb] = ACTIONS(979), - [anon_sym_tB] = ACTIONS(979), - [anon_sym_Tb] = ACTIONS(979), - [anon_sym_TB] = ACTIONS(979), - [anon_sym_pb] = ACTIONS(979), - [anon_sym_pB] = ACTIONS(979), - [anon_sym_Pb] = ACTIONS(979), - [anon_sym_PB] = ACTIONS(979), - [anon_sym_eb] = ACTIONS(979), - [anon_sym_eB] = ACTIONS(979), - [anon_sym_Eb] = ACTIONS(979), - [anon_sym_EB] = ACTIONS(979), - [anon_sym_kib] = ACTIONS(979), - [anon_sym_kiB] = ACTIONS(979), - [anon_sym_kIB] = ACTIONS(979), - [anon_sym_kIb] = ACTIONS(979), - [anon_sym_Kib] = ACTIONS(979), - [anon_sym_KIb] = ACTIONS(979), - [anon_sym_KIB] = ACTIONS(979), - [anon_sym_mib] = ACTIONS(979), - [anon_sym_miB] = ACTIONS(979), - [anon_sym_mIB] = ACTIONS(979), - [anon_sym_mIb] = ACTIONS(979), - [anon_sym_Mib] = ACTIONS(979), - [anon_sym_MIb] = ACTIONS(979), - [anon_sym_MIB] = ACTIONS(979), - [anon_sym_gib] = ACTIONS(979), - [anon_sym_giB] = ACTIONS(979), - [anon_sym_gIB] = ACTIONS(979), - [anon_sym_gIb] = ACTIONS(979), - [anon_sym_Gib] = ACTIONS(979), - [anon_sym_GIb] = ACTIONS(979), - [anon_sym_GIB] = ACTIONS(979), - [anon_sym_tib] = ACTIONS(979), - [anon_sym_tiB] = ACTIONS(979), - [anon_sym_tIB] = ACTIONS(979), - [anon_sym_tIb] = ACTIONS(979), - [anon_sym_Tib] = ACTIONS(979), - [anon_sym_TIb] = ACTIONS(979), - [anon_sym_TIB] = ACTIONS(979), - [anon_sym_pib] = ACTIONS(979), - [anon_sym_piB] = ACTIONS(979), - [anon_sym_pIB] = ACTIONS(979), - [anon_sym_pIb] = ACTIONS(979), - [anon_sym_Pib] = ACTIONS(979), - [anon_sym_PIb] = ACTIONS(979), - [anon_sym_PIB] = ACTIONS(979), - [anon_sym_eib] = ACTIONS(979), - [anon_sym_eiB] = ACTIONS(979), - [anon_sym_eIB] = ACTIONS(979), - [anon_sym_eIb] = ACTIONS(979), - [anon_sym_Eib] = ACTIONS(979), - [anon_sym_EIb] = ACTIONS(979), - [anon_sym_EIB] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(213), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym__str_single_quotes] = ACTIONS(213), - [sym__str_back_ticks] = ACTIONS(213), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), - [anon_sym_err_GT] = ACTIONS(213), - [anon_sym_out_GT] = ACTIONS(213), - [anon_sym_e_GT] = ACTIONS(213), - [anon_sym_o_GT] = ACTIONS(213), - [anon_sym_err_PLUSout_GT] = ACTIONS(213), - [anon_sym_out_PLUSerr_GT] = ACTIONS(213), - [anon_sym_o_PLUSe_GT] = ACTIONS(213), - [anon_sym_e_PLUSo_GT] = ACTIONS(213), - [aux_sym_unquoted_token1] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(105), - }, - [299] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_null] = ACTIONS(171), - [anon_sym_true] = ACTIONS(171), - [anon_sym_false] = ACTIONS(171), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(171), - [aux_sym__val_number_token2] = ACTIONS(171), - [aux_sym__val_number_token3] = ACTIONS(171), - [aux_sym__val_number_token4] = ACTIONS(171), - [aux_sym__val_number_token5] = ACTIONS(171), - [aux_sym__val_number_token6] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym__str_single_quotes] = ACTIONS(171), - [sym__str_back_ticks] = ACTIONS(171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(171), - [anon_sym_err_GT] = ACTIONS(171), - [anon_sym_out_GT] = ACTIONS(171), - [anon_sym_e_GT] = ACTIONS(171), - [anon_sym_o_GT] = ACTIONS(171), - [anon_sym_err_PLUSout_GT] = ACTIONS(171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(171), - [anon_sym_o_PLUSe_GT] = ACTIONS(171), - [anon_sym_e_PLUSo_GT] = ACTIONS(171), - [aux_sym_unquoted_token1] = ACTIONS(171), - [anon_sym_POUND] = ACTIONS(105), - }, [300] = { [sym_comment] = STATE(300), - [sym_identifier] = ACTIONS(148), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(981), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [sym_identifier] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token1] = ACTIONS(985), + [aux_sym__immediate_decimal_token2] = ACTIONS(987), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [301] = { [sym_comment] = STATE(301), - [sym_identifier] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(129), - [anon_sym_DASH_DASH] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(983), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(986), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(3), - }, - [302] = { - [sym_comment] = STATE(302), - [sym_identifier] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(129), - [anon_sym_DASH_DASH] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(991), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(3), - }, - [303] = { - [sym_comment] = STATE(303), - [sym_identifier] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(959), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), + [ts_builtin_sym_end] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_null] = ACTIONS(221), + [anon_sym_true] = ACTIONS(221), + [anon_sym_false] = ACTIONS(221), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(221), + [aux_sym__val_number_token2] = ACTIONS(221), + [aux_sym__val_number_token3] = ACTIONS(221), + [aux_sym__val_number_token4] = ACTIONS(221), + [aux_sym__val_number_token5] = ACTIONS(221), + [aux_sym__val_number_token6] = ACTIONS(221), + [anon_sym_ns] = ACTIONS(221), + [anon_sym_s] = ACTIONS(221), + [anon_sym_us] = ACTIONS(221), + [anon_sym_ms] = ACTIONS(221), + [anon_sym_sec] = ACTIONS(221), + [anon_sym_min] = ACTIONS(221), + [anon_sym_hr] = ACTIONS(221), + [anon_sym_day] = ACTIONS(221), + [anon_sym_wk] = ACTIONS(221), + [anon_sym_b] = ACTIONS(221), + [anon_sym_B] = ACTIONS(221), + [anon_sym_kb] = ACTIONS(221), + [anon_sym_kB] = ACTIONS(221), + [anon_sym_Kb] = ACTIONS(221), + [anon_sym_KB] = ACTIONS(221), + [anon_sym_mb] = ACTIONS(221), + [anon_sym_mB] = ACTIONS(221), + [anon_sym_Mb] = ACTIONS(221), + [anon_sym_MB] = ACTIONS(221), + [anon_sym_gb] = ACTIONS(221), + [anon_sym_gB] = ACTIONS(221), + [anon_sym_Gb] = ACTIONS(221), + [anon_sym_GB] = ACTIONS(221), + [anon_sym_tb] = ACTIONS(221), + [anon_sym_tB] = ACTIONS(221), + [anon_sym_Tb] = ACTIONS(221), + [anon_sym_TB] = ACTIONS(221), + [anon_sym_pb] = ACTIONS(221), + [anon_sym_pB] = ACTIONS(221), + [anon_sym_Pb] = ACTIONS(221), + [anon_sym_PB] = ACTIONS(221), + [anon_sym_eb] = ACTIONS(221), + [anon_sym_eB] = ACTIONS(221), + [anon_sym_Eb] = ACTIONS(221), + [anon_sym_EB] = ACTIONS(221), + [anon_sym_kib] = ACTIONS(221), + [anon_sym_kiB] = ACTIONS(221), + [anon_sym_kIB] = ACTIONS(221), + [anon_sym_kIb] = ACTIONS(221), + [anon_sym_Kib] = ACTIONS(221), + [anon_sym_KIb] = ACTIONS(221), + [anon_sym_KIB] = ACTIONS(221), + [anon_sym_mib] = ACTIONS(221), + [anon_sym_miB] = ACTIONS(221), + [anon_sym_mIB] = ACTIONS(221), + [anon_sym_mIb] = ACTIONS(221), + [anon_sym_Mib] = ACTIONS(221), + [anon_sym_MIb] = ACTIONS(221), + [anon_sym_MIB] = ACTIONS(221), + [anon_sym_gib] = ACTIONS(221), + [anon_sym_giB] = ACTIONS(221), + [anon_sym_gIB] = ACTIONS(221), + [anon_sym_gIb] = ACTIONS(221), + [anon_sym_Gib] = ACTIONS(221), + [anon_sym_GIb] = ACTIONS(221), + [anon_sym_GIB] = ACTIONS(221), + [anon_sym_tib] = ACTIONS(221), + [anon_sym_tiB] = ACTIONS(221), + [anon_sym_tIB] = ACTIONS(221), + [anon_sym_tIb] = ACTIONS(221), + [anon_sym_Tib] = ACTIONS(221), + [anon_sym_TIb] = ACTIONS(221), + [anon_sym_TIB] = ACTIONS(221), + [anon_sym_pib] = ACTIONS(221), + [anon_sym_piB] = ACTIONS(221), + [anon_sym_pIB] = ACTIONS(221), + [anon_sym_pIb] = ACTIONS(221), + [anon_sym_Pib] = ACTIONS(221), + [anon_sym_PIb] = ACTIONS(221), + [anon_sym_PIB] = ACTIONS(221), + [anon_sym_eib] = ACTIONS(221), + [anon_sym_eiB] = ACTIONS(221), + [anon_sym_eIB] = ACTIONS(221), + [anon_sym_eIb] = ACTIONS(221), + [anon_sym_Eib] = ACTIONS(221), + [anon_sym_EIb] = ACTIONS(221), + [anon_sym_EIB] = ACTIONS(221), + [anon_sym_0b] = ACTIONS(221), + [anon_sym_0o] = ACTIONS(221), + [anon_sym_0x] = ACTIONS(221), + [sym_val_date] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym__str_single_quotes] = ACTIONS(221), + [sym__str_back_ticks] = ACTIONS(221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(221), + [anon_sym_err_GT] = ACTIONS(221), + [anon_sym_out_GT] = ACTIONS(221), + [anon_sym_e_GT] = ACTIONS(221), + [anon_sym_o_GT] = ACTIONS(221), + [anon_sym_err_PLUSout_GT] = ACTIONS(221), + [anon_sym_out_PLUSerr_GT] = ACTIONS(221), + [anon_sym_o_PLUSe_GT] = ACTIONS(221), + [anon_sym_e_PLUSo_GT] = ACTIONS(221), + [aux_sym_unquoted_token1] = ACTIONS(221), + [anon_sym_POUND] = ACTIONS(105), + }, + [302] = { + [sym_comment] = STATE(302), + [sym_identifier] = ACTIONS(130), + [anon_sym_COLON] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_RBRACK] = ACTIONS(132), + [anon_sym_RPAREN] = ACTIONS(132), + [anon_sym_PIPE] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(132), + [anon_sym_DASH_DASH] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(992), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [303] = { + [sym_comment] = STATE(303), + [sym_identifier] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(994), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, [304] = { [sym_comment] = STATE(304), - [sym_identifier] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(975), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), + [sym_identifier] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(971), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [305] = { [sym_comment] = STATE(305), - [sym_identifier] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(959), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [306] = { - [sym_comment] = STATE(306), [sym_identifier] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), @@ -116130,379 +117581,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [307] = { - [sym_comment] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(221), - [anon_sym_LF] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_DOT] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_null] = ACTIONS(221), - [anon_sym_true] = ACTIONS(221), - [anon_sym_false] = ACTIONS(221), - [aux_sym__val_number_decimal_token1] = ACTIONS(221), - [aux_sym__val_number_token1] = ACTIONS(221), - [aux_sym__val_number_token2] = ACTIONS(221), - [aux_sym__val_number_token3] = ACTIONS(221), - [aux_sym__val_number_token4] = ACTIONS(221), - [aux_sym__val_number_token5] = ACTIONS(221), - [aux_sym__val_number_token6] = ACTIONS(221), - [anon_sym_ns] = ACTIONS(221), - [anon_sym_s] = ACTIONS(221), - [anon_sym_us] = ACTIONS(221), - [anon_sym_ms] = ACTIONS(221), - [anon_sym_sec] = ACTIONS(221), - [anon_sym_min] = ACTIONS(221), - [anon_sym_hr] = ACTIONS(221), - [anon_sym_day] = ACTIONS(221), - [anon_sym_wk] = ACTIONS(221), - [anon_sym_b] = ACTIONS(221), - [anon_sym_B] = ACTIONS(221), - [anon_sym_kb] = ACTIONS(221), - [anon_sym_kB] = ACTIONS(221), - [anon_sym_Kb] = ACTIONS(221), - [anon_sym_KB] = ACTIONS(221), - [anon_sym_mb] = ACTIONS(221), - [anon_sym_mB] = ACTIONS(221), - [anon_sym_Mb] = ACTIONS(221), - [anon_sym_MB] = ACTIONS(221), - [anon_sym_gb] = ACTIONS(221), - [anon_sym_gB] = ACTIONS(221), - [anon_sym_Gb] = ACTIONS(221), - [anon_sym_GB] = ACTIONS(221), - [anon_sym_tb] = ACTIONS(221), - [anon_sym_tB] = ACTIONS(221), - [anon_sym_Tb] = ACTIONS(221), - [anon_sym_TB] = ACTIONS(221), - [anon_sym_pb] = ACTIONS(221), - [anon_sym_pB] = ACTIONS(221), - [anon_sym_Pb] = ACTIONS(221), - [anon_sym_PB] = ACTIONS(221), - [anon_sym_eb] = ACTIONS(221), - [anon_sym_eB] = ACTIONS(221), - [anon_sym_Eb] = ACTIONS(221), - [anon_sym_EB] = ACTIONS(221), - [anon_sym_kib] = ACTIONS(221), - [anon_sym_kiB] = ACTIONS(221), - [anon_sym_kIB] = ACTIONS(221), - [anon_sym_kIb] = ACTIONS(221), - [anon_sym_Kib] = ACTIONS(221), - [anon_sym_KIb] = ACTIONS(221), - [anon_sym_KIB] = ACTIONS(221), - [anon_sym_mib] = ACTIONS(221), - [anon_sym_miB] = ACTIONS(221), - [anon_sym_mIB] = ACTIONS(221), - [anon_sym_mIb] = ACTIONS(221), - [anon_sym_Mib] = ACTIONS(221), - [anon_sym_MIb] = ACTIONS(221), - [anon_sym_MIB] = ACTIONS(221), - [anon_sym_gib] = ACTIONS(221), - [anon_sym_giB] = ACTIONS(221), - [anon_sym_gIB] = ACTIONS(221), - [anon_sym_gIb] = ACTIONS(221), - [anon_sym_Gib] = ACTIONS(221), - [anon_sym_GIb] = ACTIONS(221), - [anon_sym_GIB] = ACTIONS(221), - [anon_sym_tib] = ACTIONS(221), - [anon_sym_tiB] = ACTIONS(221), - [anon_sym_tIB] = ACTIONS(221), - [anon_sym_tIb] = ACTIONS(221), - [anon_sym_Tib] = ACTIONS(221), - [anon_sym_TIb] = ACTIONS(221), - [anon_sym_TIB] = ACTIONS(221), - [anon_sym_pib] = ACTIONS(221), - [anon_sym_piB] = ACTIONS(221), - [anon_sym_pIB] = ACTIONS(221), - [anon_sym_pIb] = ACTIONS(221), - [anon_sym_Pib] = ACTIONS(221), - [anon_sym_PIb] = ACTIONS(221), - [anon_sym_PIB] = ACTIONS(221), - [anon_sym_eib] = ACTIONS(221), - [anon_sym_eiB] = ACTIONS(221), - [anon_sym_eIB] = ACTIONS(221), - [anon_sym_eIb] = ACTIONS(221), - [anon_sym_Eib] = ACTIONS(221), - [anon_sym_EIb] = ACTIONS(221), - [anon_sym_EIB] = ACTIONS(221), - [anon_sym_0b] = ACTIONS(221), - [anon_sym_0o] = ACTIONS(221), - [anon_sym_0x] = ACTIONS(221), - [sym_val_date] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(221), - [sym__str_single_quotes] = ACTIONS(221), - [sym__str_back_ticks] = ACTIONS(221), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(221), - [anon_sym_err_GT] = ACTIONS(221), - [anon_sym_out_GT] = ACTIONS(221), - [anon_sym_e_GT] = ACTIONS(221), - [anon_sym_o_GT] = ACTIONS(221), - [anon_sym_err_PLUSout_GT] = ACTIONS(221), - [anon_sym_out_PLUSerr_GT] = ACTIONS(221), - [anon_sym_o_PLUSe_GT] = ACTIONS(221), - [anon_sym_e_PLUSo_GT] = ACTIONS(221), - [aux_sym_unquoted_token1] = ACTIONS(221), + [306] = { + [sym_comment] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_null] = ACTIONS(187), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(187), + [aux_sym__val_number_token2] = ACTIONS(187), + [aux_sym__val_number_token3] = ACTIONS(187), + [aux_sym__val_number_token4] = ACTIONS(187), + [aux_sym__val_number_token5] = ACTIONS(187), + [aux_sym__val_number_token6] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym__str_single_quotes] = ACTIONS(187), + [sym__str_back_ticks] = ACTIONS(187), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(187), + [anon_sym_err_GT] = ACTIONS(187), + [anon_sym_out_GT] = ACTIONS(187), + [anon_sym_e_GT] = ACTIONS(187), + [anon_sym_o_GT] = ACTIONS(187), + [anon_sym_err_PLUSout_GT] = ACTIONS(187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(187), + [anon_sym_o_PLUSe_GT] = ACTIONS(187), + [anon_sym_e_PLUSo_GT] = ACTIONS(187), + [aux_sym_unquoted_token1] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(105), }, - [308] = { - [sym_comment] = STATE(308), - [sym_identifier] = ACTIONS(148), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(1000), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [309] = { - [sym_comment] = STATE(309), - [sym_identifier] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(975), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [310] = { - [sym_comment] = STATE(310), + [307] = { + [sym_comment] = STATE(307), [sym_identifier] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACK] = ACTIONS(117), [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), [anon_sym_DOT_DOT_DOT] = ACTIONS(117), [anon_sym_DASH_DASH] = ACTIONS(117), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(1000), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(117), [anon_sym_PLUS_PLUS] = ACTIONS(117), @@ -116528,8 +117741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(1005), - [aux_sym__immediate_decimal_token2] = ACTIONS(1007), + [aux_sym__immediate_decimal_token2] = ACTIONS(979), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -116607,16 +117819,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [311] = { - [sym_comment] = STATE(311), + [308] = { + [sym_comment] = STATE(308), [sym_identifier] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACK] = ACTIONS(117), [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), [anon_sym_DOT_DOT_DOT] = ACTIONS(117), @@ -116649,7 +117861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(967), + [aux_sym__immediate_decimal_token2] = ACTIONS(979), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -116727,15 +117939,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [312] = { - [sym_comment] = STATE(312), + [309] = { + [sym_comment] = STATE(309), + [sym_identifier] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(1003), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [310] = { + [sym_comment] = STATE(310), + [sym_identifier] = ACTIONS(130), + [anon_sym_COLON] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_RBRACK] = ACTIONS(132), + [anon_sym_RPAREN] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(132), + [anon_sym_DASH_DASH] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(1008), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [311] = { + [sym_comment] = STATE(311), [sym_identifier] = ACTIONS(107), [anon_sym_COLON] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), @@ -116768,8 +118220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(1009), - [aux_sym__immediate_decimal_token2] = ACTIONS(1011), + [aux_sym__immediate_decimal_token2] = ACTIONS(963), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -116850,8 +118301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [313] = { - [sym_comment] = STATE(313), + [312] = { + [sym_comment] = STATE(312), [sym_identifier] = ACTIONS(107), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_RBRACK] = ACTIONS(109), @@ -116888,8 +118339,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(1013), - [aux_sym__immediate_decimal_token2] = ACTIONS(1015), + [aux_sym__immediate_decimal_token1] = ACTIONS(1010), + [aux_sym__immediate_decimal_token2] = ACTIONS(1012), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -116970,128 +118421,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, + [313] = { + [sym_comment] = STATE(313), + [ts_builtin_sym_end] = ACTIONS(215), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(213), + [aux_sym__val_number_token2] = ACTIONS(213), + [aux_sym__val_number_token3] = ACTIONS(213), + [aux_sym__val_number_token4] = ACTIONS(213), + [aux_sym__val_number_token5] = ACTIONS(213), + [aux_sym__val_number_token6] = ACTIONS(213), + [anon_sym_ns] = ACTIONS(1014), + [anon_sym_s] = ACTIONS(1014), + [anon_sym_us] = ACTIONS(1014), + [anon_sym_ms] = ACTIONS(1014), + [anon_sym_sec] = ACTIONS(1014), + [anon_sym_min] = ACTIONS(1014), + [anon_sym_hr] = ACTIONS(1014), + [anon_sym_day] = ACTIONS(1014), + [anon_sym_wk] = ACTIONS(1014), + [anon_sym_b] = ACTIONS(1016), + [anon_sym_B] = ACTIONS(1016), + [anon_sym_kb] = ACTIONS(1016), + [anon_sym_kB] = ACTIONS(1016), + [anon_sym_Kb] = ACTIONS(1016), + [anon_sym_KB] = ACTIONS(1016), + [anon_sym_mb] = ACTIONS(1016), + [anon_sym_mB] = ACTIONS(1016), + [anon_sym_Mb] = ACTIONS(1016), + [anon_sym_MB] = ACTIONS(1016), + [anon_sym_gb] = ACTIONS(1016), + [anon_sym_gB] = ACTIONS(1016), + [anon_sym_Gb] = ACTIONS(1016), + [anon_sym_GB] = ACTIONS(1016), + [anon_sym_tb] = ACTIONS(1016), + [anon_sym_tB] = ACTIONS(1016), + [anon_sym_Tb] = ACTIONS(1016), + [anon_sym_TB] = ACTIONS(1016), + [anon_sym_pb] = ACTIONS(1016), + [anon_sym_pB] = ACTIONS(1016), + [anon_sym_Pb] = ACTIONS(1016), + [anon_sym_PB] = ACTIONS(1016), + [anon_sym_eb] = ACTIONS(1016), + [anon_sym_eB] = ACTIONS(1016), + [anon_sym_Eb] = ACTIONS(1016), + [anon_sym_EB] = ACTIONS(1016), + [anon_sym_kib] = ACTIONS(1016), + [anon_sym_kiB] = ACTIONS(1016), + [anon_sym_kIB] = ACTIONS(1016), + [anon_sym_kIb] = ACTIONS(1016), + [anon_sym_Kib] = ACTIONS(1016), + [anon_sym_KIb] = ACTIONS(1016), + [anon_sym_KIB] = ACTIONS(1016), + [anon_sym_mib] = ACTIONS(1016), + [anon_sym_miB] = ACTIONS(1016), + [anon_sym_mIB] = ACTIONS(1016), + [anon_sym_mIb] = ACTIONS(1016), + [anon_sym_Mib] = ACTIONS(1016), + [anon_sym_MIb] = ACTIONS(1016), + [anon_sym_MIB] = ACTIONS(1016), + [anon_sym_gib] = ACTIONS(1016), + [anon_sym_giB] = ACTIONS(1016), + [anon_sym_gIB] = ACTIONS(1016), + [anon_sym_gIb] = ACTIONS(1016), + [anon_sym_Gib] = ACTIONS(1016), + [anon_sym_GIb] = ACTIONS(1016), + [anon_sym_GIB] = ACTIONS(1016), + [anon_sym_tib] = ACTIONS(1016), + [anon_sym_tiB] = ACTIONS(1016), + [anon_sym_tIB] = ACTIONS(1016), + [anon_sym_tIb] = ACTIONS(1016), + [anon_sym_Tib] = ACTIONS(1016), + [anon_sym_TIb] = ACTIONS(1016), + [anon_sym_TIB] = ACTIONS(1016), + [anon_sym_pib] = ACTIONS(1016), + [anon_sym_piB] = ACTIONS(1016), + [anon_sym_pIB] = ACTIONS(1016), + [anon_sym_pIb] = ACTIONS(1016), + [anon_sym_Pib] = ACTIONS(1016), + [anon_sym_PIb] = ACTIONS(1016), + [anon_sym_PIB] = ACTIONS(1016), + [anon_sym_eib] = ACTIONS(1016), + [anon_sym_eiB] = ACTIONS(1016), + [anon_sym_eIB] = ACTIONS(1016), + [anon_sym_eIb] = ACTIONS(1016), + [anon_sym_Eib] = ACTIONS(1016), + [anon_sym_EIb] = ACTIONS(1016), + [anon_sym_EIB] = ACTIONS(1016), + [anon_sym_0b] = ACTIONS(213), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [sym__str_single_quotes] = ACTIONS(213), + [sym__str_back_ticks] = ACTIONS(213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), + [anon_sym_err_GT] = ACTIONS(213), + [anon_sym_out_GT] = ACTIONS(213), + [anon_sym_e_GT] = ACTIONS(213), + [anon_sym_o_GT] = ACTIONS(213), + [anon_sym_err_PLUSout_GT] = ACTIONS(213), + [anon_sym_out_PLUSerr_GT] = ACTIONS(213), + [anon_sym_o_PLUSe_GT] = ACTIONS(213), + [anon_sym_e_PLUSo_GT] = ACTIONS(213), + [aux_sym_unquoted_token1] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(105), + }, [314] = { [sym_comment] = STATE(314), - [sym_identifier] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_PIPE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(117), - [anon_sym_DASH_DASH] = ACTIONS(117), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), - [anon_sym_and] = ACTIONS(115), - [anon_sym_xor] = ACTIONS(115), - [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(963), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [315] = { - [sym_comment] = STATE(315), [sym_identifier] = ACTIONS(107), [anon_sym_COLON] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), @@ -117130,6 +118581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), + [aux_sym__immediate_decimal_token2] = ACTIONS(967), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -117209,9 +118661,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EIB] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [316] = { - [sym_comment] = STATE(316), + [315] = { + [sym_comment] = STATE(315), [sym_identifier] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACK] = ACTIONS(117), [anon_sym_RPAREN] = ACTIONS(117), @@ -117221,7 +118674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(117), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(1018), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(117), [anon_sym_PLUS_PLUS] = ACTIONS(117), @@ -117247,7 +118700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(1007), + [aux_sym__immediate_decimal_token2] = ACTIONS(971), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -117328,11 +118781,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [317] = { - [sym_comment] = STATE(317), + [316] = { + [sym_comment] = STATE(316), [sym_identifier] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), [anon_sym_DOT_DOT_DOT] = ACTIONS(117), @@ -117365,8 +118819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(1017), - [aux_sym__immediate_decimal_token2] = ACTIONS(1019), + [aux_sym__immediate_decimal_token2] = ACTIONS(987), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -117447,12 +118900,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, + [317] = { + [sym_comment] = STATE(317), + [sym_identifier] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(159), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_RBRACK] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(3), + }, [318] = { [sym_comment] = STATE(318), + [sym_identifier] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [319] = { + [sym_comment] = STATE(319), [sym_identifier] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_RBRACK] = ACTIONS(109), [anon_sym_RPAREN] = ACTIONS(109), + [anon_sym_PIPE] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), @@ -117485,7 +119178,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1015), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -117563,368 +119255,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [319] = { - [sym_comment] = STATE(319), - [sym_identifier] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(117), - [anon_sym_DASH_DASH] = ACTIONS(117), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), - [anon_sym_and] = ACTIONS(115), - [anon_sym_xor] = ACTIONS(115), - [anon_sym_or] = ACTIONS(115), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [320] = { [sym_comment] = STATE(320), - [sym_identifier] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_PIPE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(117), - [anon_sym_DASH_DASH] = ACTIONS(117), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), - [anon_sym_and] = ACTIONS(115), - [anon_sym_xor] = ACTIONS(115), - [anon_sym_or] = ACTIONS(115), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [321] = { - [sym_comment] = STATE(321), - [sym_identifier] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_RBRACK] = ACTIONS(167), - [anon_sym_RPAREN] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(167), - [anon_sym_DASH_DASH] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(3), - }, - [322] = { - [sym_comment] = STATE(322), [sym_identifier] = ACTIONS(107), [anon_sym_COLON] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), @@ -117961,7 +119295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1011), + [aux_sym__immediate_decimal_token2] = ACTIONS(983), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -118042,164 +119376,760 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, + [321] = { + [sym_comment] = STATE(321), + [sym_identifier] = ACTIONS(187), + [anon_sym_COLON] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(3), + }, + [322] = { + [sym_comment] = STATE(322), + [sym_identifier] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(1023), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, [323] = { [sym_comment] = STATE(323), - [sym_identifier] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), + [sym_identifier] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [324] = { [sym_comment] = STATE(324), - [sym_identifier] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), + [sym_identifier] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_RBRACK] = ACTIONS(132), + [anon_sym_RPAREN] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(132), + [anon_sym_DASH_DASH] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(1028), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [325] = { + [sym_comment] = STATE(325), + [sym_identifier] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(987), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [326] = { + [sym_comment] = STATE(326), + [sym_identifier] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [327] = { + [sym_comment] = STATE(327), + [anon_sym_SEMI] = ACTIONS(107), + [anon_sym_LF] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_RPAREN] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(107), [anon_sym_GT] = ACTIONS(107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_DASH_DASH] = ACTIONS(109), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), + [anon_sym_QMARK2] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(107), + [anon_sym_PLUS_PLUS] = ACTIONS(107), [anon_sym_SLASH] = ACTIONS(107), [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), + [anon_sym_SLASH_SLASH] = ACTIONS(107), [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), + [anon_sym_bit_DASHshl] = ACTIONS(107), + [anon_sym_bit_DASHshr] = ACTIONS(107), + [anon_sym_EQ_EQ] = ACTIONS(107), + [anon_sym_BANG_EQ] = ACTIONS(107), [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), + [anon_sym_LT_EQ] = ACTIONS(107), + [anon_sym_GT_EQ] = ACTIONS(107), + [anon_sym_not_DASHin] = ACTIONS(107), + [anon_sym_starts_DASHwith] = ACTIONS(107), + [anon_sym_ends_DASHwith] = ACTIONS(107), + [anon_sym_EQ_TILDE] = ACTIONS(107), + [anon_sym_BANG_TILDE] = ACTIONS(107), + [anon_sym_bit_DASHand] = ACTIONS(107), + [anon_sym_bit_DASHxor] = ACTIONS(107), + [anon_sym_bit_DASHor] = ACTIONS(107), [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1011), + [aux_sym__immediate_decimal_token1] = ACTIONS(1033), + [aux_sym__immediate_decimal_token2] = ACTIONS(1035), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -118277,249 +120207,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [325] = { - [sym_comment] = STATE(325), - [sym_identifier] = ACTIONS(171), - [anon_sym_COLON] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(3), - }, - [326] = { - [sym_comment] = STATE(326), - [sym_identifier] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(129), - [anon_sym_DASH_DASH] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(1031), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(105), }, - [327] = { - [sym_comment] = STATE(327), + [328] = { + [sym_comment] = STATE(328), [sym_identifier] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), @@ -118637,127 +120328,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [328] = { - [sym_comment] = STATE(328), - [sym_identifier] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_RBRACK] = ACTIONS(167), - [anon_sym_RPAREN] = ACTIONS(167), - [anon_sym_PIPE] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(167), - [anon_sym_DASH_DASH] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(3), - }, [329] = { [sym_comment] = STATE(329), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_QMARK2] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token1] = ACTIONS(1037), + [aux_sym__immediate_decimal_token2] = ACTIONS(1039), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [330] = { + [sym_comment] = STATE(330), + [sym_identifier] = ACTIONS(187), + [anon_sym_COLON] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(3), + }, + [331] = { + [sym_comment] = STATE(331), [sym_identifier] = ACTIONS(107), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_PIPE] = ACTIONS(109), @@ -118793,8 +120603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(1033), - [aux_sym__immediate_decimal_token2] = ACTIONS(1035), + [aux_sym__immediate_decimal_token1] = ACTIONS(1045), + [aux_sym__immediate_decimal_token2] = ACTIONS(1047), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -118875,8 +120685,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [330] = { - [sym_comment] = STATE(330), + [332] = { + [sym_comment] = STATE(332), + [sym_identifier] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(1049), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [333] = { + [sym_comment] = STATE(333), + [sym_identifier] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [334] = { + [sym_comment] = STATE(334), [sym_identifier] = ACTIONS(107), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_RBRACK] = ACTIONS(109), @@ -118887,7 +120935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(109), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(109), [anon_sym_PLUS_PLUS] = ACTIONS(109), @@ -118913,7 +120961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1015), + [aux_sym__immediate_decimal_token2] = ACTIONS(1012), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -118994,641 +121042,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [331] = { - [sym_comment] = STATE(331), - [sym_identifier] = ACTIONS(127), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(129), - [anon_sym_DASH_DASH] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(1043), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(3), - }, - [332] = { - [sym_comment] = STATE(332), - [sym_identifier] = ACTIONS(148), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [333] = { - [sym_comment] = STATE(333), - [sym_identifier] = ACTIONS(148), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(1045), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [334] = { - [sym_comment] = STATE(334), - [sym_identifier] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(1047), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, [335] = { [sym_comment] = STATE(335), - [sym_identifier] = ACTIONS(148), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [336] = { - [sym_comment] = STATE(336), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LF] = ACTIONS(117), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_RPAREN] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(115), + [sym_identifier] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1051), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_QMARK2] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), [anon_sym_SLASH] = ACTIONS(115), [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(115), - [anon_sym_bit_DASHshr] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_not_DASHin] = ACTIONS(115), - [anon_sym_starts_DASHwith] = ACTIONS(115), - [anon_sym_ends_DASHwith] = ACTIONS(115), - [anon_sym_EQ_TILDE] = ACTIONS(115), - [anon_sym_BANG_TILDE] = ACTIONS(115), - [anon_sym_bit_DASHand] = ACTIONS(115), - [anon_sym_bit_DASHxor] = ACTIONS(115), - [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(1049), - [aux_sym__immediate_decimal_token2] = ACTIONS(1051), + [aux_sym__immediate_decimal_token2] = ACTIONS(998), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -119706,167 +121158,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [336] = { + [sym_comment] = STATE(336), + [sym_identifier] = ACTIONS(130), + [anon_sym_COLON] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_PIPE] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(132), + [anon_sym_DASH_DASH] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(1057), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), }, [337] = { [sym_comment] = STATE(337), - [sym_identifier] = ACTIONS(171), - [anon_sym_COLON] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), + [sym_identifier] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(159), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_RBRACK] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(3), }, [338] = { [sym_comment] = STATE(338), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_COLON] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), + [sym_identifier] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token1] = ACTIONS(1059), + [aux_sym__immediate_decimal_token2] = ACTIONS(1061), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [339] = { + [sym_comment] = STATE(339), + [sym_identifier] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(109), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_DOT2] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(107), - [anon_sym_QMARK2] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(109), + [anon_sym_PLUS_PLUS] = ACTIONS(109), [anon_sym_SLASH] = ACTIONS(107), [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(109), + [anon_sym_bit_DASHshr] = ACTIONS(109), + [anon_sym_EQ_EQ] = ACTIONS(109), + [anon_sym_BANG_EQ] = ACTIONS(109), [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(109), + [anon_sym_not_DASHin] = ACTIONS(109), + [anon_sym_starts_DASHwith] = ACTIONS(109), + [anon_sym_ends_DASHwith] = ACTIONS(109), + [anon_sym_EQ_TILDE] = ACTIONS(109), + [anon_sym_BANG_TILDE] = ACTIONS(109), + [anon_sym_bit_DASHand] = ACTIONS(109), + [anon_sym_bit_DASHxor] = ACTIONS(109), + [anon_sym_bit_DASHor] = ACTIONS(109), [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(1055), - [aux_sym__immediate_decimal_token2] = ACTIONS(1057), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -119944,720 +121634,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [339] = { - [sym_comment] = STATE(339), - [sym_identifier] = ACTIONS(171), - [anon_sym_COLON] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1026), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, [340] = { [sym_comment] = STATE(340), - [sym_identifier] = ACTIONS(127), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(129), - [anon_sym_DASH_DASH] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(1062), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(3), - }, - [341] = { - [sym_comment] = STATE(341), - [sym_identifier] = ACTIONS(171), - [anon_sym_COLON] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_POUND] = ACTIONS(3), - }, - [342] = { - [sym_comment] = STATE(342), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_COLON] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_QMARK2] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1057), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [343] = { - [sym_comment] = STATE(343), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_COLON] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_QMARK2] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1057), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [344] = { - [sym_comment] = STATE(344), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(1067), - [aux_sym__immediate_decimal_token2] = ACTIONS(1069), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), + [sym_identifier] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), }, - [345] = { - [sym_comment] = STATE(345), + [341] = { + [sym_comment] = STATE(341), [sym_identifier] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_PIPE] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(109), @@ -120692,6 +121792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), + [aux_sym__immediate_decimal_token2] = ACTIONS(1047), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -120772,246 +121873,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [346] = { - [sym_comment] = STATE(346), - [sym_identifier] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_RBRACK] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_PIPE] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(213), - [anon_sym_SLASH_SLASH] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(215), - [anon_sym_bit_DASHshr] = ACTIONS(215), - [anon_sym_EQ_EQ] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(215), - [anon_sym_GT_EQ] = ACTIONS(215), - [anon_sym_not_DASHin] = ACTIONS(215), - [anon_sym_starts_DASHwith] = ACTIONS(215), - [anon_sym_ends_DASHwith] = ACTIONS(215), - [anon_sym_EQ_TILDE] = ACTIONS(215), - [anon_sym_BANG_TILDE] = ACTIONS(215), - [anon_sym_bit_DASHand] = ACTIONS(215), - [anon_sym_bit_DASHxor] = ACTIONS(215), - [anon_sym_bit_DASHor] = ACTIONS(215), - [anon_sym_and] = ACTIONS(213), - [anon_sym_xor] = ACTIONS(213), - [anon_sym_or] = ACTIONS(213), - [anon_sym_ns] = ACTIONS(1071), - [anon_sym_s] = ACTIONS(1071), - [anon_sym_us] = ACTIONS(1071), - [anon_sym_ms] = ACTIONS(1071), - [anon_sym_sec] = ACTIONS(1071), - [anon_sym_min] = ACTIONS(1071), - [anon_sym_hr] = ACTIONS(1071), - [anon_sym_day] = ACTIONS(1071), - [anon_sym_wk] = ACTIONS(1071), - [anon_sym_b] = ACTIONS(1073), - [anon_sym_B] = ACTIONS(1073), - [anon_sym_kb] = ACTIONS(1073), - [anon_sym_kB] = ACTIONS(1073), - [anon_sym_Kb] = ACTIONS(1073), - [anon_sym_KB] = ACTIONS(1073), - [anon_sym_mb] = ACTIONS(1073), - [anon_sym_mB] = ACTIONS(1073), - [anon_sym_Mb] = ACTIONS(1073), - [anon_sym_MB] = ACTIONS(1073), - [anon_sym_gb] = ACTIONS(1073), - [anon_sym_gB] = ACTIONS(1073), - [anon_sym_Gb] = ACTIONS(1073), - [anon_sym_GB] = ACTIONS(1073), - [anon_sym_tb] = ACTIONS(1073), - [anon_sym_tB] = ACTIONS(1073), - [anon_sym_Tb] = ACTIONS(1073), - [anon_sym_TB] = ACTIONS(1073), - [anon_sym_pb] = ACTIONS(1073), - [anon_sym_pB] = ACTIONS(1073), - [anon_sym_Pb] = ACTIONS(1073), - [anon_sym_PB] = ACTIONS(1073), - [anon_sym_eb] = ACTIONS(1073), - [anon_sym_eB] = ACTIONS(1073), - [anon_sym_Eb] = ACTIONS(1073), - [anon_sym_EB] = ACTIONS(1073), - [anon_sym_kib] = ACTIONS(1073), - [anon_sym_kiB] = ACTIONS(1073), - [anon_sym_kIB] = ACTIONS(1073), - [anon_sym_kIb] = ACTIONS(1073), - [anon_sym_Kib] = ACTIONS(1073), - [anon_sym_KIb] = ACTIONS(1073), - [anon_sym_KIB] = ACTIONS(1073), - [anon_sym_mib] = ACTIONS(1073), - [anon_sym_miB] = ACTIONS(1073), - [anon_sym_mIB] = ACTIONS(1073), - [anon_sym_mIb] = ACTIONS(1073), - [anon_sym_Mib] = ACTIONS(1073), - [anon_sym_MIb] = ACTIONS(1073), - [anon_sym_MIB] = ACTIONS(1073), - [anon_sym_gib] = ACTIONS(1073), - [anon_sym_giB] = ACTIONS(1073), - [anon_sym_gIB] = ACTIONS(1073), - [anon_sym_gIb] = ACTIONS(1073), - [anon_sym_Gib] = ACTIONS(1073), - [anon_sym_GIb] = ACTIONS(1073), - [anon_sym_GIB] = ACTIONS(1073), - [anon_sym_tib] = ACTIONS(1073), - [anon_sym_tiB] = ACTIONS(1073), - [anon_sym_tIB] = ACTIONS(1073), - [anon_sym_tIb] = ACTIONS(1073), - [anon_sym_Tib] = ACTIONS(1073), - [anon_sym_TIb] = ACTIONS(1073), - [anon_sym_TIB] = ACTIONS(1073), - [anon_sym_pib] = ACTIONS(1073), - [anon_sym_piB] = ACTIONS(1073), - [anon_sym_pIB] = ACTIONS(1073), - [anon_sym_pIb] = ACTIONS(1073), - [anon_sym_Pib] = ACTIONS(1073), - [anon_sym_PIb] = ACTIONS(1073), - [anon_sym_PIB] = ACTIONS(1073), - [anon_sym_eib] = ACTIONS(1073), - [anon_sym_eiB] = ACTIONS(1073), - [anon_sym_eIB] = ACTIONS(1073), - [anon_sym_eIb] = ACTIONS(1073), - [anon_sym_Eib] = ACTIONS(1073), - [anon_sym_EIb] = ACTIONS(1073), - [anon_sym_EIB] = ACTIONS(1073), + [342] = { + [sym_comment] = STATE(342), + [sym_identifier] = ACTIONS(187), + [anon_sym_COLON] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1043), [anon_sym_POUND] = ACTIONS(3), }, - [347] = { - [sym_comment] = STATE(347), - [sym_identifier] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1035), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), + [343] = { + [sym_comment] = STATE(343), + [sym_identifier] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(1063), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, - [348] = { - [sym_comment] = STATE(348), + [344] = { + [sym_comment] = STATE(344), [sym_identifier] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(117), @@ -121046,6 +122146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(1061), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -121126,44 +122227,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [349] = { - [sym_comment] = STATE(349), - [sym_identifier] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_PIPE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(117), + [345] = { + [sym_comment] = STATE(345), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(130), + [anon_sym_RPAREN] = ACTIONS(130), + [anon_sym_PIPE] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_QMARK2] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(1068), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), + }, + [346] = { + [sym_comment] = STATE(346), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), [anon_sym_GT] = ACTIONS(115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(117), - [anon_sym_DASH_DASH] = ACTIONS(117), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(1070), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_QMARK2] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), [anon_sym_SLASH] = ACTIONS(115), [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(115), [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(1019), + [aux_sym__immediate_decimal_token2] = ACTIONS(1039), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -121241,402 +122461,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [350] = { - [sym_comment] = STATE(350), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_QMARK2] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(1075), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), [anon_sym_POUND] = ACTIONS(105), }, - [351] = { - [sym_comment] = STATE(351), - [sym_identifier] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(1077), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [352] = { - [sym_comment] = STATE(352), - [sym_identifier] = ACTIONS(165), - [anon_sym_COLON] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_PIPE] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(167), - [anon_sym_DASH_DASH] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(3), - }, - [353] = { - [sym_comment] = STATE(353), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LF] = ACTIONS(117), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_RPAREN] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(115), + [347] = { + [sym_comment] = STATE(347), + [sym_identifier] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_QMARK2] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), [anon_sym_SLASH] = ACTIONS(115), [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(115), - [anon_sym_bit_DASHshr] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_not_DASHin] = ACTIONS(115), - [anon_sym_starts_DASHwith] = ACTIONS(115), - [anon_sym_ends_DASHwith] = ACTIONS(115), - [anon_sym_EQ_TILDE] = ACTIONS(115), - [anon_sym_BANG_TILDE] = ACTIONS(115), - [anon_sym_bit_DASHand] = ACTIONS(115), - [anon_sym_bit_DASHxor] = ACTIONS(115), - [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(1051), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -121714,11 +122578,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), }, - [354] = { - [sym_comment] = STATE(354), + [348] = { + [sym_comment] = STATE(348), [sym_identifier] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_PIPE] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(109), @@ -121727,7 +122593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(109), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1079), + [anon_sym_DOT2] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(109), [anon_sym_PLUS_PLUS] = ACTIONS(109), @@ -121753,7 +122619,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1035), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -121834,280 +122699,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [355] = { - [sym_comment] = STATE(355), - [sym_identifier] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_RBRACK] = ACTIONS(167), - [anon_sym_RPAREN] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(167), - [anon_sym_DASH_DASH] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(3), - }, - [356] = { - [sym_comment] = STATE(356), - [sym_identifier] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [357] = { - [sym_comment] = STATE(357), - [sym_identifier] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(117), + [349] = { + [sym_comment] = STATE(349), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), [anon_sym_GT] = ACTIONS(115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(117), - [anon_sym_DASH_DASH] = ACTIONS(117), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_QMARK2] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), [anon_sym_SLASH] = ACTIONS(115), [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(115), [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(1039), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -122185,129 +122815,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [350] = { + [sym_cell_path] = STATE(3124), + [sym_path] = STATE(2912), + [sym_comment] = STATE(350), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_LF] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1073), + [anon_sym_DOT2] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_QMARK2] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1085), + [anon_sym_SLASH_SLASH] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1091), + [anon_sym_bit_DASHshr] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1095), + [anon_sym_bit_DASHxor] = ACTIONS(1097), + [anon_sym_bit_DASHor] = ACTIONS(1099), + [anon_sym_and] = ACTIONS(1101), + [anon_sym_xor] = ACTIONS(1103), + [anon_sym_or] = ACTIONS(1105), + [anon_sym_ns] = ACTIONS(1107), + [anon_sym_s] = ACTIONS(1107), + [anon_sym_us] = ACTIONS(1107), + [anon_sym_ms] = ACTIONS(1107), + [anon_sym_sec] = ACTIONS(1107), + [anon_sym_min] = ACTIONS(1107), + [anon_sym_hr] = ACTIONS(1107), + [anon_sym_day] = ACTIONS(1107), + [anon_sym_wk] = ACTIONS(1107), + [anon_sym_b] = ACTIONS(1109), + [anon_sym_B] = ACTIONS(1109), + [anon_sym_kb] = ACTIONS(1109), + [anon_sym_kB] = ACTIONS(1109), + [anon_sym_Kb] = ACTIONS(1109), + [anon_sym_KB] = ACTIONS(1109), + [anon_sym_mb] = ACTIONS(1109), + [anon_sym_mB] = ACTIONS(1109), + [anon_sym_Mb] = ACTIONS(1109), + [anon_sym_MB] = ACTIONS(1109), + [anon_sym_gb] = ACTIONS(1109), + [anon_sym_gB] = ACTIONS(1109), + [anon_sym_Gb] = ACTIONS(1109), + [anon_sym_GB] = ACTIONS(1109), + [anon_sym_tb] = ACTIONS(1109), + [anon_sym_tB] = ACTIONS(1109), + [anon_sym_Tb] = ACTIONS(1109), + [anon_sym_TB] = ACTIONS(1109), + [anon_sym_pb] = ACTIONS(1109), + [anon_sym_pB] = ACTIONS(1109), + [anon_sym_Pb] = ACTIONS(1109), + [anon_sym_PB] = ACTIONS(1109), + [anon_sym_eb] = ACTIONS(1109), + [anon_sym_eB] = ACTIONS(1109), + [anon_sym_Eb] = ACTIONS(1109), + [anon_sym_EB] = ACTIONS(1109), + [anon_sym_kib] = ACTIONS(1109), + [anon_sym_kiB] = ACTIONS(1109), + [anon_sym_kIB] = ACTIONS(1109), + [anon_sym_kIb] = ACTIONS(1109), + [anon_sym_Kib] = ACTIONS(1109), + [anon_sym_KIb] = ACTIONS(1109), + [anon_sym_KIB] = ACTIONS(1109), + [anon_sym_mib] = ACTIONS(1109), + [anon_sym_miB] = ACTIONS(1109), + [anon_sym_mIB] = ACTIONS(1109), + [anon_sym_mIb] = ACTIONS(1109), + [anon_sym_Mib] = ACTIONS(1109), + [anon_sym_MIb] = ACTIONS(1109), + [anon_sym_MIB] = ACTIONS(1109), + [anon_sym_gib] = ACTIONS(1109), + [anon_sym_giB] = ACTIONS(1109), + [anon_sym_gIB] = ACTIONS(1109), + [anon_sym_gIb] = ACTIONS(1109), + [anon_sym_Gib] = ACTIONS(1109), + [anon_sym_GIb] = ACTIONS(1109), + [anon_sym_GIB] = ACTIONS(1109), + [anon_sym_tib] = ACTIONS(1109), + [anon_sym_tiB] = ACTIONS(1109), + [anon_sym_tIB] = ACTIONS(1109), + [anon_sym_tIb] = ACTIONS(1109), + [anon_sym_Tib] = ACTIONS(1109), + [anon_sym_TIb] = ACTIONS(1109), + [anon_sym_TIB] = ACTIONS(1109), + [anon_sym_pib] = ACTIONS(1109), + [anon_sym_piB] = ACTIONS(1109), + [anon_sym_pIB] = ACTIONS(1109), + [anon_sym_pIb] = ACTIONS(1109), + [anon_sym_Pib] = ACTIONS(1109), + [anon_sym_PIb] = ACTIONS(1109), + [anon_sym_PIB] = ACTIONS(1109), + [anon_sym_eib] = ACTIONS(1109), + [anon_sym_eiB] = ACTIONS(1109), + [anon_sym_eIB] = ACTIONS(1109), + [anon_sym_eIb] = ACTIONS(1109), + [anon_sym_Eib] = ACTIONS(1109), + [anon_sym_EIb] = ACTIONS(1109), + [anon_sym_EIB] = ACTIONS(1109), + [anon_sym_POUND] = ACTIONS(105), + }, + [351] = { + [sym_comment] = STATE(351), + [sym_identifier] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, - [358] = { - [sym_cell_path] = STATE(3038), - [sym_path] = STATE(2832), - [sym_comment] = STATE(358), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LF] = ACTIONS(1084), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_DOT2] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_QMARK2] = ACTIONS(1096), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1094), - [anon_sym_mod] = ACTIONS(1094), - [anon_sym_SLASH_SLASH] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_bit_DASHshl] = ACTIONS(1100), - [anon_sym_bit_DASHshr] = ACTIONS(1100), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [anon_sym_BANG_EQ] = ACTIONS(1086), - [anon_sym_LT2] = ACTIONS(1086), - [anon_sym_LT_EQ] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1086), - [anon_sym_not_DASHin] = ACTIONS(1090), - [anon_sym_starts_DASHwith] = ACTIONS(1090), - [anon_sym_ends_DASHwith] = ACTIONS(1090), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1104), - [anon_sym_bit_DASHxor] = ACTIONS(1106), - [anon_sym_bit_DASHor] = ACTIONS(1108), - [anon_sym_and] = ACTIONS(1110), - [anon_sym_xor] = ACTIONS(1112), - [anon_sym_or] = ACTIONS(1114), - [anon_sym_ns] = ACTIONS(1116), - [anon_sym_s] = ACTIONS(1116), - [anon_sym_us] = ACTIONS(1116), - [anon_sym_ms] = ACTIONS(1116), - [anon_sym_sec] = ACTIONS(1116), - [anon_sym_min] = ACTIONS(1116), - [anon_sym_hr] = ACTIONS(1116), - [anon_sym_day] = ACTIONS(1116), - [anon_sym_wk] = ACTIONS(1116), - [anon_sym_b] = ACTIONS(1118), - [anon_sym_B] = ACTIONS(1118), - [anon_sym_kb] = ACTIONS(1118), - [anon_sym_kB] = ACTIONS(1118), - [anon_sym_Kb] = ACTIONS(1118), - [anon_sym_KB] = ACTIONS(1118), - [anon_sym_mb] = ACTIONS(1118), - [anon_sym_mB] = ACTIONS(1118), - [anon_sym_Mb] = ACTIONS(1118), - [anon_sym_MB] = ACTIONS(1118), - [anon_sym_gb] = ACTIONS(1118), - [anon_sym_gB] = ACTIONS(1118), - [anon_sym_Gb] = ACTIONS(1118), - [anon_sym_GB] = ACTIONS(1118), - [anon_sym_tb] = ACTIONS(1118), - [anon_sym_tB] = ACTIONS(1118), - [anon_sym_Tb] = ACTIONS(1118), - [anon_sym_TB] = ACTIONS(1118), - [anon_sym_pb] = ACTIONS(1118), - [anon_sym_pB] = ACTIONS(1118), - [anon_sym_Pb] = ACTIONS(1118), - [anon_sym_PB] = ACTIONS(1118), - [anon_sym_eb] = ACTIONS(1118), - [anon_sym_eB] = ACTIONS(1118), - [anon_sym_Eb] = ACTIONS(1118), - [anon_sym_EB] = ACTIONS(1118), - [anon_sym_kib] = ACTIONS(1118), - [anon_sym_kiB] = ACTIONS(1118), - [anon_sym_kIB] = ACTIONS(1118), - [anon_sym_kIb] = ACTIONS(1118), - [anon_sym_Kib] = ACTIONS(1118), - [anon_sym_KIb] = ACTIONS(1118), - [anon_sym_KIB] = ACTIONS(1118), - [anon_sym_mib] = ACTIONS(1118), - [anon_sym_miB] = ACTIONS(1118), - [anon_sym_mIB] = ACTIONS(1118), - [anon_sym_mIb] = ACTIONS(1118), - [anon_sym_Mib] = ACTIONS(1118), - [anon_sym_MIb] = ACTIONS(1118), - [anon_sym_MIB] = ACTIONS(1118), - [anon_sym_gib] = ACTIONS(1118), - [anon_sym_giB] = ACTIONS(1118), - [anon_sym_gIB] = ACTIONS(1118), - [anon_sym_gIb] = ACTIONS(1118), - [anon_sym_Gib] = ACTIONS(1118), - [anon_sym_GIb] = ACTIONS(1118), - [anon_sym_GIB] = ACTIONS(1118), - [anon_sym_tib] = ACTIONS(1118), - [anon_sym_tiB] = ACTIONS(1118), - [anon_sym_tIB] = ACTIONS(1118), - [anon_sym_tIb] = ACTIONS(1118), - [anon_sym_Tib] = ACTIONS(1118), - [anon_sym_TIb] = ACTIONS(1118), - [anon_sym_TIB] = ACTIONS(1118), - [anon_sym_pib] = ACTIONS(1118), - [anon_sym_piB] = ACTIONS(1118), - [anon_sym_pIB] = ACTIONS(1118), - [anon_sym_pIb] = ACTIONS(1118), - [anon_sym_Pib] = ACTIONS(1118), - [anon_sym_PIb] = ACTIONS(1118), - [anon_sym_PIB] = ACTIONS(1118), - [anon_sym_eib] = ACTIONS(1118), - [anon_sym_eiB] = ACTIONS(1118), - [anon_sym_eIB] = ACTIONS(1118), - [anon_sym_eIb] = ACTIONS(1118), - [anon_sym_Eib] = ACTIONS(1118), - [anon_sym_EIb] = ACTIONS(1118), - [anon_sym_EIB] = ACTIONS(1118), + [352] = { + [sym_comment] = STATE(352), + [anon_sym_SEMI] = ACTIONS(107), + [anon_sym_LF] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(107), + [anon_sym_RPAREN] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_in] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_QMARK2] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(107), + [anon_sym_PLUS_PLUS] = ACTIONS(107), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(107), + [anon_sym_bit_DASHshr] = ACTIONS(107), + [anon_sym_EQ_EQ] = ACTIONS(107), + [anon_sym_BANG_EQ] = ACTIONS(107), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(107), + [anon_sym_GT_EQ] = ACTIONS(107), + [anon_sym_not_DASHin] = ACTIONS(107), + [anon_sym_starts_DASHwith] = ACTIONS(107), + [anon_sym_ends_DASHwith] = ACTIONS(107), + [anon_sym_EQ_TILDE] = ACTIONS(107), + [anon_sym_BANG_TILDE] = ACTIONS(107), + [anon_sym_bit_DASHand] = ACTIONS(107), + [anon_sym_bit_DASHxor] = ACTIONS(107), + [anon_sym_bit_DASHor] = ACTIONS(107), + [anon_sym_and] = ACTIONS(107), + [anon_sym_xor] = ACTIONS(107), + [anon_sym_or] = ACTIONS(107), + [aux_sym__immediate_decimal_token2] = ACTIONS(1035), + [anon_sym_ns] = ACTIONS(107), + [anon_sym_s] = ACTIONS(107), + [anon_sym_us] = ACTIONS(107), + [anon_sym_ms] = ACTIONS(107), + [anon_sym_sec] = ACTIONS(107), + [anon_sym_min] = ACTIONS(107), + [anon_sym_hr] = ACTIONS(107), + [anon_sym_day] = ACTIONS(107), + [anon_sym_wk] = ACTIONS(107), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(107), + [anon_sym_kb] = ACTIONS(107), + [anon_sym_kB] = ACTIONS(107), + [anon_sym_Kb] = ACTIONS(107), + [anon_sym_KB] = ACTIONS(107), + [anon_sym_mb] = ACTIONS(107), + [anon_sym_mB] = ACTIONS(107), + [anon_sym_Mb] = ACTIONS(107), + [anon_sym_MB] = ACTIONS(107), + [anon_sym_gb] = ACTIONS(107), + [anon_sym_gB] = ACTIONS(107), + [anon_sym_Gb] = ACTIONS(107), + [anon_sym_GB] = ACTIONS(107), + [anon_sym_tb] = ACTIONS(107), + [anon_sym_tB] = ACTIONS(107), + [anon_sym_Tb] = ACTIONS(107), + [anon_sym_TB] = ACTIONS(107), + [anon_sym_pb] = ACTIONS(107), + [anon_sym_pB] = ACTIONS(107), + [anon_sym_Pb] = ACTIONS(107), + [anon_sym_PB] = ACTIONS(107), + [anon_sym_eb] = ACTIONS(107), + [anon_sym_eB] = ACTIONS(107), + [anon_sym_Eb] = ACTIONS(107), + [anon_sym_EB] = ACTIONS(107), + [anon_sym_kib] = ACTIONS(107), + [anon_sym_kiB] = ACTIONS(107), + [anon_sym_kIB] = ACTIONS(107), + [anon_sym_kIb] = ACTIONS(107), + [anon_sym_Kib] = ACTIONS(107), + [anon_sym_KIb] = ACTIONS(107), + [anon_sym_KIB] = ACTIONS(107), + [anon_sym_mib] = ACTIONS(107), + [anon_sym_miB] = ACTIONS(107), + [anon_sym_mIB] = ACTIONS(107), + [anon_sym_mIb] = ACTIONS(107), + [anon_sym_Mib] = ACTIONS(107), + [anon_sym_MIb] = ACTIONS(107), + [anon_sym_MIB] = ACTIONS(107), + [anon_sym_gib] = ACTIONS(107), + [anon_sym_giB] = ACTIONS(107), + [anon_sym_gIB] = ACTIONS(107), + [anon_sym_gIb] = ACTIONS(107), + [anon_sym_Gib] = ACTIONS(107), + [anon_sym_GIb] = ACTIONS(107), + [anon_sym_GIB] = ACTIONS(107), + [anon_sym_tib] = ACTIONS(107), + [anon_sym_tiB] = ACTIONS(107), + [anon_sym_tIB] = ACTIONS(107), + [anon_sym_tIb] = ACTIONS(107), + [anon_sym_Tib] = ACTIONS(107), + [anon_sym_TIb] = ACTIONS(107), + [anon_sym_TIB] = ACTIONS(107), + [anon_sym_pib] = ACTIONS(107), + [anon_sym_piB] = ACTIONS(107), + [anon_sym_pIB] = ACTIONS(107), + [anon_sym_pIb] = ACTIONS(107), + [anon_sym_Pib] = ACTIONS(107), + [anon_sym_PIb] = ACTIONS(107), + [anon_sym_PIB] = ACTIONS(107), + [anon_sym_eib] = ACTIONS(107), + [anon_sym_eiB] = ACTIONS(107), + [anon_sym_eIB] = ACTIONS(107), + [anon_sym_eIb] = ACTIONS(107), + [anon_sym_Eib] = ACTIONS(107), + [anon_sym_EIb] = ACTIONS(107), + [anon_sym_EIB] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [359] = { - [sym_comment] = STATE(359), + [353] = { + [sym_comment] = STATE(353), [sym_identifier] = ACTIONS(221), [anon_sym_COLON] = ACTIONS(223), [anon_sym_COMMA] = ACTIONS(223), @@ -122424,634 +123289,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EIB] = ACTIONS(221), [anon_sym_POUND] = ACTIONS(3), }, - [360] = { - [sym_comment] = STATE(360), - [sym_identifier] = ACTIONS(171), - [anon_sym_COLON] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(3), - }, - [361] = { - [sym_comment] = STATE(361), - [sym_identifier] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1026), + [354] = { + [sym_comment] = STATE(354), + [sym_identifier] = ACTIONS(187), + [anon_sym_COLON] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1043), [anon_sym_POUND] = ACTIONS(3), }, - [362] = { - [sym_comment] = STATE(362), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LF] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_in] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(115), - [anon_sym_bit_DASHshr] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_not_DASHin] = ACTIONS(115), - [anon_sym_starts_DASHwith] = ACTIONS(115), - [anon_sym_ends_DASHwith] = ACTIONS(115), - [anon_sym_EQ_TILDE] = ACTIONS(115), - [anon_sym_BANG_TILDE] = ACTIONS(115), - [anon_sym_bit_DASHand] = ACTIONS(115), - [anon_sym_bit_DASHxor] = ACTIONS(115), - [anon_sym_bit_DASHor] = ACTIONS(115), - [anon_sym_and] = ACTIONS(115), - [anon_sym_xor] = ACTIONS(115), - [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(1120), - [aux_sym__immediate_decimal_token2] = ACTIONS(1122), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), - }, - [363] = { - [sym_comment] = STATE(363), - [sym_identifier] = ACTIONS(148), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [355] = { + [sym_comment] = STATE(355), + [sym_identifier] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1043), [anon_sym_POUND] = ACTIONS(3), }, - [364] = { - [sym_comment] = STATE(364), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_COLON] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_QMARK2] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(1127), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(105), - }, - [365] = { - [sym_comment] = STATE(365), - [sym_identifier] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_DASH_DASH] = ACTIONS(109), + [356] = { + [sym_comment] = STATE(356), + [anon_sym_SEMI] = ACTIONS(107), + [anon_sym_LF] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), + [anon_sym_STAR_STAR] = ACTIONS(107), + [anon_sym_PLUS_PLUS] = ACTIONS(107), [anon_sym_SLASH] = ACTIONS(107), [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), + [anon_sym_SLASH_SLASH] = ACTIONS(107), [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), + [anon_sym_bit_DASHshl] = ACTIONS(107), + [anon_sym_bit_DASHshr] = ACTIONS(107), + [anon_sym_EQ_EQ] = ACTIONS(107), + [anon_sym_BANG_EQ] = ACTIONS(107), [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), + [anon_sym_LT_EQ] = ACTIONS(107), + [anon_sym_GT_EQ] = ACTIONS(107), + [anon_sym_not_DASHin] = ACTIONS(107), + [anon_sym_starts_DASHwith] = ACTIONS(107), + [anon_sym_ends_DASHwith] = ACTIONS(107), + [anon_sym_EQ_TILDE] = ACTIONS(107), + [anon_sym_BANG_TILDE] = ACTIONS(107), + [anon_sym_bit_DASHand] = ACTIONS(107), + [anon_sym_bit_DASHxor] = ACTIONS(107), + [anon_sym_bit_DASHor] = ACTIONS(107), [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), + [aux_sym__immediate_decimal_token1] = ACTIONS(1111), + [aux_sym__immediate_decimal_token2] = ACTIONS(1113), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -123130,513 +123641,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [366] = { - [sym_comment] = STATE(366), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(1129), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), [anon_sym_POUND] = ACTIONS(105), }, - [367] = { - [sym_comment] = STATE(367), - [sym_identifier] = ACTIONS(171), - [anon_sym_COLON] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(3), - }, - [368] = { - [sym_comment] = STATE(368), - [anon_sym_SEMI] = ACTIONS(221), - [anon_sym_LF] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_GT] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_in] = ACTIONS(221), - [anon_sym_RBRACE] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_QMARK2] = ACTIONS(221), - [anon_sym_STAR_STAR] = ACTIONS(221), - [anon_sym_PLUS_PLUS] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_mod] = ACTIONS(221), - [anon_sym_SLASH_SLASH] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_bit_DASHshl] = ACTIONS(221), - [anon_sym_bit_DASHshr] = ACTIONS(221), - [anon_sym_EQ_EQ] = ACTIONS(221), - [anon_sym_BANG_EQ] = ACTIONS(221), - [anon_sym_LT2] = ACTIONS(221), - [anon_sym_LT_EQ] = ACTIONS(221), - [anon_sym_GT_EQ] = ACTIONS(221), - [anon_sym_not_DASHin] = ACTIONS(221), - [anon_sym_starts_DASHwith] = ACTIONS(221), - [anon_sym_ends_DASHwith] = ACTIONS(221), - [anon_sym_EQ_TILDE] = ACTIONS(221), - [anon_sym_BANG_TILDE] = ACTIONS(221), - [anon_sym_bit_DASHand] = ACTIONS(221), - [anon_sym_bit_DASHxor] = ACTIONS(221), - [anon_sym_bit_DASHor] = ACTIONS(221), - [anon_sym_and] = ACTIONS(221), - [anon_sym_xor] = ACTIONS(221), - [anon_sym_or] = ACTIONS(221), - [anon_sym_ns] = ACTIONS(221), - [anon_sym_s] = ACTIONS(221), - [anon_sym_us] = ACTIONS(221), - [anon_sym_ms] = ACTIONS(221), - [anon_sym_sec] = ACTIONS(221), - [anon_sym_min] = ACTIONS(221), - [anon_sym_hr] = ACTIONS(221), - [anon_sym_day] = ACTIONS(221), - [anon_sym_wk] = ACTIONS(221), - [anon_sym_b] = ACTIONS(221), - [anon_sym_B] = ACTIONS(221), - [anon_sym_kb] = ACTIONS(221), - [anon_sym_kB] = ACTIONS(221), - [anon_sym_Kb] = ACTIONS(221), - [anon_sym_KB] = ACTIONS(221), - [anon_sym_mb] = ACTIONS(221), - [anon_sym_mB] = ACTIONS(221), - [anon_sym_Mb] = ACTIONS(221), - [anon_sym_MB] = ACTIONS(221), - [anon_sym_gb] = ACTIONS(221), - [anon_sym_gB] = ACTIONS(221), - [anon_sym_Gb] = ACTIONS(221), - [anon_sym_GB] = ACTIONS(221), - [anon_sym_tb] = ACTIONS(221), - [anon_sym_tB] = ACTIONS(221), - [anon_sym_Tb] = ACTIONS(221), - [anon_sym_TB] = ACTIONS(221), - [anon_sym_pb] = ACTIONS(221), - [anon_sym_pB] = ACTIONS(221), - [anon_sym_Pb] = ACTIONS(221), - [anon_sym_PB] = ACTIONS(221), - [anon_sym_eb] = ACTIONS(221), - [anon_sym_eB] = ACTIONS(221), - [anon_sym_Eb] = ACTIONS(221), - [anon_sym_EB] = ACTIONS(221), - [anon_sym_kib] = ACTIONS(221), - [anon_sym_kiB] = ACTIONS(221), - [anon_sym_kIB] = ACTIONS(221), - [anon_sym_kIb] = ACTIONS(221), - [anon_sym_Kib] = ACTIONS(221), - [anon_sym_KIb] = ACTIONS(221), - [anon_sym_KIB] = ACTIONS(221), - [anon_sym_mib] = ACTIONS(221), - [anon_sym_miB] = ACTIONS(221), - [anon_sym_mIB] = ACTIONS(221), - [anon_sym_mIb] = ACTIONS(221), - [anon_sym_Mib] = ACTIONS(221), - [anon_sym_MIb] = ACTIONS(221), - [anon_sym_MIB] = ACTIONS(221), - [anon_sym_gib] = ACTIONS(221), - [anon_sym_giB] = ACTIONS(221), - [anon_sym_gIB] = ACTIONS(221), - [anon_sym_gIb] = ACTIONS(221), - [anon_sym_Gib] = ACTIONS(221), - [anon_sym_GIb] = ACTIONS(221), - [anon_sym_GIB] = ACTIONS(221), - [anon_sym_tib] = ACTIONS(221), - [anon_sym_tiB] = ACTIONS(221), - [anon_sym_tIB] = ACTIONS(221), - [anon_sym_tIb] = ACTIONS(221), - [anon_sym_Tib] = ACTIONS(221), - [anon_sym_TIb] = ACTIONS(221), - [anon_sym_TIB] = ACTIONS(221), - [anon_sym_pib] = ACTIONS(221), - [anon_sym_piB] = ACTIONS(221), - [anon_sym_pIB] = ACTIONS(221), - [anon_sym_pIb] = ACTIONS(221), - [anon_sym_Pib] = ACTIONS(221), - [anon_sym_PIb] = ACTIONS(221), - [anon_sym_PIB] = ACTIONS(221), - [anon_sym_eib] = ACTIONS(221), - [anon_sym_eiB] = ACTIONS(221), - [anon_sym_eIB] = ACTIONS(221), - [anon_sym_eIb] = ACTIONS(221), - [anon_sym_Eib] = ACTIONS(221), - [anon_sym_EIb] = ACTIONS(221), - [anon_sym_EIB] = ACTIONS(221), - [anon_sym_POUND] = ACTIONS(105), - }, - [369] = { - [sym_comment] = STATE(369), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(1134), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(105), - }, - [370] = { - [sym_comment] = STATE(370), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), + [357] = { + [sym_comment] = STATE(357), + [sym_identifier] = ACTIONS(107), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [anon_sym_DASH_DASH] = ACTIONS(109), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1136), + [anon_sym_DOT2] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(109), + [anon_sym_PLUS_PLUS] = ACTIONS(109), [anon_sym_SLASH] = ACTIONS(107), [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(109), + [anon_sym_bit_DASHshr] = ACTIONS(109), + [anon_sym_EQ_EQ] = ACTIONS(109), + [anon_sym_BANG_EQ] = ACTIONS(109), [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(109), + [anon_sym_not_DASHin] = ACTIONS(109), + [anon_sym_starts_DASHwith] = ACTIONS(109), + [anon_sym_ends_DASHwith] = ACTIONS(109), + [anon_sym_EQ_TILDE] = ACTIONS(109), + [anon_sym_BANG_TILDE] = ACTIONS(109), + [anon_sym_bit_DASHand] = ACTIONS(109), + [anon_sym_bit_DASHxor] = ACTIONS(109), + [anon_sym_bit_DASHor] = ACTIONS(109), [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1069), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -123715,20 +123759,610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(3), }, - [371] = { - [sym_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(117), + [358] = { + [sym_comment] = STATE(358), + [sym_identifier] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_RBRACK] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(215), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(215), + [anon_sym_bit_DASHshr] = ACTIONS(215), + [anon_sym_EQ_EQ] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(215), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(215), + [anon_sym_not_DASHin] = ACTIONS(215), + [anon_sym_starts_DASHwith] = ACTIONS(215), + [anon_sym_ends_DASHwith] = ACTIONS(215), + [anon_sym_EQ_TILDE] = ACTIONS(215), + [anon_sym_BANG_TILDE] = ACTIONS(215), + [anon_sym_bit_DASHand] = ACTIONS(215), + [anon_sym_bit_DASHxor] = ACTIONS(215), + [anon_sym_bit_DASHor] = ACTIONS(215), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [anon_sym_ns] = ACTIONS(1115), + [anon_sym_s] = ACTIONS(1115), + [anon_sym_us] = ACTIONS(1115), + [anon_sym_ms] = ACTIONS(1115), + [anon_sym_sec] = ACTIONS(1115), + [anon_sym_min] = ACTIONS(1115), + [anon_sym_hr] = ACTIONS(1115), + [anon_sym_day] = ACTIONS(1115), + [anon_sym_wk] = ACTIONS(1115), + [anon_sym_b] = ACTIONS(1117), + [anon_sym_B] = ACTIONS(1117), + [anon_sym_kb] = ACTIONS(1117), + [anon_sym_kB] = ACTIONS(1117), + [anon_sym_Kb] = ACTIONS(1117), + [anon_sym_KB] = ACTIONS(1117), + [anon_sym_mb] = ACTIONS(1117), + [anon_sym_mB] = ACTIONS(1117), + [anon_sym_Mb] = ACTIONS(1117), + [anon_sym_MB] = ACTIONS(1117), + [anon_sym_gb] = ACTIONS(1117), + [anon_sym_gB] = ACTIONS(1117), + [anon_sym_Gb] = ACTIONS(1117), + [anon_sym_GB] = ACTIONS(1117), + [anon_sym_tb] = ACTIONS(1117), + [anon_sym_tB] = ACTIONS(1117), + [anon_sym_Tb] = ACTIONS(1117), + [anon_sym_TB] = ACTIONS(1117), + [anon_sym_pb] = ACTIONS(1117), + [anon_sym_pB] = ACTIONS(1117), + [anon_sym_Pb] = ACTIONS(1117), + [anon_sym_PB] = ACTIONS(1117), + [anon_sym_eb] = ACTIONS(1117), + [anon_sym_eB] = ACTIONS(1117), + [anon_sym_Eb] = ACTIONS(1117), + [anon_sym_EB] = ACTIONS(1117), + [anon_sym_kib] = ACTIONS(1117), + [anon_sym_kiB] = ACTIONS(1117), + [anon_sym_kIB] = ACTIONS(1117), + [anon_sym_kIb] = ACTIONS(1117), + [anon_sym_Kib] = ACTIONS(1117), + [anon_sym_KIb] = ACTIONS(1117), + [anon_sym_KIB] = ACTIONS(1117), + [anon_sym_mib] = ACTIONS(1117), + [anon_sym_miB] = ACTIONS(1117), + [anon_sym_mIB] = ACTIONS(1117), + [anon_sym_mIb] = ACTIONS(1117), + [anon_sym_Mib] = ACTIONS(1117), + [anon_sym_MIb] = ACTIONS(1117), + [anon_sym_MIB] = ACTIONS(1117), + [anon_sym_gib] = ACTIONS(1117), + [anon_sym_giB] = ACTIONS(1117), + [anon_sym_gIB] = ACTIONS(1117), + [anon_sym_gIb] = ACTIONS(1117), + [anon_sym_Gib] = ACTIONS(1117), + [anon_sym_GIb] = ACTIONS(1117), + [anon_sym_GIB] = ACTIONS(1117), + [anon_sym_tib] = ACTIONS(1117), + [anon_sym_tiB] = ACTIONS(1117), + [anon_sym_tIB] = ACTIONS(1117), + [anon_sym_tIb] = ACTIONS(1117), + [anon_sym_Tib] = ACTIONS(1117), + [anon_sym_TIb] = ACTIONS(1117), + [anon_sym_TIB] = ACTIONS(1117), + [anon_sym_pib] = ACTIONS(1117), + [anon_sym_piB] = ACTIONS(1117), + [anon_sym_pIB] = ACTIONS(1117), + [anon_sym_pIb] = ACTIONS(1117), + [anon_sym_Pib] = ACTIONS(1117), + [anon_sym_PIb] = ACTIONS(1117), + [anon_sym_PIB] = ACTIONS(1117), + [anon_sym_eib] = ACTIONS(1117), + [anon_sym_eiB] = ACTIONS(1117), + [anon_sym_eIB] = ACTIONS(1117), + [anon_sym_eIb] = ACTIONS(1117), + [anon_sym_Eib] = ACTIONS(1117), + [anon_sym_EIb] = ACTIONS(1117), + [anon_sym_EIB] = ACTIONS(1117), + [anon_sym_POUND] = ACTIONS(3), + }, + [359] = { + [sym_comment] = STATE(359), + [sym_identifier] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_PIPE] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(132), + [anon_sym_DASH_DASH] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(1122), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [360] = { + [sym_comment] = STATE(360), + [sym_identifier] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [361] = { + [sym_comment] = STATE(361), + [sym_identifier] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_RBRACK] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(3), + }, + [362] = { + [sym_comment] = STATE(362), + [sym_identifier] = ACTIONS(187), + [anon_sym_COLON] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(3), + }, + [363] = { + [sym_comment] = STATE(363), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(115), [anon_sym_PIPE] = ACTIONS(115), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_QMARK2] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(115), [anon_sym_PLUS_PLUS] = ACTIONS(115), [anon_sym_SLASH] = ACTIONS(115), @@ -123753,8 +124387,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(1139), - [aux_sym__immediate_decimal_token2] = ACTIONS(1141), + [aux_sym__immediate_decimal_token1] = ACTIONS(1124), + [aux_sym__immediate_decimal_token2] = ACTIONS(1126), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -123832,45 +124466,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [372] = { - [sym_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LF] = ACTIONS(117), - [anon_sym_PIPE] = ACTIONS(115), + [364] = { + [sym_comment] = STATE(364), + [sym_identifier] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(159), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(3), + }, + [365] = { + [sym_comment] = STATE(365), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_QMARK2] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(1128), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [366] = { + [sym_comment] = STATE(366), + [sym_identifier] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(117), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1130), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), [anon_sym_SLASH] = ACTIONS(115), [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(117), [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(115), - [anon_sym_bit_DASHshr] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_not_DASHin] = ACTIONS(115), - [anon_sym_starts_DASHwith] = ACTIONS(115), - [anon_sym_ends_DASHwith] = ACTIONS(115), - [anon_sym_EQ_TILDE] = ACTIONS(115), - [anon_sym_BANG_TILDE] = ACTIONS(115), - [anon_sym_bit_DASHand] = ACTIONS(115), - [anon_sym_bit_DASHxor] = ACTIONS(115), - [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token1] = ACTIONS(1143), - [aux_sym__immediate_decimal_token2] = ACTIONS(1145), + [aux_sym__immediate_decimal_token2] = ACTIONS(1061), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -123949,127 +124821,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(3), }, - [373] = { - [sym_cell_path] = STATE(3161), - [sym_path] = STATE(2875), - [sym_comment] = STATE(373), - [ts_builtin_sym_end] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LF] = ACTIONS(1084), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_in] = ACTIONS(1151), - [anon_sym_DOT2] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_QMARK2] = ACTIONS(1157), - [anon_sym_STAR_STAR] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_SLASH] = ACTIONS(1155), - [anon_sym_mod] = ACTIONS(1155), - [anon_sym_SLASH_SLASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_bit_DASHshl] = ACTIONS(1161), - [anon_sym_bit_DASHshr] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1147), - [anon_sym_BANG_EQ] = ACTIONS(1147), - [anon_sym_LT2] = ACTIONS(1147), - [anon_sym_LT_EQ] = ACTIONS(1147), - [anon_sym_GT_EQ] = ACTIONS(1147), - [anon_sym_not_DASHin] = ACTIONS(1151), - [anon_sym_starts_DASHwith] = ACTIONS(1151), - [anon_sym_ends_DASHwith] = ACTIONS(1151), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_BANG_TILDE] = ACTIONS(1163), - [anon_sym_bit_DASHand] = ACTIONS(1165), - [anon_sym_bit_DASHxor] = ACTIONS(1167), - [anon_sym_bit_DASHor] = ACTIONS(1169), - [anon_sym_and] = ACTIONS(1171), - [anon_sym_xor] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_ns] = ACTIONS(1177), - [anon_sym_s] = ACTIONS(1177), - [anon_sym_us] = ACTIONS(1177), - [anon_sym_ms] = ACTIONS(1177), - [anon_sym_sec] = ACTIONS(1177), - [anon_sym_min] = ACTIONS(1177), - [anon_sym_hr] = ACTIONS(1177), - [anon_sym_day] = ACTIONS(1177), - [anon_sym_wk] = ACTIONS(1177), - [anon_sym_b] = ACTIONS(1179), - [anon_sym_B] = ACTIONS(1179), - [anon_sym_kb] = ACTIONS(1179), - [anon_sym_kB] = ACTIONS(1179), - [anon_sym_Kb] = ACTIONS(1179), - [anon_sym_KB] = ACTIONS(1179), - [anon_sym_mb] = ACTIONS(1179), - [anon_sym_mB] = ACTIONS(1179), - [anon_sym_Mb] = ACTIONS(1179), - [anon_sym_MB] = ACTIONS(1179), - [anon_sym_gb] = ACTIONS(1179), - [anon_sym_gB] = ACTIONS(1179), - [anon_sym_Gb] = ACTIONS(1179), - [anon_sym_GB] = ACTIONS(1179), - [anon_sym_tb] = ACTIONS(1179), - [anon_sym_tB] = ACTIONS(1179), - [anon_sym_Tb] = ACTIONS(1179), - [anon_sym_TB] = ACTIONS(1179), - [anon_sym_pb] = ACTIONS(1179), - [anon_sym_pB] = ACTIONS(1179), - [anon_sym_Pb] = ACTIONS(1179), - [anon_sym_PB] = ACTIONS(1179), - [anon_sym_eb] = ACTIONS(1179), - [anon_sym_eB] = ACTIONS(1179), - [anon_sym_Eb] = ACTIONS(1179), - [anon_sym_EB] = ACTIONS(1179), - [anon_sym_kib] = ACTIONS(1179), - [anon_sym_kiB] = ACTIONS(1179), - [anon_sym_kIB] = ACTIONS(1179), - [anon_sym_kIb] = ACTIONS(1179), - [anon_sym_Kib] = ACTIONS(1179), - [anon_sym_KIb] = ACTIONS(1179), - [anon_sym_KIB] = ACTIONS(1179), - [anon_sym_mib] = ACTIONS(1179), - [anon_sym_miB] = ACTIONS(1179), - [anon_sym_mIB] = ACTIONS(1179), - [anon_sym_mIb] = ACTIONS(1179), - [anon_sym_Mib] = ACTIONS(1179), - [anon_sym_MIb] = ACTIONS(1179), - [anon_sym_MIB] = ACTIONS(1179), - [anon_sym_gib] = ACTIONS(1179), - [anon_sym_giB] = ACTIONS(1179), - [anon_sym_gIB] = ACTIONS(1179), - [anon_sym_gIb] = ACTIONS(1179), - [anon_sym_Gib] = ACTIONS(1179), - [anon_sym_GIb] = ACTIONS(1179), - [anon_sym_GIB] = ACTIONS(1179), - [anon_sym_tib] = ACTIONS(1179), - [anon_sym_tiB] = ACTIONS(1179), - [anon_sym_tIB] = ACTIONS(1179), - [anon_sym_tIb] = ACTIONS(1179), - [anon_sym_Tib] = ACTIONS(1179), - [anon_sym_TIb] = ACTIONS(1179), - [anon_sym_TIB] = ACTIONS(1179), - [anon_sym_pib] = ACTIONS(1179), - [anon_sym_piB] = ACTIONS(1179), - [anon_sym_pIB] = ACTIONS(1179), - [anon_sym_pIb] = ACTIONS(1179), - [anon_sym_Pib] = ACTIONS(1179), - [anon_sym_PIb] = ACTIONS(1179), - [anon_sym_PIB] = ACTIONS(1179), - [anon_sym_eib] = ACTIONS(1179), - [anon_sym_eiB] = ACTIONS(1179), - [anon_sym_eIB] = ACTIONS(1179), - [anon_sym_eIb] = ACTIONS(1179), - [anon_sym_Eib] = ACTIONS(1179), - [anon_sym_EIb] = ACTIONS(1179), - [anon_sym_EIB] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(105), + [367] = { + [sym_comment] = STATE(367), + [sym_identifier] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(3), }, - [374] = { - [sym_comment] = STATE(374), + [368] = { + [sym_comment] = STATE(368), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), [anon_sym_RPAREN] = ACTIONS(115), @@ -124104,7 +124976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(1122), + [aux_sym__immediate_decimal_token2] = ACTIONS(1126), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -124185,20 +125057,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [375] = { - [sym_comment] = STATE(375), + [369] = { + [sym_comment] = STATE(369), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_QMARK2] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(105), + }, + [370] = { + [sym_comment] = STATE(370), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), - [anon_sym_COLON] = ACTIONS(115), [anon_sym_RPAREN] = ACTIONS(115), [anon_sym_PIPE] = ACTIONS(115), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1133), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_QMARK2] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(115), [anon_sym_PLUS_PLUS] = ACTIONS(115), [anon_sym_SLASH] = ACTIONS(115), @@ -124223,6 +125210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(1126), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -124300,595 +125288,596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(115), [anon_sym_EIb] = ACTIONS(115), [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [376] = { - [sym_comment] = STATE(376), - [sym_identifier] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(3), + [371] = { + [sym_comment] = STATE(371), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_RPAREN] = ACTIONS(130), + [anon_sym_PIPE] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(1139), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), }, - [377] = { - [sym_comment] = STATE(377), - [sym_identifier] = ACTIONS(165), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_PIPE] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(167), - [anon_sym_DASH_DASH] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), + [372] = { + [sym_comment] = STATE(372), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(1141), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [373] = { + [sym_comment] = STATE(373), + [sym_identifier] = ACTIONS(187), + [anon_sym_COLON] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1043), [anon_sym_POUND] = ACTIONS(3), }, - [378] = { - [sym_comment] = STATE(378), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1069), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), + [374] = { + [sym_comment] = STATE(374), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_QMARK2] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(105), }, - [379] = { - [sym_comment] = STATE(379), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_COLON] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(173), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_QMARK2] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), + [375] = { + [sym_comment] = STATE(375), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_QMARK2] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(105), }, - [380] = { - [sym_comment] = STATE(380), - [sym_identifier] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [381] = { - [sym_comment] = STATE(381), + [376] = { + [sym_comment] = STATE(376), [sym_identifier] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(117), @@ -125004,242 +125993,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [382] = { - [sym_comment] = STATE(382), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_QMARK2] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), + [377] = { + [sym_comment] = STATE(377), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_QMARK2] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, - [383] = { - [sym_comment] = STATE(383), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_EQ_GT] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token1] = ACTIONS(1181), - [aux_sym__immediate_decimal_token2] = ACTIONS(1183), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(3), + [378] = { + [sym_comment] = STATE(378), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_QMARK2] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), }, - [384] = { - [sym_comment] = STATE(384), + [379] = { + [sym_comment] = STATE(379), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_QMARK2] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token1] = ACTIONS(1145), + [aux_sym__immediate_decimal_token2] = ACTIONS(1147), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [380] = { + [sym_comment] = STATE(380), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), @@ -125249,7 +126355,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), - [anon_sym_QMARK2] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(107), [anon_sym_PLUS_PLUS] = ACTIONS(107), [anon_sym_SLASH] = ACTIONS(107), @@ -125274,8 +126379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(1185), - [aux_sym__immediate_decimal_token2] = ACTIONS(1187), + [aux_sym__immediate_decimal_token1] = ACTIONS(1149), + [aux_sym__immediate_decimal_token2] = ACTIONS(1151), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -125353,127 +126458,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [385] = { - [sym_comment] = STATE(385), - [sym_identifier] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1026), + [381] = { + [sym_cell_path] = STATE(3218), + [sym_path] = STATE(2976), + [sym_comment] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_LF] = ACTIONS(1075), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1157), + [anon_sym_DOT2] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_QMARK2] = ACTIONS(1163), + [anon_sym_STAR_STAR] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_mod] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1167), + [anon_sym_bit_DASHshr] = ACTIONS(1167), + [anon_sym_EQ_EQ] = ACTIONS(1153), + [anon_sym_BANG_EQ] = ACTIONS(1153), + [anon_sym_LT2] = ACTIONS(1153), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_not_DASHin] = ACTIONS(1157), + [anon_sym_starts_DASHwith] = ACTIONS(1157), + [anon_sym_ends_DASHwith] = ACTIONS(1157), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_ns] = ACTIONS(1183), + [anon_sym_s] = ACTIONS(1183), + [anon_sym_us] = ACTIONS(1183), + [anon_sym_ms] = ACTIONS(1183), + [anon_sym_sec] = ACTIONS(1183), + [anon_sym_min] = ACTIONS(1183), + [anon_sym_hr] = ACTIONS(1183), + [anon_sym_day] = ACTIONS(1183), + [anon_sym_wk] = ACTIONS(1183), + [anon_sym_b] = ACTIONS(1185), + [anon_sym_B] = ACTIONS(1185), + [anon_sym_kb] = ACTIONS(1185), + [anon_sym_kB] = ACTIONS(1185), + [anon_sym_Kb] = ACTIONS(1185), + [anon_sym_KB] = ACTIONS(1185), + [anon_sym_mb] = ACTIONS(1185), + [anon_sym_mB] = ACTIONS(1185), + [anon_sym_Mb] = ACTIONS(1185), + [anon_sym_MB] = ACTIONS(1185), + [anon_sym_gb] = ACTIONS(1185), + [anon_sym_gB] = ACTIONS(1185), + [anon_sym_Gb] = ACTIONS(1185), + [anon_sym_GB] = ACTIONS(1185), + [anon_sym_tb] = ACTIONS(1185), + [anon_sym_tB] = ACTIONS(1185), + [anon_sym_Tb] = ACTIONS(1185), + [anon_sym_TB] = ACTIONS(1185), + [anon_sym_pb] = ACTIONS(1185), + [anon_sym_pB] = ACTIONS(1185), + [anon_sym_Pb] = ACTIONS(1185), + [anon_sym_PB] = ACTIONS(1185), + [anon_sym_eb] = ACTIONS(1185), + [anon_sym_eB] = ACTIONS(1185), + [anon_sym_Eb] = ACTIONS(1185), + [anon_sym_EB] = ACTIONS(1185), + [anon_sym_kib] = ACTIONS(1185), + [anon_sym_kiB] = ACTIONS(1185), + [anon_sym_kIB] = ACTIONS(1185), + [anon_sym_kIb] = ACTIONS(1185), + [anon_sym_Kib] = ACTIONS(1185), + [anon_sym_KIb] = ACTIONS(1185), + [anon_sym_KIB] = ACTIONS(1185), + [anon_sym_mib] = ACTIONS(1185), + [anon_sym_miB] = ACTIONS(1185), + [anon_sym_mIB] = ACTIONS(1185), + [anon_sym_mIb] = ACTIONS(1185), + [anon_sym_Mib] = ACTIONS(1185), + [anon_sym_MIb] = ACTIONS(1185), + [anon_sym_MIB] = ACTIONS(1185), + [anon_sym_gib] = ACTIONS(1185), + [anon_sym_giB] = ACTIONS(1185), + [anon_sym_gIB] = ACTIONS(1185), + [anon_sym_gIb] = ACTIONS(1185), + [anon_sym_Gib] = ACTIONS(1185), + [anon_sym_GIb] = ACTIONS(1185), + [anon_sym_GIB] = ACTIONS(1185), + [anon_sym_tib] = ACTIONS(1185), + [anon_sym_tiB] = ACTIONS(1185), + [anon_sym_tIB] = ACTIONS(1185), + [anon_sym_tIb] = ACTIONS(1185), + [anon_sym_Tib] = ACTIONS(1185), + [anon_sym_TIb] = ACTIONS(1185), + [anon_sym_TIB] = ACTIONS(1185), + [anon_sym_pib] = ACTIONS(1185), + [anon_sym_piB] = ACTIONS(1185), + [anon_sym_pIB] = ACTIONS(1185), + [anon_sym_pIb] = ACTIONS(1185), + [anon_sym_Pib] = ACTIONS(1185), + [anon_sym_PIb] = ACTIONS(1185), + [anon_sym_PIB] = ACTIONS(1185), + [anon_sym_eib] = ACTIONS(1185), + [anon_sym_eiB] = ACTIONS(1185), + [anon_sym_eIB] = ACTIONS(1185), + [anon_sym_eIb] = ACTIONS(1185), + [anon_sym_Eib] = ACTIONS(1185), + [anon_sym_EIb] = ACTIONS(1185), + [anon_sym_EIB] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(105), + }, + [382] = { + [sym_comment] = STATE(382), + [sym_identifier] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(3), }, - [386] = { - [sym_comment] = STATE(386), + [383] = { + [sym_comment] = STATE(383), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), [anon_sym_COLON] = ACTIONS(107), @@ -125589,242 +126812,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EIB] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [387] = { - [sym_comment] = STATE(387), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_COLON] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_QMARK2] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [anon_sym_POUND] = ACTIONS(105), - }, - [388] = { - [sym_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token1] = ACTIONS(1191), - [aux_sym__immediate_decimal_token2] = ACTIONS(1193), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(105), - }, - [389] = { - [sym_comment] = STATE(389), + [384] = { + [sym_comment] = STATE(384), [sym_identifier] = ACTIONS(107), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_PIPE] = ACTIONS(109), @@ -125940,482 +126929,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [390] = { - [sym_comment] = STATE(390), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_QMARK2] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(105), - }, - [391] = { - [sym_comment] = STATE(391), - [anon_sym_COLON] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(117), - [anon_sym_in] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(117), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(117), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), - [anon_sym_and] = ACTIONS(117), - [anon_sym_xor] = ACTIONS(117), - [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token1] = ACTIONS(1195), - [aux_sym__immediate_decimal_token2] = ACTIONS(1197), - [anon_sym_ns] = ACTIONS(117), - [anon_sym_s] = ACTIONS(117), - [anon_sym_us] = ACTIONS(117), - [anon_sym_ms] = ACTIONS(117), - [anon_sym_sec] = ACTIONS(117), - [anon_sym_min] = ACTIONS(117), - [anon_sym_hr] = ACTIONS(117), - [anon_sym_day] = ACTIONS(117), - [anon_sym_wk] = ACTIONS(117), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(117), - [anon_sym_kb] = ACTIONS(117), - [anon_sym_kB] = ACTIONS(117), - [anon_sym_Kb] = ACTIONS(117), - [anon_sym_KB] = ACTIONS(117), - [anon_sym_mb] = ACTIONS(117), - [anon_sym_mB] = ACTIONS(117), - [anon_sym_Mb] = ACTIONS(117), - [anon_sym_MB] = ACTIONS(117), - [anon_sym_gb] = ACTIONS(117), - [anon_sym_gB] = ACTIONS(117), - [anon_sym_Gb] = ACTIONS(117), - [anon_sym_GB] = ACTIONS(117), - [anon_sym_tb] = ACTIONS(117), - [anon_sym_tB] = ACTIONS(117), - [anon_sym_Tb] = ACTIONS(117), - [anon_sym_TB] = ACTIONS(117), - [anon_sym_pb] = ACTIONS(117), - [anon_sym_pB] = ACTIONS(117), - [anon_sym_Pb] = ACTIONS(117), - [anon_sym_PB] = ACTIONS(117), - [anon_sym_eb] = ACTIONS(117), - [anon_sym_eB] = ACTIONS(117), - [anon_sym_Eb] = ACTIONS(117), - [anon_sym_EB] = ACTIONS(117), - [anon_sym_kib] = ACTIONS(117), - [anon_sym_kiB] = ACTIONS(117), - [anon_sym_kIB] = ACTIONS(117), - [anon_sym_kIb] = ACTIONS(117), - [anon_sym_Kib] = ACTIONS(117), - [anon_sym_KIb] = ACTIONS(117), - [anon_sym_KIB] = ACTIONS(117), - [anon_sym_mib] = ACTIONS(117), - [anon_sym_miB] = ACTIONS(117), - [anon_sym_mIB] = ACTIONS(117), - [anon_sym_mIb] = ACTIONS(117), - [anon_sym_Mib] = ACTIONS(117), - [anon_sym_MIb] = ACTIONS(117), - [anon_sym_MIB] = ACTIONS(117), - [anon_sym_gib] = ACTIONS(117), - [anon_sym_giB] = ACTIONS(117), - [anon_sym_gIB] = ACTIONS(117), - [anon_sym_gIb] = ACTIONS(117), - [anon_sym_Gib] = ACTIONS(117), - [anon_sym_GIb] = ACTIONS(117), - [anon_sym_GIB] = ACTIONS(117), - [anon_sym_tib] = ACTIONS(117), - [anon_sym_tiB] = ACTIONS(117), - [anon_sym_tIB] = ACTIONS(117), - [anon_sym_tIb] = ACTIONS(117), - [anon_sym_Tib] = ACTIONS(117), - [anon_sym_TIb] = ACTIONS(117), - [anon_sym_TIB] = ACTIONS(117), - [anon_sym_pib] = ACTIONS(117), - [anon_sym_piB] = ACTIONS(117), - [anon_sym_pIB] = ACTIONS(117), - [anon_sym_pIb] = ACTIONS(117), - [anon_sym_Pib] = ACTIONS(117), - [anon_sym_PIb] = ACTIONS(117), - [anon_sym_PIB] = ACTIONS(117), - [anon_sym_eib] = ACTIONS(117), - [anon_sym_eiB] = ACTIONS(117), - [anon_sym_eIB] = ACTIONS(117), - [anon_sym_eIb] = ACTIONS(117), - [anon_sym_Eib] = ACTIONS(117), - [anon_sym_EIb] = ACTIONS(117), - [anon_sym_EIB] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(3), - }, - [392] = { - [sym_comment] = STATE(392), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(105), - }, - [393] = { - [sym_comment] = STATE(393), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_EQ_GT] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1183), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), + [385] = { + [sym_comment] = STATE(385), + [sym_identifier] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1043), [anon_sym_POUND] = ACTIONS(3), }, - [394] = { - [sym_comment] = STATE(394), + [386] = { + [sym_comment] = STATE(386), + [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(115), [anon_sym_PIPE] = ACTIONS(115), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(115), @@ -126442,6 +127081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token1] = ACTIONS(1187), + [aux_sym__immediate_decimal_token2] = ACTIONS(1189), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -126522,250 +127163,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_in] = ACTIONS(150), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [aux_sym__immediate_decimal_token2] = ACTIONS(1203), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), + [387] = { + [sym_comment] = STATE(387), + [sym_identifier] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(149), + [anon_sym_DASH_DASH] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, - [396] = { - [sym_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LF] = ACTIONS(117), - [anon_sym_PIPE] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_QMARK2] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(115), - [anon_sym_SLASH_SLASH] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(115), - [anon_sym_bit_DASHshr] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_not_DASHin] = ACTIONS(115), - [anon_sym_starts_DASHwith] = ACTIONS(115), - [anon_sym_ends_DASHwith] = ACTIONS(115), - [anon_sym_EQ_TILDE] = ACTIONS(115), - [anon_sym_BANG_TILDE] = ACTIONS(115), - [anon_sym_bit_DASHand] = ACTIONS(115), - [anon_sym_bit_DASHxor] = ACTIONS(115), - [anon_sym_bit_DASHor] = ACTIONS(115), - [anon_sym_and] = ACTIONS(115), - [anon_sym_xor] = ACTIONS(115), - [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(1141), - [anon_sym_ns] = ACTIONS(115), - [anon_sym_s] = ACTIONS(115), - [anon_sym_us] = ACTIONS(115), - [anon_sym_ms] = ACTIONS(115), - [anon_sym_sec] = ACTIONS(115), - [anon_sym_min] = ACTIONS(115), - [anon_sym_hr] = ACTIONS(115), - [anon_sym_day] = ACTIONS(115), - [anon_sym_wk] = ACTIONS(115), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(105), - }, - [397] = { - [sym_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(109), + [388] = { + [sym_comment] = STATE(388), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(107), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), - [anon_sym_QMARK2] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(107), [anon_sym_PLUS_PLUS] = ACTIONS(107), [anon_sym_SLASH] = ACTIONS(107), @@ -126790,7 +127316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1187), + [aux_sym__immediate_decimal_token2] = ACTIONS(1113), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -126868,484 +127394,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [398] = { - [sym_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(1208), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), - [aux_sym_unquoted_token6] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(105), - }, - [399] = { - [sym_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_QMARK2] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(1210), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(105), - }, - [400] = { - [sym_comment] = STATE(400), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(105), - }, - [401] = { - [sym_comment] = STATE(401), - [sym_identifier] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(3), + [389] = { + [sym_comment] = STATE(389), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_in] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_DOT2] = ACTIONS(223), + [anon_sym_STAR] = ACTIONS(221), + [anon_sym_QMARK2] = ACTIONS(221), + [anon_sym_STAR_STAR] = ACTIONS(221), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(221), + [anon_sym_mod] = ACTIONS(221), + [anon_sym_SLASH_SLASH] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_bit_DASHshl] = ACTIONS(221), + [anon_sym_bit_DASHshr] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT2] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_not_DASHin] = ACTIONS(221), + [anon_sym_starts_DASHwith] = ACTIONS(221), + [anon_sym_ends_DASHwith] = ACTIONS(221), + [anon_sym_EQ_TILDE] = ACTIONS(221), + [anon_sym_BANG_TILDE] = ACTIONS(221), + [anon_sym_bit_DASHand] = ACTIONS(221), + [anon_sym_bit_DASHxor] = ACTIONS(221), + [anon_sym_bit_DASHor] = ACTIONS(221), + [anon_sym_and] = ACTIONS(221), + [anon_sym_xor] = ACTIONS(221), + [anon_sym_or] = ACTIONS(221), + [anon_sym_ns] = ACTIONS(221), + [anon_sym_s] = ACTIONS(221), + [anon_sym_us] = ACTIONS(221), + [anon_sym_ms] = ACTIONS(221), + [anon_sym_sec] = ACTIONS(221), + [anon_sym_min] = ACTIONS(221), + [anon_sym_hr] = ACTIONS(221), + [anon_sym_day] = ACTIONS(221), + [anon_sym_wk] = ACTIONS(221), + [anon_sym_b] = ACTIONS(221), + [anon_sym_B] = ACTIONS(221), + [anon_sym_kb] = ACTIONS(221), + [anon_sym_kB] = ACTIONS(221), + [anon_sym_Kb] = ACTIONS(221), + [anon_sym_KB] = ACTIONS(221), + [anon_sym_mb] = ACTIONS(221), + [anon_sym_mB] = ACTIONS(221), + [anon_sym_Mb] = ACTIONS(221), + [anon_sym_MB] = ACTIONS(221), + [anon_sym_gb] = ACTIONS(221), + [anon_sym_gB] = ACTIONS(221), + [anon_sym_Gb] = ACTIONS(221), + [anon_sym_GB] = ACTIONS(221), + [anon_sym_tb] = ACTIONS(221), + [anon_sym_tB] = ACTIONS(221), + [anon_sym_Tb] = ACTIONS(221), + [anon_sym_TB] = ACTIONS(221), + [anon_sym_pb] = ACTIONS(221), + [anon_sym_pB] = ACTIONS(221), + [anon_sym_Pb] = ACTIONS(221), + [anon_sym_PB] = ACTIONS(221), + [anon_sym_eb] = ACTIONS(221), + [anon_sym_eB] = ACTIONS(221), + [anon_sym_Eb] = ACTIONS(221), + [anon_sym_EB] = ACTIONS(221), + [anon_sym_kib] = ACTIONS(221), + [anon_sym_kiB] = ACTIONS(221), + [anon_sym_kIB] = ACTIONS(221), + [anon_sym_kIb] = ACTIONS(221), + [anon_sym_Kib] = ACTIONS(221), + [anon_sym_KIb] = ACTIONS(221), + [anon_sym_KIB] = ACTIONS(221), + [anon_sym_mib] = ACTIONS(221), + [anon_sym_miB] = ACTIONS(221), + [anon_sym_mIB] = ACTIONS(221), + [anon_sym_mIb] = ACTIONS(221), + [anon_sym_Mib] = ACTIONS(221), + [anon_sym_MIb] = ACTIONS(221), + [anon_sym_MIB] = ACTIONS(221), + [anon_sym_gib] = ACTIONS(221), + [anon_sym_giB] = ACTIONS(221), + [anon_sym_gIB] = ACTIONS(221), + [anon_sym_gIb] = ACTIONS(221), + [anon_sym_Gib] = ACTIONS(221), + [anon_sym_GIb] = ACTIONS(221), + [anon_sym_GIB] = ACTIONS(221), + [anon_sym_tib] = ACTIONS(221), + [anon_sym_tiB] = ACTIONS(221), + [anon_sym_tIB] = ACTIONS(221), + [anon_sym_tIb] = ACTIONS(221), + [anon_sym_Tib] = ACTIONS(221), + [anon_sym_TIb] = ACTIONS(221), + [anon_sym_TIB] = ACTIONS(221), + [anon_sym_pib] = ACTIONS(221), + [anon_sym_piB] = ACTIONS(221), + [anon_sym_pIB] = ACTIONS(221), + [anon_sym_pIb] = ACTIONS(221), + [anon_sym_Pib] = ACTIONS(221), + [anon_sym_PIb] = ACTIONS(221), + [anon_sym_PIB] = ACTIONS(221), + [anon_sym_eib] = ACTIONS(221), + [anon_sym_eiB] = ACTIONS(221), + [anon_sym_eIB] = ACTIONS(221), + [anon_sym_eIb] = ACTIONS(221), + [anon_sym_Eib] = ACTIONS(221), + [anon_sym_EIb] = ACTIONS(221), + [anon_sym_EIB] = ACTIONS(221), + [anon_sym_POUND] = ACTIONS(105), }, - [402] = { - [sym_comment] = STATE(402), + [390] = { + [sym_comment] = STATE(390), + [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(107), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), + [anon_sym_QMARK2] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(107), [anon_sym_PLUS_PLUS] = ACTIONS(107), [anon_sym_SLASH] = ACTIONS(107), @@ -127370,6 +127550,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), + [aux_sym__immediate_decimal_token1] = ACTIONS(1191), + [aux_sym__immediate_decimal_token2] = ACTIONS(1193), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -127447,11 +127629,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [403] = { - [sym_comment] = STATE(403), + [391] = { + [sym_comment] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(132), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_PIPE] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_QMARK2] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(1198), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), + }, + [392] = { + [sym_comment] = STATE(392), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), @@ -127459,9 +127756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1212), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), - [anon_sym_QMARK2] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(107), [anon_sym_PLUS_PLUS] = ACTIONS(107), [anon_sym_SLASH] = ACTIONS(107), @@ -127486,7 +127782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(107), [anon_sym_xor] = ACTIONS(107), [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1187), + [aux_sym__immediate_decimal_token2] = ACTIONS(1151), [anon_sym_ns] = ACTIONS(107), [anon_sym_s] = ACTIONS(107), [anon_sym_us] = ACTIONS(107), @@ -127564,242 +127860,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [404] = { - [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [aux_sym__immediate_decimal_token2] = ACTIONS(1215), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [393] = { + [sym_comment] = STATE(393), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1202), [anon_sym_POUND] = ACTIONS(105), }, - [405] = { - [sym_comment] = STATE(405), - [anon_sym_COLON] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(117), - [anon_sym_in] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(117), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(117), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), - [anon_sym_and] = ACTIONS(117), - [anon_sym_xor] = ACTIONS(117), - [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token2] = ACTIONS(1197), - [anon_sym_ns] = ACTIONS(117), - [anon_sym_s] = ACTIONS(117), - [anon_sym_us] = ACTIONS(117), - [anon_sym_ms] = ACTIONS(117), - [anon_sym_sec] = ACTIONS(117), - [anon_sym_min] = ACTIONS(117), - [anon_sym_hr] = ACTIONS(117), - [anon_sym_day] = ACTIONS(117), - [anon_sym_wk] = ACTIONS(117), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(117), - [anon_sym_kb] = ACTIONS(117), - [anon_sym_kB] = ACTIONS(117), - [anon_sym_Kb] = ACTIONS(117), - [anon_sym_KB] = ACTIONS(117), - [anon_sym_mb] = ACTIONS(117), - [anon_sym_mB] = ACTIONS(117), - [anon_sym_Mb] = ACTIONS(117), - [anon_sym_MB] = ACTIONS(117), - [anon_sym_gb] = ACTIONS(117), - [anon_sym_gB] = ACTIONS(117), - [anon_sym_Gb] = ACTIONS(117), - [anon_sym_GB] = ACTIONS(117), - [anon_sym_tb] = ACTIONS(117), - [anon_sym_tB] = ACTIONS(117), - [anon_sym_Tb] = ACTIONS(117), - [anon_sym_TB] = ACTIONS(117), - [anon_sym_pb] = ACTIONS(117), - [anon_sym_pB] = ACTIONS(117), - [anon_sym_Pb] = ACTIONS(117), - [anon_sym_PB] = ACTIONS(117), - [anon_sym_eb] = ACTIONS(117), - [anon_sym_eB] = ACTIONS(117), - [anon_sym_Eb] = ACTIONS(117), - [anon_sym_EB] = ACTIONS(117), - [anon_sym_kib] = ACTIONS(117), - [anon_sym_kiB] = ACTIONS(117), - [anon_sym_kIB] = ACTIONS(117), - [anon_sym_kIb] = ACTIONS(117), - [anon_sym_Kib] = ACTIONS(117), - [anon_sym_KIb] = ACTIONS(117), - [anon_sym_KIB] = ACTIONS(117), - [anon_sym_mib] = ACTIONS(117), - [anon_sym_miB] = ACTIONS(117), - [anon_sym_mIB] = ACTIONS(117), - [anon_sym_mIb] = ACTIONS(117), - [anon_sym_Mib] = ACTIONS(117), - [anon_sym_MIb] = ACTIONS(117), - [anon_sym_MIB] = ACTIONS(117), - [anon_sym_gib] = ACTIONS(117), - [anon_sym_giB] = ACTIONS(117), - [anon_sym_gIB] = ACTIONS(117), - [anon_sym_gIb] = ACTIONS(117), - [anon_sym_Gib] = ACTIONS(117), - [anon_sym_GIb] = ACTIONS(117), - [anon_sym_GIB] = ACTIONS(117), - [anon_sym_tib] = ACTIONS(117), - [anon_sym_tiB] = ACTIONS(117), - [anon_sym_tIB] = ACTIONS(117), - [anon_sym_tIb] = ACTIONS(117), - [anon_sym_Tib] = ACTIONS(117), - [anon_sym_TIb] = ACTIONS(117), - [anon_sym_TIB] = ACTIONS(117), - [anon_sym_pib] = ACTIONS(117), - [anon_sym_piB] = ACTIONS(117), - [anon_sym_pIB] = ACTIONS(117), - [anon_sym_pIb] = ACTIONS(117), - [anon_sym_Pib] = ACTIONS(117), - [anon_sym_PIb] = ACTIONS(117), - [anon_sym_PIB] = ACTIONS(117), - [anon_sym_eib] = ACTIONS(117), - [anon_sym_eiB] = ACTIONS(117), - [anon_sym_eIB] = ACTIONS(117), - [anon_sym_eIb] = ACTIONS(117), - [anon_sym_Eib] = ACTIONS(117), - [anon_sym_EIb] = ACTIONS(117), - [anon_sym_EIB] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(3), - }, - [406] = { - [sym_comment] = STATE(406), + [394] = { + [sym_comment] = STATE(394), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), @@ -127809,6 +127990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), + [anon_sym_QMARK2] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(107), [anon_sym_PLUS_PLUS] = ACTIONS(107), [anon_sym_SLASH] = ACTIONS(107), @@ -127911,18 +128093,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [407] = { - [sym_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(117), + [395] = { + [sym_comment] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(132), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_LF] = ACTIONS(132), + [anon_sym_PIPE] = ACTIONS(130), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_in] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(130), + [anon_sym_PLUS_PLUS] = ACTIONS(130), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_SLASH_SLASH] = ACTIONS(130), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(130), + [anon_sym_bit_DASHshr] = ACTIONS(130), + [anon_sym_EQ_EQ] = ACTIONS(130), + [anon_sym_BANG_EQ] = ACTIONS(130), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(130), + [anon_sym_GT_EQ] = ACTIONS(130), + [anon_sym_not_DASHin] = ACTIONS(130), + [anon_sym_starts_DASHwith] = ACTIONS(130), + [anon_sym_ends_DASHwith] = ACTIONS(130), + [anon_sym_EQ_TILDE] = ACTIONS(130), + [anon_sym_BANG_TILDE] = ACTIONS(130), + [anon_sym_bit_DASHand] = ACTIONS(130), + [anon_sym_bit_DASHxor] = ACTIONS(130), + [anon_sym_bit_DASHor] = ACTIONS(130), + [anon_sym_and] = ACTIONS(130), + [anon_sym_xor] = ACTIONS(130), + [anon_sym_or] = ACTIONS(130), + [aux_sym__immediate_decimal_token2] = ACTIONS(1207), + [anon_sym_ns] = ACTIONS(130), + [anon_sym_s] = ACTIONS(130), + [anon_sym_us] = ACTIONS(130), + [anon_sym_ms] = ACTIONS(130), + [anon_sym_sec] = ACTIONS(130), + [anon_sym_min] = ACTIONS(130), + [anon_sym_hr] = ACTIONS(130), + [anon_sym_day] = ACTIONS(130), + [anon_sym_wk] = ACTIONS(130), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(130), + [anon_sym_kb] = ACTIONS(130), + [anon_sym_kB] = ACTIONS(130), + [anon_sym_Kb] = ACTIONS(130), + [anon_sym_KB] = ACTIONS(130), + [anon_sym_mb] = ACTIONS(130), + [anon_sym_mB] = ACTIONS(130), + [anon_sym_Mb] = ACTIONS(130), + [anon_sym_MB] = ACTIONS(130), + [anon_sym_gb] = ACTIONS(130), + [anon_sym_gB] = ACTIONS(130), + [anon_sym_Gb] = ACTIONS(130), + [anon_sym_GB] = ACTIONS(130), + [anon_sym_tb] = ACTIONS(130), + [anon_sym_tB] = ACTIONS(130), + [anon_sym_Tb] = ACTIONS(130), + [anon_sym_TB] = ACTIONS(130), + [anon_sym_pb] = ACTIONS(130), + [anon_sym_pB] = ACTIONS(130), + [anon_sym_Pb] = ACTIONS(130), + [anon_sym_PB] = ACTIONS(130), + [anon_sym_eb] = ACTIONS(130), + [anon_sym_eB] = ACTIONS(130), + [anon_sym_Eb] = ACTIONS(130), + [anon_sym_EB] = ACTIONS(130), + [anon_sym_kib] = ACTIONS(130), + [anon_sym_kiB] = ACTIONS(130), + [anon_sym_kIB] = ACTIONS(130), + [anon_sym_kIb] = ACTIONS(130), + [anon_sym_Kib] = ACTIONS(130), + [anon_sym_KIb] = ACTIONS(130), + [anon_sym_KIB] = ACTIONS(130), + [anon_sym_mib] = ACTIONS(130), + [anon_sym_miB] = ACTIONS(130), + [anon_sym_mIB] = ACTIONS(130), + [anon_sym_mIb] = ACTIONS(130), + [anon_sym_Mib] = ACTIONS(130), + [anon_sym_MIb] = ACTIONS(130), + [anon_sym_MIB] = ACTIONS(130), + [anon_sym_gib] = ACTIONS(130), + [anon_sym_giB] = ACTIONS(130), + [anon_sym_gIB] = ACTIONS(130), + [anon_sym_gIb] = ACTIONS(130), + [anon_sym_Gib] = ACTIONS(130), + [anon_sym_GIb] = ACTIONS(130), + [anon_sym_GIB] = ACTIONS(130), + [anon_sym_tib] = ACTIONS(130), + [anon_sym_tiB] = ACTIONS(130), + [anon_sym_tIB] = ACTIONS(130), + [anon_sym_tIb] = ACTIONS(130), + [anon_sym_Tib] = ACTIONS(130), + [anon_sym_TIb] = ACTIONS(130), + [anon_sym_TIB] = ACTIONS(130), + [anon_sym_pib] = ACTIONS(130), + [anon_sym_piB] = ACTIONS(130), + [anon_sym_pIB] = ACTIONS(130), + [anon_sym_pIb] = ACTIONS(130), + [anon_sym_Pib] = ACTIONS(130), + [anon_sym_PIb] = ACTIONS(130), + [anon_sym_PIB] = ACTIONS(130), + [anon_sym_eib] = ACTIONS(130), + [anon_sym_eiB] = ACTIONS(130), + [anon_sym_eIB] = ACTIONS(130), + [anon_sym_eIb] = ACTIONS(130), + [anon_sym_Eib] = ACTIONS(130), + [anon_sym_EIb] = ACTIONS(130), + [anon_sym_EIB] = ACTIONS(130), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(105), + }, + [396] = { + [sym_comment] = STATE(396), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(115), [anon_sym_PIPE] = ACTIONS(115), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(115), @@ -127949,7 +128247,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), - [aux_sym__immediate_decimal_token2] = ACTIONS(1145), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -128030,711 +128327,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [408] = { - [sym_comment] = STATE(408), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_RPAREN] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), + [397] = { + [sym_comment] = STATE(397), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(105), }, - [409] = { - [sym_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [aux_sym__immediate_decimal_token2] = ACTIONS(1193), - [anon_sym_ns] = ACTIONS(107), - [anon_sym_s] = ACTIONS(107), - [anon_sym_us] = ACTIONS(107), - [anon_sym_ms] = ACTIONS(107), - [anon_sym_sec] = ACTIONS(107), - [anon_sym_min] = ACTIONS(107), - [anon_sym_hr] = ACTIONS(107), - [anon_sym_day] = ACTIONS(107), - [anon_sym_wk] = ACTIONS(107), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(107), - [anon_sym_kb] = ACTIONS(107), - [anon_sym_kB] = ACTIONS(107), - [anon_sym_Kb] = ACTIONS(107), - [anon_sym_KB] = ACTIONS(107), - [anon_sym_mb] = ACTIONS(107), - [anon_sym_mB] = ACTIONS(107), - [anon_sym_Mb] = ACTIONS(107), - [anon_sym_MB] = ACTIONS(107), - [anon_sym_gb] = ACTIONS(107), - [anon_sym_gB] = ACTIONS(107), - [anon_sym_Gb] = ACTIONS(107), - [anon_sym_GB] = ACTIONS(107), - [anon_sym_tb] = ACTIONS(107), - [anon_sym_tB] = ACTIONS(107), - [anon_sym_Tb] = ACTIONS(107), - [anon_sym_TB] = ACTIONS(107), - [anon_sym_pb] = ACTIONS(107), - [anon_sym_pB] = ACTIONS(107), - [anon_sym_Pb] = ACTIONS(107), - [anon_sym_PB] = ACTIONS(107), - [anon_sym_eb] = ACTIONS(107), - [anon_sym_eB] = ACTIONS(107), - [anon_sym_Eb] = ACTIONS(107), - [anon_sym_EB] = ACTIONS(107), - [anon_sym_kib] = ACTIONS(107), - [anon_sym_kiB] = ACTIONS(107), - [anon_sym_kIB] = ACTIONS(107), - [anon_sym_kIb] = ACTIONS(107), - [anon_sym_Kib] = ACTIONS(107), - [anon_sym_KIb] = ACTIONS(107), - [anon_sym_KIB] = ACTIONS(107), - [anon_sym_mib] = ACTIONS(107), - [anon_sym_miB] = ACTIONS(107), - [anon_sym_mIB] = ACTIONS(107), - [anon_sym_mIb] = ACTIONS(107), - [anon_sym_Mib] = ACTIONS(107), - [anon_sym_MIb] = ACTIONS(107), - [anon_sym_MIB] = ACTIONS(107), - [anon_sym_gib] = ACTIONS(107), - [anon_sym_giB] = ACTIONS(107), - [anon_sym_gIB] = ACTIONS(107), - [anon_sym_gIb] = ACTIONS(107), - [anon_sym_Gib] = ACTIONS(107), - [anon_sym_GIb] = ACTIONS(107), - [anon_sym_GIB] = ACTIONS(107), - [anon_sym_tib] = ACTIONS(107), - [anon_sym_tiB] = ACTIONS(107), - [anon_sym_tIB] = ACTIONS(107), - [anon_sym_tIb] = ACTIONS(107), - [anon_sym_Tib] = ACTIONS(107), - [anon_sym_TIb] = ACTIONS(107), - [anon_sym_TIB] = ACTIONS(107), - [anon_sym_pib] = ACTIONS(107), - [anon_sym_piB] = ACTIONS(107), - [anon_sym_pIB] = ACTIONS(107), - [anon_sym_pIb] = ACTIONS(107), - [anon_sym_Pib] = ACTIONS(107), - [anon_sym_PIb] = ACTIONS(107), - [anon_sym_PIB] = ACTIONS(107), - [anon_sym_eib] = ACTIONS(107), - [anon_sym_eiB] = ACTIONS(107), - [anon_sym_eIB] = ACTIONS(107), - [anon_sym_eIb] = ACTIONS(107), - [anon_sym_Eib] = ACTIONS(107), - [anon_sym_EIb] = ACTIONS(107), - [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), + [398] = { + [sym_comment] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_QMARK2] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(1147), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [410] = { - [sym_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_QMARK2] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(127), - [anon_sym_SLASH_SLASH] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(127), - [anon_sym_bit_DASHshr] = ACTIONS(127), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_not_DASHin] = ACTIONS(127), - [anon_sym_starts_DASHwith] = ACTIONS(127), - [anon_sym_ends_DASHwith] = ACTIONS(127), - [anon_sym_EQ_TILDE] = ACTIONS(127), - [anon_sym_BANG_TILDE] = ACTIONS(127), - [anon_sym_bit_DASHand] = ACTIONS(127), - [anon_sym_bit_DASHxor] = ACTIONS(127), - [anon_sym_bit_DASHor] = ACTIONS(127), - [anon_sym_and] = ACTIONS(127), - [anon_sym_xor] = ACTIONS(127), - [anon_sym_or] = ACTIONS(127), - [aux_sym__immediate_decimal_token2] = ACTIONS(1223), - [anon_sym_ns] = ACTIONS(127), - [anon_sym_s] = ACTIONS(127), - [anon_sym_us] = ACTIONS(127), - [anon_sym_ms] = ACTIONS(127), - [anon_sym_sec] = ACTIONS(127), - [anon_sym_min] = ACTIONS(127), - [anon_sym_hr] = ACTIONS(127), - [anon_sym_day] = ACTIONS(127), - [anon_sym_wk] = ACTIONS(127), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(127), - [anon_sym_kb] = ACTIONS(127), - [anon_sym_kB] = ACTIONS(127), - [anon_sym_Kb] = ACTIONS(127), - [anon_sym_KB] = ACTIONS(127), - [anon_sym_mb] = ACTIONS(127), - [anon_sym_mB] = ACTIONS(127), - [anon_sym_Mb] = ACTIONS(127), - [anon_sym_MB] = ACTIONS(127), - [anon_sym_gb] = ACTIONS(127), - [anon_sym_gB] = ACTIONS(127), - [anon_sym_Gb] = ACTIONS(127), - [anon_sym_GB] = ACTIONS(127), - [anon_sym_tb] = ACTIONS(127), - [anon_sym_tB] = ACTIONS(127), - [anon_sym_Tb] = ACTIONS(127), - [anon_sym_TB] = ACTIONS(127), - [anon_sym_pb] = ACTIONS(127), - [anon_sym_pB] = ACTIONS(127), - [anon_sym_Pb] = ACTIONS(127), - [anon_sym_PB] = ACTIONS(127), - [anon_sym_eb] = ACTIONS(127), - [anon_sym_eB] = ACTIONS(127), - [anon_sym_Eb] = ACTIONS(127), - [anon_sym_EB] = ACTIONS(127), - [anon_sym_kib] = ACTIONS(127), - [anon_sym_kiB] = ACTIONS(127), - [anon_sym_kIB] = ACTIONS(127), - [anon_sym_kIb] = ACTIONS(127), - [anon_sym_Kib] = ACTIONS(127), - [anon_sym_KIb] = ACTIONS(127), - [anon_sym_KIB] = ACTIONS(127), - [anon_sym_mib] = ACTIONS(127), - [anon_sym_miB] = ACTIONS(127), - [anon_sym_mIB] = ACTIONS(127), - [anon_sym_mIb] = ACTIONS(127), - [anon_sym_Mib] = ACTIONS(127), - [anon_sym_MIb] = ACTIONS(127), - [anon_sym_MIB] = ACTIONS(127), - [anon_sym_gib] = ACTIONS(127), - [anon_sym_giB] = ACTIONS(127), - [anon_sym_gIB] = ACTIONS(127), - [anon_sym_gIb] = ACTIONS(127), - [anon_sym_Gib] = ACTIONS(127), - [anon_sym_GIb] = ACTIONS(127), - [anon_sym_GIB] = ACTIONS(127), - [anon_sym_tib] = ACTIONS(127), - [anon_sym_tiB] = ACTIONS(127), - [anon_sym_tIB] = ACTIONS(127), - [anon_sym_tIb] = ACTIONS(127), - [anon_sym_Tib] = ACTIONS(127), - [anon_sym_TIb] = ACTIONS(127), - [anon_sym_TIB] = ACTIONS(127), - [anon_sym_pib] = ACTIONS(127), - [anon_sym_piB] = ACTIONS(127), - [anon_sym_pIB] = ACTIONS(127), - [anon_sym_pIb] = ACTIONS(127), - [anon_sym_Pib] = ACTIONS(127), - [anon_sym_PIb] = ACTIONS(127), - [anon_sym_PIB] = ACTIONS(127), - [anon_sym_eib] = ACTIONS(127), - [anon_sym_eiB] = ACTIONS(127), - [anon_sym_eIB] = ACTIONS(127), - [anon_sym_eIb] = ACTIONS(127), - [anon_sym_Eib] = ACTIONS(127), - [anon_sym_EIb] = ACTIONS(127), - [anon_sym_EIB] = ACTIONS(127), + [399] = { + [sym_comment] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(1189), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [411] = { - [sym_comment] = STATE(411), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token1] = ACTIONS(1225), - [aux_sym__immediate_decimal_token2] = ACTIONS(1227), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [412] = { - [sym_comment] = STATE(412), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_EQ_GT] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(3), - }, - [413] = { - [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(173), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_QMARK2] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), + [400] = { + [sym_comment] = STATE(400), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(1212), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, - [414] = { - [sym_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(109), + [401] = { + [sym_comment] = STATE(401), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(107), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(107), [anon_sym_in] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), - [anon_sym_QMARK2] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(107), [anon_sym_PLUS_PLUS] = ACTIONS(107), [anon_sym_SLASH] = ACTIONS(107), @@ -128836,10 +128904,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [415] = { - [sym_comment] = STATE(415), + [402] = { + [sym_comment] = STATE(402), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [403] = { + [sym_comment] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_QMARK2] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [aux_sym__immediate_decimal_token2] = ACTIONS(1214), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(105), + }, + [404] = { + [sym_comment] = STATE(404), [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), @@ -128847,7 +129148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(115), [anon_sym_in] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1216), [anon_sym_STAR] = ACTIONS(115), [anon_sym_QMARK2] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(115), @@ -128874,6 +129175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(115), [anon_sym_xor] = ACTIONS(115), [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(1147), [anon_sym_ns] = ACTIONS(115), [anon_sym_s] = ACTIONS(115), [anon_sym_us] = ACTIONS(115), @@ -128953,238 +129255,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EIB] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [416] = { - [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [aux_sym_unquoted_token6] = ACTIONS(148), + [405] = { + [sym_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [aux_sym__immediate_decimal_token2] = ACTIONS(1189), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [417] = { - [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_QMARK2] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(105), + [406] = { + [sym_comment] = STATE(406), + [sym_identifier] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(3), }, - [418] = { - [sym_comment] = STATE(418), + [407] = { + [sym_comment] = STATE(407), [ts_builtin_sym_end] = ACTIONS(117), [anon_sym_SEMI] = ACTIONS(115), [anon_sym_LF] = ACTIONS(117), @@ -129298,8 +129602,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(105), }, - [419] = { - [sym_comment] = STATE(419), + [408] = { + [sym_comment] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_QMARK2] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(105), + }, + [409] = { + [sym_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_QMARK2] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(105), + }, + [410] = { + [sym_comment] = STATE(410), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token1] = ACTIONS(1221), + [aux_sym__immediate_decimal_token2] = ACTIONS(1223), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [411] = { + [sym_comment] = STATE(411), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(107), [anon_sym_LF] = ACTIONS(109), @@ -129309,6 +129958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), + [anon_sym_QMARK2] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(107), [anon_sym_PLUS_PLUS] = ACTIONS(107), [anon_sym_SLASH] = ACTIONS(107), @@ -129410,131 +130060,706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(107), [anon_sym_EIb] = ACTIONS(107), [anon_sym_EIB] = ACTIONS(107), - [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(105), }, - [420] = { - [sym_comment] = STATE(420), - [anon_sym_COLON] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), + [412] = { + [sym_comment] = STATE(412), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(105), + }, + [413] = { + [sym_comment] = STATE(413), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(109), + [anon_sym_in] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_EQ_GT] = ACTIONS(109), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(109), + [anon_sym_PLUS_PLUS] = ACTIONS(109), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(109), + [anon_sym_SLASH_SLASH] = ACTIONS(109), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(109), + [anon_sym_bit_DASHshr] = ACTIONS(109), + [anon_sym_EQ_EQ] = ACTIONS(109), + [anon_sym_BANG_EQ] = ACTIONS(109), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(109), + [anon_sym_not_DASHin] = ACTIONS(109), + [anon_sym_starts_DASHwith] = ACTIONS(109), + [anon_sym_ends_DASHwith] = ACTIONS(109), + [anon_sym_EQ_TILDE] = ACTIONS(109), + [anon_sym_BANG_TILDE] = ACTIONS(109), + [anon_sym_bit_DASHand] = ACTIONS(109), + [anon_sym_bit_DASHxor] = ACTIONS(109), + [anon_sym_bit_DASHor] = ACTIONS(109), + [anon_sym_and] = ACTIONS(109), + [anon_sym_xor] = ACTIONS(109), + [anon_sym_or] = ACTIONS(109), + [aux_sym__immediate_decimal_token1] = ACTIONS(1229), + [aux_sym__immediate_decimal_token2] = ACTIONS(1231), + [anon_sym_ns] = ACTIONS(109), + [anon_sym_s] = ACTIONS(109), + [anon_sym_us] = ACTIONS(109), + [anon_sym_ms] = ACTIONS(109), + [anon_sym_sec] = ACTIONS(109), + [anon_sym_min] = ACTIONS(109), + [anon_sym_hr] = ACTIONS(109), + [anon_sym_day] = ACTIONS(109), + [anon_sym_wk] = ACTIONS(109), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(109), + [anon_sym_kb] = ACTIONS(109), + [anon_sym_kB] = ACTIONS(109), + [anon_sym_Kb] = ACTIONS(109), + [anon_sym_KB] = ACTIONS(109), + [anon_sym_mb] = ACTIONS(109), + [anon_sym_mB] = ACTIONS(109), + [anon_sym_Mb] = ACTIONS(109), + [anon_sym_MB] = ACTIONS(109), + [anon_sym_gb] = ACTIONS(109), + [anon_sym_gB] = ACTIONS(109), + [anon_sym_Gb] = ACTIONS(109), + [anon_sym_GB] = ACTIONS(109), + [anon_sym_tb] = ACTIONS(109), + [anon_sym_tB] = ACTIONS(109), + [anon_sym_Tb] = ACTIONS(109), + [anon_sym_TB] = ACTIONS(109), + [anon_sym_pb] = ACTIONS(109), + [anon_sym_pB] = ACTIONS(109), + [anon_sym_Pb] = ACTIONS(109), + [anon_sym_PB] = ACTIONS(109), + [anon_sym_eb] = ACTIONS(109), + [anon_sym_eB] = ACTIONS(109), + [anon_sym_Eb] = ACTIONS(109), + [anon_sym_EB] = ACTIONS(109), + [anon_sym_kib] = ACTIONS(109), + [anon_sym_kiB] = ACTIONS(109), + [anon_sym_kIB] = ACTIONS(109), + [anon_sym_kIb] = ACTIONS(109), + [anon_sym_Kib] = ACTIONS(109), + [anon_sym_KIb] = ACTIONS(109), + [anon_sym_KIB] = ACTIONS(109), + [anon_sym_mib] = ACTIONS(109), + [anon_sym_miB] = ACTIONS(109), + [anon_sym_mIB] = ACTIONS(109), + [anon_sym_mIb] = ACTIONS(109), + [anon_sym_Mib] = ACTIONS(109), + [anon_sym_MIb] = ACTIONS(109), + [anon_sym_MIB] = ACTIONS(109), + [anon_sym_gib] = ACTIONS(109), + [anon_sym_giB] = ACTIONS(109), + [anon_sym_gIB] = ACTIONS(109), + [anon_sym_gIb] = ACTIONS(109), + [anon_sym_Gib] = ACTIONS(109), + [anon_sym_GIb] = ACTIONS(109), + [anon_sym_GIB] = ACTIONS(109), + [anon_sym_tib] = ACTIONS(109), + [anon_sym_tiB] = ACTIONS(109), + [anon_sym_tIB] = ACTIONS(109), + [anon_sym_tIb] = ACTIONS(109), + [anon_sym_Tib] = ACTIONS(109), + [anon_sym_TIb] = ACTIONS(109), + [anon_sym_TIB] = ACTIONS(109), + [anon_sym_pib] = ACTIONS(109), + [anon_sym_piB] = ACTIONS(109), + [anon_sym_pIB] = ACTIONS(109), + [anon_sym_pIb] = ACTIONS(109), + [anon_sym_Pib] = ACTIONS(109), + [anon_sym_PIb] = ACTIONS(109), + [anon_sym_PIB] = ACTIONS(109), + [anon_sym_eib] = ACTIONS(109), + [anon_sym_eiB] = ACTIONS(109), + [anon_sym_eIB] = ACTIONS(109), + [anon_sym_eIb] = ACTIONS(109), + [anon_sym_Eib] = ACTIONS(109), + [anon_sym_EIb] = ACTIONS(109), + [anon_sym_EIB] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(3), + }, + [414] = { + [sym_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LF] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(115), [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(117), - [anon_sym_in] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_QMARK2] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(117), - [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), - [anon_sym_and] = ACTIONS(117), - [anon_sym_xor] = ACTIONS(117), - [anon_sym_or] = ACTIONS(117), - [anon_sym_ns] = ACTIONS(117), - [anon_sym_s] = ACTIONS(117), - [anon_sym_us] = ACTIONS(117), - [anon_sym_ms] = ACTIONS(117), - [anon_sym_sec] = ACTIONS(117), - [anon_sym_min] = ACTIONS(117), - [anon_sym_hr] = ACTIONS(117), - [anon_sym_day] = ACTIONS(117), - [anon_sym_wk] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(117), - [anon_sym_kb] = ACTIONS(117), - [anon_sym_kB] = ACTIONS(117), - [anon_sym_Kb] = ACTIONS(117), - [anon_sym_KB] = ACTIONS(117), - [anon_sym_mb] = ACTIONS(117), - [anon_sym_mB] = ACTIONS(117), - [anon_sym_Mb] = ACTIONS(117), - [anon_sym_MB] = ACTIONS(117), - [anon_sym_gb] = ACTIONS(117), - [anon_sym_gB] = ACTIONS(117), - [anon_sym_Gb] = ACTIONS(117), - [anon_sym_GB] = ACTIONS(117), - [anon_sym_tb] = ACTIONS(117), - [anon_sym_tB] = ACTIONS(117), - [anon_sym_Tb] = ACTIONS(117), - [anon_sym_TB] = ACTIONS(117), - [anon_sym_pb] = ACTIONS(117), - [anon_sym_pB] = ACTIONS(117), - [anon_sym_Pb] = ACTIONS(117), - [anon_sym_PB] = ACTIONS(117), - [anon_sym_eb] = ACTIONS(117), - [anon_sym_eB] = ACTIONS(117), - [anon_sym_Eb] = ACTIONS(117), - [anon_sym_EB] = ACTIONS(117), - [anon_sym_kib] = ACTIONS(117), - [anon_sym_kiB] = ACTIONS(117), - [anon_sym_kIB] = ACTIONS(117), - [anon_sym_kIb] = ACTIONS(117), - [anon_sym_Kib] = ACTIONS(117), - [anon_sym_KIb] = ACTIONS(117), - [anon_sym_KIB] = ACTIONS(117), - [anon_sym_mib] = ACTIONS(117), - [anon_sym_miB] = ACTIONS(117), - [anon_sym_mIB] = ACTIONS(117), - [anon_sym_mIb] = ACTIONS(117), - [anon_sym_Mib] = ACTIONS(117), - [anon_sym_MIb] = ACTIONS(117), - [anon_sym_MIB] = ACTIONS(117), - [anon_sym_gib] = ACTIONS(117), - [anon_sym_giB] = ACTIONS(117), - [anon_sym_gIB] = ACTIONS(117), - [anon_sym_gIb] = ACTIONS(117), - [anon_sym_Gib] = ACTIONS(117), - [anon_sym_GIb] = ACTIONS(117), - [anon_sym_GIB] = ACTIONS(117), - [anon_sym_tib] = ACTIONS(117), - [anon_sym_tiB] = ACTIONS(117), - [anon_sym_tIB] = ACTIONS(117), - [anon_sym_tIb] = ACTIONS(117), - [anon_sym_Tib] = ACTIONS(117), - [anon_sym_TIb] = ACTIONS(117), - [anon_sym_TIB] = ACTIONS(117), - [anon_sym_pib] = ACTIONS(117), - [anon_sym_piB] = ACTIONS(117), - [anon_sym_pIB] = ACTIONS(117), - [anon_sym_pIb] = ACTIONS(117), - [anon_sym_Pib] = ACTIONS(117), - [anon_sym_PIb] = ACTIONS(117), - [anon_sym_PIB] = ACTIONS(117), - [anon_sym_eib] = ACTIONS(117), - [anon_sym_eiB] = ACTIONS(117), - [anon_sym_eIB] = ACTIONS(117), - [anon_sym_eIb] = ACTIONS(117), - [anon_sym_Eib] = ACTIONS(117), - [anon_sym_EIb] = ACTIONS(117), - [anon_sym_EIB] = ACTIONS(117), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(105), + }, + [415] = { + [sym_comment] = STATE(415), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(109), + [anon_sym_in] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(109), + [anon_sym_PLUS_PLUS] = ACTIONS(109), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(109), + [anon_sym_SLASH_SLASH] = ACTIONS(109), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(109), + [anon_sym_bit_DASHshr] = ACTIONS(109), + [anon_sym_EQ_EQ] = ACTIONS(109), + [anon_sym_BANG_EQ] = ACTIONS(109), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(109), + [anon_sym_not_DASHin] = ACTIONS(109), + [anon_sym_starts_DASHwith] = ACTIONS(109), + [anon_sym_ends_DASHwith] = ACTIONS(109), + [anon_sym_EQ_TILDE] = ACTIONS(109), + [anon_sym_BANG_TILDE] = ACTIONS(109), + [anon_sym_bit_DASHand] = ACTIONS(109), + [anon_sym_bit_DASHxor] = ACTIONS(109), + [anon_sym_bit_DASHor] = ACTIONS(109), + [anon_sym_and] = ACTIONS(109), + [anon_sym_xor] = ACTIONS(109), + [anon_sym_or] = ACTIONS(109), + [aux_sym__immediate_decimal_token1] = ACTIONS(1233), + [aux_sym__immediate_decimal_token2] = ACTIONS(1235), + [anon_sym_ns] = ACTIONS(109), + [anon_sym_s] = ACTIONS(109), + [anon_sym_us] = ACTIONS(109), + [anon_sym_ms] = ACTIONS(109), + [anon_sym_sec] = ACTIONS(109), + [anon_sym_min] = ACTIONS(109), + [anon_sym_hr] = ACTIONS(109), + [anon_sym_day] = ACTIONS(109), + [anon_sym_wk] = ACTIONS(109), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(109), + [anon_sym_kb] = ACTIONS(109), + [anon_sym_kB] = ACTIONS(109), + [anon_sym_Kb] = ACTIONS(109), + [anon_sym_KB] = ACTIONS(109), + [anon_sym_mb] = ACTIONS(109), + [anon_sym_mB] = ACTIONS(109), + [anon_sym_Mb] = ACTIONS(109), + [anon_sym_MB] = ACTIONS(109), + [anon_sym_gb] = ACTIONS(109), + [anon_sym_gB] = ACTIONS(109), + [anon_sym_Gb] = ACTIONS(109), + [anon_sym_GB] = ACTIONS(109), + [anon_sym_tb] = ACTIONS(109), + [anon_sym_tB] = ACTIONS(109), + [anon_sym_Tb] = ACTIONS(109), + [anon_sym_TB] = ACTIONS(109), + [anon_sym_pb] = ACTIONS(109), + [anon_sym_pB] = ACTIONS(109), + [anon_sym_Pb] = ACTIONS(109), + [anon_sym_PB] = ACTIONS(109), + [anon_sym_eb] = ACTIONS(109), + [anon_sym_eB] = ACTIONS(109), + [anon_sym_Eb] = ACTIONS(109), + [anon_sym_EB] = ACTIONS(109), + [anon_sym_kib] = ACTIONS(109), + [anon_sym_kiB] = ACTIONS(109), + [anon_sym_kIB] = ACTIONS(109), + [anon_sym_kIb] = ACTIONS(109), + [anon_sym_Kib] = ACTIONS(109), + [anon_sym_KIb] = ACTIONS(109), + [anon_sym_KIB] = ACTIONS(109), + [anon_sym_mib] = ACTIONS(109), + [anon_sym_miB] = ACTIONS(109), + [anon_sym_mIB] = ACTIONS(109), + [anon_sym_mIb] = ACTIONS(109), + [anon_sym_Mib] = ACTIONS(109), + [anon_sym_MIb] = ACTIONS(109), + [anon_sym_MIB] = ACTIONS(109), + [anon_sym_gib] = ACTIONS(109), + [anon_sym_giB] = ACTIONS(109), + [anon_sym_gIB] = ACTIONS(109), + [anon_sym_gIb] = ACTIONS(109), + [anon_sym_Gib] = ACTIONS(109), + [anon_sym_GIb] = ACTIONS(109), + [anon_sym_GIB] = ACTIONS(109), + [anon_sym_tib] = ACTIONS(109), + [anon_sym_tiB] = ACTIONS(109), + [anon_sym_tIB] = ACTIONS(109), + [anon_sym_tIb] = ACTIONS(109), + [anon_sym_Tib] = ACTIONS(109), + [anon_sym_TIb] = ACTIONS(109), + [anon_sym_TIB] = ACTIONS(109), + [anon_sym_pib] = ACTIONS(109), + [anon_sym_piB] = ACTIONS(109), + [anon_sym_pIB] = ACTIONS(109), + [anon_sym_pIb] = ACTIONS(109), + [anon_sym_Pib] = ACTIONS(109), + [anon_sym_PIb] = ACTIONS(109), + [anon_sym_PIB] = ACTIONS(109), + [anon_sym_eib] = ACTIONS(109), + [anon_sym_eiB] = ACTIONS(109), + [anon_sym_eIB] = ACTIONS(109), + [anon_sym_eIb] = ACTIONS(109), + [anon_sym_Eib] = ACTIONS(109), + [anon_sym_EIb] = ACTIONS(109), + [anon_sym_EIB] = ACTIONS(109), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [421] = { - [sym_comment] = STATE(421), + [416] = { + [sym_comment] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(109), + [anon_sym_SEMI] = ACTIONS(107), + [anon_sym_LF] = ACTIONS(109), + [anon_sym_PIPE] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_in] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(107), + [anon_sym_PLUS_PLUS] = ACTIONS(107), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(107), + [anon_sym_bit_DASHshr] = ACTIONS(107), + [anon_sym_EQ_EQ] = ACTIONS(107), + [anon_sym_BANG_EQ] = ACTIONS(107), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(107), + [anon_sym_GT_EQ] = ACTIONS(107), + [anon_sym_not_DASHin] = ACTIONS(107), + [anon_sym_starts_DASHwith] = ACTIONS(107), + [anon_sym_ends_DASHwith] = ACTIONS(107), + [anon_sym_EQ_TILDE] = ACTIONS(107), + [anon_sym_BANG_TILDE] = ACTIONS(107), + [anon_sym_bit_DASHand] = ACTIONS(107), + [anon_sym_bit_DASHxor] = ACTIONS(107), + [anon_sym_bit_DASHor] = ACTIONS(107), + [anon_sym_and] = ACTIONS(107), + [anon_sym_xor] = ACTIONS(107), + [anon_sym_or] = ACTIONS(107), + [anon_sym_ns] = ACTIONS(107), + [anon_sym_s] = ACTIONS(107), + [anon_sym_us] = ACTIONS(107), + [anon_sym_ms] = ACTIONS(107), + [anon_sym_sec] = ACTIONS(107), + [anon_sym_min] = ACTIONS(107), + [anon_sym_hr] = ACTIONS(107), + [anon_sym_day] = ACTIONS(107), + [anon_sym_wk] = ACTIONS(107), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(107), + [anon_sym_kb] = ACTIONS(107), + [anon_sym_kB] = ACTIONS(107), + [anon_sym_Kb] = ACTIONS(107), + [anon_sym_KB] = ACTIONS(107), + [anon_sym_mb] = ACTIONS(107), + [anon_sym_mB] = ACTIONS(107), + [anon_sym_Mb] = ACTIONS(107), + [anon_sym_MB] = ACTIONS(107), + [anon_sym_gb] = ACTIONS(107), + [anon_sym_gB] = ACTIONS(107), + [anon_sym_Gb] = ACTIONS(107), + [anon_sym_GB] = ACTIONS(107), + [anon_sym_tb] = ACTIONS(107), + [anon_sym_tB] = ACTIONS(107), + [anon_sym_Tb] = ACTIONS(107), + [anon_sym_TB] = ACTIONS(107), + [anon_sym_pb] = ACTIONS(107), + [anon_sym_pB] = ACTIONS(107), + [anon_sym_Pb] = ACTIONS(107), + [anon_sym_PB] = ACTIONS(107), + [anon_sym_eb] = ACTIONS(107), + [anon_sym_eB] = ACTIONS(107), + [anon_sym_Eb] = ACTIONS(107), + [anon_sym_EB] = ACTIONS(107), + [anon_sym_kib] = ACTIONS(107), + [anon_sym_kiB] = ACTIONS(107), + [anon_sym_kIB] = ACTIONS(107), + [anon_sym_kIb] = ACTIONS(107), + [anon_sym_Kib] = ACTIONS(107), + [anon_sym_KIb] = ACTIONS(107), + [anon_sym_KIB] = ACTIONS(107), + [anon_sym_mib] = ACTIONS(107), + [anon_sym_miB] = ACTIONS(107), + [anon_sym_mIB] = ACTIONS(107), + [anon_sym_mIb] = ACTIONS(107), + [anon_sym_Mib] = ACTIONS(107), + [anon_sym_MIb] = ACTIONS(107), + [anon_sym_MIB] = ACTIONS(107), + [anon_sym_gib] = ACTIONS(107), + [anon_sym_giB] = ACTIONS(107), + [anon_sym_gIB] = ACTIONS(107), + [anon_sym_gIb] = ACTIONS(107), + [anon_sym_Gib] = ACTIONS(107), + [anon_sym_GIb] = ACTIONS(107), + [anon_sym_GIB] = ACTIONS(107), + [anon_sym_tib] = ACTIONS(107), + [anon_sym_tiB] = ACTIONS(107), + [anon_sym_tIB] = ACTIONS(107), + [anon_sym_tIb] = ACTIONS(107), + [anon_sym_Tib] = ACTIONS(107), + [anon_sym_TIb] = ACTIONS(107), + [anon_sym_TIB] = ACTIONS(107), + [anon_sym_pib] = ACTIONS(107), + [anon_sym_piB] = ACTIONS(107), + [anon_sym_pIB] = ACTIONS(107), + [anon_sym_pIb] = ACTIONS(107), + [anon_sym_Pib] = ACTIONS(107), + [anon_sym_PIb] = ACTIONS(107), + [anon_sym_PIB] = ACTIONS(107), + [anon_sym_eib] = ACTIONS(107), + [anon_sym_eiB] = ACTIONS(107), + [anon_sym_eIB] = ACTIONS(107), + [anon_sym_eIb] = ACTIONS(107), + [anon_sym_Eib] = ACTIONS(107), + [anon_sym_EIb] = ACTIONS(107), + [anon_sym_EIB] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), + [anon_sym_POUND] = ACTIONS(105), + }, + [417] = { + [sym_comment] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_QMARK2] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(105), + }, + [418] = { + [sym_comment] = STATE(418), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(117), [anon_sym_in] = ACTIONS(117), [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(117), @@ -129561,8 +130786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(117), [anon_sym_xor] = ACTIONS(117), [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token1] = ACTIONS(1229), - [aux_sym__immediate_decimal_token2] = ACTIONS(1231), + [aux_sym__immediate_decimal_token1] = ACTIONS(1237), + [aux_sym__immediate_decimal_token2] = ACTIONS(1239), [anon_sym_ns] = ACTIONS(117), [anon_sym_s] = ACTIONS(117), [anon_sym_us] = ACTIONS(117), @@ -129640,471 +130865,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(117), [anon_sym_EIb] = ACTIONS(117), [anon_sym_EIB] = ACTIONS(117), - [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [422] = { - [sym_comment] = STATE(422), - [anon_sym_COLON] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_in] = ACTIONS(167), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(167), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(167), - [anon_sym_xor] = ACTIONS(167), - [anon_sym_or] = ACTIONS(167), - [anon_sym_ns] = ACTIONS(167), - [anon_sym_s] = ACTIONS(167), - [anon_sym_us] = ACTIONS(167), - [anon_sym_ms] = ACTIONS(167), - [anon_sym_sec] = ACTIONS(167), - [anon_sym_min] = ACTIONS(167), - [anon_sym_hr] = ACTIONS(167), - [anon_sym_day] = ACTIONS(167), - [anon_sym_wk] = ACTIONS(167), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(167), - [anon_sym_kb] = ACTIONS(167), - [anon_sym_kB] = ACTIONS(167), - [anon_sym_Kb] = ACTIONS(167), - [anon_sym_KB] = ACTIONS(167), - [anon_sym_mb] = ACTIONS(167), - [anon_sym_mB] = ACTIONS(167), - [anon_sym_Mb] = ACTIONS(167), - [anon_sym_MB] = ACTIONS(167), - [anon_sym_gb] = ACTIONS(167), - [anon_sym_gB] = ACTIONS(167), - [anon_sym_Gb] = ACTIONS(167), - [anon_sym_GB] = ACTIONS(167), - [anon_sym_tb] = ACTIONS(167), - [anon_sym_tB] = ACTIONS(167), - [anon_sym_Tb] = ACTIONS(167), - [anon_sym_TB] = ACTIONS(167), - [anon_sym_pb] = ACTIONS(167), - [anon_sym_pB] = ACTIONS(167), - [anon_sym_Pb] = ACTIONS(167), - [anon_sym_PB] = ACTIONS(167), - [anon_sym_eb] = ACTIONS(167), - [anon_sym_eB] = ACTIONS(167), - [anon_sym_Eb] = ACTIONS(167), - [anon_sym_EB] = ACTIONS(167), - [anon_sym_kib] = ACTIONS(167), - [anon_sym_kiB] = ACTIONS(167), - [anon_sym_kIB] = ACTIONS(167), - [anon_sym_kIb] = ACTIONS(167), - [anon_sym_Kib] = ACTIONS(167), - [anon_sym_KIb] = ACTIONS(167), - [anon_sym_KIB] = ACTIONS(167), - [anon_sym_mib] = ACTIONS(167), - [anon_sym_miB] = ACTIONS(167), - [anon_sym_mIB] = ACTIONS(167), - [anon_sym_mIb] = ACTIONS(167), - [anon_sym_Mib] = ACTIONS(167), - [anon_sym_MIb] = ACTIONS(167), - [anon_sym_MIB] = ACTIONS(167), - [anon_sym_gib] = ACTIONS(167), - [anon_sym_giB] = ACTIONS(167), - [anon_sym_gIB] = ACTIONS(167), - [anon_sym_gIb] = ACTIONS(167), - [anon_sym_Gib] = ACTIONS(167), - [anon_sym_GIb] = ACTIONS(167), - [anon_sym_GIB] = ACTIONS(167), - [anon_sym_tib] = ACTIONS(167), - [anon_sym_tiB] = ACTIONS(167), - [anon_sym_tIB] = ACTIONS(167), - [anon_sym_tIb] = ACTIONS(167), - [anon_sym_Tib] = ACTIONS(167), - [anon_sym_TIb] = ACTIONS(167), - [anon_sym_TIB] = ACTIONS(167), - [anon_sym_pib] = ACTIONS(167), - [anon_sym_piB] = ACTIONS(167), - [anon_sym_pIB] = ACTIONS(167), - [anon_sym_pIb] = ACTIONS(167), - [anon_sym_Pib] = ACTIONS(167), - [anon_sym_PIb] = ACTIONS(167), - [anon_sym_PIB] = ACTIONS(167), - [anon_sym_eib] = ACTIONS(167), - [anon_sym_eiB] = ACTIONS(167), - [anon_sym_eIB] = ACTIONS(167), - [anon_sym_eIb] = ACTIONS(167), - [anon_sym_Eib] = ACTIONS(167), - [anon_sym_EIb] = ACTIONS(167), - [anon_sym_EIB] = ACTIONS(167), [anon_sym_POUND] = ACTIONS(3), }, - [423] = { - [sym_comment] = STATE(423), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_in] = ACTIONS(150), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_POUND] = ACTIONS(3), + [419] = { + [sym_comment] = STATE(419), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(105), }, - [424] = { - [sym_comment] = STATE(424), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), + [420] = { + [sym_comment] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, - [425] = { - [sym_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1237), + [421] = { + [sym_comment] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_in] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_QMARK2] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(147), + [anon_sym_SLASH_SLASH] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(147), + [anon_sym_bit_DASHshr] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_not_DASHin] = ACTIONS(147), + [anon_sym_starts_DASHwith] = ACTIONS(147), + [anon_sym_ends_DASHwith] = ACTIONS(147), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_BANG_TILDE] = ACTIONS(147), + [anon_sym_bit_DASHand] = ACTIONS(147), + [anon_sym_bit_DASHxor] = ACTIONS(147), + [anon_sym_bit_DASHor] = ACTIONS(147), + [anon_sym_and] = ACTIONS(147), + [anon_sym_xor] = ACTIONS(147), + [anon_sym_or] = ACTIONS(147), + [anon_sym_ns] = ACTIONS(147), + [anon_sym_s] = ACTIONS(147), + [anon_sym_us] = ACTIONS(147), + [anon_sym_ms] = ACTIONS(147), + [anon_sym_sec] = ACTIONS(147), + [anon_sym_min] = ACTIONS(147), + [anon_sym_hr] = ACTIONS(147), + [anon_sym_day] = ACTIONS(147), + [anon_sym_wk] = ACTIONS(147), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(147), + [anon_sym_kb] = ACTIONS(147), + [anon_sym_kB] = ACTIONS(147), + [anon_sym_Kb] = ACTIONS(147), + [anon_sym_KB] = ACTIONS(147), + [anon_sym_mb] = ACTIONS(147), + [anon_sym_mB] = ACTIONS(147), + [anon_sym_Mb] = ACTIONS(147), + [anon_sym_MB] = ACTIONS(147), + [anon_sym_gb] = ACTIONS(147), + [anon_sym_gB] = ACTIONS(147), + [anon_sym_Gb] = ACTIONS(147), + [anon_sym_GB] = ACTIONS(147), + [anon_sym_tb] = ACTIONS(147), + [anon_sym_tB] = ACTIONS(147), + [anon_sym_Tb] = ACTIONS(147), + [anon_sym_TB] = ACTIONS(147), + [anon_sym_pb] = ACTIONS(147), + [anon_sym_pB] = ACTIONS(147), + [anon_sym_Pb] = ACTIONS(147), + [anon_sym_PB] = ACTIONS(147), + [anon_sym_eb] = ACTIONS(147), + [anon_sym_eB] = ACTIONS(147), + [anon_sym_Eb] = ACTIONS(147), + [anon_sym_EB] = ACTIONS(147), + [anon_sym_kib] = ACTIONS(147), + [anon_sym_kiB] = ACTIONS(147), + [anon_sym_kIB] = ACTIONS(147), + [anon_sym_kIb] = ACTIONS(147), + [anon_sym_Kib] = ACTIONS(147), + [anon_sym_KIb] = ACTIONS(147), + [anon_sym_KIB] = ACTIONS(147), + [anon_sym_mib] = ACTIONS(147), + [anon_sym_miB] = ACTIONS(147), + [anon_sym_mIB] = ACTIONS(147), + [anon_sym_mIb] = ACTIONS(147), + [anon_sym_Mib] = ACTIONS(147), + [anon_sym_MIb] = ACTIONS(147), + [anon_sym_MIB] = ACTIONS(147), + [anon_sym_gib] = ACTIONS(147), + [anon_sym_giB] = ACTIONS(147), + [anon_sym_gIB] = ACTIONS(147), + [anon_sym_gIb] = ACTIONS(147), + [anon_sym_Gib] = ACTIONS(147), + [anon_sym_GIb] = ACTIONS(147), + [anon_sym_GIB] = ACTIONS(147), + [anon_sym_tib] = ACTIONS(147), + [anon_sym_tiB] = ACTIONS(147), + [anon_sym_tIB] = ACTIONS(147), + [anon_sym_tIb] = ACTIONS(147), + [anon_sym_Tib] = ACTIONS(147), + [anon_sym_TIb] = ACTIONS(147), + [anon_sym_TIB] = ACTIONS(147), + [anon_sym_pib] = ACTIONS(147), + [anon_sym_piB] = ACTIONS(147), + [anon_sym_pIB] = ACTIONS(147), + [anon_sym_pIb] = ACTIONS(147), + [anon_sym_Pib] = ACTIONS(147), + [anon_sym_PIb] = ACTIONS(147), + [anon_sym_PIB] = ACTIONS(147), + [anon_sym_eib] = ACTIONS(147), + [anon_sym_eiB] = ACTIONS(147), + [anon_sym_eIB] = ACTIONS(147), + [anon_sym_eIb] = ACTIONS(147), + [anon_sym_Eib] = ACTIONS(147), + [anon_sym_EIb] = ACTIONS(147), + [anon_sym_EIB] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(105), }, - [426] = { - [sym_comment] = STATE(426), + [422] = { + [sym_comment] = STATE(422), [ts_builtin_sym_end] = ACTIONS(223), [anon_sym_SEMI] = ACTIONS(221), [anon_sym_LF] = ACTIONS(223), @@ -130218,699 +131327,811 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EIB] = ACTIONS(221), [anon_sym_POUND] = ACTIONS(105), }, + [423] = { + [sym_comment] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_LF] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_in] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(157), + [anon_sym_SLASH_SLASH] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(157), + [anon_sym_bit_DASHshr] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(157), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_not_DASHin] = ACTIONS(157), + [anon_sym_starts_DASHwith] = ACTIONS(157), + [anon_sym_ends_DASHwith] = ACTIONS(157), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_BANG_TILDE] = ACTIONS(157), + [anon_sym_bit_DASHand] = ACTIONS(157), + [anon_sym_bit_DASHxor] = ACTIONS(157), + [anon_sym_bit_DASHor] = ACTIONS(157), + [anon_sym_and] = ACTIONS(157), + [anon_sym_xor] = ACTIONS(157), + [anon_sym_or] = ACTIONS(157), + [anon_sym_ns] = ACTIONS(157), + [anon_sym_s] = ACTIONS(157), + [anon_sym_us] = ACTIONS(157), + [anon_sym_ms] = ACTIONS(157), + [anon_sym_sec] = ACTIONS(157), + [anon_sym_min] = ACTIONS(157), + [anon_sym_hr] = ACTIONS(157), + [anon_sym_day] = ACTIONS(157), + [anon_sym_wk] = ACTIONS(157), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(157), + [anon_sym_kb] = ACTIONS(157), + [anon_sym_kB] = ACTIONS(157), + [anon_sym_Kb] = ACTIONS(157), + [anon_sym_KB] = ACTIONS(157), + [anon_sym_mb] = ACTIONS(157), + [anon_sym_mB] = ACTIONS(157), + [anon_sym_Mb] = ACTIONS(157), + [anon_sym_MB] = ACTIONS(157), + [anon_sym_gb] = ACTIONS(157), + [anon_sym_gB] = ACTIONS(157), + [anon_sym_Gb] = ACTIONS(157), + [anon_sym_GB] = ACTIONS(157), + [anon_sym_tb] = ACTIONS(157), + [anon_sym_tB] = ACTIONS(157), + [anon_sym_Tb] = ACTIONS(157), + [anon_sym_TB] = ACTIONS(157), + [anon_sym_pb] = ACTIONS(157), + [anon_sym_pB] = ACTIONS(157), + [anon_sym_Pb] = ACTIONS(157), + [anon_sym_PB] = ACTIONS(157), + [anon_sym_eb] = ACTIONS(157), + [anon_sym_eB] = ACTIONS(157), + [anon_sym_Eb] = ACTIONS(157), + [anon_sym_EB] = ACTIONS(157), + [anon_sym_kib] = ACTIONS(157), + [anon_sym_kiB] = ACTIONS(157), + [anon_sym_kIB] = ACTIONS(157), + [anon_sym_kIb] = ACTIONS(157), + [anon_sym_Kib] = ACTIONS(157), + [anon_sym_KIb] = ACTIONS(157), + [anon_sym_KIB] = ACTIONS(157), + [anon_sym_mib] = ACTIONS(157), + [anon_sym_miB] = ACTIONS(157), + [anon_sym_mIB] = ACTIONS(157), + [anon_sym_mIb] = ACTIONS(157), + [anon_sym_Mib] = ACTIONS(157), + [anon_sym_MIb] = ACTIONS(157), + [anon_sym_MIB] = ACTIONS(157), + [anon_sym_gib] = ACTIONS(157), + [anon_sym_giB] = ACTIONS(157), + [anon_sym_gIB] = ACTIONS(157), + [anon_sym_gIb] = ACTIONS(157), + [anon_sym_Gib] = ACTIONS(157), + [anon_sym_GIb] = ACTIONS(157), + [anon_sym_GIB] = ACTIONS(157), + [anon_sym_tib] = ACTIONS(157), + [anon_sym_tiB] = ACTIONS(157), + [anon_sym_tIB] = ACTIONS(157), + [anon_sym_tIb] = ACTIONS(157), + [anon_sym_Tib] = ACTIONS(157), + [anon_sym_TIb] = ACTIONS(157), + [anon_sym_TIB] = ACTIONS(157), + [anon_sym_pib] = ACTIONS(157), + [anon_sym_piB] = ACTIONS(157), + [anon_sym_pIB] = ACTIONS(157), + [anon_sym_pIb] = ACTIONS(157), + [anon_sym_Pib] = ACTIONS(157), + [anon_sym_PIb] = ACTIONS(157), + [anon_sym_PIB] = ACTIONS(157), + [anon_sym_eib] = ACTIONS(157), + [anon_sym_eiB] = ACTIONS(157), + [anon_sym_eIB] = ACTIONS(157), + [anon_sym_eIb] = ACTIONS(157), + [anon_sym_Eib] = ACTIONS(157), + [anon_sym_EIb] = ACTIONS(157), + [anon_sym_EIB] = ACTIONS(157), + [aux_sym_unquoted_token6] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(105), + }, + [424] = { + [sym_comment] = STATE(424), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1202), + [anon_sym_POUND] = ACTIONS(105), + }, + [425] = { + [sym_comment] = STATE(425), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token1] = ACTIONS(1243), + [aux_sym__immediate_decimal_token2] = ACTIONS(1245), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [426] = { + [sym_comment] = STATE(426), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1223), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, [427] = { [sym_comment] = STATE(427), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_COLON] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_EQ_GT] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_POUND] = ACTIONS(3), }, [428] = { [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_QMARK2] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), + [aux_sym_unquoted_token6] = ACTIONS(1227), [anon_sym_POUND] = ACTIONS(105), }, [429] = { [sym_comment] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(165), - [anon_sym_bit_DASHshr] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_not_DASHin] = ACTIONS(165), - [anon_sym_starts_DASHwith] = ACTIONS(165), - [anon_sym_ends_DASHwith] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_BANG_TILDE] = ACTIONS(165), - [anon_sym_bit_DASHand] = ACTIONS(165), - [anon_sym_bit_DASHxor] = ACTIONS(165), - [anon_sym_bit_DASHor] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_xor] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_ns] = ACTIONS(165), - [anon_sym_s] = ACTIONS(165), - [anon_sym_us] = ACTIONS(165), - [anon_sym_ms] = ACTIONS(165), - [anon_sym_sec] = ACTIONS(165), - [anon_sym_min] = ACTIONS(165), - [anon_sym_hr] = ACTIONS(165), - [anon_sym_day] = ACTIONS(165), - [anon_sym_wk] = ACTIONS(165), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(165), - [anon_sym_kb] = ACTIONS(165), - [anon_sym_kB] = ACTIONS(165), - [anon_sym_Kb] = ACTIONS(165), - [anon_sym_KB] = ACTIONS(165), - [anon_sym_mb] = ACTIONS(165), - [anon_sym_mB] = ACTIONS(165), - [anon_sym_Mb] = ACTIONS(165), - [anon_sym_MB] = ACTIONS(165), - [anon_sym_gb] = ACTIONS(165), - [anon_sym_gB] = ACTIONS(165), - [anon_sym_Gb] = ACTIONS(165), - [anon_sym_GB] = ACTIONS(165), - [anon_sym_tb] = ACTIONS(165), - [anon_sym_tB] = ACTIONS(165), - [anon_sym_Tb] = ACTIONS(165), - [anon_sym_TB] = ACTIONS(165), - [anon_sym_pb] = ACTIONS(165), - [anon_sym_pB] = ACTIONS(165), - [anon_sym_Pb] = ACTIONS(165), - [anon_sym_PB] = ACTIONS(165), - [anon_sym_eb] = ACTIONS(165), - [anon_sym_eB] = ACTIONS(165), - [anon_sym_Eb] = ACTIONS(165), - [anon_sym_EB] = ACTIONS(165), - [anon_sym_kib] = ACTIONS(165), - [anon_sym_kiB] = ACTIONS(165), - [anon_sym_kIB] = ACTIONS(165), - [anon_sym_kIb] = ACTIONS(165), - [anon_sym_Kib] = ACTIONS(165), - [anon_sym_KIb] = ACTIONS(165), - [anon_sym_KIB] = ACTIONS(165), - [anon_sym_mib] = ACTIONS(165), - [anon_sym_miB] = ACTIONS(165), - [anon_sym_mIB] = ACTIONS(165), - [anon_sym_mIb] = ACTIONS(165), - [anon_sym_Mib] = ACTIONS(165), - [anon_sym_MIb] = ACTIONS(165), - [anon_sym_MIB] = ACTIONS(165), - [anon_sym_gib] = ACTIONS(165), - [anon_sym_giB] = ACTIONS(165), - [anon_sym_gIB] = ACTIONS(165), - [anon_sym_gIb] = ACTIONS(165), - [anon_sym_Gib] = ACTIONS(165), - [anon_sym_GIb] = ACTIONS(165), - [anon_sym_GIB] = ACTIONS(165), - [anon_sym_tib] = ACTIONS(165), - [anon_sym_tiB] = ACTIONS(165), - [anon_sym_tIB] = ACTIONS(165), - [anon_sym_tIb] = ACTIONS(165), - [anon_sym_Tib] = ACTIONS(165), - [anon_sym_TIb] = ACTIONS(165), - [anon_sym_TIB] = ACTIONS(165), - [anon_sym_pib] = ACTIONS(165), - [anon_sym_piB] = ACTIONS(165), - [anon_sym_pIB] = ACTIONS(165), - [anon_sym_pIb] = ACTIONS(165), - [anon_sym_Pib] = ACTIONS(165), - [anon_sym_PIb] = ACTIONS(165), - [anon_sym_PIB] = ACTIONS(165), - [anon_sym_eib] = ACTIONS(165), - [anon_sym_eiB] = ACTIONS(165), - [anon_sym_eIB] = ACTIONS(165), - [anon_sym_eIb] = ACTIONS(165), - [anon_sym_Eib] = ACTIONS(165), - [anon_sym_EIb] = ACTIONS(165), - [anon_sym_EIB] = ACTIONS(165), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [aux_sym__immediate_decimal_token1] = ACTIONS(1247), + [aux_sym__immediate_decimal_token2] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(117), + [anon_sym_true] = ACTIONS(117), + [anon_sym_false] = ACTIONS(117), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(117), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(117), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(117), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym__unquoted_in_list_token1] = ACTIONS(115), + [aux_sym__unquoted_in_list_token7] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), }, [430] = { [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_LF] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_in] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_QMARK2] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(148), - [anon_sym_SLASH_SLASH] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(148), - [anon_sym_bit_DASHshr] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_not_DASHin] = ACTIONS(148), - [anon_sym_starts_DASHwith] = ACTIONS(148), - [anon_sym_ends_DASHwith] = ACTIONS(148), - [anon_sym_EQ_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_bit_DASHand] = ACTIONS(148), - [anon_sym_bit_DASHxor] = ACTIONS(148), - [anon_sym_bit_DASHor] = ACTIONS(148), - [anon_sym_and] = ACTIONS(148), - [anon_sym_xor] = ACTIONS(148), - [anon_sym_or] = ACTIONS(148), - [anon_sym_ns] = ACTIONS(148), - [anon_sym_s] = ACTIONS(148), - [anon_sym_us] = ACTIONS(148), - [anon_sym_ms] = ACTIONS(148), - [anon_sym_sec] = ACTIONS(148), - [anon_sym_min] = ACTIONS(148), - [anon_sym_hr] = ACTIONS(148), - [anon_sym_day] = ACTIONS(148), - [anon_sym_wk] = ACTIONS(148), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(148), - [anon_sym_kb] = ACTIONS(148), - [anon_sym_kB] = ACTIONS(148), - [anon_sym_Kb] = ACTIONS(148), - [anon_sym_KB] = ACTIONS(148), - [anon_sym_mb] = ACTIONS(148), - [anon_sym_mB] = ACTIONS(148), - [anon_sym_Mb] = ACTIONS(148), - [anon_sym_MB] = ACTIONS(148), - [anon_sym_gb] = ACTIONS(148), - [anon_sym_gB] = ACTIONS(148), - [anon_sym_Gb] = ACTIONS(148), - [anon_sym_GB] = ACTIONS(148), - [anon_sym_tb] = ACTIONS(148), - [anon_sym_tB] = ACTIONS(148), - [anon_sym_Tb] = ACTIONS(148), - [anon_sym_TB] = ACTIONS(148), - [anon_sym_pb] = ACTIONS(148), - [anon_sym_pB] = ACTIONS(148), - [anon_sym_Pb] = ACTIONS(148), - [anon_sym_PB] = ACTIONS(148), - [anon_sym_eb] = ACTIONS(148), - [anon_sym_eB] = ACTIONS(148), - [anon_sym_Eb] = ACTIONS(148), - [anon_sym_EB] = ACTIONS(148), - [anon_sym_kib] = ACTIONS(148), - [anon_sym_kiB] = ACTIONS(148), - [anon_sym_kIB] = ACTIONS(148), - [anon_sym_kIb] = ACTIONS(148), - [anon_sym_Kib] = ACTIONS(148), - [anon_sym_KIb] = ACTIONS(148), - [anon_sym_KIB] = ACTIONS(148), - [anon_sym_mib] = ACTIONS(148), - [anon_sym_miB] = ACTIONS(148), - [anon_sym_mIB] = ACTIONS(148), - [anon_sym_mIb] = ACTIONS(148), - [anon_sym_Mib] = ACTIONS(148), - [anon_sym_MIb] = ACTIONS(148), - [anon_sym_MIB] = ACTIONS(148), - [anon_sym_gib] = ACTIONS(148), - [anon_sym_giB] = ACTIONS(148), - [anon_sym_gIB] = ACTIONS(148), - [anon_sym_gIb] = ACTIONS(148), - [anon_sym_Gib] = ACTIONS(148), - [anon_sym_GIb] = ACTIONS(148), - [anon_sym_GIB] = ACTIONS(148), - [anon_sym_tib] = ACTIONS(148), - [anon_sym_tiB] = ACTIONS(148), - [anon_sym_tIB] = ACTIONS(148), - [anon_sym_tIb] = ACTIONS(148), - [anon_sym_Tib] = ACTIONS(148), - [anon_sym_TIb] = ACTIONS(148), - [anon_sym_TIB] = ACTIONS(148), - [anon_sym_pib] = ACTIONS(148), - [anon_sym_piB] = ACTIONS(148), - [anon_sym_pIB] = ACTIONS(148), - [anon_sym_pIb] = ACTIONS(148), - [anon_sym_Pib] = ACTIONS(148), - [anon_sym_PIb] = ACTIONS(148), - [anon_sym_PIB] = ACTIONS(148), - [anon_sym_eib] = ACTIONS(148), - [anon_sym_eiB] = ACTIONS(148), - [anon_sym_eIB] = ACTIONS(148), - [anon_sym_eIb] = ACTIONS(148), - [anon_sym_Eib] = ACTIONS(148), - [anon_sym_EIb] = ACTIONS(148), - [anon_sym_EIB] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(105), - }, - [431] = { - [sym_comment] = STATE(431), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_in] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(129), - [anon_sym_DOT2] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(129), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(129), - [anon_sym_xor] = ACTIONS(129), - [anon_sym_or] = ACTIONS(129), - [aux_sym__immediate_decimal_token2] = ACTIONS(1244), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(3), - }, - [432] = { - [sym_comment] = STATE(432), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_in] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [aux_sym__immediate_decimal_token2] = ACTIONS(1246), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [433] = { - [sym_comment] = STATE(433), [anon_sym_SEMI] = ACTIONS(213), [anon_sym_LF] = ACTIONS(215), - [anon_sym_COLON] = ACTIONS(1248), + [anon_sym_RPAREN] = ACTIONS(213), [anon_sym_PIPE] = ACTIONS(213), [anon_sym_GT] = ACTIONS(213), [anon_sym_DASH] = ACTIONS(213), @@ -130941,337 +132162,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(213), [anon_sym_xor] = ACTIONS(213), [anon_sym_or] = ACTIONS(213), - [anon_sym_ns] = ACTIONS(1116), - [anon_sym_s] = ACTIONS(1116), - [anon_sym_us] = ACTIONS(1116), - [anon_sym_ms] = ACTIONS(1116), - [anon_sym_sec] = ACTIONS(1116), - [anon_sym_min] = ACTIONS(1116), - [anon_sym_hr] = ACTIONS(1116), - [anon_sym_day] = ACTIONS(1116), - [anon_sym_wk] = ACTIONS(1116), - [anon_sym_b] = ACTIONS(1118), - [anon_sym_B] = ACTIONS(1118), - [anon_sym_kb] = ACTIONS(1118), - [anon_sym_kB] = ACTIONS(1118), - [anon_sym_Kb] = ACTIONS(1118), - [anon_sym_KB] = ACTIONS(1118), - [anon_sym_mb] = ACTIONS(1118), - [anon_sym_mB] = ACTIONS(1118), - [anon_sym_Mb] = ACTIONS(1118), - [anon_sym_MB] = ACTIONS(1118), - [anon_sym_gb] = ACTIONS(1118), - [anon_sym_gB] = ACTIONS(1118), - [anon_sym_Gb] = ACTIONS(1118), - [anon_sym_GB] = ACTIONS(1118), - [anon_sym_tb] = ACTIONS(1118), - [anon_sym_tB] = ACTIONS(1118), - [anon_sym_Tb] = ACTIONS(1118), - [anon_sym_TB] = ACTIONS(1118), - [anon_sym_pb] = ACTIONS(1118), - [anon_sym_pB] = ACTIONS(1118), - [anon_sym_Pb] = ACTIONS(1118), - [anon_sym_PB] = ACTIONS(1118), - [anon_sym_eb] = ACTIONS(1118), - [anon_sym_eB] = ACTIONS(1118), - [anon_sym_Eb] = ACTIONS(1118), - [anon_sym_EB] = ACTIONS(1118), - [anon_sym_kib] = ACTIONS(1118), - [anon_sym_kiB] = ACTIONS(1118), - [anon_sym_kIB] = ACTIONS(1118), - [anon_sym_kIb] = ACTIONS(1118), - [anon_sym_Kib] = ACTIONS(1118), - [anon_sym_KIb] = ACTIONS(1118), - [anon_sym_KIB] = ACTIONS(1118), - [anon_sym_mib] = ACTIONS(1118), - [anon_sym_miB] = ACTIONS(1118), - [anon_sym_mIB] = ACTIONS(1118), - [anon_sym_mIb] = ACTIONS(1118), - [anon_sym_Mib] = ACTIONS(1118), - [anon_sym_MIb] = ACTIONS(1118), - [anon_sym_MIB] = ACTIONS(1118), - [anon_sym_gib] = ACTIONS(1118), - [anon_sym_giB] = ACTIONS(1118), - [anon_sym_gIB] = ACTIONS(1118), - [anon_sym_gIb] = ACTIONS(1118), - [anon_sym_Gib] = ACTIONS(1118), - [anon_sym_GIb] = ACTIONS(1118), - [anon_sym_GIB] = ACTIONS(1118), - [anon_sym_tib] = ACTIONS(1118), - [anon_sym_tiB] = ACTIONS(1118), - [anon_sym_tIB] = ACTIONS(1118), - [anon_sym_tIb] = ACTIONS(1118), - [anon_sym_Tib] = ACTIONS(1118), - [anon_sym_TIb] = ACTIONS(1118), - [anon_sym_TIB] = ACTIONS(1118), - [anon_sym_pib] = ACTIONS(1118), - [anon_sym_piB] = ACTIONS(1118), - [anon_sym_pIB] = ACTIONS(1118), - [anon_sym_pIb] = ACTIONS(1118), - [anon_sym_Pib] = ACTIONS(1118), - [anon_sym_PIb] = ACTIONS(1118), - [anon_sym_PIB] = ACTIONS(1118), - [anon_sym_eib] = ACTIONS(1118), - [anon_sym_eiB] = ACTIONS(1118), - [anon_sym_eIB] = ACTIONS(1118), - [anon_sym_eIb] = ACTIONS(1118), - [anon_sym_Eib] = ACTIONS(1118), - [anon_sym_EIb] = ACTIONS(1118), - [anon_sym_EIB] = ACTIONS(1118), + [anon_sym_ns] = ACTIONS(1107), + [anon_sym_s] = ACTIONS(1107), + [anon_sym_us] = ACTIONS(1107), + [anon_sym_ms] = ACTIONS(1107), + [anon_sym_sec] = ACTIONS(1107), + [anon_sym_min] = ACTIONS(1107), + [anon_sym_hr] = ACTIONS(1107), + [anon_sym_day] = ACTIONS(1107), + [anon_sym_wk] = ACTIONS(1107), + [anon_sym_b] = ACTIONS(1109), + [anon_sym_B] = ACTIONS(1109), + [anon_sym_kb] = ACTIONS(1109), + [anon_sym_kB] = ACTIONS(1109), + [anon_sym_Kb] = ACTIONS(1109), + [anon_sym_KB] = ACTIONS(1109), + [anon_sym_mb] = ACTIONS(1109), + [anon_sym_mB] = ACTIONS(1109), + [anon_sym_Mb] = ACTIONS(1109), + [anon_sym_MB] = ACTIONS(1109), + [anon_sym_gb] = ACTIONS(1109), + [anon_sym_gB] = ACTIONS(1109), + [anon_sym_Gb] = ACTIONS(1109), + [anon_sym_GB] = ACTIONS(1109), + [anon_sym_tb] = ACTIONS(1109), + [anon_sym_tB] = ACTIONS(1109), + [anon_sym_Tb] = ACTIONS(1109), + [anon_sym_TB] = ACTIONS(1109), + [anon_sym_pb] = ACTIONS(1109), + [anon_sym_pB] = ACTIONS(1109), + [anon_sym_Pb] = ACTIONS(1109), + [anon_sym_PB] = ACTIONS(1109), + [anon_sym_eb] = ACTIONS(1109), + [anon_sym_eB] = ACTIONS(1109), + [anon_sym_Eb] = ACTIONS(1109), + [anon_sym_EB] = ACTIONS(1109), + [anon_sym_kib] = ACTIONS(1109), + [anon_sym_kiB] = ACTIONS(1109), + [anon_sym_kIB] = ACTIONS(1109), + [anon_sym_kIb] = ACTIONS(1109), + [anon_sym_Kib] = ACTIONS(1109), + [anon_sym_KIb] = ACTIONS(1109), + [anon_sym_KIB] = ACTIONS(1109), + [anon_sym_mib] = ACTIONS(1109), + [anon_sym_miB] = ACTIONS(1109), + [anon_sym_mIB] = ACTIONS(1109), + [anon_sym_mIb] = ACTIONS(1109), + [anon_sym_Mib] = ACTIONS(1109), + [anon_sym_MIb] = ACTIONS(1109), + [anon_sym_MIB] = ACTIONS(1109), + [anon_sym_gib] = ACTIONS(1109), + [anon_sym_giB] = ACTIONS(1109), + [anon_sym_gIB] = ACTIONS(1109), + [anon_sym_gIb] = ACTIONS(1109), + [anon_sym_Gib] = ACTIONS(1109), + [anon_sym_GIb] = ACTIONS(1109), + [anon_sym_GIB] = ACTIONS(1109), + [anon_sym_tib] = ACTIONS(1109), + [anon_sym_tiB] = ACTIONS(1109), + [anon_sym_tIB] = ACTIONS(1109), + [anon_sym_tIb] = ACTIONS(1109), + [anon_sym_Tib] = ACTIONS(1109), + [anon_sym_TIb] = ACTIONS(1109), + [anon_sym_TIB] = ACTIONS(1109), + [anon_sym_pib] = ACTIONS(1109), + [anon_sym_piB] = ACTIONS(1109), + [anon_sym_pIB] = ACTIONS(1109), + [anon_sym_pIb] = ACTIONS(1109), + [anon_sym_Pib] = ACTIONS(1109), + [anon_sym_PIb] = ACTIONS(1109), + [anon_sym_PIB] = ACTIONS(1109), + [anon_sym_eib] = ACTIONS(1109), + [anon_sym_eiB] = ACTIONS(1109), + [anon_sym_eIB] = ACTIONS(1109), + [anon_sym_eIb] = ACTIONS(1109), + [anon_sym_Eib] = ACTIONS(1109), + [anon_sym_EIb] = ACTIONS(1109), + [anon_sym_EIB] = ACTIONS(1109), [anon_sym_POUND] = ACTIONS(105), }, - [434] = { - [sym_comment] = STATE(434), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(223), - [anon_sym_in] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_EQ_GT] = ACTIONS(223), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_STAR_STAR] = ACTIONS(223), - [anon_sym_PLUS_PLUS] = ACTIONS(223), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_mod] = ACTIONS(223), - [anon_sym_SLASH_SLASH] = ACTIONS(223), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_bit_DASHshl] = ACTIONS(223), - [anon_sym_bit_DASHshr] = ACTIONS(223), - [anon_sym_EQ_EQ] = ACTIONS(223), - [anon_sym_BANG_EQ] = ACTIONS(223), - [anon_sym_LT2] = ACTIONS(221), - [anon_sym_LT_EQ] = ACTIONS(223), - [anon_sym_GT_EQ] = ACTIONS(223), - [anon_sym_not_DASHin] = ACTIONS(223), - [anon_sym_starts_DASHwith] = ACTIONS(223), - [anon_sym_ends_DASHwith] = ACTIONS(223), - [anon_sym_EQ_TILDE] = ACTIONS(223), - [anon_sym_BANG_TILDE] = ACTIONS(223), - [anon_sym_bit_DASHand] = ACTIONS(223), - [anon_sym_bit_DASHxor] = ACTIONS(223), - [anon_sym_bit_DASHor] = ACTIONS(223), - [anon_sym_and] = ACTIONS(223), - [anon_sym_xor] = ACTIONS(223), - [anon_sym_or] = ACTIONS(223), - [anon_sym_ns] = ACTIONS(223), - [anon_sym_s] = ACTIONS(223), - [anon_sym_us] = ACTIONS(223), - [anon_sym_ms] = ACTIONS(223), - [anon_sym_sec] = ACTIONS(223), - [anon_sym_min] = ACTIONS(223), - [anon_sym_hr] = ACTIONS(223), - [anon_sym_day] = ACTIONS(223), - [anon_sym_wk] = ACTIONS(223), - [anon_sym_b] = ACTIONS(221), - [anon_sym_B] = ACTIONS(223), - [anon_sym_kb] = ACTIONS(223), - [anon_sym_kB] = ACTIONS(223), - [anon_sym_Kb] = ACTIONS(223), - [anon_sym_KB] = ACTIONS(223), - [anon_sym_mb] = ACTIONS(223), - [anon_sym_mB] = ACTIONS(223), - [anon_sym_Mb] = ACTIONS(223), - [anon_sym_MB] = ACTIONS(223), - [anon_sym_gb] = ACTIONS(223), - [anon_sym_gB] = ACTIONS(223), - [anon_sym_Gb] = ACTIONS(223), - [anon_sym_GB] = ACTIONS(223), - [anon_sym_tb] = ACTIONS(223), - [anon_sym_tB] = ACTIONS(223), - [anon_sym_Tb] = ACTIONS(223), - [anon_sym_TB] = ACTIONS(223), - [anon_sym_pb] = ACTIONS(223), - [anon_sym_pB] = ACTIONS(223), - [anon_sym_Pb] = ACTIONS(223), - [anon_sym_PB] = ACTIONS(223), - [anon_sym_eb] = ACTIONS(223), - [anon_sym_eB] = ACTIONS(223), - [anon_sym_Eb] = ACTIONS(223), - [anon_sym_EB] = ACTIONS(223), - [anon_sym_kib] = ACTIONS(223), - [anon_sym_kiB] = ACTIONS(223), - [anon_sym_kIB] = ACTIONS(223), - [anon_sym_kIb] = ACTIONS(223), - [anon_sym_Kib] = ACTIONS(223), - [anon_sym_KIb] = ACTIONS(223), - [anon_sym_KIB] = ACTIONS(223), - [anon_sym_mib] = ACTIONS(223), - [anon_sym_miB] = ACTIONS(223), - [anon_sym_mIB] = ACTIONS(223), - [anon_sym_mIb] = ACTIONS(223), - [anon_sym_Mib] = ACTIONS(223), - [anon_sym_MIb] = ACTIONS(223), - [anon_sym_MIB] = ACTIONS(223), - [anon_sym_gib] = ACTIONS(223), - [anon_sym_giB] = ACTIONS(223), - [anon_sym_gIB] = ACTIONS(223), - [anon_sym_gIb] = ACTIONS(223), - [anon_sym_Gib] = ACTIONS(223), - [anon_sym_GIb] = ACTIONS(223), - [anon_sym_GIB] = ACTIONS(223), - [anon_sym_tib] = ACTIONS(223), - [anon_sym_tiB] = ACTIONS(223), - [anon_sym_tIB] = ACTIONS(223), - [anon_sym_tIb] = ACTIONS(223), - [anon_sym_Tib] = ACTIONS(223), - [anon_sym_TIb] = ACTIONS(223), - [anon_sym_TIB] = ACTIONS(223), - [anon_sym_pib] = ACTIONS(223), - [anon_sym_piB] = ACTIONS(223), - [anon_sym_pIB] = ACTIONS(223), - [anon_sym_pIb] = ACTIONS(223), - [anon_sym_Pib] = ACTIONS(223), - [anon_sym_PIb] = ACTIONS(223), - [anon_sym_PIB] = ACTIONS(223), - [anon_sym_eib] = ACTIONS(223), - [anon_sym_eiB] = ACTIONS(223), - [anon_sym_eIB] = ACTIONS(223), - [anon_sym_eIb] = ACTIONS(223), - [anon_sym_Eib] = ACTIONS(223), - [anon_sym_EIb] = ACTIONS(223), - [anon_sym_EIB] = ACTIONS(223), - [anon_sym_POUND] = ACTIONS(3), - }, - [435] = { - [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), + [431] = { + [sym_comment] = STATE(431), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_in] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(187), + [anon_sym_SLASH_SLASH] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(187), + [anon_sym_bit_DASHshr] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(187), + [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(187), + [anon_sym_not_DASHin] = ACTIONS(187), + [anon_sym_starts_DASHwith] = ACTIONS(187), + [anon_sym_ends_DASHwith] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(187), + [anon_sym_BANG_TILDE] = ACTIONS(187), + [anon_sym_bit_DASHand] = ACTIONS(187), + [anon_sym_bit_DASHxor] = ACTIONS(187), + [anon_sym_bit_DASHor] = ACTIONS(187), + [anon_sym_and] = ACTIONS(187), + [anon_sym_xor] = ACTIONS(187), + [anon_sym_or] = ACTIONS(187), + [anon_sym_ns] = ACTIONS(187), + [anon_sym_s] = ACTIONS(187), + [anon_sym_us] = ACTIONS(187), + [anon_sym_ms] = ACTIONS(187), + [anon_sym_sec] = ACTIONS(187), + [anon_sym_min] = ACTIONS(187), + [anon_sym_hr] = ACTIONS(187), + [anon_sym_day] = ACTIONS(187), + [anon_sym_wk] = ACTIONS(187), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(187), + [anon_sym_kb] = ACTIONS(187), + [anon_sym_kB] = ACTIONS(187), + [anon_sym_Kb] = ACTIONS(187), + [anon_sym_KB] = ACTIONS(187), + [anon_sym_mb] = ACTIONS(187), + [anon_sym_mB] = ACTIONS(187), + [anon_sym_Mb] = ACTIONS(187), + [anon_sym_MB] = ACTIONS(187), + [anon_sym_gb] = ACTIONS(187), + [anon_sym_gB] = ACTIONS(187), + [anon_sym_Gb] = ACTIONS(187), + [anon_sym_GB] = ACTIONS(187), + [anon_sym_tb] = ACTIONS(187), + [anon_sym_tB] = ACTIONS(187), + [anon_sym_Tb] = ACTIONS(187), + [anon_sym_TB] = ACTIONS(187), + [anon_sym_pb] = ACTIONS(187), + [anon_sym_pB] = ACTIONS(187), + [anon_sym_Pb] = ACTIONS(187), + [anon_sym_PB] = ACTIONS(187), + [anon_sym_eb] = ACTIONS(187), + [anon_sym_eB] = ACTIONS(187), + [anon_sym_Eb] = ACTIONS(187), + [anon_sym_EB] = ACTIONS(187), + [anon_sym_kib] = ACTIONS(187), + [anon_sym_kiB] = ACTIONS(187), + [anon_sym_kIB] = ACTIONS(187), + [anon_sym_kIb] = ACTIONS(187), + [anon_sym_Kib] = ACTIONS(187), + [anon_sym_KIb] = ACTIONS(187), + [anon_sym_KIB] = ACTIONS(187), + [anon_sym_mib] = ACTIONS(187), + [anon_sym_miB] = ACTIONS(187), + [anon_sym_mIB] = ACTIONS(187), + [anon_sym_mIb] = ACTIONS(187), + [anon_sym_Mib] = ACTIONS(187), + [anon_sym_MIb] = ACTIONS(187), + [anon_sym_MIB] = ACTIONS(187), + [anon_sym_gib] = ACTIONS(187), + [anon_sym_giB] = ACTIONS(187), + [anon_sym_gIB] = ACTIONS(187), + [anon_sym_gIb] = ACTIONS(187), + [anon_sym_Gib] = ACTIONS(187), + [anon_sym_GIb] = ACTIONS(187), + [anon_sym_GIB] = ACTIONS(187), + [anon_sym_tib] = ACTIONS(187), + [anon_sym_tiB] = ACTIONS(187), + [anon_sym_tIB] = ACTIONS(187), + [anon_sym_tIb] = ACTIONS(187), + [anon_sym_Tib] = ACTIONS(187), + [anon_sym_TIb] = ACTIONS(187), + [anon_sym_TIB] = ACTIONS(187), + [anon_sym_pib] = ACTIONS(187), + [anon_sym_piB] = ACTIONS(187), + [anon_sym_pIB] = ACTIONS(187), + [anon_sym_pIb] = ACTIONS(187), + [anon_sym_Pib] = ACTIONS(187), + [anon_sym_PIb] = ACTIONS(187), + [anon_sym_PIB] = ACTIONS(187), + [anon_sym_eib] = ACTIONS(187), + [anon_sym_eiB] = ACTIONS(187), + [anon_sym_eIB] = ACTIONS(187), + [anon_sym_eIb] = ACTIONS(187), + [anon_sym_Eib] = ACTIONS(187), + [anon_sym_EIb] = ACTIONS(187), + [anon_sym_EIB] = ACTIONS(187), [anon_sym_POUND] = ACTIONS(105), }, - [436] = { - [sym_comment] = STATE(436), - [anon_sym_LBRACK] = ACTIONS(117), + [432] = { + [sym_comment] = STATE(432), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_in] = ACTIONS(132), + [anon_sym_RBRACE] = ACTIONS(132), + [anon_sym_EQ_GT] = ACTIONS(132), + [anon_sym_DOT2] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(132), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(132), + [anon_sym_xor] = ACTIONS(132), + [anon_sym_or] = ACTIONS(132), + [aux_sym__immediate_decimal_token2] = ACTIONS(1256), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [anon_sym_POUND] = ACTIONS(3), + }, + [433] = { + [sym_comment] = STATE(433), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(117), - [aux_sym__immediate_decimal_token1] = ACTIONS(1252), - [aux_sym__immediate_decimal_token2] = ACTIONS(1254), - [anon_sym_null] = ACTIONS(117), - [anon_sym_true] = ACTIONS(117), - [anon_sym_false] = ACTIONS(117), - [aux_sym__val_number_decimal_token1] = ACTIONS(115), - [aux_sym__val_number_token1] = ACTIONS(117), - [aux_sym__val_number_token2] = ACTIONS(117), - [aux_sym__val_number_token3] = ACTIONS(117), - [aux_sym__val_number_token4] = ACTIONS(117), - [aux_sym__val_number_token5] = ACTIONS(117), - [aux_sym__val_number_token6] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1239), [anon_sym_ns] = ACTIONS(117), [anon_sym_s] = ACTIONS(117), [anon_sym_us] = ACTIONS(117), @@ -131281,7 +132513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hr] = ACTIONS(117), [anon_sym_day] = ACTIONS(117), [anon_sym_wk] = ACTIONS(117), - [anon_sym_b] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), [anon_sym_B] = ACTIONS(117), [anon_sym_kb] = ACTIONS(117), [anon_sym_kB] = ACTIONS(117), @@ -131349,138 +132581,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(117), [anon_sym_EIb] = ACTIONS(117), [anon_sym_EIB] = ACTIONS(117), - [anon_sym_0b] = ACTIONS(115), - [anon_sym_0o] = ACTIONS(115), - [anon_sym_0x] = ACTIONS(115), - [sym_val_date] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym__str_single_quotes] = ACTIONS(117), - [sym__str_back_ticks] = ACTIONS(117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [aux_sym__unquoted_in_list_token1] = ACTIONS(115), - [aux_sym__unquoted_in_list_token7] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [437] = { - [sym_comment] = STATE(437), - [anon_sym_COLON] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_EQ_GT] = ACTIONS(173), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), [anon_sym_POUND] = ACTIONS(3), }, - [438] = { - [sym_comment] = STATE(438), + [434] = { + [sym_comment] = STATE(434), + [anon_sym_COMMA] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(117), [anon_sym_in] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_EQ_GT] = ACTIONS(117), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(115), @@ -131508,8 +132617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(117), [anon_sym_xor] = ACTIONS(117), [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token1] = ACTIONS(1256), - [aux_sym__immediate_decimal_token2] = ACTIONS(1258), + [aux_sym__immediate_decimal_token2] = ACTIONS(1239), [anon_sym_ns] = ACTIONS(117), [anon_sym_s] = ACTIONS(117), [anon_sym_us] = ACTIONS(117), @@ -131587,14 +132695,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(117), [anon_sym_EIb] = ACTIONS(117), [anon_sym_EIB] = ACTIONS(117), - [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [439] = { - [sym_comment] = STATE(439), + [435] = { + [sym_comment] = STATE(435), + [anon_sym_COMMA] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(109), [anon_sym_in] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_EQ_GT] = ACTIONS(109), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), @@ -131622,8 +132731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token1] = ACTIONS(1260), - [aux_sym__immediate_decimal_token2] = ACTIONS(1262), + [aux_sym__immediate_decimal_token2] = ACTIONS(1231), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -131701,53 +132809,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(109), [anon_sym_EIb] = ACTIONS(109), [anon_sym_EIB] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [440] = { - [sym_comment] = STATE(440), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token1] = ACTIONS(1264), - [aux_sym__immediate_decimal_token2] = ACTIONS(1266), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), + [436] = { + [sym_comment] = STATE(436), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_in] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_STAR] = ACTIONS(221), + [anon_sym_STAR_STAR] = ACTIONS(223), + [anon_sym_PLUS_PLUS] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(221), + [anon_sym_mod] = ACTIONS(223), + [anon_sym_SLASH_SLASH] = ACTIONS(223), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_bit_DASHshl] = ACTIONS(223), + [anon_sym_bit_DASHshr] = ACTIONS(223), + [anon_sym_EQ_EQ] = ACTIONS(223), + [anon_sym_BANG_EQ] = ACTIONS(223), + [anon_sym_LT2] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(223), + [anon_sym_GT_EQ] = ACTIONS(223), + [anon_sym_not_DASHin] = ACTIONS(223), + [anon_sym_starts_DASHwith] = ACTIONS(223), + [anon_sym_ends_DASHwith] = ACTIONS(223), + [anon_sym_EQ_TILDE] = ACTIONS(223), + [anon_sym_BANG_TILDE] = ACTIONS(223), + [anon_sym_bit_DASHand] = ACTIONS(223), + [anon_sym_bit_DASHxor] = ACTIONS(223), + [anon_sym_bit_DASHor] = ACTIONS(223), + [anon_sym_and] = ACTIONS(223), + [anon_sym_xor] = ACTIONS(223), + [anon_sym_or] = ACTIONS(223), + [anon_sym_ns] = ACTIONS(223), + [anon_sym_s] = ACTIONS(223), + [anon_sym_us] = ACTIONS(223), + [anon_sym_ms] = ACTIONS(223), + [anon_sym_sec] = ACTIONS(223), + [anon_sym_min] = ACTIONS(223), + [anon_sym_hr] = ACTIONS(223), + [anon_sym_day] = ACTIONS(223), + [anon_sym_wk] = ACTIONS(223), + [anon_sym_b] = ACTIONS(221), + [anon_sym_B] = ACTIONS(223), + [anon_sym_kb] = ACTIONS(223), + [anon_sym_kB] = ACTIONS(223), + [anon_sym_Kb] = ACTIONS(223), + [anon_sym_KB] = ACTIONS(223), + [anon_sym_mb] = ACTIONS(223), + [anon_sym_mB] = ACTIONS(223), + [anon_sym_Mb] = ACTIONS(223), + [anon_sym_MB] = ACTIONS(223), + [anon_sym_gb] = ACTIONS(223), + [anon_sym_gB] = ACTIONS(223), + [anon_sym_Gb] = ACTIONS(223), + [anon_sym_GB] = ACTIONS(223), + [anon_sym_tb] = ACTIONS(223), + [anon_sym_tB] = ACTIONS(223), + [anon_sym_Tb] = ACTIONS(223), + [anon_sym_TB] = ACTIONS(223), + [anon_sym_pb] = ACTIONS(223), + [anon_sym_pB] = ACTIONS(223), + [anon_sym_Pb] = ACTIONS(223), + [anon_sym_PB] = ACTIONS(223), + [anon_sym_eb] = ACTIONS(223), + [anon_sym_eB] = ACTIONS(223), + [anon_sym_Eb] = ACTIONS(223), + [anon_sym_EB] = ACTIONS(223), + [anon_sym_kib] = ACTIONS(223), + [anon_sym_kiB] = ACTIONS(223), + [anon_sym_kIB] = ACTIONS(223), + [anon_sym_kIb] = ACTIONS(223), + [anon_sym_Kib] = ACTIONS(223), + [anon_sym_KIb] = ACTIONS(223), + [anon_sym_KIB] = ACTIONS(223), + [anon_sym_mib] = ACTIONS(223), + [anon_sym_miB] = ACTIONS(223), + [anon_sym_mIB] = ACTIONS(223), + [anon_sym_mIb] = ACTIONS(223), + [anon_sym_Mib] = ACTIONS(223), + [anon_sym_MIb] = ACTIONS(223), + [anon_sym_MIB] = ACTIONS(223), + [anon_sym_gib] = ACTIONS(223), + [anon_sym_giB] = ACTIONS(223), + [anon_sym_gIB] = ACTIONS(223), + [anon_sym_gIb] = ACTIONS(223), + [anon_sym_Gib] = ACTIONS(223), + [anon_sym_GIb] = ACTIONS(223), + [anon_sym_GIB] = ACTIONS(223), + [anon_sym_tib] = ACTIONS(223), + [anon_sym_tiB] = ACTIONS(223), + [anon_sym_tIB] = ACTIONS(223), + [anon_sym_tIb] = ACTIONS(223), + [anon_sym_Tib] = ACTIONS(223), + [anon_sym_TIb] = ACTIONS(223), + [anon_sym_TIB] = ACTIONS(223), + [anon_sym_pib] = ACTIONS(223), + [anon_sym_piB] = ACTIONS(223), + [anon_sym_pIB] = ACTIONS(223), + [anon_sym_pIb] = ACTIONS(223), + [anon_sym_Pib] = ACTIONS(223), + [anon_sym_PIb] = ACTIONS(223), + [anon_sym_PIB] = ACTIONS(223), + [anon_sym_eib] = ACTIONS(223), + [anon_sym_eiB] = ACTIONS(223), + [anon_sym_eIB] = ACTIONS(223), + [anon_sym_eIb] = ACTIONS(223), + [anon_sym_Eib] = ACTIONS(223), + [anon_sym_EIb] = ACTIONS(223), + [anon_sym_EIB] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(3), + }, + [437] = { + [sym_comment] = STATE(437), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_PLUS] = ACTIONS(109), + [aux_sym__immediate_decimal_token1] = ACTIONS(1261), + [aux_sym__immediate_decimal_token2] = ACTIONS(1263), + [anon_sym_null] = ACTIONS(109), + [anon_sym_true] = ACTIONS(109), + [anon_sym_false] = ACTIONS(109), + [aux_sym__val_number_decimal_token1] = ACTIONS(107), + [aux_sym__val_number_token1] = ACTIONS(109), + [aux_sym__val_number_token2] = ACTIONS(109), + [aux_sym__val_number_token3] = ACTIONS(109), + [aux_sym__val_number_token4] = ACTIONS(109), + [aux_sym__val_number_token5] = ACTIONS(109), + [aux_sym__val_number_token6] = ACTIONS(109), + [anon_sym_ns] = ACTIONS(109), + [anon_sym_s] = ACTIONS(109), + [anon_sym_us] = ACTIONS(109), [anon_sym_ms] = ACTIONS(109), [anon_sym_sec] = ACTIONS(109), [anon_sym_min] = ACTIONS(109), [anon_sym_hr] = ACTIONS(109), [anon_sym_day] = ACTIONS(109), [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), + [anon_sym_b] = ACTIONS(109), [anon_sym_B] = ACTIONS(109), [anon_sym_kb] = ACTIONS(109), [anon_sym_kB] = ACTIONS(109), @@ -131815,246 +133026,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(109), [anon_sym_EIb] = ACTIONS(109), [anon_sym_EIB] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), + [anon_sym_0b] = ACTIONS(107), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [aux_sym__unquoted_in_list_token1] = ACTIONS(107), + [aux_sym__unquoted_in_list_token7] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [441] = { - [sym_comment] = STATE(441), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(117), - [anon_sym_in] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(117), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), - [anon_sym_and] = ACTIONS(117), - [anon_sym_xor] = ACTIONS(117), - [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token1] = ACTIONS(1268), - [aux_sym__immediate_decimal_token2] = ACTIONS(1270), - [anon_sym_ns] = ACTIONS(117), - [anon_sym_s] = ACTIONS(117), - [anon_sym_us] = ACTIONS(117), - [anon_sym_ms] = ACTIONS(117), - [anon_sym_sec] = ACTIONS(117), - [anon_sym_min] = ACTIONS(117), - [anon_sym_hr] = ACTIONS(117), - [anon_sym_day] = ACTIONS(117), - [anon_sym_wk] = ACTIONS(117), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(117), - [anon_sym_kb] = ACTIONS(117), - [anon_sym_kB] = ACTIONS(117), - [anon_sym_Kb] = ACTIONS(117), - [anon_sym_KB] = ACTIONS(117), - [anon_sym_mb] = ACTIONS(117), - [anon_sym_mB] = ACTIONS(117), - [anon_sym_Mb] = ACTIONS(117), - [anon_sym_MB] = ACTIONS(117), - [anon_sym_gb] = ACTIONS(117), - [anon_sym_gB] = ACTIONS(117), - [anon_sym_Gb] = ACTIONS(117), - [anon_sym_GB] = ACTIONS(117), - [anon_sym_tb] = ACTIONS(117), - [anon_sym_tB] = ACTIONS(117), - [anon_sym_Tb] = ACTIONS(117), - [anon_sym_TB] = ACTIONS(117), - [anon_sym_pb] = ACTIONS(117), - [anon_sym_pB] = ACTIONS(117), - [anon_sym_Pb] = ACTIONS(117), - [anon_sym_PB] = ACTIONS(117), - [anon_sym_eb] = ACTIONS(117), - [anon_sym_eB] = ACTIONS(117), - [anon_sym_Eb] = ACTIONS(117), - [anon_sym_EB] = ACTIONS(117), - [anon_sym_kib] = ACTIONS(117), - [anon_sym_kiB] = ACTIONS(117), - [anon_sym_kIB] = ACTIONS(117), - [anon_sym_kIb] = ACTIONS(117), - [anon_sym_Kib] = ACTIONS(117), - [anon_sym_KIb] = ACTIONS(117), - [anon_sym_KIB] = ACTIONS(117), - [anon_sym_mib] = ACTIONS(117), - [anon_sym_miB] = ACTIONS(117), - [anon_sym_mIB] = ACTIONS(117), - [anon_sym_mIb] = ACTIONS(117), - [anon_sym_Mib] = ACTIONS(117), - [anon_sym_MIb] = ACTIONS(117), - [anon_sym_MIB] = ACTIONS(117), - [anon_sym_gib] = ACTIONS(117), - [anon_sym_giB] = ACTIONS(117), - [anon_sym_gIB] = ACTIONS(117), - [anon_sym_gIb] = ACTIONS(117), - [anon_sym_Gib] = ACTIONS(117), - [anon_sym_GIb] = ACTIONS(117), - [anon_sym_GIB] = ACTIONS(117), - [anon_sym_tib] = ACTIONS(117), - [anon_sym_tiB] = ACTIONS(117), - [anon_sym_tIB] = ACTIONS(117), - [anon_sym_tIb] = ACTIONS(117), - [anon_sym_Tib] = ACTIONS(117), - [anon_sym_TIb] = ACTIONS(117), - [anon_sym_TIB] = ACTIONS(117), - [anon_sym_pib] = ACTIONS(117), - [anon_sym_piB] = ACTIONS(117), - [anon_sym_pIB] = ACTIONS(117), - [anon_sym_pIb] = ACTIONS(117), - [anon_sym_Pib] = ACTIONS(117), - [anon_sym_PIb] = ACTIONS(117), - [anon_sym_PIB] = ACTIONS(117), - [anon_sym_eib] = ACTIONS(117), - [anon_sym_eiB] = ACTIONS(117), - [anon_sym_eIB] = ACTIONS(117), - [anon_sym_eIb] = ACTIONS(117), - [anon_sym_Eib] = ACTIONS(117), - [anon_sym_EIb] = ACTIONS(117), - [anon_sym_EIB] = ACTIONS(117), - [aux_sym_unquoted_token6] = ACTIONS(115), + [438] = { + [sym_comment] = STATE(438), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_in] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(1265), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), [anon_sym_POUND] = ACTIONS(3), }, - [442] = { - [sym_comment] = STATE(442), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LF] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(213), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(213), - [anon_sym_SLASH_SLASH] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(213), - [anon_sym_bit_DASHshr] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_not_DASHin] = ACTIONS(213), - [anon_sym_starts_DASHwith] = ACTIONS(213), - [anon_sym_ends_DASHwith] = ACTIONS(213), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_BANG_TILDE] = ACTIONS(213), - [anon_sym_bit_DASHand] = ACTIONS(213), - [anon_sym_bit_DASHxor] = ACTIONS(213), - [anon_sym_bit_DASHor] = ACTIONS(213), - [anon_sym_and] = ACTIONS(213), - [anon_sym_xor] = ACTIONS(213), - [anon_sym_or] = ACTIONS(213), - [anon_sym_ns] = ACTIONS(1116), - [anon_sym_s] = ACTIONS(1116), - [anon_sym_us] = ACTIONS(1116), - [anon_sym_ms] = ACTIONS(1116), - [anon_sym_sec] = ACTIONS(1116), - [anon_sym_min] = ACTIONS(1116), - [anon_sym_hr] = ACTIONS(1116), - [anon_sym_day] = ACTIONS(1116), - [anon_sym_wk] = ACTIONS(1116), - [anon_sym_b] = ACTIONS(1118), - [anon_sym_B] = ACTIONS(1118), - [anon_sym_kb] = ACTIONS(1118), - [anon_sym_kB] = ACTIONS(1118), - [anon_sym_Kb] = ACTIONS(1118), - [anon_sym_KB] = ACTIONS(1118), - [anon_sym_mb] = ACTIONS(1118), - [anon_sym_mB] = ACTIONS(1118), - [anon_sym_Mb] = ACTIONS(1118), - [anon_sym_MB] = ACTIONS(1118), - [anon_sym_gb] = ACTIONS(1118), - [anon_sym_gB] = ACTIONS(1118), - [anon_sym_Gb] = ACTIONS(1118), - [anon_sym_GB] = ACTIONS(1118), - [anon_sym_tb] = ACTIONS(1118), - [anon_sym_tB] = ACTIONS(1118), - [anon_sym_Tb] = ACTIONS(1118), - [anon_sym_TB] = ACTIONS(1118), - [anon_sym_pb] = ACTIONS(1118), - [anon_sym_pB] = ACTIONS(1118), - [anon_sym_Pb] = ACTIONS(1118), - [anon_sym_PB] = ACTIONS(1118), - [anon_sym_eb] = ACTIONS(1118), - [anon_sym_eB] = ACTIONS(1118), - [anon_sym_Eb] = ACTIONS(1118), - [anon_sym_EB] = ACTIONS(1118), - [anon_sym_kib] = ACTIONS(1118), - [anon_sym_kiB] = ACTIONS(1118), - [anon_sym_kIB] = ACTIONS(1118), - [anon_sym_kIb] = ACTIONS(1118), - [anon_sym_Kib] = ACTIONS(1118), - [anon_sym_KIb] = ACTIONS(1118), - [anon_sym_KIB] = ACTIONS(1118), - [anon_sym_mib] = ACTIONS(1118), - [anon_sym_miB] = ACTIONS(1118), - [anon_sym_mIB] = ACTIONS(1118), - [anon_sym_mIb] = ACTIONS(1118), - [anon_sym_Mib] = ACTIONS(1118), - [anon_sym_MIb] = ACTIONS(1118), - [anon_sym_MIB] = ACTIONS(1118), - [anon_sym_gib] = ACTIONS(1118), - [anon_sym_giB] = ACTIONS(1118), - [anon_sym_gIB] = ACTIONS(1118), - [anon_sym_gIb] = ACTIONS(1118), - [anon_sym_Gib] = ACTIONS(1118), - [anon_sym_GIb] = ACTIONS(1118), - [anon_sym_GIB] = ACTIONS(1118), - [anon_sym_tib] = ACTIONS(1118), - [anon_sym_tiB] = ACTIONS(1118), - [anon_sym_tIB] = ACTIONS(1118), - [anon_sym_tIb] = ACTIONS(1118), - [anon_sym_Tib] = ACTIONS(1118), - [anon_sym_TIb] = ACTIONS(1118), - [anon_sym_TIB] = ACTIONS(1118), - [anon_sym_pib] = ACTIONS(1118), - [anon_sym_piB] = ACTIONS(1118), - [anon_sym_pIB] = ACTIONS(1118), - [anon_sym_pIb] = ACTIONS(1118), - [anon_sym_Pib] = ACTIONS(1118), - [anon_sym_PIb] = ACTIONS(1118), - [anon_sym_PIB] = ACTIONS(1118), - [anon_sym_eib] = ACTIONS(1118), - [anon_sym_eiB] = ACTIONS(1118), - [anon_sym_eIB] = ACTIONS(1118), - [anon_sym_eIb] = ACTIONS(1118), - [anon_sym_Eib] = ACTIONS(1118), - [anon_sym_EIb] = ACTIONS(1118), - [anon_sym_EIB] = ACTIONS(1118), - [anon_sym_POUND] = ACTIONS(105), - }, - [443] = { - [sym_comment] = STATE(443), - [anon_sym_COMMA] = ACTIONS(109), + [439] = { + [sym_comment] = STATE(439), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(109), [anon_sym_in] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_EQ_GT] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(1272), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(109), [anon_sym_PLUS_PLUS] = ACTIONS(109), @@ -132080,7 +133185,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1183), + [aux_sym__immediate_decimal_token1] = ACTIONS(1267), + [aux_sym__immediate_decimal_token2] = ACTIONS(1269), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -132158,16 +133264,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(109), [anon_sym_EIb] = ACTIONS(109), [anon_sym_EIB] = ACTIONS(109), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [444] = { - [sym_comment] = STATE(444), + [440] = { + [sym_comment] = STATE(440), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_in] = ACTIONS(132), + [anon_sym_RBRACE] = ACTIONS(132), + [anon_sym_DOT2] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(132), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(132), + [anon_sym_xor] = ACTIONS(132), + [anon_sym_or] = ACTIONS(132), + [aux_sym__immediate_decimal_token2] = ACTIONS(1274), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [441] = { + [sym_comment] = STATE(441), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(213), + [anon_sym_bit_DASHshr] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_not_DASHin] = ACTIONS(213), + [anon_sym_starts_DASHwith] = ACTIONS(213), + [anon_sym_ends_DASHwith] = ACTIONS(213), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_BANG_TILDE] = ACTIONS(213), + [anon_sym_bit_DASHand] = ACTIONS(213), + [anon_sym_bit_DASHxor] = ACTIONS(213), + [anon_sym_bit_DASHor] = ACTIONS(213), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [anon_sym_ns] = ACTIONS(1107), + [anon_sym_s] = ACTIONS(1107), + [anon_sym_us] = ACTIONS(1107), + [anon_sym_ms] = ACTIONS(1107), + [anon_sym_sec] = ACTIONS(1107), + [anon_sym_min] = ACTIONS(1107), + [anon_sym_hr] = ACTIONS(1107), + [anon_sym_day] = ACTIONS(1107), + [anon_sym_wk] = ACTIONS(1107), + [anon_sym_b] = ACTIONS(1109), + [anon_sym_B] = ACTIONS(1109), + [anon_sym_kb] = ACTIONS(1109), + [anon_sym_kB] = ACTIONS(1109), + [anon_sym_Kb] = ACTIONS(1109), + [anon_sym_KB] = ACTIONS(1109), + [anon_sym_mb] = ACTIONS(1109), + [anon_sym_mB] = ACTIONS(1109), + [anon_sym_Mb] = ACTIONS(1109), + [anon_sym_MB] = ACTIONS(1109), + [anon_sym_gb] = ACTIONS(1109), + [anon_sym_gB] = ACTIONS(1109), + [anon_sym_Gb] = ACTIONS(1109), + [anon_sym_GB] = ACTIONS(1109), + [anon_sym_tb] = ACTIONS(1109), + [anon_sym_tB] = ACTIONS(1109), + [anon_sym_Tb] = ACTIONS(1109), + [anon_sym_TB] = ACTIONS(1109), + [anon_sym_pb] = ACTIONS(1109), + [anon_sym_pB] = ACTIONS(1109), + [anon_sym_Pb] = ACTIONS(1109), + [anon_sym_PB] = ACTIONS(1109), + [anon_sym_eb] = ACTIONS(1109), + [anon_sym_eB] = ACTIONS(1109), + [anon_sym_Eb] = ACTIONS(1109), + [anon_sym_EB] = ACTIONS(1109), + [anon_sym_kib] = ACTIONS(1109), + [anon_sym_kiB] = ACTIONS(1109), + [anon_sym_kIB] = ACTIONS(1109), + [anon_sym_kIb] = ACTIONS(1109), + [anon_sym_Kib] = ACTIONS(1109), + [anon_sym_KIb] = ACTIONS(1109), + [anon_sym_KIB] = ACTIONS(1109), + [anon_sym_mib] = ACTIONS(1109), + [anon_sym_miB] = ACTIONS(1109), + [anon_sym_mIB] = ACTIONS(1109), + [anon_sym_mIb] = ACTIONS(1109), + [anon_sym_Mib] = ACTIONS(1109), + [anon_sym_MIb] = ACTIONS(1109), + [anon_sym_MIB] = ACTIONS(1109), + [anon_sym_gib] = ACTIONS(1109), + [anon_sym_giB] = ACTIONS(1109), + [anon_sym_gIB] = ACTIONS(1109), + [anon_sym_gIb] = ACTIONS(1109), + [anon_sym_Gib] = ACTIONS(1109), + [anon_sym_GIb] = ACTIONS(1109), + [anon_sym_GIB] = ACTIONS(1109), + [anon_sym_tib] = ACTIONS(1109), + [anon_sym_tiB] = ACTIONS(1109), + [anon_sym_tIB] = ACTIONS(1109), + [anon_sym_tIb] = ACTIONS(1109), + [anon_sym_Tib] = ACTIONS(1109), + [anon_sym_TIb] = ACTIONS(1109), + [anon_sym_TIB] = ACTIONS(1109), + [anon_sym_pib] = ACTIONS(1109), + [anon_sym_piB] = ACTIONS(1109), + [anon_sym_pIB] = ACTIONS(1109), + [anon_sym_pIb] = ACTIONS(1109), + [anon_sym_Pib] = ACTIONS(1109), + [anon_sym_PIb] = ACTIONS(1109), + [anon_sym_PIB] = ACTIONS(1109), + [anon_sym_eib] = ACTIONS(1109), + [anon_sym_eiB] = ACTIONS(1109), + [anon_sym_eIB] = ACTIONS(1109), + [anon_sym_eIb] = ACTIONS(1109), + [anon_sym_Eib] = ACTIONS(1109), + [anon_sym_EIb] = ACTIONS(1109), + [anon_sym_EIB] = ACTIONS(1109), + [anon_sym_POUND] = ACTIONS(105), + }, + [442] = { + [sym_comment] = STATE(442), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(109), [anon_sym_in] = ACTIONS(109), [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(109), [anon_sym_PLUS_PLUS] = ACTIONS(109), @@ -132193,7 +133528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1227), + [aux_sym__immediate_decimal_token2] = ACTIONS(1235), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -132274,13 +133609,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [445] = { - [sym_comment] = STATE(445), - [anon_sym_COMMA] = ACTIONS(109), + [443] = { + [sym_comment] = STATE(443), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(109), [anon_sym_in] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(109), @@ -132307,7 +133641,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1227), + [aux_sym__immediate_decimal_token1] = ACTIONS(1278), + [aux_sym__immediate_decimal_token2] = ACTIONS(1280), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -132388,14 +133723,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [446] = { - [sym_comment] = STATE(446), + [444] = { + [sym_comment] = STATE(444), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token1] = ACTIONS(1282), + [aux_sym__immediate_decimal_token2] = ACTIONS(1284), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [445] = { + [sym_comment] = STATE(445), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(117), [anon_sym_in] = ACTIONS(117), [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1286), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(117), [anon_sym_PLUS_PLUS] = ACTIONS(117), @@ -132421,7 +133870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(117), [anon_sym_xor] = ACTIONS(117), [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token2] = ACTIONS(1231), + [aux_sym__immediate_decimal_token2] = ACTIONS(1223), [anon_sym_ns] = ACTIONS(117), [anon_sym_s] = ACTIONS(117), [anon_sym_us] = ACTIONS(117), @@ -132502,122 +133951,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [447] = { - [sym_comment] = STATE(447), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_in] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym_DOT2] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(129), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(129), - [anon_sym_xor] = ACTIONS(129), - [anon_sym_or] = ACTIONS(129), - [aux_sym__immediate_decimal_token2] = ACTIONS(1281), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), - [aux_sym_unquoted_token6] = ACTIONS(127), + [446] = { + [sym_comment] = STATE(446), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_in] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(1289), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, - [448] = { - [sym_comment] = STATE(448), + [447] = { + [sym_comment] = STATE(447), [anon_sym_LBRACK] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_RBRACK] = ACTIONS(109), @@ -132628,8 +134077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(109), - [aux_sym__immediate_decimal_token1] = ACTIONS(1283), - [aux_sym__immediate_decimal_token2] = ACTIONS(1285), + [aux_sym__immediate_decimal_token2] = ACTIONS(1263), [anon_sym_null] = ACTIONS(109), [anon_sym_true] = ACTIONS(109), [anon_sym_false] = ACTIONS(109), @@ -132730,122 +134178,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__unquoted_in_list_token7] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, + [448] = { + [sym_comment] = STATE(448), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_DOT2] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_POUND] = ACTIONS(3), + }, [449] = { [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_in] = ACTIONS(171), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_SLASH_SLASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(171), - [anon_sym_bit_DASHshr] = ACTIONS(171), - [anon_sym_EQ_EQ] = ACTIONS(171), - [anon_sym_BANG_EQ] = ACTIONS(171), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_GT_EQ] = ACTIONS(171), - [anon_sym_not_DASHin] = ACTIONS(171), - [anon_sym_starts_DASHwith] = ACTIONS(171), - [anon_sym_ends_DASHwith] = ACTIONS(171), - [anon_sym_EQ_TILDE] = ACTIONS(171), - [anon_sym_BANG_TILDE] = ACTIONS(171), - [anon_sym_bit_DASHand] = ACTIONS(171), - [anon_sym_bit_DASHxor] = ACTIONS(171), - [anon_sym_bit_DASHor] = ACTIONS(171), - [anon_sym_and] = ACTIONS(171), - [anon_sym_xor] = ACTIONS(171), - [anon_sym_or] = ACTIONS(171), - [anon_sym_ns] = ACTIONS(171), - [anon_sym_s] = ACTIONS(171), - [anon_sym_us] = ACTIONS(171), - [anon_sym_ms] = ACTIONS(171), - [anon_sym_sec] = ACTIONS(171), - [anon_sym_min] = ACTIONS(171), - [anon_sym_hr] = ACTIONS(171), - [anon_sym_day] = ACTIONS(171), - [anon_sym_wk] = ACTIONS(171), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(171), - [anon_sym_kb] = ACTIONS(171), - [anon_sym_kB] = ACTIONS(171), - [anon_sym_Kb] = ACTIONS(171), - [anon_sym_KB] = ACTIONS(171), - [anon_sym_mb] = ACTIONS(171), - [anon_sym_mB] = ACTIONS(171), - [anon_sym_Mb] = ACTIONS(171), - [anon_sym_MB] = ACTIONS(171), - [anon_sym_gb] = ACTIONS(171), - [anon_sym_gB] = ACTIONS(171), - [anon_sym_Gb] = ACTIONS(171), - [anon_sym_GB] = ACTIONS(171), - [anon_sym_tb] = ACTIONS(171), - [anon_sym_tB] = ACTIONS(171), - [anon_sym_Tb] = ACTIONS(171), - [anon_sym_TB] = ACTIONS(171), - [anon_sym_pb] = ACTIONS(171), - [anon_sym_pB] = ACTIONS(171), - [anon_sym_Pb] = ACTIONS(171), - [anon_sym_PB] = ACTIONS(171), - [anon_sym_eb] = ACTIONS(171), - [anon_sym_eB] = ACTIONS(171), - [anon_sym_Eb] = ACTIONS(171), - [anon_sym_EB] = ACTIONS(171), - [anon_sym_kib] = ACTIONS(171), - [anon_sym_kiB] = ACTIONS(171), - [anon_sym_kIB] = ACTIONS(171), - [anon_sym_kIb] = ACTIONS(171), - [anon_sym_Kib] = ACTIONS(171), - [anon_sym_KIb] = ACTIONS(171), - [anon_sym_KIB] = ACTIONS(171), - [anon_sym_mib] = ACTIONS(171), - [anon_sym_miB] = ACTIONS(171), - [anon_sym_mIB] = ACTIONS(171), - [anon_sym_mIb] = ACTIONS(171), - [anon_sym_Mib] = ACTIONS(171), - [anon_sym_MIb] = ACTIONS(171), - [anon_sym_MIB] = ACTIONS(171), - [anon_sym_gib] = ACTIONS(171), - [anon_sym_giB] = ACTIONS(171), - [anon_sym_gIB] = ACTIONS(171), - [anon_sym_gIb] = ACTIONS(171), - [anon_sym_Gib] = ACTIONS(171), - [anon_sym_GIb] = ACTIONS(171), - [anon_sym_GIB] = ACTIONS(171), - [anon_sym_tib] = ACTIONS(171), - [anon_sym_tiB] = ACTIONS(171), - [anon_sym_tIB] = ACTIONS(171), - [anon_sym_tIb] = ACTIONS(171), - [anon_sym_Tib] = ACTIONS(171), - [anon_sym_TIb] = ACTIONS(171), - [anon_sym_TIB] = ACTIONS(171), - [anon_sym_pib] = ACTIONS(171), - [anon_sym_piB] = ACTIONS(171), - [anon_sym_pIB] = ACTIONS(171), - [anon_sym_pIb] = ACTIONS(171), - [anon_sym_Pib] = ACTIONS(171), - [anon_sym_PIb] = ACTIONS(171), - [anon_sym_PIB] = ACTIONS(171), - [anon_sym_eib] = ACTIONS(171), - [anon_sym_eiB] = ACTIONS(171), - [anon_sym_eIB] = ACTIONS(171), - [anon_sym_eIb] = ACTIONS(171), - [anon_sym_Eib] = ACTIONS(171), - [anon_sym_EIb] = ACTIONS(171), - [anon_sym_EIB] = ACTIONS(171), - [aux_sym_unquoted_token6] = ACTIONS(1237), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(117), + [anon_sym_true] = ACTIONS(117), + [anon_sym_false] = ACTIONS(117), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(117), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(117), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(117), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym__unquoted_in_list_token1] = ACTIONS(115), + [aux_sym__unquoted_in_list_token7] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), }, [450] = { [sym_comment] = STATE(450), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DOT2] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(117), + [anon_sym_true] = ACTIONS(117), + [anon_sym_false] = ACTIONS(117), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(117), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(117), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(117), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym__unquoted_in_list_token1] = ACTIONS(115), + [aux_sym__unquoted_in_list_token7] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [451] = { + [sym_comment] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(215), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(213), + [anon_sym_bit_DASHshr] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_not_DASHin] = ACTIONS(213), + [anon_sym_starts_DASHwith] = ACTIONS(213), + [anon_sym_ends_DASHwith] = ACTIONS(213), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_BANG_TILDE] = ACTIONS(213), + [anon_sym_bit_DASHand] = ACTIONS(213), + [anon_sym_bit_DASHxor] = ACTIONS(213), + [anon_sym_bit_DASHor] = ACTIONS(213), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [anon_sym_ns] = ACTIONS(1183), + [anon_sym_s] = ACTIONS(1183), + [anon_sym_us] = ACTIONS(1183), + [anon_sym_ms] = ACTIONS(1183), + [anon_sym_sec] = ACTIONS(1183), + [anon_sym_min] = ACTIONS(1183), + [anon_sym_hr] = ACTIONS(1183), + [anon_sym_day] = ACTIONS(1183), + [anon_sym_wk] = ACTIONS(1183), + [anon_sym_b] = ACTIONS(1185), + [anon_sym_B] = ACTIONS(1185), + [anon_sym_kb] = ACTIONS(1185), + [anon_sym_kB] = ACTIONS(1185), + [anon_sym_Kb] = ACTIONS(1185), + [anon_sym_KB] = ACTIONS(1185), + [anon_sym_mb] = ACTIONS(1185), + [anon_sym_mB] = ACTIONS(1185), + [anon_sym_Mb] = ACTIONS(1185), + [anon_sym_MB] = ACTIONS(1185), + [anon_sym_gb] = ACTIONS(1185), + [anon_sym_gB] = ACTIONS(1185), + [anon_sym_Gb] = ACTIONS(1185), + [anon_sym_GB] = ACTIONS(1185), + [anon_sym_tb] = ACTIONS(1185), + [anon_sym_tB] = ACTIONS(1185), + [anon_sym_Tb] = ACTIONS(1185), + [anon_sym_TB] = ACTIONS(1185), + [anon_sym_pb] = ACTIONS(1185), + [anon_sym_pB] = ACTIONS(1185), + [anon_sym_Pb] = ACTIONS(1185), + [anon_sym_PB] = ACTIONS(1185), + [anon_sym_eb] = ACTIONS(1185), + [anon_sym_eB] = ACTIONS(1185), + [anon_sym_Eb] = ACTIONS(1185), + [anon_sym_EB] = ACTIONS(1185), + [anon_sym_kib] = ACTIONS(1185), + [anon_sym_kiB] = ACTIONS(1185), + [anon_sym_kIB] = ACTIONS(1185), + [anon_sym_kIb] = ACTIONS(1185), + [anon_sym_Kib] = ACTIONS(1185), + [anon_sym_KIb] = ACTIONS(1185), + [anon_sym_KIB] = ACTIONS(1185), + [anon_sym_mib] = ACTIONS(1185), + [anon_sym_miB] = ACTIONS(1185), + [anon_sym_mIB] = ACTIONS(1185), + [anon_sym_mIb] = ACTIONS(1185), + [anon_sym_Mib] = ACTIONS(1185), + [anon_sym_MIb] = ACTIONS(1185), + [anon_sym_MIB] = ACTIONS(1185), + [anon_sym_gib] = ACTIONS(1185), + [anon_sym_giB] = ACTIONS(1185), + [anon_sym_gIB] = ACTIONS(1185), + [anon_sym_gIb] = ACTIONS(1185), + [anon_sym_Gib] = ACTIONS(1185), + [anon_sym_GIb] = ACTIONS(1185), + [anon_sym_GIB] = ACTIONS(1185), + [anon_sym_tib] = ACTIONS(1185), + [anon_sym_tiB] = ACTIONS(1185), + [anon_sym_tIB] = ACTIONS(1185), + [anon_sym_tIb] = ACTIONS(1185), + [anon_sym_Tib] = ACTIONS(1185), + [anon_sym_TIb] = ACTIONS(1185), + [anon_sym_TIB] = ACTIONS(1185), + [anon_sym_pib] = ACTIONS(1185), + [anon_sym_piB] = ACTIONS(1185), + [anon_sym_pIB] = ACTIONS(1185), + [anon_sym_pIb] = ACTIONS(1185), + [anon_sym_Pib] = ACTIONS(1185), + [anon_sym_PIb] = ACTIONS(1185), + [anon_sym_PIB] = ACTIONS(1185), + [anon_sym_eib] = ACTIONS(1185), + [anon_sym_eiB] = ACTIONS(1185), + [anon_sym_eIB] = ACTIONS(1185), + [anon_sym_eIb] = ACTIONS(1185), + [anon_sym_Eib] = ACTIONS(1185), + [anon_sym_EIb] = ACTIONS(1185), + [anon_sym_EIB] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(105), + }, + [452] = { + [sym_comment] = STATE(452), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(117), [anon_sym_in] = ACTIONS(117), @@ -132876,7 +134662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(117), [anon_sym_xor] = ACTIONS(117), [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token2] = ACTIONS(1258), + [aux_sym__immediate_decimal_token2] = ACTIONS(1284), [anon_sym_ns] = ACTIONS(117), [anon_sym_s] = ACTIONS(117), [anon_sym_us] = ACTIONS(117), @@ -132957,234 +134743,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [451] = { - [sym_comment] = STATE(451), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_DOT2] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [aux_sym_unquoted_token6] = ACTIONS(1289), + [453] = { + [sym_comment] = STATE(453), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_in] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(1296), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, - [452] = { - [sym_comment] = STATE(452), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(150), - [aux_sym__immediate_decimal_token2] = ACTIONS(1291), - [anon_sym_null] = ACTIONS(150), - [anon_sym_true] = ACTIONS(150), - [anon_sym_false] = ACTIONS(150), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(150), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(150), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(150), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(150), - [aux_sym__unquoted_in_list_token1] = ACTIONS(148), - [aux_sym__unquoted_in_list_token7] = ACTIONS(148), + [454] = { + [sym_comment] = STATE(454), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(1298), + [anon_sym_null] = ACTIONS(149), + [anon_sym_true] = ACTIONS(149), + [anon_sym_false] = ACTIONS(149), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(149), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(149), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(149), + [aux_sym__unquoted_in_list_token1] = ACTIONS(147), + [aux_sym__unquoted_in_list_token7] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, - [453] = { - [sym_comment] = STATE(453), + [455] = { + [sym_comment] = STATE(455), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [anon_sym_POUND] = ACTIONS(3), + }, + [456] = { + [sym_comment] = STATE(456), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(109), [anon_sym_in] = ACTIONS(109), @@ -133215,7 +135114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1266), + [aux_sym__immediate_decimal_token2] = ACTIONS(1280), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -133296,13 +135195,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [454] = { - [sym_comment] = STATE(454), + [457] = { + [sym_comment] = STATE(457), + [anon_sym_COMMA] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(109), [anon_sym_in] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_EQ_GT] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(1293), + [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(109), [anon_sym_PLUS_PLUS] = ACTIONS(109), @@ -133328,7 +135229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1262), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -133406,124 +135306,801 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(109), [anon_sym_EIb] = ACTIONS(109), [anon_sym_EIB] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [455] = { - [sym_comment] = STATE(455), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_in] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_DOT2] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(129), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(129), - [anon_sym_xor] = ACTIONS(129), - [anon_sym_or] = ACTIONS(129), - [aux_sym__immediate_decimal_token2] = ACTIONS(1299), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), - [aux_sym_unquoted_token6] = ACTIONS(127), + [458] = { + [sym_comment] = STATE(458), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_RBRACK] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(132), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(132), + [aux_sym__immediate_decimal_token2] = ACTIONS(1303), + [anon_sym_null] = ACTIONS(132), + [anon_sym_true] = ACTIONS(132), + [anon_sym_false] = ACTIONS(132), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(132), + [aux_sym__val_number_token2] = ACTIONS(132), + [aux_sym__val_number_token3] = ACTIONS(132), + [aux_sym__val_number_token4] = ACTIONS(132), + [aux_sym__val_number_token5] = ACTIONS(132), + [aux_sym__val_number_token6] = ACTIONS(132), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(132), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(132), + [sym__str_single_quotes] = ACTIONS(132), + [sym__str_back_ticks] = ACTIONS(132), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(132), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(132), + [aux_sym__unquoted_in_list_token1] = ACTIONS(130), + [aux_sym__unquoted_in_list_token7] = ACTIONS(130), [anon_sym_POUND] = ACTIONS(3), }, - [456] = { - [sym_comment] = STATE(456), + [459] = { + [sym_comment] = STATE(459), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1284), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [460] = { + [sym_comment] = STATE(460), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_in] = ACTIONS(132), + [anon_sym_EQ_GT] = ACTIONS(132), + [anon_sym_DOT2] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(132), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(132), + [anon_sym_xor] = ACTIONS(132), + [anon_sym_or] = ACTIONS(132), + [aux_sym__immediate_decimal_token2] = ACTIONS(1311), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [461] = { + [sym_comment] = STATE(461), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(159), + [anon_sym_in] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(159), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(159), + [anon_sym_xor] = ACTIONS(159), + [anon_sym_or] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [aux_sym_unquoted_token6] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(3), + }, + [462] = { + [sym_comment] = STATE(462), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_in] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [463] = { + [sym_comment] = STATE(463), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_in] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(3), + }, + [464] = { + [sym_comment] = STATE(464), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(159), + [anon_sym_in] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(159), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(159), + [anon_sym_xor] = ACTIONS(159), + [anon_sym_or] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [anon_sym_POUND] = ACTIONS(3), + }, + [465] = { + [sym_comment] = STATE(465), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(109), @@ -133635,29 +136212,830 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [457] = { - [sym_comment] = STATE(457), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1285), - [anon_sym_null] = ACTIONS(109), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(109), - [aux_sym__val_number_token2] = ACTIONS(109), - [aux_sym__val_number_token3] = ACTIONS(109), - [aux_sym__val_number_token4] = ACTIONS(109), - [aux_sym__val_number_token5] = ACTIONS(109), - [aux_sym__val_number_token6] = ACTIONS(109), + [466] = { + [sym_comment] = STATE(466), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_DOT2] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), + [anon_sym_POUND] = ACTIONS(3), + }, + [467] = { + [sym_comment] = STATE(467), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1245), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [468] = { + [sym_comment] = STATE(468), + [anon_sym_GT] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_in] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(132), + [anon_sym_DOT2] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_mod] = ACTIONS(132), + [anon_sym_SLASH_SLASH] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_bit_DASHshl] = ACTIONS(132), + [anon_sym_bit_DASHshr] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_LT2] = ACTIONS(130), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_not_DASHin] = ACTIONS(132), + [anon_sym_starts_DASHwith] = ACTIONS(132), + [anon_sym_ends_DASHwith] = ACTIONS(132), + [anon_sym_EQ_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_bit_DASHand] = ACTIONS(132), + [anon_sym_bit_DASHxor] = ACTIONS(132), + [anon_sym_bit_DASHor] = ACTIONS(132), + [anon_sym_and] = ACTIONS(132), + [anon_sym_xor] = ACTIONS(132), + [anon_sym_or] = ACTIONS(132), + [aux_sym__immediate_decimal_token2] = ACTIONS(1320), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(130), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [469] = { + [sym_comment] = STATE(469), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1245), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [470] = { + [sym_comment] = STATE(470), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_in] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_mod] = ACTIONS(117), + [anon_sym_SLASH_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_bit_DASHshl] = ACTIONS(117), + [anon_sym_bit_DASHshr] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(117), + [anon_sym_LT2] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(117), + [anon_sym_not_DASHin] = ACTIONS(117), + [anon_sym_starts_DASHwith] = ACTIONS(117), + [anon_sym_ends_DASHwith] = ACTIONS(117), + [anon_sym_EQ_TILDE] = ACTIONS(117), + [anon_sym_BANG_TILDE] = ACTIONS(117), + [anon_sym_bit_DASHand] = ACTIONS(117), + [anon_sym_bit_DASHxor] = ACTIONS(117), + [anon_sym_bit_DASHor] = ACTIONS(117), + [anon_sym_and] = ACTIONS(117), + [anon_sym_xor] = ACTIONS(117), + [anon_sym_or] = ACTIONS(117), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(115), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [471] = { + [sym_comment] = STATE(471), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_in] = ACTIONS(215), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_EQ_GT] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(215), + [anon_sym_SLASH_SLASH] = ACTIONS(215), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(215), + [anon_sym_bit_DASHshr] = ACTIONS(215), + [anon_sym_EQ_EQ] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(215), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(215), + [anon_sym_not_DASHin] = ACTIONS(215), + [anon_sym_starts_DASHwith] = ACTIONS(215), + [anon_sym_ends_DASHwith] = ACTIONS(215), + [anon_sym_EQ_TILDE] = ACTIONS(215), + [anon_sym_BANG_TILDE] = ACTIONS(215), + [anon_sym_bit_DASHand] = ACTIONS(215), + [anon_sym_bit_DASHxor] = ACTIONS(215), + [anon_sym_bit_DASHor] = ACTIONS(215), + [anon_sym_and] = ACTIONS(215), + [anon_sym_xor] = ACTIONS(215), + [anon_sym_or] = ACTIONS(215), + [anon_sym_ns] = ACTIONS(1325), + [anon_sym_s] = ACTIONS(1325), + [anon_sym_us] = ACTIONS(1325), + [anon_sym_ms] = ACTIONS(1325), + [anon_sym_sec] = ACTIONS(1325), + [anon_sym_min] = ACTIONS(1325), + [anon_sym_hr] = ACTIONS(1325), + [anon_sym_day] = ACTIONS(1325), + [anon_sym_wk] = ACTIONS(1325), + [anon_sym_b] = ACTIONS(1327), + [anon_sym_B] = ACTIONS(1329), + [anon_sym_kb] = ACTIONS(1329), + [anon_sym_kB] = ACTIONS(1329), + [anon_sym_Kb] = ACTIONS(1329), + [anon_sym_KB] = ACTIONS(1329), + [anon_sym_mb] = ACTIONS(1329), + [anon_sym_mB] = ACTIONS(1329), + [anon_sym_Mb] = ACTIONS(1329), + [anon_sym_MB] = ACTIONS(1329), + [anon_sym_gb] = ACTIONS(1329), + [anon_sym_gB] = ACTIONS(1329), + [anon_sym_Gb] = ACTIONS(1329), + [anon_sym_GB] = ACTIONS(1329), + [anon_sym_tb] = ACTIONS(1329), + [anon_sym_tB] = ACTIONS(1329), + [anon_sym_Tb] = ACTIONS(1329), + [anon_sym_TB] = ACTIONS(1329), + [anon_sym_pb] = ACTIONS(1329), + [anon_sym_pB] = ACTIONS(1329), + [anon_sym_Pb] = ACTIONS(1329), + [anon_sym_PB] = ACTIONS(1329), + [anon_sym_eb] = ACTIONS(1329), + [anon_sym_eB] = ACTIONS(1329), + [anon_sym_Eb] = ACTIONS(1329), + [anon_sym_EB] = ACTIONS(1329), + [anon_sym_kib] = ACTIONS(1329), + [anon_sym_kiB] = ACTIONS(1329), + [anon_sym_kIB] = ACTIONS(1329), + [anon_sym_kIb] = ACTIONS(1329), + [anon_sym_Kib] = ACTIONS(1329), + [anon_sym_KIb] = ACTIONS(1329), + [anon_sym_KIB] = ACTIONS(1329), + [anon_sym_mib] = ACTIONS(1329), + [anon_sym_miB] = ACTIONS(1329), + [anon_sym_mIB] = ACTIONS(1329), + [anon_sym_mIb] = ACTIONS(1329), + [anon_sym_Mib] = ACTIONS(1329), + [anon_sym_MIb] = ACTIONS(1329), + [anon_sym_MIB] = ACTIONS(1329), + [anon_sym_gib] = ACTIONS(1329), + [anon_sym_giB] = ACTIONS(1329), + [anon_sym_gIB] = ACTIONS(1329), + [anon_sym_gIb] = ACTIONS(1329), + [anon_sym_Gib] = ACTIONS(1329), + [anon_sym_GIb] = ACTIONS(1329), + [anon_sym_GIB] = ACTIONS(1329), + [anon_sym_tib] = ACTIONS(1329), + [anon_sym_tiB] = ACTIONS(1329), + [anon_sym_tIB] = ACTIONS(1329), + [anon_sym_tIb] = ACTIONS(1329), + [anon_sym_Tib] = ACTIONS(1329), + [anon_sym_TIb] = ACTIONS(1329), + [anon_sym_TIB] = ACTIONS(1329), + [anon_sym_pib] = ACTIONS(1329), + [anon_sym_piB] = ACTIONS(1329), + [anon_sym_pIB] = ACTIONS(1329), + [anon_sym_pIb] = ACTIONS(1329), + [anon_sym_Pib] = ACTIONS(1329), + [anon_sym_PIb] = ACTIONS(1329), + [anon_sym_PIB] = ACTIONS(1329), + [anon_sym_eib] = ACTIONS(1329), + [anon_sym_eiB] = ACTIONS(1329), + [anon_sym_eIB] = ACTIONS(1329), + [anon_sym_eIb] = ACTIONS(1329), + [anon_sym_Eib] = ACTIONS(1329), + [anon_sym_EIb] = ACTIONS(1329), + [anon_sym_EIB] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(3), + }, + [472] = { + [sym_comment] = STATE(472), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_in] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(1331), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [473] = { + [sym_comment] = STATE(473), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(109), + [anon_sym_in] = ACTIONS(109), + [anon_sym_EQ_GT] = ACTIONS(109), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(109), + [anon_sym_PLUS_PLUS] = ACTIONS(109), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(109), + [anon_sym_SLASH_SLASH] = ACTIONS(109), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(109), + [anon_sym_bit_DASHshr] = ACTIONS(109), + [anon_sym_EQ_EQ] = ACTIONS(109), + [anon_sym_BANG_EQ] = ACTIONS(109), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(109), + [anon_sym_not_DASHin] = ACTIONS(109), + [anon_sym_starts_DASHwith] = ACTIONS(109), + [anon_sym_ends_DASHwith] = ACTIONS(109), + [anon_sym_EQ_TILDE] = ACTIONS(109), + [anon_sym_BANG_TILDE] = ACTIONS(109), + [anon_sym_bit_DASHand] = ACTIONS(109), + [anon_sym_bit_DASHxor] = ACTIONS(109), + [anon_sym_bit_DASHor] = ACTIONS(109), + [anon_sym_and] = ACTIONS(109), + [anon_sym_xor] = ACTIONS(109), + [anon_sym_or] = ACTIONS(109), + [aux_sym__immediate_decimal_token2] = ACTIONS(1269), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -133667,7 +137045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hr] = ACTIONS(109), [anon_sym_day] = ACTIONS(109), [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(109), + [anon_sym_b] = ACTIONS(107), [anon_sym_B] = ACTIONS(109), [anon_sym_kb] = ACTIONS(109), [anon_sym_kB] = ACTIONS(109), @@ -133735,21 +137113,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(109), [anon_sym_EIb] = ACTIONS(109), [anon_sym_EIB] = ACTIONS(109), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [aux_sym__unquoted_in_list_token1] = ACTIONS(107), - [aux_sym__unquoted_in_list_token7] = ACTIONS(107), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [458] = { - [sym_comment] = STATE(458), + [474] = { + [sym_comment] = STATE(474), + [anon_sym_GT] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(109), + [anon_sym_in] = ACTIONS(109), + [anon_sym_EQ_GT] = ACTIONS(109), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_STAR_STAR] = ACTIONS(109), + [anon_sym_PLUS_PLUS] = ACTIONS(109), + [anon_sym_SLASH] = ACTIONS(107), + [anon_sym_mod] = ACTIONS(109), + [anon_sym_SLASH_SLASH] = ACTIONS(109), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_bit_DASHshl] = ACTIONS(109), + [anon_sym_bit_DASHshr] = ACTIONS(109), + [anon_sym_EQ_EQ] = ACTIONS(109), + [anon_sym_BANG_EQ] = ACTIONS(109), + [anon_sym_LT2] = ACTIONS(107), + [anon_sym_LT_EQ] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(109), + [anon_sym_not_DASHin] = ACTIONS(109), + [anon_sym_starts_DASHwith] = ACTIONS(109), + [anon_sym_ends_DASHwith] = ACTIONS(109), + [anon_sym_EQ_TILDE] = ACTIONS(109), + [anon_sym_BANG_TILDE] = ACTIONS(109), + [anon_sym_bit_DASHand] = ACTIONS(109), + [anon_sym_bit_DASHxor] = ACTIONS(109), + [anon_sym_bit_DASHor] = ACTIONS(109), + [anon_sym_and] = ACTIONS(109), + [anon_sym_xor] = ACTIONS(109), + [anon_sym_or] = ACTIONS(109), + [anon_sym_ns] = ACTIONS(109), + [anon_sym_s] = ACTIONS(109), + [anon_sym_us] = ACTIONS(109), + [anon_sym_ms] = ACTIONS(109), + [anon_sym_sec] = ACTIONS(109), + [anon_sym_min] = ACTIONS(109), + [anon_sym_hr] = ACTIONS(109), + [anon_sym_day] = ACTIONS(109), + [anon_sym_wk] = ACTIONS(109), + [anon_sym_b] = ACTIONS(107), + [anon_sym_B] = ACTIONS(109), + [anon_sym_kb] = ACTIONS(109), + [anon_sym_kB] = ACTIONS(109), + [anon_sym_Kb] = ACTIONS(109), + [anon_sym_KB] = ACTIONS(109), + [anon_sym_mb] = ACTIONS(109), + [anon_sym_mB] = ACTIONS(109), + [anon_sym_Mb] = ACTIONS(109), + [anon_sym_MB] = ACTIONS(109), + [anon_sym_gb] = ACTIONS(109), + [anon_sym_gB] = ACTIONS(109), + [anon_sym_Gb] = ACTIONS(109), + [anon_sym_GB] = ACTIONS(109), + [anon_sym_tb] = ACTIONS(109), + [anon_sym_tB] = ACTIONS(109), + [anon_sym_Tb] = ACTIONS(109), + [anon_sym_TB] = ACTIONS(109), + [anon_sym_pb] = ACTIONS(109), + [anon_sym_pB] = ACTIONS(109), + [anon_sym_Pb] = ACTIONS(109), + [anon_sym_PB] = ACTIONS(109), + [anon_sym_eb] = ACTIONS(109), + [anon_sym_eB] = ACTIONS(109), + [anon_sym_Eb] = ACTIONS(109), + [anon_sym_EB] = ACTIONS(109), + [anon_sym_kib] = ACTIONS(109), + [anon_sym_kiB] = ACTIONS(109), + [anon_sym_kIB] = ACTIONS(109), + [anon_sym_kIb] = ACTIONS(109), + [anon_sym_Kib] = ACTIONS(109), + [anon_sym_KIb] = ACTIONS(109), + [anon_sym_KIB] = ACTIONS(109), + [anon_sym_mib] = ACTIONS(109), + [anon_sym_miB] = ACTIONS(109), + [anon_sym_mIB] = ACTIONS(109), + [anon_sym_mIb] = ACTIONS(109), + [anon_sym_Mib] = ACTIONS(109), + [anon_sym_MIb] = ACTIONS(109), + [anon_sym_MIB] = ACTIONS(109), + [anon_sym_gib] = ACTIONS(109), + [anon_sym_giB] = ACTIONS(109), + [anon_sym_gIB] = ACTIONS(109), + [anon_sym_gIb] = ACTIONS(109), + [anon_sym_Gib] = ACTIONS(109), + [anon_sym_GIb] = ACTIONS(109), + [anon_sym_GIB] = ACTIONS(109), + [anon_sym_tib] = ACTIONS(109), + [anon_sym_tiB] = ACTIONS(109), + [anon_sym_tIB] = ACTIONS(109), + [anon_sym_tIb] = ACTIONS(109), + [anon_sym_Tib] = ACTIONS(109), + [anon_sym_TIb] = ACTIONS(109), + [anon_sym_TIB] = ACTIONS(109), + [anon_sym_pib] = ACTIONS(109), + [anon_sym_piB] = ACTIONS(109), + [anon_sym_pIB] = ACTIONS(109), + [anon_sym_pIb] = ACTIONS(109), + [anon_sym_Pib] = ACTIONS(109), + [anon_sym_PIb] = ACTIONS(109), + [anon_sym_PIB] = ACTIONS(109), + [anon_sym_eib] = ACTIONS(109), + [anon_sym_eiB] = ACTIONS(109), + [anon_sym_eIB] = ACTIONS(109), + [anon_sym_eIb] = ACTIONS(109), + [anon_sym_Eib] = ACTIONS(109), + [anon_sym_EIb] = ACTIONS(109), + [anon_sym_EIB] = ACTIONS(109), + [aux_sym_unquoted_token6] = ACTIONS(107), + [anon_sym_POUND] = ACTIONS(3), + }, + [475] = { + [sym_comment] = STATE(475), [anon_sym_LBRACK] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_RBRACK] = ACTIONS(109), @@ -133760,7 +137240,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1285), [anon_sym_null] = ACTIONS(109), [anon_sym_true] = ACTIONS(109), [anon_sym_false] = ACTIONS(109), @@ -133861,152 +137340,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__unquoted_in_list_token7] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [459] = { - [sym_comment] = STATE(459), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_in] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(129), - [anon_sym_DOT2] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(129), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(129), - [anon_sym_xor] = ACTIONS(129), - [anon_sym_or] = ACTIONS(129), - [aux_sym__immediate_decimal_token2] = ACTIONS(1307), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), - [aux_sym_unquoted_token6] = ACTIONS(127), + [476] = { + [sym_comment] = STATE(476), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT2] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(3), }, - [460] = { - [sym_comment] = STATE(460), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), + [477] = { + [sym_comment] = STATE(477), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(159), + [anon_sym_in] = ACTIONS(159), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(159), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(159), + [anon_sym_xor] = ACTIONS(159), + [anon_sym_or] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [aux_sym_unquoted_token6] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(3), + }, + [478] = { + [sym_comment] = STATE(478), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(109), + [anon_sym_DASH] = ACTIONS(107), [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(107), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_PLUS] = ACTIONS(109), + [aux_sym__immediate_decimal_token1] = ACTIONS(1335), + [aux_sym__immediate_decimal_token2] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(109), + [anon_sym_true] = ACTIONS(109), + [anon_sym_false] = ACTIONS(109), + [aux_sym__val_number_decimal_token1] = ACTIONS(107), + [aux_sym__val_number_token1] = ACTIONS(109), + [aux_sym__val_number_token2] = ACTIONS(109), + [aux_sym__val_number_token3] = ACTIONS(109), + [aux_sym__val_number_token4] = ACTIONS(109), + [aux_sym__val_number_token5] = ACTIONS(109), + [aux_sym__val_number_token6] = ACTIONS(109), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -134016,7 +137597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hr] = ACTIONS(109), [anon_sym_day] = ACTIONS(109), [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), + [anon_sym_b] = ACTIONS(109), [anon_sym_B] = ACTIONS(109), [anon_sym_kb] = ACTIONS(109), [anon_sym_kB] = ACTIONS(109), @@ -134084,155 +137665,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(109), [anon_sym_EIb] = ACTIONS(109), [anon_sym_EIB] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), + [anon_sym_0b] = ACTIONS(107), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [aux_sym__unquoted_in_list_token1] = ACTIONS(107), + [aux_sym__unquoted_in_list_token7] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [461] = { - [sym_comment] = STATE(461), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_in] = ACTIONS(150), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [aux_sym__immediate_decimal_token2] = ACTIONS(1312), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [aux_sym_unquoted_token6] = ACTIONS(148), + [479] = { + [sym_comment] = STATE(479), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT2] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(3), }, - [462] = { - [sym_comment] = STATE(462), + [480] = { + [sym_comment] = STATE(480), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), + [anon_sym_POUND] = ACTIONS(3), + }, + [481] = { + [sym_comment] = STATE(481), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_in] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [482] = { + [sym_comment] = STATE(482), + [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(117), - [anon_sym_in] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(117), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), - [anon_sym_and] = ACTIONS(117), - [anon_sym_xor] = ACTIONS(117), - [anon_sym_or] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_null] = ACTIONS(117), + [anon_sym_true] = ACTIONS(117), + [anon_sym_false] = ACTIONS(117), + [aux_sym__val_number_decimal_token1] = ACTIONS(115), + [aux_sym__val_number_token1] = ACTIONS(117), + [aux_sym__val_number_token2] = ACTIONS(117), + [aux_sym__val_number_token3] = ACTIONS(117), + [aux_sym__val_number_token4] = ACTIONS(117), + [aux_sym__val_number_token5] = ACTIONS(117), + [aux_sym__val_number_token6] = ACTIONS(117), [anon_sym_ns] = ACTIONS(117), [anon_sym_s] = ACTIONS(117), [anon_sym_us] = ACTIONS(117), @@ -134242,7 +138043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hr] = ACTIONS(117), [anon_sym_day] = ACTIONS(117), [anon_sym_wk] = ACTIONS(117), - [anon_sym_b] = ACTIONS(115), + [anon_sym_b] = ACTIONS(117), [anon_sym_B] = ACTIONS(117), [anon_sym_kb] = ACTIONS(117), [anon_sym_kB] = ACTIONS(117), @@ -134310,806 +138111,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(117), [anon_sym_EIb] = ACTIONS(117), [anon_sym_EIB] = ACTIONS(117), - [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [463] = { - [sym_comment] = STATE(463), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_in] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [aux_sym__immediate_decimal_token2] = ACTIONS(1314), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [464] = { - [sym_comment] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LF] = ACTIONS(215), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(213), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(213), - [anon_sym_SLASH_SLASH] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(213), - [anon_sym_bit_DASHshr] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_not_DASHin] = ACTIONS(213), - [anon_sym_starts_DASHwith] = ACTIONS(213), - [anon_sym_ends_DASHwith] = ACTIONS(213), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_BANG_TILDE] = ACTIONS(213), - [anon_sym_bit_DASHand] = ACTIONS(213), - [anon_sym_bit_DASHxor] = ACTIONS(213), - [anon_sym_bit_DASHor] = ACTIONS(213), - [anon_sym_and] = ACTIONS(213), - [anon_sym_xor] = ACTIONS(213), - [anon_sym_or] = ACTIONS(213), - [anon_sym_ns] = ACTIONS(1177), - [anon_sym_s] = ACTIONS(1177), - [anon_sym_us] = ACTIONS(1177), - [anon_sym_ms] = ACTIONS(1177), - [anon_sym_sec] = ACTIONS(1177), - [anon_sym_min] = ACTIONS(1177), - [anon_sym_hr] = ACTIONS(1177), - [anon_sym_day] = ACTIONS(1177), - [anon_sym_wk] = ACTIONS(1177), - [anon_sym_b] = ACTIONS(1179), - [anon_sym_B] = ACTIONS(1179), - [anon_sym_kb] = ACTIONS(1179), - [anon_sym_kB] = ACTIONS(1179), - [anon_sym_Kb] = ACTIONS(1179), - [anon_sym_KB] = ACTIONS(1179), - [anon_sym_mb] = ACTIONS(1179), - [anon_sym_mB] = ACTIONS(1179), - [anon_sym_Mb] = ACTIONS(1179), - [anon_sym_MB] = ACTIONS(1179), - [anon_sym_gb] = ACTIONS(1179), - [anon_sym_gB] = ACTIONS(1179), - [anon_sym_Gb] = ACTIONS(1179), - [anon_sym_GB] = ACTIONS(1179), - [anon_sym_tb] = ACTIONS(1179), - [anon_sym_tB] = ACTIONS(1179), - [anon_sym_Tb] = ACTIONS(1179), - [anon_sym_TB] = ACTIONS(1179), - [anon_sym_pb] = ACTIONS(1179), - [anon_sym_pB] = ACTIONS(1179), - [anon_sym_Pb] = ACTIONS(1179), - [anon_sym_PB] = ACTIONS(1179), - [anon_sym_eb] = ACTIONS(1179), - [anon_sym_eB] = ACTIONS(1179), - [anon_sym_Eb] = ACTIONS(1179), - [anon_sym_EB] = ACTIONS(1179), - [anon_sym_kib] = ACTIONS(1179), - [anon_sym_kiB] = ACTIONS(1179), - [anon_sym_kIB] = ACTIONS(1179), - [anon_sym_kIb] = ACTIONS(1179), - [anon_sym_Kib] = ACTIONS(1179), - [anon_sym_KIb] = ACTIONS(1179), - [anon_sym_KIB] = ACTIONS(1179), - [anon_sym_mib] = ACTIONS(1179), - [anon_sym_miB] = ACTIONS(1179), - [anon_sym_mIB] = ACTIONS(1179), - [anon_sym_mIb] = ACTIONS(1179), - [anon_sym_Mib] = ACTIONS(1179), - [anon_sym_MIb] = ACTIONS(1179), - [anon_sym_MIB] = ACTIONS(1179), - [anon_sym_gib] = ACTIONS(1179), - [anon_sym_giB] = ACTIONS(1179), - [anon_sym_gIB] = ACTIONS(1179), - [anon_sym_gIb] = ACTIONS(1179), - [anon_sym_Gib] = ACTIONS(1179), - [anon_sym_GIb] = ACTIONS(1179), - [anon_sym_GIB] = ACTIONS(1179), - [anon_sym_tib] = ACTIONS(1179), - [anon_sym_tiB] = ACTIONS(1179), - [anon_sym_tIB] = ACTIONS(1179), - [anon_sym_tIb] = ACTIONS(1179), - [anon_sym_Tib] = ACTIONS(1179), - [anon_sym_TIb] = ACTIONS(1179), - [anon_sym_TIB] = ACTIONS(1179), - [anon_sym_pib] = ACTIONS(1179), - [anon_sym_piB] = ACTIONS(1179), - [anon_sym_pIB] = ACTIONS(1179), - [anon_sym_pIb] = ACTIONS(1179), - [anon_sym_Pib] = ACTIONS(1179), - [anon_sym_PIb] = ACTIONS(1179), - [anon_sym_PIB] = ACTIONS(1179), - [anon_sym_eib] = ACTIONS(1179), - [anon_sym_eiB] = ACTIONS(1179), - [anon_sym_eIB] = ACTIONS(1179), - [anon_sym_eIb] = ACTIONS(1179), - [anon_sym_Eib] = ACTIONS(1179), - [anon_sym_EIb] = ACTIONS(1179), - [anon_sym_EIB] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(105), - }, - [465] = { - [sym_comment] = STATE(465), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_in] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym_EQ_GT] = ACTIONS(215), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(215), - [anon_sym_SLASH_SLASH] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(215), - [anon_sym_bit_DASHshr] = ACTIONS(215), - [anon_sym_EQ_EQ] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(215), - [anon_sym_GT_EQ] = ACTIONS(215), - [anon_sym_not_DASHin] = ACTIONS(215), - [anon_sym_starts_DASHwith] = ACTIONS(215), - [anon_sym_ends_DASHwith] = ACTIONS(215), - [anon_sym_EQ_TILDE] = ACTIONS(215), - [anon_sym_BANG_TILDE] = ACTIONS(215), - [anon_sym_bit_DASHand] = ACTIONS(215), - [anon_sym_bit_DASHxor] = ACTIONS(215), - [anon_sym_bit_DASHor] = ACTIONS(215), - [anon_sym_and] = ACTIONS(215), - [anon_sym_xor] = ACTIONS(215), - [anon_sym_or] = ACTIONS(215), - [anon_sym_ns] = ACTIONS(1316), - [anon_sym_s] = ACTIONS(1316), - [anon_sym_us] = ACTIONS(1316), - [anon_sym_ms] = ACTIONS(1316), - [anon_sym_sec] = ACTIONS(1316), - [anon_sym_min] = ACTIONS(1316), - [anon_sym_hr] = ACTIONS(1316), - [anon_sym_day] = ACTIONS(1316), - [anon_sym_wk] = ACTIONS(1316), - [anon_sym_b] = ACTIONS(1318), - [anon_sym_B] = ACTIONS(1320), - [anon_sym_kb] = ACTIONS(1320), - [anon_sym_kB] = ACTIONS(1320), - [anon_sym_Kb] = ACTIONS(1320), - [anon_sym_KB] = ACTIONS(1320), - [anon_sym_mb] = ACTIONS(1320), - [anon_sym_mB] = ACTIONS(1320), - [anon_sym_Mb] = ACTIONS(1320), - [anon_sym_MB] = ACTIONS(1320), - [anon_sym_gb] = ACTIONS(1320), - [anon_sym_gB] = ACTIONS(1320), - [anon_sym_Gb] = ACTIONS(1320), - [anon_sym_GB] = ACTIONS(1320), - [anon_sym_tb] = ACTIONS(1320), - [anon_sym_tB] = ACTIONS(1320), - [anon_sym_Tb] = ACTIONS(1320), - [anon_sym_TB] = ACTIONS(1320), - [anon_sym_pb] = ACTIONS(1320), - [anon_sym_pB] = ACTIONS(1320), - [anon_sym_Pb] = ACTIONS(1320), - [anon_sym_PB] = ACTIONS(1320), - [anon_sym_eb] = ACTIONS(1320), - [anon_sym_eB] = ACTIONS(1320), - [anon_sym_Eb] = ACTIONS(1320), - [anon_sym_EB] = ACTIONS(1320), - [anon_sym_kib] = ACTIONS(1320), - [anon_sym_kiB] = ACTIONS(1320), - [anon_sym_kIB] = ACTIONS(1320), - [anon_sym_kIb] = ACTIONS(1320), - [anon_sym_Kib] = ACTIONS(1320), - [anon_sym_KIb] = ACTIONS(1320), - [anon_sym_KIB] = ACTIONS(1320), - [anon_sym_mib] = ACTIONS(1320), - [anon_sym_miB] = ACTIONS(1320), - [anon_sym_mIB] = ACTIONS(1320), - [anon_sym_mIb] = ACTIONS(1320), - [anon_sym_Mib] = ACTIONS(1320), - [anon_sym_MIb] = ACTIONS(1320), - [anon_sym_MIB] = ACTIONS(1320), - [anon_sym_gib] = ACTIONS(1320), - [anon_sym_giB] = ACTIONS(1320), - [anon_sym_gIB] = ACTIONS(1320), - [anon_sym_gIb] = ACTIONS(1320), - [anon_sym_Gib] = ACTIONS(1320), - [anon_sym_GIb] = ACTIONS(1320), - [anon_sym_GIB] = ACTIONS(1320), - [anon_sym_tib] = ACTIONS(1320), - [anon_sym_tiB] = ACTIONS(1320), - [anon_sym_tIB] = ACTIONS(1320), - [anon_sym_tIb] = ACTIONS(1320), - [anon_sym_Tib] = ACTIONS(1320), - [anon_sym_TIb] = ACTIONS(1320), - [anon_sym_TIB] = ACTIONS(1320), - [anon_sym_pib] = ACTIONS(1320), - [anon_sym_piB] = ACTIONS(1320), - [anon_sym_pIB] = ACTIONS(1320), - [anon_sym_pIb] = ACTIONS(1320), - [anon_sym_Pib] = ACTIONS(1320), - [anon_sym_PIb] = ACTIONS(1320), - [anon_sym_PIB] = ACTIONS(1320), - [anon_sym_eib] = ACTIONS(1320), - [anon_sym_eiB] = ACTIONS(1320), - [anon_sym_eIB] = ACTIONS(1320), - [anon_sym_eIb] = ACTIONS(1320), - [anon_sym_Eib] = ACTIONS(1320), - [anon_sym_EIb] = ACTIONS(1320), - [anon_sym_EIB] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(3), - }, - [466] = { - [sym_comment] = STATE(466), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_in] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [aux_sym_unquoted_token6] = ACTIONS(148), + [anon_sym_0b] = ACTIONS(115), + [anon_sym_0o] = ACTIONS(115), + [anon_sym_0x] = ACTIONS(115), + [sym_val_date] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym__str_single_quotes] = ACTIONS(117), + [sym__str_back_ticks] = ACTIONS(117), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym__unquoted_in_list_token1] = ACTIONS(115), + [aux_sym__unquoted_in_list_token7] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [467] = { - [sym_comment] = STATE(467), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(129), - [aux_sym__immediate_decimal_token2] = ACTIONS(1325), - [anon_sym_null] = ACTIONS(129), - [anon_sym_true] = ACTIONS(129), - [anon_sym_false] = ACTIONS(129), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(129), - [aux_sym__val_number_token2] = ACTIONS(129), - [aux_sym__val_number_token3] = ACTIONS(129), - [aux_sym__val_number_token4] = ACTIONS(129), - [aux_sym__val_number_token5] = ACTIONS(129), - [aux_sym__val_number_token6] = ACTIONS(129), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(129), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [sym__str_single_quotes] = ACTIONS(129), - [sym__str_back_ticks] = ACTIONS(129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [aux_sym__unquoted_in_list_token1] = ACTIONS(127), - [aux_sym__unquoted_in_list_token7] = ACTIONS(127), + [483] = { + [sym_comment] = STATE(483), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(159), + [anon_sym_in] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_STAR_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(157), + [anon_sym_mod] = ACTIONS(159), + [anon_sym_SLASH_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_bit_DASHshl] = ACTIONS(159), + [anon_sym_bit_DASHshr] = ACTIONS(159), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_LT2] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_not_DASHin] = ACTIONS(159), + [anon_sym_starts_DASHwith] = ACTIONS(159), + [anon_sym_ends_DASHwith] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [anon_sym_bit_DASHand] = ACTIONS(159), + [anon_sym_bit_DASHxor] = ACTIONS(159), + [anon_sym_bit_DASHor] = ACTIONS(159), + [anon_sym_and] = ACTIONS(159), + [anon_sym_xor] = ACTIONS(159), + [anon_sym_or] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(157), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(3), }, - [468] = { - [sym_comment] = STATE(468), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_in] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(167), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(167), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(167), - [anon_sym_xor] = ACTIONS(167), - [anon_sym_or] = ACTIONS(167), - [anon_sym_ns] = ACTIONS(167), - [anon_sym_s] = ACTIONS(167), - [anon_sym_us] = ACTIONS(167), - [anon_sym_ms] = ACTIONS(167), - [anon_sym_sec] = ACTIONS(167), - [anon_sym_min] = ACTIONS(167), - [anon_sym_hr] = ACTIONS(167), - [anon_sym_day] = ACTIONS(167), - [anon_sym_wk] = ACTIONS(167), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(167), - [anon_sym_kb] = ACTIONS(167), - [anon_sym_kB] = ACTIONS(167), - [anon_sym_Kb] = ACTIONS(167), - [anon_sym_KB] = ACTIONS(167), - [anon_sym_mb] = ACTIONS(167), - [anon_sym_mB] = ACTIONS(167), - [anon_sym_Mb] = ACTIONS(167), - [anon_sym_MB] = ACTIONS(167), - [anon_sym_gb] = ACTIONS(167), - [anon_sym_gB] = ACTIONS(167), - [anon_sym_Gb] = ACTIONS(167), - [anon_sym_GB] = ACTIONS(167), - [anon_sym_tb] = ACTIONS(167), - [anon_sym_tB] = ACTIONS(167), - [anon_sym_Tb] = ACTIONS(167), - [anon_sym_TB] = ACTIONS(167), - [anon_sym_pb] = ACTIONS(167), - [anon_sym_pB] = ACTIONS(167), - [anon_sym_Pb] = ACTIONS(167), - [anon_sym_PB] = ACTIONS(167), - [anon_sym_eb] = ACTIONS(167), - [anon_sym_eB] = ACTIONS(167), - [anon_sym_Eb] = ACTIONS(167), - [anon_sym_EB] = ACTIONS(167), - [anon_sym_kib] = ACTIONS(167), - [anon_sym_kiB] = ACTIONS(167), - [anon_sym_kIB] = ACTIONS(167), - [anon_sym_kIb] = ACTIONS(167), - [anon_sym_Kib] = ACTIONS(167), - [anon_sym_KIb] = ACTIONS(167), - [anon_sym_KIB] = ACTIONS(167), - [anon_sym_mib] = ACTIONS(167), - [anon_sym_miB] = ACTIONS(167), - [anon_sym_mIB] = ACTIONS(167), - [anon_sym_mIb] = ACTIONS(167), - [anon_sym_Mib] = ACTIONS(167), - [anon_sym_MIb] = ACTIONS(167), - [anon_sym_MIB] = ACTIONS(167), - [anon_sym_gib] = ACTIONS(167), - [anon_sym_giB] = ACTIONS(167), - [anon_sym_gIB] = ACTIONS(167), - [anon_sym_gIb] = ACTIONS(167), - [anon_sym_Gib] = ACTIONS(167), - [anon_sym_GIb] = ACTIONS(167), - [anon_sym_GIB] = ACTIONS(167), - [anon_sym_tib] = ACTIONS(167), - [anon_sym_tiB] = ACTIONS(167), - [anon_sym_tIB] = ACTIONS(167), - [anon_sym_tIb] = ACTIONS(167), - [anon_sym_Tib] = ACTIONS(167), - [anon_sym_TIb] = ACTIONS(167), - [anon_sym_TIB] = ACTIONS(167), - [anon_sym_pib] = ACTIONS(167), - [anon_sym_piB] = ACTIONS(167), - [anon_sym_pIB] = ACTIONS(167), - [anon_sym_pIb] = ACTIONS(167), - [anon_sym_Pib] = ACTIONS(167), - [anon_sym_PIb] = ACTIONS(167), - [anon_sym_PIB] = ACTIONS(167), - [anon_sym_eib] = ACTIONS(167), - [anon_sym_eiB] = ACTIONS(167), - [anon_sym_eIB] = ACTIONS(167), - [anon_sym_eIb] = ACTIONS(167), - [anon_sym_Eib] = ACTIONS(167), - [anon_sym_EIb] = ACTIONS(167), - [anon_sym_EIB] = ACTIONS(167), - [aux_sym_unquoted_token6] = ACTIONS(165), + [484] = { + [sym_comment] = STATE(484), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_null] = ACTIONS(189), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(189), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(189), + [aux_sym__unquoted_in_list_token1] = ACTIONS(187), + [aux_sym__unquoted_in_list_token7] = ACTIONS(1341), [anon_sym_POUND] = ACTIONS(3), }, - [469] = { - [sym_comment] = STATE(469), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_DOT2] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), + [485] = { + [sym_comment] = STATE(485), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_EQ_GT] = ACTIONS(189), + [anon_sym_DOT2] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(3), }, - [470] = { - [sym_comment] = STATE(470), + [486] = { + [sym_comment] = STATE(486), [anon_sym_GT] = ACTIONS(107), [anon_sym_DASH] = ACTIONS(109), [anon_sym_in] = ACTIONS(109), - [anon_sym_EQ_GT] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(107), [anon_sym_STAR_STAR] = ACTIONS(109), @@ -135136,7 +138492,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(109), [anon_sym_xor] = ACTIONS(109), [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1262), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -135217,12 +138572,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [471] = { - [sym_comment] = STATE(471), + [487] = { + [sym_comment] = STATE(487), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(117), [anon_sym_in] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(117), @@ -135249,7 +138604,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(117), [anon_sym_xor] = ACTIONS(117), [anon_sym_or] = ACTIONS(117), - [aux_sym__immediate_decimal_token2] = ACTIONS(1270), [anon_sym_ns] = ACTIONS(117), [anon_sym_s] = ACTIONS(117), [anon_sym_us] = ACTIONS(117), @@ -135330,19 +138684,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [472] = { - [sym_comment] = STATE(472), + [488] = { + [sym_comment] = STATE(488), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_in] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(149), + [anon_sym_PLUS_PLUS] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_mod] = ACTIONS(149), + [anon_sym_SLASH_SLASH] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_bit_DASHshl] = ACTIONS(149), + [anon_sym_bit_DASHshr] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_LT2] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_not_DASHin] = ACTIONS(149), + [anon_sym_starts_DASHwith] = ACTIONS(149), + [anon_sym_ends_DASHwith] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(149), + [anon_sym_BANG_TILDE] = ACTIONS(149), + [anon_sym_bit_DASHand] = ACTIONS(149), + [anon_sym_bit_DASHxor] = ACTIONS(149), + [anon_sym_bit_DASHor] = ACTIONS(149), + [anon_sym_and] = ACTIONS(149), + [anon_sym_xor] = ACTIONS(149), + [anon_sym_or] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(147), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [489] = { + [sym_comment] = STATE(489), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACK] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_DASH] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_DOT] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_PLUS] = ACTIONS(117), - [aux_sym__immediate_decimal_token2] = ACTIONS(1254), + [aux_sym__immediate_decimal_token1] = ACTIONS(1343), + [aux_sym__immediate_decimal_token2] = ACTIONS(1345), [anon_sym_null] = ACTIONS(117), [anon_sym_true] = ACTIONS(117), [anon_sym_false] = ACTIONS(117), @@ -135437,354 +138904,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(117), [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym__unquoted_in_list_token1] = ACTIONS(115), [aux_sym__unquoted_in_list_token7] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [473] = { - [sym_comment] = STATE(473), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), - [anon_sym_EQ_GT] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [474] = { - [sym_comment] = STATE(474), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_in] = ACTIONS(167), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(167), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(167), - [anon_sym_xor] = ACTIONS(167), - [anon_sym_or] = ACTIONS(167), - [anon_sym_ns] = ACTIONS(167), - [anon_sym_s] = ACTIONS(167), - [anon_sym_us] = ACTIONS(167), - [anon_sym_ms] = ACTIONS(167), - [anon_sym_sec] = ACTIONS(167), - [anon_sym_min] = ACTIONS(167), - [anon_sym_hr] = ACTIONS(167), - [anon_sym_day] = ACTIONS(167), - [anon_sym_wk] = ACTIONS(167), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(167), - [anon_sym_kb] = ACTIONS(167), - [anon_sym_kB] = ACTIONS(167), - [anon_sym_Kb] = ACTIONS(167), - [anon_sym_KB] = ACTIONS(167), - [anon_sym_mb] = ACTIONS(167), - [anon_sym_mB] = ACTIONS(167), - [anon_sym_Mb] = ACTIONS(167), - [anon_sym_MB] = ACTIONS(167), - [anon_sym_gb] = ACTIONS(167), - [anon_sym_gB] = ACTIONS(167), - [anon_sym_Gb] = ACTIONS(167), - [anon_sym_GB] = ACTIONS(167), - [anon_sym_tb] = ACTIONS(167), - [anon_sym_tB] = ACTIONS(167), - [anon_sym_Tb] = ACTIONS(167), - [anon_sym_TB] = ACTIONS(167), - [anon_sym_pb] = ACTIONS(167), - [anon_sym_pB] = ACTIONS(167), - [anon_sym_Pb] = ACTIONS(167), - [anon_sym_PB] = ACTIONS(167), - [anon_sym_eb] = ACTIONS(167), - [anon_sym_eB] = ACTIONS(167), - [anon_sym_Eb] = ACTIONS(167), - [anon_sym_EB] = ACTIONS(167), - [anon_sym_kib] = ACTIONS(167), - [anon_sym_kiB] = ACTIONS(167), - [anon_sym_kIB] = ACTIONS(167), - [anon_sym_kIb] = ACTIONS(167), - [anon_sym_Kib] = ACTIONS(167), - [anon_sym_KIb] = ACTIONS(167), - [anon_sym_KIB] = ACTIONS(167), - [anon_sym_mib] = ACTIONS(167), - [anon_sym_miB] = ACTIONS(167), - [anon_sym_mIB] = ACTIONS(167), - [anon_sym_mIb] = ACTIONS(167), - [anon_sym_Mib] = ACTIONS(167), - [anon_sym_MIb] = ACTIONS(167), - [anon_sym_MIB] = ACTIONS(167), - [anon_sym_gib] = ACTIONS(167), - [anon_sym_giB] = ACTIONS(167), - [anon_sym_gIB] = ACTIONS(167), - [anon_sym_gIb] = ACTIONS(167), - [anon_sym_Gib] = ACTIONS(167), - [anon_sym_GIb] = ACTIONS(167), - [anon_sym_GIB] = ACTIONS(167), - [anon_sym_tib] = ACTIONS(167), - [anon_sym_tiB] = ACTIONS(167), - [anon_sym_tIB] = ACTIONS(167), - [anon_sym_tIb] = ACTIONS(167), - [anon_sym_Tib] = ACTIONS(167), - [anon_sym_TIb] = ACTIONS(167), - [anon_sym_TIB] = ACTIONS(167), - [anon_sym_pib] = ACTIONS(167), - [anon_sym_piB] = ACTIONS(167), - [anon_sym_pIB] = ACTIONS(167), - [anon_sym_pIb] = ACTIONS(167), - [anon_sym_Pib] = ACTIONS(167), - [anon_sym_PIb] = ACTIONS(167), - [anon_sym_PIB] = ACTIONS(167), - [anon_sym_eib] = ACTIONS(167), - [anon_sym_eiB] = ACTIONS(167), - [anon_sym_eIB] = ACTIONS(167), - [anon_sym_eIb] = ACTIONS(167), - [anon_sym_Eib] = ACTIONS(167), - [anon_sym_EIb] = ACTIONS(167), - [anon_sym_EIB] = ACTIONS(167), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(3), - }, - [475] = { - [sym_comment] = STATE(475), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [aux_sym_unquoted_token6] = ACTIONS(1289), - [anon_sym_POUND] = ACTIONS(3), - }, - [476] = { - [sym_comment] = STATE(476), + [490] = { + [sym_comment] = STATE(490), [anon_sym_GT] = ACTIONS(115), [anon_sym_DASH] = ACTIONS(117), [anon_sym_in] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(115), [anon_sym_STAR_STAR] = ACTIONS(117), @@ -135891,130 +139020,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [477] = { - [sym_comment] = STATE(477), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1183), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), + [491] = { + [sym_comment] = STATE(491), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_RBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(159), + [aux_sym__val_number_token2] = ACTIONS(159), + [aux_sym__val_number_token3] = ACTIONS(159), + [aux_sym__val_number_token4] = ACTIONS(159), + [aux_sym__val_number_token5] = ACTIONS(159), + [aux_sym__val_number_token6] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(159), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym__str_single_quotes] = ACTIONS(159), + [sym__str_back_ticks] = ACTIONS(159), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(159), + [aux_sym__unquoted_in_list_token1] = ACTIONS(157), + [aux_sym__unquoted_in_list_token7] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(3), }, - [478] = { - [sym_comment] = STATE(478), + [492] = { + [sym_comment] = STATE(492), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_null] = ACTIONS(149), + [anon_sym_true] = ACTIONS(149), + [anon_sym_false] = ACTIONS(149), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(149), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(149), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(149), + [aux_sym__unquoted_in_list_token1] = ACTIONS(147), + [aux_sym__unquoted_in_list_token7] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [493] = { + [sym_comment] = STATE(493), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_null] = ACTIONS(189), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(189), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(189), + [aux_sym__unquoted_in_list_token1] = ACTIONS(187), + [aux_sym__unquoted_in_list_token7] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(3), + }, + [494] = { + [sym_comment] = STATE(494), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_EQ_GT] = ACTIONS(189), + [anon_sym_DOT2] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_POUND] = ACTIONS(3), + }, + [495] = { + [sym_comment] = STATE(495), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(149), + [anon_sym_true] = ACTIONS(149), + [anon_sym_false] = ACTIONS(149), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(149), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(149), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym__unquoted_in_list_token1] = ACTIONS(147), + [aux_sym__unquoted_in_list_token7] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [496] = { + [sym_comment] = STATE(496), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACK] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), [anon_sym_DASH] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_DOT] = ACTIONS(115), [anon_sym_DOT2] = ACTIONS(117), [anon_sym_PLUS] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1345), [anon_sym_null] = ACTIONS(117), [anon_sym_true] = ACTIONS(117), [anon_sym_false] = ACTIONS(117), @@ -136109,126 +139684,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(117), [sym__str_single_quotes] = ACTIONS(117), [sym__str_back_ticks] = ACTIONS(117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym__unquoted_in_list_token1] = ACTIONS(115), [aux_sym__unquoted_in_list_token7] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [479] = { - [sym_comment] = STATE(479), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_null] = ACTIONS(150), - [anon_sym_true] = ACTIONS(150), - [anon_sym_false] = ACTIONS(150), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(150), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(150), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(150), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(150), - [aux_sym__unquoted_in_list_token1] = ACTIONS(148), - [aux_sym__unquoted_in_list_token7] = ACTIONS(148), + [497] = { + [sym_comment] = STATE(497), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_RBRACK] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(132), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_DOT2] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(132), + [aux_sym__immediate_decimal_token2] = ACTIONS(1354), + [anon_sym_null] = ACTIONS(132), + [anon_sym_true] = ACTIONS(132), + [anon_sym_false] = ACTIONS(132), + [aux_sym__val_number_decimal_token1] = ACTIONS(130), + [aux_sym__val_number_token1] = ACTIONS(132), + [aux_sym__val_number_token2] = ACTIONS(132), + [aux_sym__val_number_token3] = ACTIONS(132), + [aux_sym__val_number_token4] = ACTIONS(132), + [aux_sym__val_number_token5] = ACTIONS(132), + [aux_sym__val_number_token6] = ACTIONS(132), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(132), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [anon_sym_0b] = ACTIONS(130), + [anon_sym_0o] = ACTIONS(130), + [anon_sym_0x] = ACTIONS(130), + [sym_val_date] = ACTIONS(132), + [anon_sym_DQUOTE] = ACTIONS(132), + [sym__str_single_quotes] = ACTIONS(132), + [sym__str_back_ticks] = ACTIONS(132), + [aux_sym__unquoted_in_list_token1] = ACTIONS(130), + [aux_sym__unquoted_in_list_token7] = ACTIONS(130), [anon_sym_POUND] = ACTIONS(3), }, - [480] = { - [sym_comment] = STATE(480), + [498] = { + [sym_comment] = STATE(498), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), + [anon_sym_POUND] = ACTIONS(3), + }, + [499] = { + [sym_comment] = STATE(499), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACK] = ACTIONS(117), @@ -136237,10 +139920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1356), [anon_sym_PLUS] = ACTIONS(117), - [aux_sym__immediate_decimal_token1] = ACTIONS(1329), - [aux_sym__immediate_decimal_token2] = ACTIONS(1331), + [aux_sym__immediate_decimal_token2] = ACTIONS(1345), [anon_sym_null] = ACTIONS(117), [anon_sym_true] = ACTIONS(117), [anon_sym_false] = ACTIONS(117), @@ -136339,568 +140021,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__unquoted_in_list_token7] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [481] = { - [sym_comment] = STATE(481), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_null] = ACTIONS(173), - [anon_sym_true] = ACTIONS(173), - [anon_sym_false] = ACTIONS(173), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(173), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(173), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(173), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(173), - [aux_sym__unquoted_in_list_token1] = ACTIONS(171), - [aux_sym__unquoted_in_list_token7] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(3), - }, - [482] = { - [sym_comment] = STATE(482), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_in] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [483] = { - [sym_comment] = STATE(483), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_DOT2] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [aux_sym_unquoted_token6] = ACTIONS(1289), - [anon_sym_POUND] = ACTIONS(3), - }, - [484] = { - [sym_comment] = STATE(484), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_in] = ACTIONS(150), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_mod] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_bit_DASHshl] = ACTIONS(150), - [anon_sym_bit_DASHshr] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(150), - [anon_sym_LT2] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_not_DASHin] = ACTIONS(150), - [anon_sym_starts_DASHwith] = ACTIONS(150), - [anon_sym_ends_DASHwith] = ACTIONS(150), - [anon_sym_EQ_TILDE] = ACTIONS(150), - [anon_sym_BANG_TILDE] = ACTIONS(150), - [anon_sym_bit_DASHand] = ACTIONS(150), - [anon_sym_bit_DASHxor] = ACTIONS(150), - [anon_sym_bit_DASHor] = ACTIONS(150), - [anon_sym_and] = ACTIONS(150), - [anon_sym_xor] = ACTIONS(150), - [anon_sym_or] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(148), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [aux_sym_unquoted_token6] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [485] = { - [sym_comment] = STATE(485), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_RBRACK] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_null] = ACTIONS(167), - [anon_sym_true] = ACTIONS(167), - [anon_sym_false] = ACTIONS(167), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(167), - [aux_sym__val_number_token2] = ACTIONS(167), - [aux_sym__val_number_token3] = ACTIONS(167), - [aux_sym__val_number_token4] = ACTIONS(167), - [aux_sym__val_number_token5] = ACTIONS(167), - [aux_sym__val_number_token6] = ACTIONS(167), - [anon_sym_ns] = ACTIONS(167), - [anon_sym_s] = ACTIONS(167), - [anon_sym_us] = ACTIONS(167), - [anon_sym_ms] = ACTIONS(167), - [anon_sym_sec] = ACTIONS(167), - [anon_sym_min] = ACTIONS(167), - [anon_sym_hr] = ACTIONS(167), - [anon_sym_day] = ACTIONS(167), - [anon_sym_wk] = ACTIONS(167), - [anon_sym_b] = ACTIONS(167), - [anon_sym_B] = ACTIONS(167), - [anon_sym_kb] = ACTIONS(167), - [anon_sym_kB] = ACTIONS(167), - [anon_sym_Kb] = ACTIONS(167), - [anon_sym_KB] = ACTIONS(167), - [anon_sym_mb] = ACTIONS(167), - [anon_sym_mB] = ACTIONS(167), - [anon_sym_Mb] = ACTIONS(167), - [anon_sym_MB] = ACTIONS(167), - [anon_sym_gb] = ACTIONS(167), - [anon_sym_gB] = ACTIONS(167), - [anon_sym_Gb] = ACTIONS(167), - [anon_sym_GB] = ACTIONS(167), - [anon_sym_tb] = ACTIONS(167), - [anon_sym_tB] = ACTIONS(167), - [anon_sym_Tb] = ACTIONS(167), - [anon_sym_TB] = ACTIONS(167), - [anon_sym_pb] = ACTIONS(167), - [anon_sym_pB] = ACTIONS(167), - [anon_sym_Pb] = ACTIONS(167), - [anon_sym_PB] = ACTIONS(167), - [anon_sym_eb] = ACTIONS(167), - [anon_sym_eB] = ACTIONS(167), - [anon_sym_Eb] = ACTIONS(167), - [anon_sym_EB] = ACTIONS(167), - [anon_sym_kib] = ACTIONS(167), - [anon_sym_kiB] = ACTIONS(167), - [anon_sym_kIB] = ACTIONS(167), - [anon_sym_kIb] = ACTIONS(167), - [anon_sym_Kib] = ACTIONS(167), - [anon_sym_KIb] = ACTIONS(167), - [anon_sym_KIB] = ACTIONS(167), - [anon_sym_mib] = ACTIONS(167), - [anon_sym_miB] = ACTIONS(167), - [anon_sym_mIB] = ACTIONS(167), - [anon_sym_mIb] = ACTIONS(167), - [anon_sym_Mib] = ACTIONS(167), - [anon_sym_MIb] = ACTIONS(167), - [anon_sym_MIB] = ACTIONS(167), - [anon_sym_gib] = ACTIONS(167), - [anon_sym_giB] = ACTIONS(167), - [anon_sym_gIB] = ACTIONS(167), - [anon_sym_gIb] = ACTIONS(167), - [anon_sym_Gib] = ACTIONS(167), - [anon_sym_GIb] = ACTIONS(167), - [anon_sym_GIB] = ACTIONS(167), - [anon_sym_tib] = ACTIONS(167), - [anon_sym_tiB] = ACTIONS(167), - [anon_sym_tIB] = ACTIONS(167), - [anon_sym_tIb] = ACTIONS(167), - [anon_sym_Tib] = ACTIONS(167), - [anon_sym_TIb] = ACTIONS(167), - [anon_sym_TIB] = ACTIONS(167), - [anon_sym_pib] = ACTIONS(167), - [anon_sym_piB] = ACTIONS(167), - [anon_sym_pIB] = ACTIONS(167), - [anon_sym_pIb] = ACTIONS(167), - [anon_sym_Pib] = ACTIONS(167), - [anon_sym_PIb] = ACTIONS(167), - [anon_sym_PIB] = ACTIONS(167), - [anon_sym_eib] = ACTIONS(167), - [anon_sym_eiB] = ACTIONS(167), - [anon_sym_eIB] = ACTIONS(167), - [anon_sym_eIb] = ACTIONS(167), - [anon_sym_Eib] = ACTIONS(167), - [anon_sym_EIb] = ACTIONS(167), - [anon_sym_EIB] = ACTIONS(167), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym__str_single_quotes] = ACTIONS(167), - [sym__str_back_ticks] = ACTIONS(167), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(167), - [aux_sym__unquoted_in_list_token1] = ACTIONS(165), - [aux_sym__unquoted_in_list_token7] = ACTIONS(165), + [500] = { + [sym_comment] = STATE(500), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_EQ_GT] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(3), }, - [486] = { - [sym_comment] = STATE(486), + [501] = { + [sym_comment] = STATE(501), [anon_sym_LBRACK] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_RBRACK] = ACTIONS(109), @@ -136911,566 +140144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(109), - [aux_sym__immediate_decimal_token1] = ACTIONS(1337), - [aux_sym__immediate_decimal_token2] = ACTIONS(1339), - [anon_sym_null] = ACTIONS(109), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(109), - [aux_sym__val_number_token2] = ACTIONS(109), - [aux_sym__val_number_token3] = ACTIONS(109), - [aux_sym__val_number_token4] = ACTIONS(109), - [aux_sym__val_number_token5] = ACTIONS(109), - [aux_sym__val_number_token6] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(109), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [aux_sym__unquoted_in_list_token1] = ACTIONS(107), - [aux_sym__unquoted_in_list_token7] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [487] = { - [sym_comment] = STATE(487), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_in] = ACTIONS(167), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(167), - [anon_sym_PLUS_PLUS] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_mod] = ACTIONS(167), - [anon_sym_SLASH_SLASH] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_bit_DASHshl] = ACTIONS(167), - [anon_sym_bit_DASHshr] = ACTIONS(167), - [anon_sym_EQ_EQ] = ACTIONS(167), - [anon_sym_BANG_EQ] = ACTIONS(167), - [anon_sym_LT2] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_GT_EQ] = ACTIONS(167), - [anon_sym_not_DASHin] = ACTIONS(167), - [anon_sym_starts_DASHwith] = ACTIONS(167), - [anon_sym_ends_DASHwith] = ACTIONS(167), - [anon_sym_EQ_TILDE] = ACTIONS(167), - [anon_sym_BANG_TILDE] = ACTIONS(167), - [anon_sym_bit_DASHand] = ACTIONS(167), - [anon_sym_bit_DASHxor] = ACTIONS(167), - [anon_sym_bit_DASHor] = ACTIONS(167), - [anon_sym_and] = ACTIONS(167), - [anon_sym_xor] = ACTIONS(167), - [anon_sym_or] = ACTIONS(167), - [anon_sym_ns] = ACTIONS(167), - [anon_sym_s] = ACTIONS(167), - [anon_sym_us] = ACTIONS(167), - [anon_sym_ms] = ACTIONS(167), - [anon_sym_sec] = ACTIONS(167), - [anon_sym_min] = ACTIONS(167), - [anon_sym_hr] = ACTIONS(167), - [anon_sym_day] = ACTIONS(167), - [anon_sym_wk] = ACTIONS(167), - [anon_sym_b] = ACTIONS(165), - [anon_sym_B] = ACTIONS(167), - [anon_sym_kb] = ACTIONS(167), - [anon_sym_kB] = ACTIONS(167), - [anon_sym_Kb] = ACTIONS(167), - [anon_sym_KB] = ACTIONS(167), - [anon_sym_mb] = ACTIONS(167), - [anon_sym_mB] = ACTIONS(167), - [anon_sym_Mb] = ACTIONS(167), - [anon_sym_MB] = ACTIONS(167), - [anon_sym_gb] = ACTIONS(167), - [anon_sym_gB] = ACTIONS(167), - [anon_sym_Gb] = ACTIONS(167), - [anon_sym_GB] = ACTIONS(167), - [anon_sym_tb] = ACTIONS(167), - [anon_sym_tB] = ACTIONS(167), - [anon_sym_Tb] = ACTIONS(167), - [anon_sym_TB] = ACTIONS(167), - [anon_sym_pb] = ACTIONS(167), - [anon_sym_pB] = ACTIONS(167), - [anon_sym_Pb] = ACTIONS(167), - [anon_sym_PB] = ACTIONS(167), - [anon_sym_eb] = ACTIONS(167), - [anon_sym_eB] = ACTIONS(167), - [anon_sym_Eb] = ACTIONS(167), - [anon_sym_EB] = ACTIONS(167), - [anon_sym_kib] = ACTIONS(167), - [anon_sym_kiB] = ACTIONS(167), - [anon_sym_kIB] = ACTIONS(167), - [anon_sym_kIb] = ACTIONS(167), - [anon_sym_Kib] = ACTIONS(167), - [anon_sym_KIb] = ACTIONS(167), - [anon_sym_KIB] = ACTIONS(167), - [anon_sym_mib] = ACTIONS(167), - [anon_sym_miB] = ACTIONS(167), - [anon_sym_mIB] = ACTIONS(167), - [anon_sym_mIb] = ACTIONS(167), - [anon_sym_Mib] = ACTIONS(167), - [anon_sym_MIb] = ACTIONS(167), - [anon_sym_MIB] = ACTIONS(167), - [anon_sym_gib] = ACTIONS(167), - [anon_sym_giB] = ACTIONS(167), - [anon_sym_gIB] = ACTIONS(167), - [anon_sym_gIb] = ACTIONS(167), - [anon_sym_Gib] = ACTIONS(167), - [anon_sym_GIb] = ACTIONS(167), - [anon_sym_GIB] = ACTIONS(167), - [anon_sym_tib] = ACTIONS(167), - [anon_sym_tiB] = ACTIONS(167), - [anon_sym_tIB] = ACTIONS(167), - [anon_sym_tIb] = ACTIONS(167), - [anon_sym_Tib] = ACTIONS(167), - [anon_sym_TIb] = ACTIONS(167), - [anon_sym_TIB] = ACTIONS(167), - [anon_sym_pib] = ACTIONS(167), - [anon_sym_piB] = ACTIONS(167), - [anon_sym_pIB] = ACTIONS(167), - [anon_sym_pIb] = ACTIONS(167), - [anon_sym_Pib] = ACTIONS(167), - [anon_sym_PIb] = ACTIONS(167), - [anon_sym_PIB] = ACTIONS(167), - [anon_sym_eib] = ACTIONS(167), - [anon_sym_eiB] = ACTIONS(167), - [anon_sym_eIB] = ACTIONS(167), - [anon_sym_eIb] = ACTIONS(167), - [anon_sym_Eib] = ACTIONS(167), - [anon_sym_EIb] = ACTIONS(167), - [anon_sym_EIB] = ACTIONS(167), - [aux_sym_unquoted_token6] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(3), - }, - [488] = { - [sym_comment] = STATE(488), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_in] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_DOT2] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_STAR_STAR] = ACTIONS(129), - [anon_sym_PLUS_PLUS] = ACTIONS(129), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(129), - [anon_sym_SLASH_SLASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_bit_DASHshl] = ACTIONS(129), - [anon_sym_bit_DASHshr] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(129), - [anon_sym_LT2] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(129), - [anon_sym_not_DASHin] = ACTIONS(129), - [anon_sym_starts_DASHwith] = ACTIONS(129), - [anon_sym_ends_DASHwith] = ACTIONS(129), - [anon_sym_EQ_TILDE] = ACTIONS(129), - [anon_sym_BANG_TILDE] = ACTIONS(129), - [anon_sym_bit_DASHand] = ACTIONS(129), - [anon_sym_bit_DASHxor] = ACTIONS(129), - [anon_sym_bit_DASHor] = ACTIONS(129), - [anon_sym_and] = ACTIONS(129), - [anon_sym_xor] = ACTIONS(129), - [anon_sym_or] = ACTIONS(129), - [aux_sym__immediate_decimal_token2] = ACTIONS(1244), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(127), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(3), - }, - [489] = { - [sym_comment] = STATE(489), - [anon_sym_GT] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(117), - [anon_sym_in] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_STAR_STAR] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(115), - [anon_sym_mod] = ACTIONS(117), - [anon_sym_SLASH_SLASH] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_bit_DASHshl] = ACTIONS(117), - [anon_sym_bit_DASHshr] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(117), - [anon_sym_LT2] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_not_DASHin] = ACTIONS(117), - [anon_sym_starts_DASHwith] = ACTIONS(117), - [anon_sym_ends_DASHwith] = ACTIONS(117), - [anon_sym_EQ_TILDE] = ACTIONS(117), - [anon_sym_BANG_TILDE] = ACTIONS(117), - [anon_sym_bit_DASHand] = ACTIONS(117), - [anon_sym_bit_DASHxor] = ACTIONS(117), - [anon_sym_bit_DASHor] = ACTIONS(117), - [anon_sym_and] = ACTIONS(117), - [anon_sym_xor] = ACTIONS(117), - [anon_sym_or] = ACTIONS(117), - [anon_sym_ns] = ACTIONS(117), - [anon_sym_s] = ACTIONS(117), - [anon_sym_us] = ACTIONS(117), - [anon_sym_ms] = ACTIONS(117), - [anon_sym_sec] = ACTIONS(117), - [anon_sym_min] = ACTIONS(117), - [anon_sym_hr] = ACTIONS(117), - [anon_sym_day] = ACTIONS(117), - [anon_sym_wk] = ACTIONS(117), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(117), - [anon_sym_kb] = ACTIONS(117), - [anon_sym_kB] = ACTIONS(117), - [anon_sym_Kb] = ACTIONS(117), - [anon_sym_KB] = ACTIONS(117), - [anon_sym_mb] = ACTIONS(117), - [anon_sym_mB] = ACTIONS(117), - [anon_sym_Mb] = ACTIONS(117), - [anon_sym_MB] = ACTIONS(117), - [anon_sym_gb] = ACTIONS(117), - [anon_sym_gB] = ACTIONS(117), - [anon_sym_Gb] = ACTIONS(117), - [anon_sym_GB] = ACTIONS(117), - [anon_sym_tb] = ACTIONS(117), - [anon_sym_tB] = ACTIONS(117), - [anon_sym_Tb] = ACTIONS(117), - [anon_sym_TB] = ACTIONS(117), - [anon_sym_pb] = ACTIONS(117), - [anon_sym_pB] = ACTIONS(117), - [anon_sym_Pb] = ACTIONS(117), - [anon_sym_PB] = ACTIONS(117), - [anon_sym_eb] = ACTIONS(117), - [anon_sym_eB] = ACTIONS(117), - [anon_sym_Eb] = ACTIONS(117), - [anon_sym_EB] = ACTIONS(117), - [anon_sym_kib] = ACTIONS(117), - [anon_sym_kiB] = ACTIONS(117), - [anon_sym_kIB] = ACTIONS(117), - [anon_sym_kIb] = ACTIONS(117), - [anon_sym_Kib] = ACTIONS(117), - [anon_sym_KIb] = ACTIONS(117), - [anon_sym_KIB] = ACTIONS(117), - [anon_sym_mib] = ACTIONS(117), - [anon_sym_miB] = ACTIONS(117), - [anon_sym_mIB] = ACTIONS(117), - [anon_sym_mIb] = ACTIONS(117), - [anon_sym_Mib] = ACTIONS(117), - [anon_sym_MIb] = ACTIONS(117), - [anon_sym_MIB] = ACTIONS(117), - [anon_sym_gib] = ACTIONS(117), - [anon_sym_giB] = ACTIONS(117), - [anon_sym_gIB] = ACTIONS(117), - [anon_sym_gIb] = ACTIONS(117), - [anon_sym_Gib] = ACTIONS(117), - [anon_sym_GIb] = ACTIONS(117), - [anon_sym_GIB] = ACTIONS(117), - [anon_sym_tib] = ACTIONS(117), - [anon_sym_tiB] = ACTIONS(117), - [anon_sym_tIB] = ACTIONS(117), - [anon_sym_tIb] = ACTIONS(117), - [anon_sym_Tib] = ACTIONS(117), - [anon_sym_TIb] = ACTIONS(117), - [anon_sym_TIB] = ACTIONS(117), - [anon_sym_pib] = ACTIONS(117), - [anon_sym_piB] = ACTIONS(117), - [anon_sym_pIB] = ACTIONS(117), - [anon_sym_pIb] = ACTIONS(117), - [anon_sym_Pib] = ACTIONS(117), - [anon_sym_PIb] = ACTIONS(117), - [anon_sym_PIB] = ACTIONS(117), - [anon_sym_eib] = ACTIONS(117), - [anon_sym_eiB] = ACTIONS(117), - [anon_sym_eIB] = ACTIONS(117), - [anon_sym_eIb] = ACTIONS(117), - [anon_sym_Eib] = ACTIONS(117), - [anon_sym_EIb] = ACTIONS(117), - [anon_sym_EIB] = ACTIONS(117), - [aux_sym_unquoted_token6] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [490] = { - [sym_comment] = STATE(490), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_EQ_GT] = ACTIONS(173), - [anon_sym_DOT2] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [aux_sym_unquoted_token6] = ACTIONS(1289), - [anon_sym_POUND] = ACTIONS(3), - }, - [491] = { - [sym_comment] = STATE(491), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(109), + [aux_sym__immediate_decimal_token2] = ACTIONS(1337), [anon_sym_null] = ACTIONS(109), [anon_sym_true] = ACTIONS(109), [anon_sym_false] = ACTIONS(109), @@ -137565,237 +140239,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(109), [sym__str_back_ticks] = ACTIONS(109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), [aux_sym__unquoted_in_list_token1] = ACTIONS(107), [aux_sym__unquoted_in_list_token7] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [492] = { - [sym_comment] = STATE(492), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(107), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [aux_sym_unquoted_token6] = ACTIONS(107), + [502] = { + [sym_comment] = STATE(502), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_in] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT2] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_mod] = ACTIONS(189), + [anon_sym_SLASH_SLASH] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_bit_DASHshl] = ACTIONS(189), + [anon_sym_bit_DASHshr] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_LT2] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_not_DASHin] = ACTIONS(189), + [anon_sym_starts_DASHwith] = ACTIONS(189), + [anon_sym_ends_DASHwith] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_BANG_TILDE] = ACTIONS(189), + [anon_sym_bit_DASHand] = ACTIONS(189), + [anon_sym_bit_DASHxor] = ACTIONS(189), + [anon_sym_bit_DASHor] = ACTIONS(189), + [anon_sym_and] = ACTIONS(189), + [anon_sym_xor] = ACTIONS(189), + [anon_sym_or] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(187), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), [anon_sym_POUND] = ACTIONS(3), }, - [493] = { - [sym_comment] = STATE(493), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_EQ_GT] = ACTIONS(173), - [anon_sym_DOT2] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), + [503] = { + [sym_comment] = STATE(503), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1364), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_ns] = ACTIONS(1367), + [anon_sym_s] = ACTIONS(1367), + [anon_sym_us] = ACTIONS(1367), + [anon_sym_ms] = ACTIONS(1367), + [anon_sym_sec] = ACTIONS(1367), + [anon_sym_min] = ACTIONS(1367), + [anon_sym_hr] = ACTIONS(1367), + [anon_sym_day] = ACTIONS(1367), + [anon_sym_wk] = ACTIONS(1367), + [anon_sym_b] = ACTIONS(1369), + [anon_sym_B] = ACTIONS(1369), + [anon_sym_kb] = ACTIONS(1369), + [anon_sym_kB] = ACTIONS(1369), + [anon_sym_Kb] = ACTIONS(1369), + [anon_sym_KB] = ACTIONS(1369), + [anon_sym_mb] = ACTIONS(1369), + [anon_sym_mB] = ACTIONS(1369), + [anon_sym_Mb] = ACTIONS(1369), + [anon_sym_MB] = ACTIONS(1369), + [anon_sym_gb] = ACTIONS(1369), + [anon_sym_gB] = ACTIONS(1369), + [anon_sym_Gb] = ACTIONS(1369), + [anon_sym_GB] = ACTIONS(1369), + [anon_sym_tb] = ACTIONS(1369), + [anon_sym_tB] = ACTIONS(1369), + [anon_sym_Tb] = ACTIONS(1369), + [anon_sym_TB] = ACTIONS(1369), + [anon_sym_pb] = ACTIONS(1369), + [anon_sym_pB] = ACTIONS(1369), + [anon_sym_Pb] = ACTIONS(1369), + [anon_sym_PB] = ACTIONS(1369), + [anon_sym_eb] = ACTIONS(1369), + [anon_sym_eB] = ACTIONS(1369), + [anon_sym_Eb] = ACTIONS(1369), + [anon_sym_EB] = ACTIONS(1369), + [anon_sym_kib] = ACTIONS(1369), + [anon_sym_kiB] = ACTIONS(1369), + [anon_sym_kIB] = ACTIONS(1369), + [anon_sym_kIb] = ACTIONS(1369), + [anon_sym_Kib] = ACTIONS(1369), + [anon_sym_KIb] = ACTIONS(1369), + [anon_sym_KIB] = ACTIONS(1369), + [anon_sym_mib] = ACTIONS(1369), + [anon_sym_miB] = ACTIONS(1369), + [anon_sym_mIB] = ACTIONS(1369), + [anon_sym_mIb] = ACTIONS(1369), + [anon_sym_Mib] = ACTIONS(1369), + [anon_sym_MIb] = ACTIONS(1369), + [anon_sym_MIB] = ACTIONS(1369), + [anon_sym_gib] = ACTIONS(1369), + [anon_sym_giB] = ACTIONS(1369), + [anon_sym_gIB] = ACTIONS(1369), + [anon_sym_gIb] = ACTIONS(1369), + [anon_sym_Gib] = ACTIONS(1369), + [anon_sym_GIb] = ACTIONS(1369), + [anon_sym_GIB] = ACTIONS(1369), + [anon_sym_tib] = ACTIONS(1369), + [anon_sym_tiB] = ACTIONS(1369), + [anon_sym_tIB] = ACTIONS(1369), + [anon_sym_tIb] = ACTIONS(1369), + [anon_sym_Tib] = ACTIONS(1369), + [anon_sym_TIb] = ACTIONS(1369), + [anon_sym_TIB] = ACTIONS(1369), + [anon_sym_pib] = ACTIONS(1369), + [anon_sym_piB] = ACTIONS(1369), + [anon_sym_pIB] = ACTIONS(1369), + [anon_sym_pIb] = ACTIONS(1369), + [anon_sym_Pib] = ACTIONS(1369), + [anon_sym_PIb] = ACTIONS(1369), + [anon_sym_PIB] = ACTIONS(1369), + [anon_sym_eib] = ACTIONS(1369), + [anon_sym_eiB] = ACTIONS(1369), + [anon_sym_eIB] = ACTIONS(1369), + [anon_sym_eIb] = ACTIONS(1369), + [anon_sym_Eib] = ACTIONS(1369), + [anon_sym_EIb] = ACTIONS(1369), + [anon_sym_EIB] = ACTIONS(1369), + [anon_sym_0b] = ACTIONS(1364), + [anon_sym_0o] = ACTIONS(1364), + [anon_sym_0x] = ACTIONS(1364), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1364), [anon_sym_POUND] = ACTIONS(3), }, - [494] = { - [sym_comment] = STATE(494), + [504] = { + [sym_comment] = STATE(504), [anon_sym_LBRACK] = ACTIONS(109), [anon_sym_COMMA] = ACTIONS(109), [anon_sym_RBRACK] = ACTIONS(109), @@ -137806,895 +140476,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(107), [anon_sym_DOT2] = ACTIONS(109), [anon_sym_PLUS] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1339), - [anon_sym_null] = ACTIONS(109), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(109), - [aux_sym__val_number_token2] = ACTIONS(109), - [aux_sym__val_number_token3] = ACTIONS(109), - [aux_sym__val_number_token4] = ACTIONS(109), - [aux_sym__val_number_token5] = ACTIONS(109), - [aux_sym__val_number_token6] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(109), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [aux_sym__unquoted_in_list_token1] = ACTIONS(107), - [aux_sym__unquoted_in_list_token7] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [495] = { - [sym_comment] = STATE(495), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(150), - [aux_sym__immediate_decimal_token2] = ACTIONS(1343), - [anon_sym_null] = ACTIONS(150), - [anon_sym_true] = ACTIONS(150), - [anon_sym_false] = ACTIONS(150), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(150), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(150), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [aux_sym__unquoted_in_list_token1] = ACTIONS(148), - [aux_sym__unquoted_in_list_token7] = ACTIONS(148), - [anon_sym_POUND] = ACTIONS(3), - }, - [496] = { - [sym_comment] = STATE(496), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [aux_sym_unquoted_token6] = ACTIONS(1289), - [anon_sym_POUND] = ACTIONS(3), - }, - [497] = { - [sym_comment] = STATE(497), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DOT2] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(117), - [aux_sym__immediate_decimal_token2] = ACTIONS(1331), - [anon_sym_null] = ACTIONS(117), - [anon_sym_true] = ACTIONS(117), - [anon_sym_false] = ACTIONS(117), - [aux_sym__val_number_decimal_token1] = ACTIONS(115), - [aux_sym__val_number_token1] = ACTIONS(117), - [aux_sym__val_number_token2] = ACTIONS(117), - [aux_sym__val_number_token3] = ACTIONS(117), - [aux_sym__val_number_token4] = ACTIONS(117), - [aux_sym__val_number_token5] = ACTIONS(117), - [aux_sym__val_number_token6] = ACTIONS(117), - [anon_sym_ns] = ACTIONS(117), - [anon_sym_s] = ACTIONS(117), - [anon_sym_us] = ACTIONS(117), - [anon_sym_ms] = ACTIONS(117), - [anon_sym_sec] = ACTIONS(117), - [anon_sym_min] = ACTIONS(117), - [anon_sym_hr] = ACTIONS(117), - [anon_sym_day] = ACTIONS(117), - [anon_sym_wk] = ACTIONS(117), - [anon_sym_b] = ACTIONS(117), - [anon_sym_B] = ACTIONS(117), - [anon_sym_kb] = ACTIONS(117), - [anon_sym_kB] = ACTIONS(117), - [anon_sym_Kb] = ACTIONS(117), - [anon_sym_KB] = ACTIONS(117), - [anon_sym_mb] = ACTIONS(117), - [anon_sym_mB] = ACTIONS(117), - [anon_sym_Mb] = ACTIONS(117), - [anon_sym_MB] = ACTIONS(117), - [anon_sym_gb] = ACTIONS(117), - [anon_sym_gB] = ACTIONS(117), - [anon_sym_Gb] = ACTIONS(117), - [anon_sym_GB] = ACTIONS(117), - [anon_sym_tb] = ACTIONS(117), - [anon_sym_tB] = ACTIONS(117), - [anon_sym_Tb] = ACTIONS(117), - [anon_sym_TB] = ACTIONS(117), - [anon_sym_pb] = ACTIONS(117), - [anon_sym_pB] = ACTIONS(117), - [anon_sym_Pb] = ACTIONS(117), - [anon_sym_PB] = ACTIONS(117), - [anon_sym_eb] = ACTIONS(117), - [anon_sym_eB] = ACTIONS(117), - [anon_sym_Eb] = ACTIONS(117), - [anon_sym_EB] = ACTIONS(117), - [anon_sym_kib] = ACTIONS(117), - [anon_sym_kiB] = ACTIONS(117), - [anon_sym_kIB] = ACTIONS(117), - [anon_sym_kIb] = ACTIONS(117), - [anon_sym_Kib] = ACTIONS(117), - [anon_sym_KIb] = ACTIONS(117), - [anon_sym_KIB] = ACTIONS(117), - [anon_sym_mib] = ACTIONS(117), - [anon_sym_miB] = ACTIONS(117), - [anon_sym_mIB] = ACTIONS(117), - [anon_sym_mIb] = ACTIONS(117), - [anon_sym_Mib] = ACTIONS(117), - [anon_sym_MIb] = ACTIONS(117), - [anon_sym_MIB] = ACTIONS(117), - [anon_sym_gib] = ACTIONS(117), - [anon_sym_giB] = ACTIONS(117), - [anon_sym_gIB] = ACTIONS(117), - [anon_sym_gIb] = ACTIONS(117), - [anon_sym_Gib] = ACTIONS(117), - [anon_sym_GIb] = ACTIONS(117), - [anon_sym_GIB] = ACTIONS(117), - [anon_sym_tib] = ACTIONS(117), - [anon_sym_tiB] = ACTIONS(117), - [anon_sym_tIB] = ACTIONS(117), - [anon_sym_tIb] = ACTIONS(117), - [anon_sym_Tib] = ACTIONS(117), - [anon_sym_TIb] = ACTIONS(117), - [anon_sym_TIB] = ACTIONS(117), - [anon_sym_pib] = ACTIONS(117), - [anon_sym_piB] = ACTIONS(117), - [anon_sym_pIB] = ACTIONS(117), - [anon_sym_pIb] = ACTIONS(117), - [anon_sym_Pib] = ACTIONS(117), - [anon_sym_PIb] = ACTIONS(117), - [anon_sym_PIB] = ACTIONS(117), - [anon_sym_eib] = ACTIONS(117), - [anon_sym_eiB] = ACTIONS(117), - [anon_sym_eIB] = ACTIONS(117), - [anon_sym_eIb] = ACTIONS(117), - [anon_sym_Eib] = ACTIONS(117), - [anon_sym_EIb] = ACTIONS(117), - [anon_sym_EIB] = ACTIONS(117), - [anon_sym_0b] = ACTIONS(115), - [anon_sym_0o] = ACTIONS(115), - [anon_sym_0x] = ACTIONS(115), - [sym_val_date] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym__str_single_quotes] = ACTIONS(117), - [sym__str_back_ticks] = ACTIONS(117), - [aux_sym__unquoted_in_list_token1] = ACTIONS(115), - [aux_sym__unquoted_in_list_token7] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(3), - }, - [498] = { - [sym_comment] = STATE(498), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_DOT2] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_POUND] = ACTIONS(3), - }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_DOT] = ACTIONS(127), - [anon_sym_DOT2] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(129), - [aux_sym__immediate_decimal_token2] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(129), - [anon_sym_true] = ACTIONS(129), - [anon_sym_false] = ACTIONS(129), - [aux_sym__val_number_decimal_token1] = ACTIONS(127), - [aux_sym__val_number_token1] = ACTIONS(129), - [aux_sym__val_number_token2] = ACTIONS(129), - [aux_sym__val_number_token3] = ACTIONS(129), - [aux_sym__val_number_token4] = ACTIONS(129), - [aux_sym__val_number_token5] = ACTIONS(129), - [aux_sym__val_number_token6] = ACTIONS(129), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(129), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), - [anon_sym_0b] = ACTIONS(127), - [anon_sym_0o] = ACTIONS(127), - [anon_sym_0x] = ACTIONS(127), - [sym_val_date] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [sym__str_single_quotes] = ACTIONS(129), - [sym__str_back_ticks] = ACTIONS(129), - [aux_sym__unquoted_in_list_token1] = ACTIONS(127), - [aux_sym__unquoted_in_list_token7] = ACTIONS(127), - [anon_sym_POUND] = ACTIONS(3), - }, - [500] = { - [sym_comment] = STATE(500), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [anon_sym_EQ_GT] = ACTIONS(173), - [anon_sym_STAR] = ACTIONS(171), - [anon_sym_STAR_STAR] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(171), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_SLASH_SLASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_bit_DASHshl] = ACTIONS(173), - [anon_sym_bit_DASHshr] = ACTIONS(173), - [anon_sym_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT2] = ACTIONS(171), - [anon_sym_LT_EQ] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_not_DASHin] = ACTIONS(173), - [anon_sym_starts_DASHwith] = ACTIONS(173), - [anon_sym_ends_DASHwith] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_bit_DASHand] = ACTIONS(173), - [anon_sym_bit_DASHxor] = ACTIONS(173), - [anon_sym_bit_DASHor] = ACTIONS(173), - [anon_sym_and] = ACTIONS(173), - [anon_sym_xor] = ACTIONS(173), - [anon_sym_or] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(171), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [aux_sym_unquoted_token6] = ACTIONS(1289), - [anon_sym_POUND] = ACTIONS(3), - }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_null] = ACTIONS(173), - [anon_sym_true] = ACTIONS(173), - [anon_sym_false] = ACTIONS(173), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(173), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(173), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(173), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(173), - [aux_sym__unquoted_in_list_token1] = ACTIONS(171), - [aux_sym__unquoted_in_list_token7] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(3), - }, - [502] = { - [sym_comment] = STATE(502), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1339), [anon_sym_null] = ACTIONS(109), [anon_sym_true] = ACTIONS(109), [anon_sym_false] = ACTIONS(109), @@ -138793,118 +140574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__unquoted_in_list_token7] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [503] = { - [sym_comment] = STATE(503), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_null] = ACTIONS(173), - [anon_sym_true] = ACTIONS(173), - [anon_sym_false] = ACTIONS(173), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(173), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(173), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(173), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(173), - [aux_sym__unquoted_in_list_token1] = ACTIONS(171), - [anon_sym_POUND] = ACTIONS(3), - }, - [504] = { - [sym_comment] = STATE(504), + [505] = { + [sym_comment] = STATE(505), [anon_sym_LBRACK] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACK] = ACTIONS(117), @@ -139013,338 +140684,558 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__unquoted_in_list_token7] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [505] = { - [sym_comment] = STATE(505), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_COMMA] = ACTIONS(1355), - [anon_sym_RBRACK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_DOT] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_null] = ACTIONS(1355), - [anon_sym_true] = ACTIONS(1355), - [anon_sym_false] = ACTIONS(1355), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1355), - [aux_sym__val_number_token2] = ACTIONS(1355), - [aux_sym__val_number_token3] = ACTIONS(1355), - [aux_sym__val_number_token4] = ACTIONS(1355), - [aux_sym__val_number_token5] = ACTIONS(1355), - [aux_sym__val_number_token6] = ACTIONS(1355), - [anon_sym_ns] = ACTIONS(1361), - [anon_sym_s] = ACTIONS(1361), - [anon_sym_us] = ACTIONS(1361), - [anon_sym_ms] = ACTIONS(1361), - [anon_sym_sec] = ACTIONS(1361), - [anon_sym_min] = ACTIONS(1361), - [anon_sym_hr] = ACTIONS(1361), - [anon_sym_day] = ACTIONS(1361), - [anon_sym_wk] = ACTIONS(1361), - [anon_sym_b] = ACTIONS(1363), - [anon_sym_B] = ACTIONS(1363), - [anon_sym_kb] = ACTIONS(1363), - [anon_sym_kB] = ACTIONS(1363), - [anon_sym_Kb] = ACTIONS(1363), - [anon_sym_KB] = ACTIONS(1363), - [anon_sym_mb] = ACTIONS(1363), - [anon_sym_mB] = ACTIONS(1363), - [anon_sym_Mb] = ACTIONS(1363), - [anon_sym_MB] = ACTIONS(1363), - [anon_sym_gb] = ACTIONS(1363), - [anon_sym_gB] = ACTIONS(1363), - [anon_sym_Gb] = ACTIONS(1363), - [anon_sym_GB] = ACTIONS(1363), - [anon_sym_tb] = ACTIONS(1363), - [anon_sym_tB] = ACTIONS(1363), - [anon_sym_Tb] = ACTIONS(1363), - [anon_sym_TB] = ACTIONS(1363), - [anon_sym_pb] = ACTIONS(1363), - [anon_sym_pB] = ACTIONS(1363), - [anon_sym_Pb] = ACTIONS(1363), - [anon_sym_PB] = ACTIONS(1363), - [anon_sym_eb] = ACTIONS(1363), - [anon_sym_eB] = ACTIONS(1363), - [anon_sym_Eb] = ACTIONS(1363), - [anon_sym_EB] = ACTIONS(1363), - [anon_sym_kib] = ACTIONS(1363), - [anon_sym_kiB] = ACTIONS(1363), - [anon_sym_kIB] = ACTIONS(1363), - [anon_sym_kIb] = ACTIONS(1363), - [anon_sym_Kib] = ACTIONS(1363), - [anon_sym_KIb] = ACTIONS(1363), - [anon_sym_KIB] = ACTIONS(1363), - [anon_sym_mib] = ACTIONS(1363), - [anon_sym_miB] = ACTIONS(1363), - [anon_sym_mIB] = ACTIONS(1363), - [anon_sym_mIb] = ACTIONS(1363), - [anon_sym_Mib] = ACTIONS(1363), - [anon_sym_MIb] = ACTIONS(1363), - [anon_sym_MIB] = ACTIONS(1363), - [anon_sym_gib] = ACTIONS(1363), - [anon_sym_giB] = ACTIONS(1363), - [anon_sym_gIB] = ACTIONS(1363), - [anon_sym_gIb] = ACTIONS(1363), - [anon_sym_Gib] = ACTIONS(1363), - [anon_sym_GIb] = ACTIONS(1363), - [anon_sym_GIB] = ACTIONS(1363), - [anon_sym_tib] = ACTIONS(1363), - [anon_sym_tiB] = ACTIONS(1363), - [anon_sym_tIB] = ACTIONS(1363), - [anon_sym_tIb] = ACTIONS(1363), - [anon_sym_Tib] = ACTIONS(1363), - [anon_sym_TIb] = ACTIONS(1363), - [anon_sym_TIB] = ACTIONS(1363), - [anon_sym_pib] = ACTIONS(1363), - [anon_sym_piB] = ACTIONS(1363), - [anon_sym_pIB] = ACTIONS(1363), - [anon_sym_pIb] = ACTIONS(1363), - [anon_sym_Pib] = ACTIONS(1363), - [anon_sym_PIb] = ACTIONS(1363), - [anon_sym_PIB] = ACTIONS(1363), - [anon_sym_eib] = ACTIONS(1363), - [anon_sym_eiB] = ACTIONS(1363), - [anon_sym_eIB] = ACTIONS(1363), - [anon_sym_eIb] = ACTIONS(1363), - [anon_sym_Eib] = ACTIONS(1363), - [anon_sym_EIb] = ACTIONS(1363), - [anon_sym_EIB] = ACTIONS(1363), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym__str_single_quotes] = ACTIONS(1355), - [sym__str_back_ticks] = ACTIONS(1355), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(3), - }, [506] = { [sym_comment] = STATE(506), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(107), - [anon_sym_DOT2] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_null] = ACTIONS(109), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [aux_sym__val_number_decimal_token1] = ACTIONS(107), - [aux_sym__val_number_token1] = ACTIONS(109), - [aux_sym__val_number_token2] = ACTIONS(109), - [aux_sym__val_number_token3] = ACTIONS(109), - [aux_sym__val_number_token4] = ACTIONS(109), - [aux_sym__val_number_token5] = ACTIONS(109), - [aux_sym__val_number_token6] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(109), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [aux_sym__unquoted_in_list_token1] = ACTIONS(107), - [aux_sym__unquoted_in_list_token7] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(187), + [anon_sym_DOT2] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_null] = ACTIONS(189), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(189), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym__unquoted_in_list_token1] = ACTIONS(187), + [aux_sym__unquoted_in_list_token7] = ACTIONS(1341), [anon_sym_POUND] = ACTIONS(3), }, [507] = { [sym_comment] = STATE(507), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_DOLLAR] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_null] = ACTIONS(150), - [anon_sym_true] = ACTIONS(150), - [anon_sym_false] = ACTIONS(150), - [aux_sym__val_number_decimal_token1] = ACTIONS(148), - [aux_sym__val_number_token1] = ACTIONS(150), - [aux_sym__val_number_token2] = ACTIONS(150), - [aux_sym__val_number_token3] = ACTIONS(150), - [aux_sym__val_number_token4] = ACTIONS(150), - [aux_sym__val_number_token5] = ACTIONS(150), - [aux_sym__val_number_token6] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(150), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_0b] = ACTIONS(148), - [anon_sym_0o] = ACTIONS(148), - [anon_sym_0x] = ACTIONS(148), - [sym_val_date] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(150), - [sym__str_single_quotes] = ACTIONS(150), - [sym__str_back_ticks] = ACTIONS(150), - [aux_sym__unquoted_in_list_token1] = ACTIONS(148), - [aux_sym__unquoted_in_list_token7] = ACTIONS(148), + [anon_sym_LBRACK] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_RBRACK] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(215), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(215), + [aux_sym__val_number_token2] = ACTIONS(215), + [aux_sym__val_number_token3] = ACTIONS(215), + [aux_sym__val_number_token4] = ACTIONS(215), + [aux_sym__val_number_token5] = ACTIONS(215), + [aux_sym__val_number_token6] = ACTIONS(215), + [anon_sym_ns] = ACTIONS(1367), + [anon_sym_s] = ACTIONS(1367), + [anon_sym_us] = ACTIONS(1367), + [anon_sym_ms] = ACTIONS(1367), + [anon_sym_sec] = ACTIONS(1367), + [anon_sym_min] = ACTIONS(1367), + [anon_sym_hr] = ACTIONS(1367), + [anon_sym_day] = ACTIONS(1367), + [anon_sym_wk] = ACTIONS(1367), + [anon_sym_b] = ACTIONS(1369), + [anon_sym_B] = ACTIONS(1369), + [anon_sym_kb] = ACTIONS(1369), + [anon_sym_kB] = ACTIONS(1369), + [anon_sym_Kb] = ACTIONS(1369), + [anon_sym_KB] = ACTIONS(1369), + [anon_sym_mb] = ACTIONS(1369), + [anon_sym_mB] = ACTIONS(1369), + [anon_sym_Mb] = ACTIONS(1369), + [anon_sym_MB] = ACTIONS(1369), + [anon_sym_gb] = ACTIONS(1369), + [anon_sym_gB] = ACTIONS(1369), + [anon_sym_Gb] = ACTIONS(1369), + [anon_sym_GB] = ACTIONS(1369), + [anon_sym_tb] = ACTIONS(1369), + [anon_sym_tB] = ACTIONS(1369), + [anon_sym_Tb] = ACTIONS(1369), + [anon_sym_TB] = ACTIONS(1369), + [anon_sym_pb] = ACTIONS(1369), + [anon_sym_pB] = ACTIONS(1369), + [anon_sym_Pb] = ACTIONS(1369), + [anon_sym_PB] = ACTIONS(1369), + [anon_sym_eb] = ACTIONS(1369), + [anon_sym_eB] = ACTIONS(1369), + [anon_sym_Eb] = ACTIONS(1369), + [anon_sym_EB] = ACTIONS(1369), + [anon_sym_kib] = ACTIONS(1369), + [anon_sym_kiB] = ACTIONS(1369), + [anon_sym_kIB] = ACTIONS(1369), + [anon_sym_kIb] = ACTIONS(1369), + [anon_sym_Kib] = ACTIONS(1369), + [anon_sym_KIb] = ACTIONS(1369), + [anon_sym_KIB] = ACTIONS(1369), + [anon_sym_mib] = ACTIONS(1369), + [anon_sym_miB] = ACTIONS(1369), + [anon_sym_mIB] = ACTIONS(1369), + [anon_sym_mIb] = ACTIONS(1369), + [anon_sym_Mib] = ACTIONS(1369), + [anon_sym_MIb] = ACTIONS(1369), + [anon_sym_MIB] = ACTIONS(1369), + [anon_sym_gib] = ACTIONS(1369), + [anon_sym_giB] = ACTIONS(1369), + [anon_sym_gIB] = ACTIONS(1369), + [anon_sym_gIb] = ACTIONS(1369), + [anon_sym_Gib] = ACTIONS(1369), + [anon_sym_GIb] = ACTIONS(1369), + [anon_sym_GIB] = ACTIONS(1369), + [anon_sym_tib] = ACTIONS(1369), + [anon_sym_tiB] = ACTIONS(1369), + [anon_sym_tIB] = ACTIONS(1369), + [anon_sym_tIb] = ACTIONS(1369), + [anon_sym_Tib] = ACTIONS(1369), + [anon_sym_TIb] = ACTIONS(1369), + [anon_sym_TIB] = ACTIONS(1369), + [anon_sym_pib] = ACTIONS(1369), + [anon_sym_piB] = ACTIONS(1369), + [anon_sym_pIB] = ACTIONS(1369), + [anon_sym_pIb] = ACTIONS(1369), + [anon_sym_Pib] = ACTIONS(1369), + [anon_sym_PIb] = ACTIONS(1369), + [anon_sym_PIB] = ACTIONS(1369), + [anon_sym_eib] = ACTIONS(1369), + [anon_sym_eiB] = ACTIONS(1369), + [anon_sym_eIB] = ACTIONS(1369), + [anon_sym_eIb] = ACTIONS(1369), + [anon_sym_Eib] = ACTIONS(1369), + [anon_sym_EIb] = ACTIONS(1369), + [anon_sym_EIB] = ACTIONS(1369), + [anon_sym_0b] = ACTIONS(213), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(215), + [sym__str_single_quotes] = ACTIONS(215), + [sym__str_back_ticks] = ACTIONS(215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), + [aux_sym__unquoted_in_list_token1] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), }, [508] = { [sym_comment] = STATE(508), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_null] = ACTIONS(189), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(189), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(189), + [aux_sym__unquoted_in_list_token1] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(3), + }, + [509] = { + [sym_comment] = STATE(509), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_RBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [aux_sym__val_number_decimal_token1] = ACTIONS(157), + [aux_sym__val_number_token1] = ACTIONS(159), + [aux_sym__val_number_token2] = ACTIONS(159), + [aux_sym__val_number_token3] = ACTIONS(159), + [aux_sym__val_number_token4] = ACTIONS(159), + [aux_sym__val_number_token5] = ACTIONS(159), + [aux_sym__val_number_token6] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(159), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [anon_sym_0b] = ACTIONS(157), + [anon_sym_0o] = ACTIONS(157), + [anon_sym_0x] = ACTIONS(157), + [sym_val_date] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym__str_single_quotes] = ACTIONS(159), + [sym__str_back_ticks] = ACTIONS(159), + [aux_sym__unquoted_in_list_token1] = ACTIONS(157), + [aux_sym__unquoted_in_list_token7] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(3), + }, + [510] = { + [sym_comment] = STATE(510), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_null] = ACTIONS(149), + [anon_sym_true] = ACTIONS(149), + [anon_sym_false] = ACTIONS(149), + [aux_sym__val_number_decimal_token1] = ACTIONS(147), + [aux_sym__val_number_token1] = ACTIONS(149), + [aux_sym__val_number_token2] = ACTIONS(149), + [aux_sym__val_number_token3] = ACTIONS(149), + [aux_sym__val_number_token4] = ACTIONS(149), + [aux_sym__val_number_token5] = ACTIONS(149), + [aux_sym__val_number_token6] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(149), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [anon_sym_0b] = ACTIONS(147), + [anon_sym_0o] = ACTIONS(147), + [anon_sym_0x] = ACTIONS(147), + [sym_val_date] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__str_single_quotes] = ACTIONS(149), + [sym__str_back_ticks] = ACTIONS(149), + [aux_sym__unquoted_in_list_token1] = ACTIONS(147), + [aux_sym__unquoted_in_list_token7] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [511] = { + [sym_comment] = STATE(511), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_COMMA] = ACTIONS(223), [anon_sym_RBRACK] = ACTIONS(223), @@ -139453,1132 +141344,615 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__unquoted_in_list_token1] = ACTIONS(221), [anon_sym_POUND] = ACTIONS(3), }, - [509] = { - [sym_comment] = STATE(509), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [anon_sym_RBRACK] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_null] = ACTIONS(167), - [anon_sym_true] = ACTIONS(167), - [anon_sym_false] = ACTIONS(167), - [aux_sym__val_number_decimal_token1] = ACTIONS(165), - [aux_sym__val_number_token1] = ACTIONS(167), - [aux_sym__val_number_token2] = ACTIONS(167), - [aux_sym__val_number_token3] = ACTIONS(167), - [aux_sym__val_number_token4] = ACTIONS(167), - [aux_sym__val_number_token5] = ACTIONS(167), - [aux_sym__val_number_token6] = ACTIONS(167), - [anon_sym_ns] = ACTIONS(167), - [anon_sym_s] = ACTIONS(167), - [anon_sym_us] = ACTIONS(167), - [anon_sym_ms] = ACTIONS(167), - [anon_sym_sec] = ACTIONS(167), - [anon_sym_min] = ACTIONS(167), - [anon_sym_hr] = ACTIONS(167), - [anon_sym_day] = ACTIONS(167), - [anon_sym_wk] = ACTIONS(167), - [anon_sym_b] = ACTIONS(167), - [anon_sym_B] = ACTIONS(167), - [anon_sym_kb] = ACTIONS(167), - [anon_sym_kB] = ACTIONS(167), - [anon_sym_Kb] = ACTIONS(167), - [anon_sym_KB] = ACTIONS(167), - [anon_sym_mb] = ACTIONS(167), - [anon_sym_mB] = ACTIONS(167), - [anon_sym_Mb] = ACTIONS(167), - [anon_sym_MB] = ACTIONS(167), - [anon_sym_gb] = ACTIONS(167), - [anon_sym_gB] = ACTIONS(167), - [anon_sym_Gb] = ACTIONS(167), - [anon_sym_GB] = ACTIONS(167), - [anon_sym_tb] = ACTIONS(167), - [anon_sym_tB] = ACTIONS(167), - [anon_sym_Tb] = ACTIONS(167), - [anon_sym_TB] = ACTIONS(167), - [anon_sym_pb] = ACTIONS(167), - [anon_sym_pB] = ACTIONS(167), - [anon_sym_Pb] = ACTIONS(167), - [anon_sym_PB] = ACTIONS(167), - [anon_sym_eb] = ACTIONS(167), - [anon_sym_eB] = ACTIONS(167), - [anon_sym_Eb] = ACTIONS(167), - [anon_sym_EB] = ACTIONS(167), - [anon_sym_kib] = ACTIONS(167), - [anon_sym_kiB] = ACTIONS(167), - [anon_sym_kIB] = ACTIONS(167), - [anon_sym_kIb] = ACTIONS(167), - [anon_sym_Kib] = ACTIONS(167), - [anon_sym_KIb] = ACTIONS(167), - [anon_sym_KIB] = ACTIONS(167), - [anon_sym_mib] = ACTIONS(167), - [anon_sym_miB] = ACTIONS(167), - [anon_sym_mIB] = ACTIONS(167), - [anon_sym_mIb] = ACTIONS(167), - [anon_sym_Mib] = ACTIONS(167), - [anon_sym_MIb] = ACTIONS(167), - [anon_sym_MIB] = ACTIONS(167), - [anon_sym_gib] = ACTIONS(167), - [anon_sym_giB] = ACTIONS(167), - [anon_sym_gIB] = ACTIONS(167), - [anon_sym_gIb] = ACTIONS(167), - [anon_sym_Gib] = ACTIONS(167), - [anon_sym_GIb] = ACTIONS(167), - [anon_sym_GIB] = ACTIONS(167), - [anon_sym_tib] = ACTIONS(167), - [anon_sym_tiB] = ACTIONS(167), - [anon_sym_tIB] = ACTIONS(167), - [anon_sym_tIb] = ACTIONS(167), - [anon_sym_Tib] = ACTIONS(167), - [anon_sym_TIb] = ACTIONS(167), - [anon_sym_TIB] = ACTIONS(167), - [anon_sym_pib] = ACTIONS(167), - [anon_sym_piB] = ACTIONS(167), - [anon_sym_pIB] = ACTIONS(167), - [anon_sym_pIb] = ACTIONS(167), - [anon_sym_Pib] = ACTIONS(167), - [anon_sym_PIb] = ACTIONS(167), - [anon_sym_PIB] = ACTIONS(167), - [anon_sym_eib] = ACTIONS(167), - [anon_sym_eiB] = ACTIONS(167), - [anon_sym_eIB] = ACTIONS(167), - [anon_sym_eIb] = ACTIONS(167), - [anon_sym_Eib] = ACTIONS(167), - [anon_sym_EIb] = ACTIONS(167), - [anon_sym_EIB] = ACTIONS(167), - [anon_sym_0b] = ACTIONS(165), - [anon_sym_0o] = ACTIONS(165), - [anon_sym_0x] = ACTIONS(165), - [sym_val_date] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym__str_single_quotes] = ACTIONS(167), - [sym__str_back_ticks] = ACTIONS(167), - [aux_sym__unquoted_in_list_token1] = ACTIONS(165), - [aux_sym__unquoted_in_list_token7] = ACTIONS(165), - [anon_sym_POUND] = ACTIONS(3), - }, - [510] = { - [sym_comment] = STATE(510), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(171), - [anon_sym_DOT2] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_null] = ACTIONS(173), - [anon_sym_true] = ACTIONS(173), - [anon_sym_false] = ACTIONS(173), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(173), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(173), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [aux_sym__unquoted_in_list_token1] = ACTIONS(171), - [aux_sym__unquoted_in_list_token7] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(3), - }, - [511] = { - [sym_comment] = STATE(511), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_RBRACK] = ACTIONS(215), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_null] = ACTIONS(215), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(215), - [aux_sym__val_number_token2] = ACTIONS(215), - [aux_sym__val_number_token3] = ACTIONS(215), - [aux_sym__val_number_token4] = ACTIONS(215), - [aux_sym__val_number_token5] = ACTIONS(215), - [aux_sym__val_number_token6] = ACTIONS(215), - [anon_sym_ns] = ACTIONS(1361), - [anon_sym_s] = ACTIONS(1361), - [anon_sym_us] = ACTIONS(1361), - [anon_sym_ms] = ACTIONS(1361), - [anon_sym_sec] = ACTIONS(1361), - [anon_sym_min] = ACTIONS(1361), - [anon_sym_hr] = ACTIONS(1361), - [anon_sym_day] = ACTIONS(1361), - [anon_sym_wk] = ACTIONS(1361), - [anon_sym_b] = ACTIONS(1363), - [anon_sym_B] = ACTIONS(1363), - [anon_sym_kb] = ACTIONS(1363), - [anon_sym_kB] = ACTIONS(1363), - [anon_sym_Kb] = ACTIONS(1363), - [anon_sym_KB] = ACTIONS(1363), - [anon_sym_mb] = ACTIONS(1363), - [anon_sym_mB] = ACTIONS(1363), - [anon_sym_Mb] = ACTIONS(1363), - [anon_sym_MB] = ACTIONS(1363), - [anon_sym_gb] = ACTIONS(1363), - [anon_sym_gB] = ACTIONS(1363), - [anon_sym_Gb] = ACTIONS(1363), - [anon_sym_GB] = ACTIONS(1363), - [anon_sym_tb] = ACTIONS(1363), - [anon_sym_tB] = ACTIONS(1363), - [anon_sym_Tb] = ACTIONS(1363), - [anon_sym_TB] = ACTIONS(1363), - [anon_sym_pb] = ACTIONS(1363), - [anon_sym_pB] = ACTIONS(1363), - [anon_sym_Pb] = ACTIONS(1363), - [anon_sym_PB] = ACTIONS(1363), - [anon_sym_eb] = ACTIONS(1363), - [anon_sym_eB] = ACTIONS(1363), - [anon_sym_Eb] = ACTIONS(1363), - [anon_sym_EB] = ACTIONS(1363), - [anon_sym_kib] = ACTIONS(1363), - [anon_sym_kiB] = ACTIONS(1363), - [anon_sym_kIB] = ACTIONS(1363), - [anon_sym_kIb] = ACTIONS(1363), - [anon_sym_Kib] = ACTIONS(1363), - [anon_sym_KIb] = ACTIONS(1363), - [anon_sym_KIB] = ACTIONS(1363), - [anon_sym_mib] = ACTIONS(1363), - [anon_sym_miB] = ACTIONS(1363), - [anon_sym_mIB] = ACTIONS(1363), - [anon_sym_mIb] = ACTIONS(1363), - [anon_sym_Mib] = ACTIONS(1363), - [anon_sym_MIb] = ACTIONS(1363), - [anon_sym_MIB] = ACTIONS(1363), - [anon_sym_gib] = ACTIONS(1363), - [anon_sym_giB] = ACTIONS(1363), - [anon_sym_gIB] = ACTIONS(1363), - [anon_sym_gIb] = ACTIONS(1363), - [anon_sym_Gib] = ACTIONS(1363), - [anon_sym_GIb] = ACTIONS(1363), - [anon_sym_GIB] = ACTIONS(1363), - [anon_sym_tib] = ACTIONS(1363), - [anon_sym_tiB] = ACTIONS(1363), - [anon_sym_tIB] = ACTIONS(1363), - [anon_sym_tIb] = ACTIONS(1363), - [anon_sym_Tib] = ACTIONS(1363), - [anon_sym_TIb] = ACTIONS(1363), - [anon_sym_TIB] = ACTIONS(1363), - [anon_sym_pib] = ACTIONS(1363), - [anon_sym_piB] = ACTIONS(1363), - [anon_sym_pIB] = ACTIONS(1363), - [anon_sym_pIb] = ACTIONS(1363), - [anon_sym_Pib] = ACTIONS(1363), - [anon_sym_PIb] = ACTIONS(1363), - [anon_sym_PIB] = ACTIONS(1363), - [anon_sym_eib] = ACTIONS(1363), - [anon_sym_eiB] = ACTIONS(1363), - [anon_sym_eIB] = ACTIONS(1363), - [anon_sym_eIb] = ACTIONS(1363), - [anon_sym_Eib] = ACTIONS(1363), - [anon_sym_EIb] = ACTIONS(1363), - [anon_sym_EIB] = ACTIONS(1363), - [anon_sym_0b] = ACTIONS(213), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym__str_single_quotes] = ACTIONS(215), - [sym__str_back_ticks] = ACTIONS(215), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(215), - [aux_sym__unquoted_in_list_token1] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(3), - }, [512] = { [sym_comment] = STATE(512), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_null] = ACTIONS(173), - [anon_sym_true] = ACTIONS(173), - [anon_sym_false] = ACTIONS(173), - [aux_sym__val_number_decimal_token1] = ACTIONS(171), - [aux_sym__val_number_token1] = ACTIONS(173), - [aux_sym__val_number_token2] = ACTIONS(173), - [aux_sym__val_number_token3] = ACTIONS(173), - [aux_sym__val_number_token4] = ACTIONS(173), - [aux_sym__val_number_token5] = ACTIONS(173), - [aux_sym__val_number_token6] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(173), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), - [anon_sym_0b] = ACTIONS(171), - [anon_sym_0o] = ACTIONS(171), - [anon_sym_0x] = ACTIONS(171), - [sym_val_date] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(173), - [sym__str_single_quotes] = ACTIONS(173), - [sym__str_back_ticks] = ACTIONS(173), - [aux_sym__unquoted_in_list_token1] = ACTIONS(171), - [aux_sym__unquoted_in_list_token7] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_null] = ACTIONS(189), + [anon_sym_true] = ACTIONS(189), + [anon_sym_false] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_token4] = ACTIONS(189), + [aux_sym__val_number_token5] = ACTIONS(189), + [aux_sym__val_number_token6] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(187), + [anon_sym_0o] = ACTIONS(187), + [anon_sym_0x] = ACTIONS(187), + [sym_val_date] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__str_single_quotes] = ACTIONS(189), + [sym__str_back_ticks] = ACTIONS(189), + [aux_sym__unquoted_in_list_token1] = ACTIONS(187), + [aux_sym__unquoted_in_list_token7] = ACTIONS(1341), [anon_sym_POUND] = ACTIONS(3), }, [513] = { [sym_comment] = STATE(513), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_DOT] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [aux_sym__val_number_decimal_token1] = ACTIONS(1367), - [aux_sym__val_number_token1] = ACTIONS(1365), - [aux_sym__val_number_token2] = ACTIONS(1365), - [aux_sym__val_number_token3] = ACTIONS(1365), - [aux_sym__val_number_token4] = ACTIONS(1365), - [aux_sym__val_number_token5] = ACTIONS(1365), - [aux_sym__val_number_token6] = ACTIONS(1365), - [anon_sym_ns] = ACTIONS(1361), - [anon_sym_s] = ACTIONS(1361), - [anon_sym_us] = ACTIONS(1361), - [anon_sym_ms] = ACTIONS(1361), - [anon_sym_sec] = ACTIONS(1361), - [anon_sym_min] = ACTIONS(1361), - [anon_sym_hr] = ACTIONS(1361), - [anon_sym_day] = ACTIONS(1361), - [anon_sym_wk] = ACTIONS(1361), - [anon_sym_b] = ACTIONS(1363), - [anon_sym_B] = ACTIONS(1363), - [anon_sym_kb] = ACTIONS(1363), - [anon_sym_kB] = ACTIONS(1363), - [anon_sym_Kb] = ACTIONS(1363), - [anon_sym_KB] = ACTIONS(1363), - [anon_sym_mb] = ACTIONS(1363), - [anon_sym_mB] = ACTIONS(1363), - [anon_sym_Mb] = ACTIONS(1363), - [anon_sym_MB] = ACTIONS(1363), - [anon_sym_gb] = ACTIONS(1363), - [anon_sym_gB] = ACTIONS(1363), - [anon_sym_Gb] = ACTIONS(1363), - [anon_sym_GB] = ACTIONS(1363), - [anon_sym_tb] = ACTIONS(1363), - [anon_sym_tB] = ACTIONS(1363), - [anon_sym_Tb] = ACTIONS(1363), - [anon_sym_TB] = ACTIONS(1363), - [anon_sym_pb] = ACTIONS(1363), - [anon_sym_pB] = ACTIONS(1363), - [anon_sym_Pb] = ACTIONS(1363), - [anon_sym_PB] = ACTIONS(1363), - [anon_sym_eb] = ACTIONS(1363), - [anon_sym_eB] = ACTIONS(1363), - [anon_sym_Eb] = ACTIONS(1363), - [anon_sym_EB] = ACTIONS(1363), - [anon_sym_kib] = ACTIONS(1363), - [anon_sym_kiB] = ACTIONS(1363), - [anon_sym_kIB] = ACTIONS(1363), - [anon_sym_kIb] = ACTIONS(1363), - [anon_sym_Kib] = ACTIONS(1363), - [anon_sym_KIb] = ACTIONS(1363), - [anon_sym_KIB] = ACTIONS(1363), - [anon_sym_mib] = ACTIONS(1363), - [anon_sym_miB] = ACTIONS(1363), - [anon_sym_mIB] = ACTIONS(1363), - [anon_sym_mIb] = ACTIONS(1363), - [anon_sym_Mib] = ACTIONS(1363), - [anon_sym_MIb] = ACTIONS(1363), - [anon_sym_MIB] = ACTIONS(1363), - [anon_sym_gib] = ACTIONS(1363), - [anon_sym_giB] = ACTIONS(1363), - [anon_sym_gIB] = ACTIONS(1363), - [anon_sym_gIb] = ACTIONS(1363), - [anon_sym_Gib] = ACTIONS(1363), - [anon_sym_GIb] = ACTIONS(1363), - [anon_sym_GIB] = ACTIONS(1363), - [anon_sym_tib] = ACTIONS(1363), - [anon_sym_tiB] = ACTIONS(1363), - [anon_sym_tIB] = ACTIONS(1363), - [anon_sym_tIb] = ACTIONS(1363), - [anon_sym_Tib] = ACTIONS(1363), - [anon_sym_TIb] = ACTIONS(1363), - [anon_sym_TIB] = ACTIONS(1363), - [anon_sym_pib] = ACTIONS(1363), - [anon_sym_piB] = ACTIONS(1363), - [anon_sym_pIB] = ACTIONS(1363), - [anon_sym_pIb] = ACTIONS(1363), - [anon_sym_Pib] = ACTIONS(1363), - [anon_sym_PIb] = ACTIONS(1363), - [anon_sym_PIB] = ACTIONS(1363), - [anon_sym_eib] = ACTIONS(1363), - [anon_sym_eiB] = ACTIONS(1363), - [anon_sym_eIB] = ACTIONS(1363), - [anon_sym_eIb] = ACTIONS(1363), - [anon_sym_Eib] = ACTIONS(1363), - [anon_sym_EIb] = ACTIONS(1363), - [anon_sym_EIB] = ACTIONS(1363), - [anon_sym_0b] = ACTIONS(1367), - [anon_sym_0o] = ACTIONS(1367), - [anon_sym_0x] = ACTIONS(1367), - [sym_val_date] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym__str_single_quotes] = ACTIONS(1365), - [sym__str_back_ticks] = ACTIONS(1365), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_RBRACK] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [aux_sym__val_number_decimal_token1] = ACTIONS(1373), + [aux_sym__val_number_token1] = ACTIONS(1371), + [aux_sym__val_number_token2] = ACTIONS(1371), + [aux_sym__val_number_token3] = ACTIONS(1371), + [aux_sym__val_number_token4] = ACTIONS(1371), + [aux_sym__val_number_token5] = ACTIONS(1371), + [aux_sym__val_number_token6] = ACTIONS(1371), + [anon_sym_ns] = ACTIONS(1367), + [anon_sym_s] = ACTIONS(1367), + [anon_sym_us] = ACTIONS(1367), + [anon_sym_ms] = ACTIONS(1367), + [anon_sym_sec] = ACTIONS(1367), + [anon_sym_min] = ACTIONS(1367), + [anon_sym_hr] = ACTIONS(1367), + [anon_sym_day] = ACTIONS(1367), + [anon_sym_wk] = ACTIONS(1367), + [anon_sym_b] = ACTIONS(1369), + [anon_sym_B] = ACTIONS(1369), + [anon_sym_kb] = ACTIONS(1369), + [anon_sym_kB] = ACTIONS(1369), + [anon_sym_Kb] = ACTIONS(1369), + [anon_sym_KB] = ACTIONS(1369), + [anon_sym_mb] = ACTIONS(1369), + [anon_sym_mB] = ACTIONS(1369), + [anon_sym_Mb] = ACTIONS(1369), + [anon_sym_MB] = ACTIONS(1369), + [anon_sym_gb] = ACTIONS(1369), + [anon_sym_gB] = ACTIONS(1369), + [anon_sym_Gb] = ACTIONS(1369), + [anon_sym_GB] = ACTIONS(1369), + [anon_sym_tb] = ACTIONS(1369), + [anon_sym_tB] = ACTIONS(1369), + [anon_sym_Tb] = ACTIONS(1369), + [anon_sym_TB] = ACTIONS(1369), + [anon_sym_pb] = ACTIONS(1369), + [anon_sym_pB] = ACTIONS(1369), + [anon_sym_Pb] = ACTIONS(1369), + [anon_sym_PB] = ACTIONS(1369), + [anon_sym_eb] = ACTIONS(1369), + [anon_sym_eB] = ACTIONS(1369), + [anon_sym_Eb] = ACTIONS(1369), + [anon_sym_EB] = ACTIONS(1369), + [anon_sym_kib] = ACTIONS(1369), + [anon_sym_kiB] = ACTIONS(1369), + [anon_sym_kIB] = ACTIONS(1369), + [anon_sym_kIb] = ACTIONS(1369), + [anon_sym_Kib] = ACTIONS(1369), + [anon_sym_KIb] = ACTIONS(1369), + [anon_sym_KIB] = ACTIONS(1369), + [anon_sym_mib] = ACTIONS(1369), + [anon_sym_miB] = ACTIONS(1369), + [anon_sym_mIB] = ACTIONS(1369), + [anon_sym_mIb] = ACTIONS(1369), + [anon_sym_Mib] = ACTIONS(1369), + [anon_sym_MIb] = ACTIONS(1369), + [anon_sym_MIB] = ACTIONS(1369), + [anon_sym_gib] = ACTIONS(1369), + [anon_sym_giB] = ACTIONS(1369), + [anon_sym_gIB] = ACTIONS(1369), + [anon_sym_gIb] = ACTIONS(1369), + [anon_sym_Gib] = ACTIONS(1369), + [anon_sym_GIb] = ACTIONS(1369), + [anon_sym_GIB] = ACTIONS(1369), + [anon_sym_tib] = ACTIONS(1369), + [anon_sym_tiB] = ACTIONS(1369), + [anon_sym_tIB] = ACTIONS(1369), + [anon_sym_tIb] = ACTIONS(1369), + [anon_sym_Tib] = ACTIONS(1369), + [anon_sym_TIb] = ACTIONS(1369), + [anon_sym_TIB] = ACTIONS(1369), + [anon_sym_pib] = ACTIONS(1369), + [anon_sym_piB] = ACTIONS(1369), + [anon_sym_pIB] = ACTIONS(1369), + [anon_sym_pIb] = ACTIONS(1369), + [anon_sym_Pib] = ACTIONS(1369), + [anon_sym_PIb] = ACTIONS(1369), + [anon_sym_PIB] = ACTIONS(1369), + [anon_sym_eib] = ACTIONS(1369), + [anon_sym_eiB] = ACTIONS(1369), + [anon_sym_eIB] = ACTIONS(1369), + [anon_sym_eIb] = ACTIONS(1369), + [anon_sym_Eib] = ACTIONS(1369), + [anon_sym_EIb] = ACTIONS(1369), + [anon_sym_EIB] = ACTIONS(1369), + [anon_sym_0b] = ACTIONS(1373), + [anon_sym_0o] = ACTIONS(1373), + [anon_sym_0x] = ACTIONS(1373), + [sym_val_date] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [sym__str_single_quotes] = ACTIONS(1371), + [sym__str_back_ticks] = ACTIONS(1371), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1373), [anon_sym_POUND] = ACTIONS(3), }, [514] = { [sym_comment] = STATE(514), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT2] = ACTIONS(1375), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1369), - [anon_sym_BANG_TILDE] = ACTIONS(1369), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_EQ2] = ACTIONS(1373), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token4] = ACTIONS(1377), - [aux_sym_unquoted_token6] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT2] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1375), + [anon_sym_BANG_TILDE] = ACTIONS(1375), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_EQ2] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token4] = ACTIONS(1383), + [aux_sym_unquoted_token6] = ACTIONS(1385), [anon_sym_POUND] = ACTIONS(105), }, [515] = { + [sym_path] = STATE(563), [sym_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT2] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1369), - [anon_sym_BANG_TILDE] = ACTIONS(1369), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_EQ2] = ACTIONS(1381), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token4] = ACTIONS(1385), - [aux_sym_unquoted_token6] = ACTIONS(1387), + [aux_sym_cell_path_repeat1] = STATE(515), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [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_COLON] = ACTIONS(1387), + [anon_sym_COMMA] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT2] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = 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_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_PLUS_EQ] = ACTIONS(1387), + [anon_sym_DASH_EQ] = ACTIONS(1387), + [anon_sym_STAR_EQ] = ACTIONS(1387), + [anon_sym_SLASH_EQ] = ACTIONS(1387), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [516] = { - [sym_cell_path] = STATE(593), - [sym_path] = STATE(526), + [sym_path] = STATE(563), [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(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), - [anon_sym_CARET] = ACTIONS(1389), + [aux_sym_cell_path_repeat1] = STATE(518), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_EQ] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_COLON] = ACTIONS(1394), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_list] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_make] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(1398), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_catch] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_as] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_PLUS_EQ] = ACTIONS(1394), + [anon_sym_DASH_EQ] = ACTIONS(1394), + [anon_sym_STAR_EQ] = ACTIONS(1394), + [anon_sym_SLASH_EQ] = ACTIONS(1394), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_BANG_TILDE] = ACTIONS(1394), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [aux_sym__record_key_token2] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [517] = { - [sym_cell_path] = STATE(610), - [sym_path] = STATE(526), + [sym_cell_path] = STATE(554), + [sym_path] = STATE(516), [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_where] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1395), - [anon_sym_BANG_TILDE] = ACTIONS(1395), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_COLON] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_list] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_make] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_catch] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_new] = ACTIONS(1400), + [anon_sym_as] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_PLUS_EQ] = ACTIONS(1400), + [anon_sym_DASH_EQ] = ACTIONS(1400), + [anon_sym_STAR_EQ] = ACTIONS(1400), + [anon_sym_SLASH_EQ] = ACTIONS(1400), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_BANG_TILDE] = ACTIONS(1400), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [aux_sym__record_key_token2] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, [518] = { - [sym_cell_path] = STATE(601), - [sym_path] = STATE(526), + [sym_path] = STATE(563), [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_where] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1399), - [anon_sym_BANG_TILDE] = ACTIONS(1399), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [anon_sym_not] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(105), - }, - [519] = { - [sym_cell_path] = STATE(587), - [sym_path] = STATE(526), - [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_let] = ACTIONS(1403), - [anon_sym_let_DASHenv] = ACTIONS(1403), - [anon_sym_mut] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [sym_cmd_identifier] = ACTIONS(1403), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_def] = ACTIONS(1403), - [anon_sym_export_DASHenv] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_use] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_error] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_in] = ACTIONS(1403), - [anon_sym_loop] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_match] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_source] = ACTIONS(1403), - [anon_sym_source_DASHenv] = ACTIONS(1403), - [anon_sym_register] = ACTIONS(1403), - [anon_sym_hide] = ACTIONS(1403), - [anon_sym_hide_DASHenv] = ACTIONS(1403), - [anon_sym_overlay] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_where] = ACTIONS(1403), - [anon_sym_STAR_STAR] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_mod] = ACTIONS(1403), - [anon_sym_SLASH_SLASH] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_bit_DASHshl] = ACTIONS(1403), - [anon_sym_bit_DASHshr] = ACTIONS(1403), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT2] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_not_DASHin] = ACTIONS(1403), - [anon_sym_starts_DASHwith] = ACTIONS(1403), - [anon_sym_ends_DASHwith] = ACTIONS(1403), - [anon_sym_EQ_TILDE] = ACTIONS(1403), - [anon_sym_BANG_TILDE] = ACTIONS(1403), - [anon_sym_bit_DASHand] = ACTIONS(1403), - [anon_sym_bit_DASHxor] = ACTIONS(1403), - [anon_sym_bit_DASHor] = ACTIONS(1403), - [anon_sym_and] = ACTIONS(1403), - [anon_sym_xor] = ACTIONS(1403), - [anon_sym_or] = ACTIONS(1403), - [anon_sym_not] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1403), - [aux_sym__val_number_token1] = ACTIONS(1403), - [aux_sym__val_number_token2] = ACTIONS(1403), - [aux_sym__val_number_token3] = ACTIONS(1403), - [aux_sym__val_number_token4] = ACTIONS(1403), - [aux_sym__val_number_token5] = ACTIONS(1403), - [aux_sym__val_number_token6] = ACTIONS(1403), - [anon_sym_0b] = ACTIONS(1403), - [anon_sym_0o] = ACTIONS(1403), - [anon_sym_0x] = ACTIONS(1403), - [sym_val_date] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym__str_single_quotes] = ACTIONS(1403), - [sym__str_back_ticks] = ACTIONS(1403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(105), - }, - [520] = { - [sym_cell_path] = STATE(626), - [sym_path] = STATE(526), - [sym_comment] = STATE(520), + [aux_sym_cell_path_repeat1] = STATE(515), [anon_sym_export] = ACTIONS(1407), [anon_sym_alias] = ACTIONS(1407), + [anon_sym_EQ] = ACTIONS(1407), [anon_sym_let] = ACTIONS(1407), [anon_sym_let_DASHenv] = ACTIONS(1407), [anon_sym_mut] = ACTIONS(1407), @@ -140591,11 +141965,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1407), [anon_sym_module] = ACTIONS(1407), [anon_sym_use] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_COLON] = ACTIONS(1407), + [anon_sym_COMMA] = ACTIONS(1407), [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), [anon_sym_DOLLAR] = ACTIONS(1407), [anon_sym_error] = ACTIONS(1407), + [anon_sym_list] = ACTIONS(1407), [anon_sym_GT] = ACTIONS(1407), [anon_sym_DASH] = ACTIONS(1407), [anon_sym_break] = ACTIONS(1407), @@ -140603,15 +141979,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1407), [anon_sym_in] = ACTIONS(1407), [anon_sym_loop] = ACTIONS(1407), + [anon_sym_make] = ACTIONS(1407), [anon_sym_while] = ACTIONS(1407), [anon_sym_do] = ACTIONS(1407), [anon_sym_if] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1407), [anon_sym_match] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), [anon_sym_RBRACE] = ACTIONS(1407), [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_DOT2] = ACTIONS(1393), + [anon_sym_DOT2] = ACTIONS(1409), [anon_sym_try] = ACTIONS(1407), + [anon_sym_catch] = ACTIONS(1407), [anon_sym_return] = ACTIONS(1407), [anon_sym_source] = ACTIONS(1407), [anon_sym_source_DASHenv] = ACTIONS(1407), @@ -140619,8 +141997,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1407), [anon_sym_hide_DASHenv] = ACTIONS(1407), [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_new] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1407), [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_where] = ACTIONS(1407), + [anon_sym_PLUS_EQ] = ACTIONS(1407), + [anon_sym_DASH_EQ] = ACTIONS(1407), + [anon_sym_STAR_EQ] = ACTIONS(1407), + [anon_sym_SLASH_EQ] = ACTIONS(1407), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1407), [anon_sym_STAR_STAR] = ACTIONS(1407), [anon_sym_PLUS_PLUS] = ACTIONS(1407), [anon_sym_SLASH] = ACTIONS(1407), @@ -140645,10 +142029,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1407), [anon_sym_xor] = ACTIONS(1407), [anon_sym_or] = ACTIONS(1407), - [anon_sym_not] = ACTIONS(1407), - [anon_sym_null] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), [aux_sym__val_number_decimal_token1] = ACTIONS(1407), [aux_sym__val_number_token1] = ACTIONS(1407), [aux_sym__val_number_token2] = ACTIONS(1407), @@ -140656,2383 +142036,2012 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1407), [aux_sym__val_number_token5] = ACTIONS(1407), [aux_sym__val_number_token6] = ACTIONS(1407), - [anon_sym_0b] = ACTIONS(1407), - [anon_sym_0o] = ACTIONS(1407), - [anon_sym_0x] = ACTIONS(1407), - [sym_val_date] = ACTIONS(1407), [anon_sym_DQUOTE] = ACTIONS(1407), [sym__str_single_quotes] = ACTIONS(1407), [sym__str_back_ticks] = ACTIONS(1407), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1407), + [aux_sym__record_key_token2] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(105), + }, + [519] = { + [sym_comment] = STATE(519), + [ts_builtin_sym_end] = ACTIONS(1377), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT2] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1375), + [anon_sym_BANG_TILDE] = ACTIONS(1375), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_EQ2] = ACTIONS(1411), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token4] = ACTIONS(1415), + [aux_sym_unquoted_token6] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(105), + }, + [520] = { + [sym_comment] = STATE(520), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_list] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_make] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_else] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_catch] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_new] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1419), + [anon_sym_DASH_EQ] = ACTIONS(1419), + [anon_sym_STAR_EQ] = ACTIONS(1419), + [anon_sym_SLASH_EQ] = ACTIONS(1419), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(1423), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [aux_sym__record_key_token2] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, [521] = { - [sym_path] = STATE(552), + [sym_cell_path] = STATE(576), + [sym_path] = STATE(539), [sym_comment] = STATE(521), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_DOT2] = ACTIONS(1415), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_where] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_BANG_TILDE] = ACTIONS(1400), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, [522] = { - [sym_cell_path] = STATE(622), - [sym_path] = STATE(526), + [sym_path] = STATE(565), [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), + [aux_sym_cell_path_repeat1] = STATE(522), + [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), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [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(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = 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(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT2] = ACTIONS(1428), + [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_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [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_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [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(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [523] = { - [sym_cell_path] = STATE(589), - [sym_path] = STATE(526), + [sym_path] = STATE(565), [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_alias] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_let_DASHenv] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [sym_cmd_identifier] = ACTIONS(1422), - [anon_sym_LF] = ACTIONS(1424), - [anon_sym_def] = ACTIONS(1422), - [anon_sym_export_DASHenv] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_RPAREN] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_error] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_in] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_source] = ACTIONS(1422), - [anon_sym_source_DASHenv] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_hide] = ACTIONS(1422), - [anon_sym_hide_DASHenv] = ACTIONS(1422), - [anon_sym_overlay] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_where] = ACTIONS(1422), - [anon_sym_STAR_STAR] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_bit_DASHshl] = ACTIONS(1422), - [anon_sym_bit_DASHshr] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1422), - [anon_sym_BANG_EQ] = ACTIONS(1422), - [anon_sym_LT2] = ACTIONS(1422), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_not_DASHin] = ACTIONS(1422), - [anon_sym_starts_DASHwith] = ACTIONS(1422), - [anon_sym_ends_DASHwith] = ACTIONS(1422), - [anon_sym_EQ_TILDE] = ACTIONS(1422), - [anon_sym_BANG_TILDE] = ACTIONS(1422), - [anon_sym_bit_DASHand] = ACTIONS(1422), - [anon_sym_bit_DASHxor] = ACTIONS(1422), - [anon_sym_bit_DASHor] = ACTIONS(1422), - [anon_sym_and] = ACTIONS(1422), - [anon_sym_xor] = ACTIONS(1422), - [anon_sym_or] = ACTIONS(1422), - [anon_sym_not] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [aux_sym__val_number_decimal_token1] = ACTIONS(1422), - [aux_sym__val_number_token1] = ACTIONS(1422), - [aux_sym__val_number_token2] = ACTIONS(1422), - [aux_sym__val_number_token3] = ACTIONS(1422), - [aux_sym__val_number_token4] = ACTIONS(1422), - [aux_sym__val_number_token5] = ACTIONS(1422), - [aux_sym__val_number_token6] = ACTIONS(1422), - [anon_sym_0b] = ACTIONS(1422), - [anon_sym_0o] = ACTIONS(1422), - [anon_sym_0x] = ACTIONS(1422), - [sym_val_date] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym__str_single_quotes] = ACTIONS(1422), - [sym__str_back_ticks] = ACTIONS(1422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(105), - }, - [524] = { - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT2] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1426), - [anon_sym_BANG_TILDE] = ACTIONS(1426), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [anon_sym_not] = ACTIONS(1426), - [aux_sym__immediate_decimal_token1] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [aux_sym_unquoted_token2] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(105), - }, - [525] = { - [sym_path] = STATE(552), - [sym_comment] = STATE(525), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1436), - [anon_sym_BANG_TILDE] = ACTIONS(1436), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [anon_sym_not] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(105), - }, - [526] = { - [sym_path] = STATE(552), - [sym_comment] = STATE(526), - [aux_sym_cell_path_repeat1] = STATE(525), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_where] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1440), - [anon_sym_BANG_TILDE] = ACTIONS(1440), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [anon_sym_not] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(105), - }, - [527] = { - [sym_cell_path] = STATE(554), - [sym_path] = STATE(528), - [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(1444), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_where] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1395), - [anon_sym_BANG_TILDE] = ACTIONS(1395), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(105), - }, - [528] = { - [sym_path] = STATE(552), - [sym_comment] = STATE(528), - [aux_sym_cell_path_repeat1] = STATE(530), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_where] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1440), - [anon_sym_BANG_TILDE] = ACTIONS(1440), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [anon_sym_not] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(105), - }, - [529] = { - [sym_cell_path] = STATE(634), - [sym_path] = STATE(526), - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(1447), - [anon_sym_alias] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_let_DASHenv] = ACTIONS(1447), - [anon_sym_mut] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1447), - [sym_cmd_identifier] = ACTIONS(1447), - [anon_sym_LF] = ACTIONS(1449), - [anon_sym_def] = ACTIONS(1447), - [anon_sym_export_DASHenv] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_use] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_RPAREN] = ACTIONS(1447), - [anon_sym_DOLLAR] = ACTIONS(1447), - [anon_sym_error] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_loop] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_match] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT2] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_source] = ACTIONS(1447), - [anon_sym_source_DASHenv] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_hide] = ACTIONS(1447), - [anon_sym_hide_DASHenv] = ACTIONS(1447), - [anon_sym_overlay] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_bit_DASHshl] = ACTIONS(1447), - [anon_sym_bit_DASHshr] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_LT2] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_not_DASHin] = ACTIONS(1447), - [anon_sym_starts_DASHwith] = ACTIONS(1447), - [anon_sym_ends_DASHwith] = ACTIONS(1447), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1447), - [anon_sym_bit_DASHxor] = ACTIONS(1447), - [anon_sym_bit_DASHor] = ACTIONS(1447), - [anon_sym_and] = ACTIONS(1447), - [anon_sym_xor] = ACTIONS(1447), - [anon_sym_or] = ACTIONS(1447), - [anon_sym_not] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [aux_sym__val_number_decimal_token1] = 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(1447), - [aux_sym__val_number_token5] = ACTIONS(1447), - [aux_sym__val_number_token6] = ACTIONS(1447), - [anon_sym_0b] = ACTIONS(1447), - [anon_sym_0o] = ACTIONS(1447), - [anon_sym_0x] = ACTIONS(1447), - [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), - [anon_sym_CARET] = ACTIONS(1447), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_alias] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_let_DASHenv] = ACTIONS(1407), + [anon_sym_mut] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_cmd_identifier] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_def] = ACTIONS(1407), + [anon_sym_export_DASHenv] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_error] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(1409), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_source] = ACTIONS(1407), + [anon_sym_source_DASHenv] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), + [anon_sym_hide_DASHenv] = ACTIONS(1407), + [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_where] = ACTIONS(1407), + [anon_sym_STAR_STAR] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_bit_DASHshl] = ACTIONS(1407), + [anon_sym_bit_DASHshr] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1407), + [anon_sym_BANG_EQ] = ACTIONS(1407), + [anon_sym_LT2] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1407), + [anon_sym_not_DASHin] = ACTIONS(1407), + [anon_sym_starts_DASHwith] = ACTIONS(1407), + [anon_sym_ends_DASHwith] = ACTIONS(1407), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1407), + [anon_sym_bit_DASHxor] = ACTIONS(1407), + [anon_sym_bit_DASHor] = ACTIONS(1407), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_xor] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1407), + [anon_sym_not] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(105), + }, + [524] = { + [sym_cell_path] = STATE(624), + [sym_path] = STATE(534), + [sym_comment] = STATE(524), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [sym_cmd_identifier] = ACTIONS(1431), + [anon_sym_LF] = ACTIONS(1433), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_register] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_where] = ACTIONS(1431), + [anon_sym_STAR_STAR] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_mod] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_bit_DASHshl] = ACTIONS(1431), + [anon_sym_bit_DASHshr] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_not_DASHin] = ACTIONS(1431), + [anon_sym_starts_DASHwith] = ACTIONS(1431), + [anon_sym_ends_DASHwith] = ACTIONS(1431), + [anon_sym_EQ_TILDE] = ACTIONS(1431), + [anon_sym_BANG_TILDE] = ACTIONS(1431), + [anon_sym_bit_DASHand] = ACTIONS(1431), + [anon_sym_bit_DASHxor] = ACTIONS(1431), + [anon_sym_bit_DASHor] = ACTIONS(1431), + [anon_sym_and] = ACTIONS(1431), + [anon_sym_xor] = ACTIONS(1431), + [anon_sym_or] = ACTIONS(1431), + [anon_sym_not] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [aux_sym__val_number_token4] = ACTIONS(1431), + [aux_sym__val_number_token5] = ACTIONS(1431), + [aux_sym__val_number_token6] = ACTIONS(1431), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), + [sym_val_date] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1431), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(105), + }, + [525] = { + [sym_comment] = STATE(525), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_COLON] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_list] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_make] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT2] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_catch] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_PLUS_EQ] = ACTIONS(1437), + [anon_sym_DASH_EQ] = ACTIONS(1437), + [anon_sym_STAR_EQ] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1437), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1437), + [anon_sym_QMARK2] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [aux_sym__record_key_token2] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(105), + }, + [526] = { + [sym_comment] = STATE(526), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_COLON] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_list] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_make] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT2] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_catch] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_new] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1441), + [anon_sym_QMARK2] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1441), + [anon_sym_BANG_TILDE] = ACTIONS(1441), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [aux_sym__record_key_token2] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(105), + }, + [527] = { + [sym_comment] = STATE(527), + [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), + [anon_sym_SEMI] = ACTIONS(1445), + [sym_cmd_identifier] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [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(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_in] = 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(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT2] = ACTIONS(1449), + [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_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1445), + [anon_sym_BANG_TILDE] = ACTIONS(1445), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [anon_sym_not] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(1451), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(105), + }, + [528] = { + [sym_cell_path] = STATE(622), + [sym_path] = STATE(534), + [sym_comment] = STATE(528), + [anon_sym_export] = ACTIONS(1455), + [anon_sym_alias] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_let_DASHenv] = ACTIONS(1455), + [anon_sym_mut] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), + [sym_cmd_identifier] = ACTIONS(1455), + [anon_sym_LF] = ACTIONS(1457), + [anon_sym_def] = ACTIONS(1455), + [anon_sym_export_DASHenv] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_module] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1455), + [anon_sym_error] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_source] = ACTIONS(1455), + [anon_sym_source_DASHenv] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_hide] = ACTIONS(1455), + [anon_sym_hide_DASHenv] = ACTIONS(1455), + [anon_sym_overlay] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_where] = ACTIONS(1455), + [anon_sym_STAR_STAR] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_bit_DASHshl] = ACTIONS(1455), + [anon_sym_bit_DASHshr] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_not_DASHin] = ACTIONS(1455), + [anon_sym_starts_DASHwith] = ACTIONS(1455), + [anon_sym_ends_DASHwith] = ACTIONS(1455), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1455), + [anon_sym_bit_DASHxor] = ACTIONS(1455), + [anon_sym_bit_DASHor] = ACTIONS(1455), + [anon_sym_and] = ACTIONS(1455), + [anon_sym_xor] = ACTIONS(1455), + [anon_sym_or] = ACTIONS(1455), + [anon_sym_not] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1455), + [aux_sym__val_number_token5] = ACTIONS(1455), + [aux_sym__val_number_token6] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1455), + [anon_sym_0o] = ACTIONS(1455), + [anon_sym_0x] = ACTIONS(1455), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(105), + }, + [529] = { + [sym_cell_path] = STATE(648), + [sym_path] = STATE(534), + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(1459), + [anon_sym_alias] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(1459), + [anon_sym_let_DASHenv] = ACTIONS(1459), + [anon_sym_mut] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1459), + [sym_cmd_identifier] = ACTIONS(1459), + [anon_sym_LF] = ACTIONS(1461), + [anon_sym_def] = ACTIONS(1459), + [anon_sym_export_DASHenv] = ACTIONS(1459), + [anon_sym_extern] = ACTIONS(1459), + [anon_sym_module] = ACTIONS(1459), + [anon_sym_use] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_DOLLAR] = ACTIONS(1459), + [anon_sym_error] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_in] = ACTIONS(1459), + [anon_sym_loop] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_source] = ACTIONS(1459), + [anon_sym_source_DASHenv] = ACTIONS(1459), + [anon_sym_register] = ACTIONS(1459), + [anon_sym_hide] = ACTIONS(1459), + [anon_sym_hide_DASHenv] = ACTIONS(1459), + [anon_sym_overlay] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_where] = ACTIONS(1459), + [anon_sym_STAR_STAR] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_bit_DASHshl] = ACTIONS(1459), + [anon_sym_bit_DASHshr] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_LT2] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_not_DASHin] = ACTIONS(1459), + [anon_sym_starts_DASHwith] = ACTIONS(1459), + [anon_sym_ends_DASHwith] = ACTIONS(1459), + [anon_sym_EQ_TILDE] = ACTIONS(1459), + [anon_sym_BANG_TILDE] = ACTIONS(1459), + [anon_sym_bit_DASHand] = ACTIONS(1459), + [anon_sym_bit_DASHxor] = ACTIONS(1459), + [anon_sym_bit_DASHor] = ACTIONS(1459), + [anon_sym_and] = ACTIONS(1459), + [anon_sym_xor] = ACTIONS(1459), + [anon_sym_or] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_null] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [aux_sym__val_number_decimal_token1] = ACTIONS(1459), + [aux_sym__val_number_token1] = ACTIONS(1459), + [aux_sym__val_number_token2] = ACTIONS(1459), + [aux_sym__val_number_token3] = ACTIONS(1459), + [aux_sym__val_number_token4] = ACTIONS(1459), + [aux_sym__val_number_token5] = ACTIONS(1459), + [aux_sym__val_number_token6] = ACTIONS(1459), + [anon_sym_0b] = ACTIONS(1459), + [anon_sym_0o] = ACTIONS(1459), + [anon_sym_0x] = ACTIONS(1459), + [sym_val_date] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym__str_single_quotes] = ACTIONS(1459), + [sym__str_back_ticks] = ACTIONS(1459), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), [anon_sym_POUND] = ACTIONS(105), }, [530] = { - [sym_path] = STATE(552), + [sym_cell_path] = STATE(635), + [sym_path] = STATE(534), [sym_comment] = STATE(530), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1436), - [anon_sym_BANG_TILDE] = ACTIONS(1436), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [anon_sym_not] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_export] = ACTIONS(1463), + [anon_sym_alias] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_let_DASHenv] = ACTIONS(1463), + [anon_sym_mut] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1463), + [sym_cmd_identifier] = ACTIONS(1463), + [anon_sym_LF] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1463), + [anon_sym_export_DASHenv] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_module] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_error] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_in] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_source] = ACTIONS(1463), + [anon_sym_source_DASHenv] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_hide] = ACTIONS(1463), + [anon_sym_hide_DASHenv] = ACTIONS(1463), + [anon_sym_overlay] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_where] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_bit_DASHshl] = ACTIONS(1463), + [anon_sym_bit_DASHshr] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_LT2] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_not_DASHin] = ACTIONS(1463), + [anon_sym_starts_DASHwith] = ACTIONS(1463), + [anon_sym_ends_DASHwith] = ACTIONS(1463), + [anon_sym_EQ_TILDE] = ACTIONS(1463), + [anon_sym_BANG_TILDE] = ACTIONS(1463), + [anon_sym_bit_DASHand] = ACTIONS(1463), + [anon_sym_bit_DASHxor] = ACTIONS(1463), + [anon_sym_bit_DASHor] = ACTIONS(1463), + [anon_sym_and] = ACTIONS(1463), + [anon_sym_xor] = ACTIONS(1463), + [anon_sym_or] = ACTIONS(1463), + [anon_sym_not] = ACTIONS(1463), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1463), + [aux_sym__val_number_token2] = ACTIONS(1463), + [aux_sym__val_number_token3] = ACTIONS(1463), + [aux_sym__val_number_token4] = ACTIONS(1463), + [aux_sym__val_number_token5] = ACTIONS(1463), + [aux_sym__val_number_token6] = ACTIONS(1463), + [anon_sym_0b] = ACTIONS(1463), + [anon_sym_0o] = ACTIONS(1463), + [anon_sym_0x] = ACTIONS(1463), + [sym_val_date] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [sym__str_single_quotes] = ACTIONS(1463), + [sym__str_back_ticks] = ACTIONS(1463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1463), [anon_sym_POUND] = ACTIONS(105), }, [531] = { - [sym_cell_path] = STATE(561), - [sym_path] = STATE(528), [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(1451), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_where] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1399), - [anon_sym_BANG_TILDE] = ACTIONS(1399), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [anon_sym_not] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_list] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_make] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_else] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_catch] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_new] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1419), + [anon_sym_DASH_EQ] = ACTIONS(1419), + [anon_sym_STAR_EQ] = ACTIONS(1419), + [anon_sym_SLASH_EQ] = ACTIONS(1419), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(1423), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [aux_sym__record_key_token2] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, [532] = { + [sym_cell_path] = STATE(573), + [sym_path] = STATE(539), [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_alias] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_let_DASHenv] = ACTIONS(1454), - [anon_sym_mut] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_cmd_identifier] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_export_DASHenv] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_error] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_source] = ACTIONS(1454), - [anon_sym_source_DASHenv] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_hide_DASHenv] = ACTIONS(1454), - [anon_sym_overlay] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_where] = ACTIONS(1454), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [anon_sym_BANG_TILDE] = ACTIONS(1454), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [anon_sym_not] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_where] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1467), + [anon_sym_BANG_TILDE] = ACTIONS(1467), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [anon_sym_not] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, [533] = { - [sym_cell_path] = STATE(620), - [sym_path] = STATE(544), + [sym_cell_path] = STATE(636), + [sym_path] = STATE(534), [sym_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1401), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_where] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1399), - [anon_sym_BANG_TILDE] = ACTIONS(1399), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [anon_sym_not] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_where] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_BANG_TILDE] = ACTIONS(1400), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, [534] = { - [sym_path] = STATE(636), + [sym_path] = STATE(565), [sym_comment] = STATE(534), - [aux_sym_cell_path_repeat1] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_DOT2] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [aux_sym_cell_path_repeat1] = STATE(536), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_BANG_TILDE] = ACTIONS(1394), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [535] = { + [sym_cell_path] = STATE(641), + [sym_path] = STATE(534), [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_where] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_STAR_STAR] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1464), - [anon_sym_BANG_TILDE] = ACTIONS(1464), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [anon_sym_not] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_where] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1467), + [anon_sym_BANG_TILDE] = ACTIONS(1467), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [anon_sym_not] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, [536] = { - [sym_cell_path] = STATE(640), - [sym_path] = STATE(545), + [sym_path] = STATE(565), [sym_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1401), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_where] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1399), - [anon_sym_BANG_TILDE] = ACTIONS(1399), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [anon_sym_not] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_alias] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_let_DASHenv] = ACTIONS(1407), + [anon_sym_mut] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_cmd_identifier] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_def] = ACTIONS(1407), + [anon_sym_export_DASHenv] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_error] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_source] = ACTIONS(1407), + [anon_sym_source_DASHenv] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), + [anon_sym_hide_DASHenv] = ACTIONS(1407), + [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_where] = ACTIONS(1407), + [anon_sym_STAR_STAR] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_bit_DASHshl] = ACTIONS(1407), + [anon_sym_bit_DASHshr] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1407), + [anon_sym_BANG_EQ] = ACTIONS(1407), + [anon_sym_LT2] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1407), + [anon_sym_not_DASHin] = ACTIONS(1407), + [anon_sym_starts_DASHwith] = ACTIONS(1407), + [anon_sym_ends_DASHwith] = ACTIONS(1407), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1407), + [anon_sym_bit_DASHxor] = ACTIONS(1407), + [anon_sym_bit_DASHor] = ACTIONS(1407), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_xor] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1407), + [anon_sym_not] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), [anon_sym_POUND] = ACTIONS(105), }, [537] = { - [sym_cell_path] = STATE(632), - [sym_path] = STATE(544), + [sym_cell_path] = STATE(617), + [sym_path] = STATE(534), [sym_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1397), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_where] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1395), - [anon_sym_BANG_TILDE] = ACTIONS(1395), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [sym_cmd_identifier] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1474), + [anon_sym_STAR_STAR] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_SLASH_SLASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_bit_DASHshl] = ACTIONS(1474), + [anon_sym_bit_DASHshr] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT2] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_not_DASHin] = ACTIONS(1474), + [anon_sym_starts_DASHwith] = ACTIONS(1474), + [anon_sym_ends_DASHwith] = ACTIONS(1474), + [anon_sym_EQ_TILDE] = ACTIONS(1474), + [anon_sym_BANG_TILDE] = ACTIONS(1474), + [anon_sym_bit_DASHand] = ACTIONS(1474), + [anon_sym_bit_DASHxor] = ACTIONS(1474), + [anon_sym_bit_DASHor] = ACTIONS(1474), + [anon_sym_and] = ACTIONS(1474), + [anon_sym_xor] = ACTIONS(1474), + [anon_sym_or] = ACTIONS(1474), + [anon_sym_not] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_token1] = ACTIONS(1474), + [aux_sym__val_number_token2] = ACTIONS(1474), + [aux_sym__val_number_token3] = ACTIONS(1474), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym__str_single_quotes] = ACTIONS(1474), + [sym__str_back_ticks] = ACTIONS(1474), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1474), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1474), [anon_sym_POUND] = ACTIONS(105), }, [538] = { - [sym_cell_path] = STATE(648), - [sym_path] = STATE(545), + [sym_cell_path] = STATE(623), + [sym_path] = STATE(534), [sym_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1391), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(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), - [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_alias] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_let_DASHenv] = ACTIONS(1478), + [anon_sym_mut] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [sym_cmd_identifier] = ACTIONS(1478), + [anon_sym_LF] = ACTIONS(1480), + [anon_sym_def] = ACTIONS(1478), + [anon_sym_export_DASHenv] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_error] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_source] = ACTIONS(1478), + [anon_sym_source_DASHenv] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_hide] = ACTIONS(1478), + [anon_sym_hide_DASHenv] = ACTIONS(1478), + [anon_sym_overlay] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_where] = ACTIONS(1478), + [anon_sym_STAR_STAR] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_SLASH_SLASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_bit_DASHshl] = ACTIONS(1478), + [anon_sym_bit_DASHshr] = ACTIONS(1478), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_not_DASHin] = ACTIONS(1478), + [anon_sym_starts_DASHwith] = ACTIONS(1478), + [anon_sym_ends_DASHwith] = ACTIONS(1478), + [anon_sym_EQ_TILDE] = ACTIONS(1478), + [anon_sym_BANG_TILDE] = ACTIONS(1478), + [anon_sym_bit_DASHand] = ACTIONS(1478), + [anon_sym_bit_DASHxor] = ACTIONS(1478), + [anon_sym_bit_DASHor] = ACTIONS(1478), + [anon_sym_and] = ACTIONS(1478), + [anon_sym_xor] = ACTIONS(1478), + [anon_sym_or] = ACTIONS(1478), + [anon_sym_not] = ACTIONS(1478), + [anon_sym_null] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1478), + [aux_sym__val_number_token2] = ACTIONS(1478), + [aux_sym__val_number_token3] = ACTIONS(1478), + [aux_sym__val_number_token4] = ACTIONS(1478), + [aux_sym__val_number_token5] = ACTIONS(1478), + [aux_sym__val_number_token6] = ACTIONS(1478), + [anon_sym_0b] = ACTIONS(1478), + [anon_sym_0o] = ACTIONS(1478), + [anon_sym_0x] = ACTIONS(1478), + [sym_val_date] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym__str_single_quotes] = ACTIONS(1478), + [sym__str_back_ticks] = ACTIONS(1478), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1478), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1478), + [anon_sym_CARET] = ACTIONS(1478), [anon_sym_POUND] = ACTIONS(105), }, [539] = { - [sym_cell_path] = STATE(642), - [sym_path] = STATE(545), + [sym_path] = STATE(565), [sym_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), + [aux_sym_cell_path_repeat1] = STATE(523), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_BANG_TILDE] = ACTIONS(1394), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [540] = { + [sym_path] = STATE(649), [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_alias] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_let_DASHenv] = ACTIONS(1475), - [anon_sym_mut] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [sym_cmd_identifier] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_def] = ACTIONS(1475), - [anon_sym_export_DASHenv] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT2] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_source] = ACTIONS(1475), - [anon_sym_source_DASHenv] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_hide_DASHenv] = ACTIONS(1475), - [anon_sym_overlay] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_where] = ACTIONS(1475), - [anon_sym_QMARK2] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1475), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(105), - }, - [541] = { - [sym_cell_path] = STATE(692), - [sym_path] = STATE(545), - [sym_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1397), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_where] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1395), - [anon_sym_BANG_TILDE] = ACTIONS(1395), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(105), - }, - [542] = { - [sym_cell_path] = STATE(699), - [sym_path] = STATE(545), - [sym_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1424), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_alias] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_let_DASHenv] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [sym_cmd_identifier] = ACTIONS(1422), - [anon_sym_LF] = ACTIONS(1424), - [anon_sym_def] = ACTIONS(1422), - [anon_sym_export_DASHenv] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_error] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_in] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_source] = ACTIONS(1422), - [anon_sym_source_DASHenv] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_hide] = ACTIONS(1422), - [anon_sym_hide_DASHenv] = ACTIONS(1422), - [anon_sym_overlay] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_where] = ACTIONS(1422), - [anon_sym_STAR_STAR] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_bit_DASHshl] = ACTIONS(1422), - [anon_sym_bit_DASHshr] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1422), - [anon_sym_BANG_EQ] = ACTIONS(1422), - [anon_sym_LT2] = ACTIONS(1422), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_not_DASHin] = ACTIONS(1422), - [anon_sym_starts_DASHwith] = ACTIONS(1422), - [anon_sym_ends_DASHwith] = ACTIONS(1422), - [anon_sym_EQ_TILDE] = ACTIONS(1422), - [anon_sym_BANG_TILDE] = ACTIONS(1422), - [anon_sym_bit_DASHand] = ACTIONS(1422), - [anon_sym_bit_DASHxor] = ACTIONS(1422), - [anon_sym_bit_DASHor] = ACTIONS(1422), - [anon_sym_and] = ACTIONS(1422), - [anon_sym_xor] = ACTIONS(1422), - [anon_sym_or] = ACTIONS(1422), - [anon_sym_not] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [aux_sym__val_number_decimal_token1] = ACTIONS(1422), - [aux_sym__val_number_token1] = ACTIONS(1422), - [aux_sym__val_number_token2] = ACTIONS(1422), - [aux_sym__val_number_token3] = ACTIONS(1422), - [aux_sym__val_number_token4] = ACTIONS(1422), - [aux_sym__val_number_token5] = ACTIONS(1422), - [aux_sym__val_number_token6] = ACTIONS(1422), - [anon_sym_0b] = ACTIONS(1422), - [anon_sym_0o] = ACTIONS(1422), - [anon_sym_0x] = ACTIONS(1422), - [sym_val_date] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym__str_single_quotes] = ACTIONS(1422), - [sym__str_back_ticks] = ACTIONS(1422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(105), - }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_where] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_STAR_STAR] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1464), - [anon_sym_BANG_TILDE] = ACTIONS(1464), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [anon_sym_not] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(105), - }, - [544] = { - [sym_path] = STATE(636), - [sym_comment] = STATE(544), - [aux_sym_cell_path_repeat1] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_where] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1440), - [anon_sym_BANG_TILDE] = ACTIONS(1440), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [anon_sym_not] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(105), - }, - [545] = { - [sym_path] = STATE(636), - [sym_comment] = STATE(545), - [aux_sym_cell_path_repeat1] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_where] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1440), - [anon_sym_BANG_TILDE] = ACTIONS(1440), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [anon_sym_not] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(105), - }, - [546] = { - [sym_cell_path] = STATE(694), - [sym_path] = STATE(545), - [sym_comment] = STATE(546), + [aux_sym_cell_path_repeat1] = STATE(546), [ts_builtin_sym_end] = ACTIONS(1409), [anon_sym_export] = ACTIONS(1407), [anon_sym_alias] = ACTIONS(1407), @@ -143065,7 +144074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(1407), [anon_sym_LBRACE] = ACTIONS(1407), [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_DOT2] = ACTIONS(1470), + [anon_sym_DOT2] = ACTIONS(1409), [anon_sym_try] = ACTIONS(1407), [anon_sym_return] = ACTIONS(1407), [anon_sym_source] = ACTIONS(1407), @@ -143123,1683 +144132,2260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1407), [anon_sym_POUND] = ACTIONS(105), }, + [541] = { + [sym_comment] = STATE(541), + [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), + [anon_sym_SEMI] = ACTIONS(1445), + [sym_cmd_identifier] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [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(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_in] = 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(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT2] = ACTIONS(1482), + [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_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1445), + [anon_sym_BANG_TILDE] = ACTIONS(1445), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [anon_sym_not] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(1484), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(105), + }, + [542] = { + [sym_path] = STATE(649), + [sym_comment] = STATE(542), + [aux_sym_cell_path_repeat1] = STATE(564), + [ts_builtin_sym_end] = ACTIONS(1396), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_BANG_TILDE] = ACTIONS(1394), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(105), + }, + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_where] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(1490), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(105), + }, + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(1492), + [anon_sym_alias] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1492), + [anon_sym_let_DASHenv] = ACTIONS(1492), + [anon_sym_mut] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(213), + [sym_cmd_identifier] = ACTIONS(1492), + [anon_sym_LF] = ACTIONS(215), + [anon_sym_def] = ACTIONS(1492), + [anon_sym_export_DASHenv] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_module] = ACTIONS(1492), + [anon_sym_use] = ACTIONS(1492), + [anon_sym_COLON] = ACTIONS(1276), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_error] = ACTIONS(1492), + [anon_sym_list] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1498), + [anon_sym_loop] = ACTIONS(1492), + [anon_sym_make] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_else] = ACTIONS(1492), + [anon_sym_match] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1492), + [anon_sym_catch] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_source] = ACTIONS(1492), + [anon_sym_source_DASHenv] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_hide] = ACTIONS(1492), + [anon_sym_hide_DASHenv] = ACTIONS(1492), + [anon_sym_overlay] = ACTIONS(1492), + [anon_sym_new] = ACTIONS(1492), + [anon_sym_as] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1494), + [anon_sym_STAR_STAR] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_bit_DASHshl] = ACTIONS(213), + [anon_sym_bit_DASHshr] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_not_DASHin] = ACTIONS(213), + [anon_sym_starts_DASHwith] = ACTIONS(213), + [anon_sym_ends_DASHwith] = ACTIONS(213), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_BANG_TILDE] = ACTIONS(213), + [anon_sym_bit_DASHand] = ACTIONS(213), + [anon_sym_bit_DASHxor] = ACTIONS(213), + [anon_sym_bit_DASHor] = ACTIONS(213), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [aux_sym__val_number_token4] = ACTIONS(1492), + [aux_sym__val_number_token5] = ACTIONS(1492), + [aux_sym__val_number_token6] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [aux_sym__record_key_token2] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(105), + }, + [545] = { + [sym_cell_path] = STATE(584), + [sym_path] = STATE(549), + [sym_comment] = STATE(545), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_where] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_BANG_TILDE] = ACTIONS(1400), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(105), + }, + [546] = { + [sym_path] = STATE(649), + [sym_comment] = STATE(546), + [aux_sym_cell_path_repeat1] = STATE(546), + [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), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [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(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = 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(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT2] = ACTIONS(1506), + [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_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [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_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [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(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, [547] = { [sym_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT2] = ACTIONS(1479), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1426), - [anon_sym_BANG_TILDE] = ACTIONS(1426), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [anon_sym_not] = ACTIONS(1426), - [aux_sym__immediate_decimal_token1] = ACTIONS(1481), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [aux_sym_unquoted_token2] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT2] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_where] = ACTIONS(1441), + [anon_sym_QMARK2] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1441), + [anon_sym_BANG_TILDE] = ACTIONS(1441), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(105), }, [548] = { - [sym_path] = STATE(636), + [sym_cell_path] = STATE(697), + [sym_path] = STATE(542), [sym_comment] = STATE(548), - [aux_sym_cell_path_repeat1] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1436), - [anon_sym_BANG_TILDE] = ACTIONS(1436), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [anon_sym_not] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1465), + [anon_sym_export] = ACTIONS(1463), + [anon_sym_alias] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_let_DASHenv] = ACTIONS(1463), + [anon_sym_mut] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1463), + [sym_cmd_identifier] = ACTIONS(1463), + [anon_sym_LF] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1463), + [anon_sym_export_DASHenv] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_module] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_error] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_in] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_source] = ACTIONS(1463), + [anon_sym_source_DASHenv] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_hide] = ACTIONS(1463), + [anon_sym_hide_DASHenv] = ACTIONS(1463), + [anon_sym_overlay] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_where] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_bit_DASHshl] = ACTIONS(1463), + [anon_sym_bit_DASHshr] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_LT2] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_not_DASHin] = ACTIONS(1463), + [anon_sym_starts_DASHwith] = ACTIONS(1463), + [anon_sym_ends_DASHwith] = ACTIONS(1463), + [anon_sym_EQ_TILDE] = ACTIONS(1463), + [anon_sym_BANG_TILDE] = ACTIONS(1463), + [anon_sym_bit_DASHand] = ACTIONS(1463), + [anon_sym_bit_DASHxor] = ACTIONS(1463), + [anon_sym_bit_DASHor] = ACTIONS(1463), + [anon_sym_and] = ACTIONS(1463), + [anon_sym_xor] = ACTIONS(1463), + [anon_sym_or] = ACTIONS(1463), + [anon_sym_not] = ACTIONS(1463), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1463), + [aux_sym__val_number_token2] = ACTIONS(1463), + [aux_sym__val_number_token3] = ACTIONS(1463), + [aux_sym__val_number_token4] = ACTIONS(1463), + [aux_sym__val_number_token5] = ACTIONS(1463), + [aux_sym__val_number_token6] = ACTIONS(1463), + [anon_sym_0b] = ACTIONS(1463), + [anon_sym_0o] = ACTIONS(1463), + [anon_sym_0x] = ACTIONS(1463), + [sym_val_date] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [sym__str_single_quotes] = ACTIONS(1463), + [sym__str_back_ticks] = ACTIONS(1463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1463), [anon_sym_POUND] = ACTIONS(105), }, [549] = { - [sym_cell_path] = STATE(650), - [sym_path] = STATE(545), + [sym_path] = STATE(649), [sym_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1405), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_let] = ACTIONS(1403), - [anon_sym_let_DASHenv] = ACTIONS(1403), - [anon_sym_mut] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [sym_cmd_identifier] = ACTIONS(1403), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_def] = ACTIONS(1403), - [anon_sym_export_DASHenv] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_use] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_error] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_in] = ACTIONS(1403), - [anon_sym_loop] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_match] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_source] = ACTIONS(1403), - [anon_sym_source_DASHenv] = ACTIONS(1403), - [anon_sym_register] = ACTIONS(1403), - [anon_sym_hide] = ACTIONS(1403), - [anon_sym_hide_DASHenv] = ACTIONS(1403), - [anon_sym_overlay] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_where] = ACTIONS(1403), - [anon_sym_STAR_STAR] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_mod] = ACTIONS(1403), - [anon_sym_SLASH_SLASH] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_bit_DASHshl] = ACTIONS(1403), - [anon_sym_bit_DASHshr] = ACTIONS(1403), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT2] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_not_DASHin] = ACTIONS(1403), - [anon_sym_starts_DASHwith] = ACTIONS(1403), - [anon_sym_ends_DASHwith] = ACTIONS(1403), - [anon_sym_EQ_TILDE] = ACTIONS(1403), - [anon_sym_BANG_TILDE] = ACTIONS(1403), - [anon_sym_bit_DASHand] = ACTIONS(1403), - [anon_sym_bit_DASHxor] = ACTIONS(1403), - [anon_sym_bit_DASHor] = ACTIONS(1403), - [anon_sym_and] = ACTIONS(1403), - [anon_sym_xor] = ACTIONS(1403), - [anon_sym_or] = ACTIONS(1403), - [anon_sym_not] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1403), - [aux_sym__val_number_token1] = ACTIONS(1403), - [aux_sym__val_number_token2] = ACTIONS(1403), - [aux_sym__val_number_token3] = ACTIONS(1403), - [aux_sym__val_number_token4] = ACTIONS(1403), - [aux_sym__val_number_token5] = ACTIONS(1403), - [aux_sym__val_number_token6] = ACTIONS(1403), - [anon_sym_0b] = ACTIONS(1403), - [anon_sym_0o] = ACTIONS(1403), - [anon_sym_0x] = ACTIONS(1403), - [sym_val_date] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym__str_single_quotes] = ACTIONS(1403), - [sym__str_back_ticks] = ACTIONS(1403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1403), + [aux_sym_cell_path_repeat1] = STATE(540), + [ts_builtin_sym_end] = ACTIONS(1396), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_BANG_TILDE] = ACTIONS(1394), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [550] = { - [sym_cell_path] = STATE(690), - [sym_path] = STATE(545), + [sym_cell_path] = STATE(650), + [sym_path] = STATE(542), [sym_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1449), - [anon_sym_export] = ACTIONS(1447), - [anon_sym_alias] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_let_DASHenv] = ACTIONS(1447), - [anon_sym_mut] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1447), - [sym_cmd_identifier] = ACTIONS(1447), - [anon_sym_LF] = ACTIONS(1449), - [anon_sym_def] = ACTIONS(1447), - [anon_sym_export_DASHenv] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_use] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_DOLLAR] = ACTIONS(1447), - [anon_sym_error] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_loop] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_match] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_source] = ACTIONS(1447), - [anon_sym_source_DASHenv] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_hide] = ACTIONS(1447), - [anon_sym_hide_DASHenv] = ACTIONS(1447), - [anon_sym_overlay] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_bit_DASHshl] = ACTIONS(1447), - [anon_sym_bit_DASHshr] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_LT2] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_not_DASHin] = ACTIONS(1447), - [anon_sym_starts_DASHwith] = ACTIONS(1447), - [anon_sym_ends_DASHwith] = ACTIONS(1447), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1447), - [anon_sym_bit_DASHxor] = ACTIONS(1447), - [anon_sym_bit_DASHor] = ACTIONS(1447), - [anon_sym_and] = ACTIONS(1447), - [anon_sym_xor] = ACTIONS(1447), - [anon_sym_or] = ACTIONS(1447), - [anon_sym_not] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [aux_sym__val_number_decimal_token1] = 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(1447), - [aux_sym__val_number_token5] = ACTIONS(1447), - [aux_sym__val_number_token6] = ACTIONS(1447), - [anon_sym_0b] = ACTIONS(1447), - [anon_sym_0o] = ACTIONS(1447), - [anon_sym_0x] = ACTIONS(1447), - [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), - [anon_sym_CARET] = ACTIONS(1447), + [ts_builtin_sym_end] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1455), + [anon_sym_alias] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_let_DASHenv] = ACTIONS(1455), + [anon_sym_mut] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), + [sym_cmd_identifier] = ACTIONS(1455), + [anon_sym_LF] = ACTIONS(1457), + [anon_sym_def] = ACTIONS(1455), + [anon_sym_export_DASHenv] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_module] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1455), + [anon_sym_error] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_source] = ACTIONS(1455), + [anon_sym_source_DASHenv] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_hide] = ACTIONS(1455), + [anon_sym_hide_DASHenv] = ACTIONS(1455), + [anon_sym_overlay] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_where] = ACTIONS(1455), + [anon_sym_STAR_STAR] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_bit_DASHshl] = ACTIONS(1455), + [anon_sym_bit_DASHshr] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_not_DASHin] = ACTIONS(1455), + [anon_sym_starts_DASHwith] = ACTIONS(1455), + [anon_sym_ends_DASHwith] = ACTIONS(1455), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1455), + [anon_sym_bit_DASHxor] = ACTIONS(1455), + [anon_sym_bit_DASHor] = ACTIONS(1455), + [anon_sym_and] = ACTIONS(1455), + [anon_sym_xor] = ACTIONS(1455), + [anon_sym_or] = ACTIONS(1455), + [anon_sym_not] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1455), + [aux_sym__val_number_token5] = ACTIONS(1455), + [aux_sym__val_number_token6] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1455), + [anon_sym_0o] = ACTIONS(1455), + [anon_sym_0x] = ACTIONS(1455), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1455), [anon_sym_POUND] = ACTIONS(105), }, [551] = { - [sym_path] = STATE(636), + [sym_cell_path] = STATE(689), + [sym_path] = STATE(542), [sym_comment] = STATE(551), - [aux_sym_cell_path_repeat1] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1436), - [anon_sym_BANG_TILDE] = ACTIONS(1436), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [anon_sym_not] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1433), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [sym_cmd_identifier] = ACTIONS(1431), + [anon_sym_LF] = ACTIONS(1433), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_register] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_where] = ACTIONS(1431), + [anon_sym_STAR_STAR] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_mod] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_bit_DASHshl] = ACTIONS(1431), + [anon_sym_bit_DASHshr] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_not_DASHin] = ACTIONS(1431), + [anon_sym_starts_DASHwith] = ACTIONS(1431), + [anon_sym_ends_DASHwith] = ACTIONS(1431), + [anon_sym_EQ_TILDE] = ACTIONS(1431), + [anon_sym_BANG_TILDE] = ACTIONS(1431), + [anon_sym_bit_DASHand] = ACTIONS(1431), + [anon_sym_bit_DASHxor] = ACTIONS(1431), + [anon_sym_bit_DASHor] = ACTIONS(1431), + [anon_sym_and] = ACTIONS(1431), + [anon_sym_xor] = ACTIONS(1431), + [anon_sym_or] = ACTIONS(1431), + [anon_sym_not] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [aux_sym__val_number_token4] = ACTIONS(1431), + [aux_sym__val_number_token5] = ACTIONS(1431), + [aux_sym__val_number_token6] = ACTIONS(1431), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), + [sym_val_date] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1431), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), [anon_sym_POUND] = ACTIONS(105), }, [552] = { [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(1485), - [anon_sym_alias] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_let_DASHenv] = ACTIONS(1485), - [anon_sym_mut] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1485), - [sym_cmd_identifier] = ACTIONS(1485), - [anon_sym_LF] = ACTIONS(1487), - [anon_sym_def] = ACTIONS(1485), - [anon_sym_export_DASHenv] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_module] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_error] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_in] = ACTIONS(1485), - [anon_sym_loop] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_DOT2] = ACTIONS(1487), - [anon_sym_try] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_source] = ACTIONS(1485), - [anon_sym_source_DASHenv] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_hide] = ACTIONS(1485), - [anon_sym_hide_DASHenv] = ACTIONS(1485), - [anon_sym_overlay] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_where] = ACTIONS(1485), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_SLASH_SLASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_bit_DASHshl] = ACTIONS(1485), - [anon_sym_bit_DASHshr] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_LT2] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_not_DASHin] = ACTIONS(1485), - [anon_sym_starts_DASHwith] = ACTIONS(1485), - [anon_sym_ends_DASHwith] = ACTIONS(1485), - [anon_sym_EQ_TILDE] = ACTIONS(1485), - [anon_sym_BANG_TILDE] = ACTIONS(1485), - [anon_sym_bit_DASHand] = ACTIONS(1485), - [anon_sym_bit_DASHxor] = ACTIONS(1485), - [anon_sym_bit_DASHor] = ACTIONS(1485), - [anon_sym_and] = ACTIONS(1485), - [anon_sym_xor] = ACTIONS(1485), - [anon_sym_or] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_null] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [aux_sym__val_number_decimal_token1] = ACTIONS(1485), - [aux_sym__val_number_token1] = ACTIONS(1485), - [aux_sym__val_number_token2] = ACTIONS(1485), - [aux_sym__val_number_token3] = ACTIONS(1485), - [aux_sym__val_number_token4] = ACTIONS(1485), - [aux_sym__val_number_token5] = ACTIONS(1485), - [aux_sym__val_number_token6] = ACTIONS(1485), - [anon_sym_0b] = ACTIONS(1485), - [anon_sym_0o] = ACTIONS(1485), - [anon_sym_0x] = ACTIONS(1485), - [sym_val_date] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym__str_single_quotes] = ACTIONS(1485), - [sym__str_back_ticks] = ACTIONS(1485), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_alias] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_let_DASHenv] = ACTIONS(1509), + [anon_sym_mut] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [sym_cmd_identifier] = ACTIONS(1509), + [anon_sym_LF] = ACTIONS(1511), + [anon_sym_def] = ACTIONS(1509), + [anon_sym_export_DASHenv] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_COLON] = ACTIONS(1509), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1509), + [anon_sym_error] = ACTIONS(1509), + [anon_sym_list] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_make] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1511), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_catch] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_source] = ACTIONS(1509), + [anon_sym_source_DASHenv] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_hide] = ACTIONS(1509), + [anon_sym_hide_DASHenv] = ACTIONS(1509), + [anon_sym_overlay] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1509), + [anon_sym_STAR_STAR] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_bit_DASHshl] = ACTIONS(1509), + [anon_sym_bit_DASHshr] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_not_DASHin] = ACTIONS(1509), + [anon_sym_starts_DASHwith] = ACTIONS(1509), + [anon_sym_ends_DASHwith] = ACTIONS(1509), + [anon_sym_EQ_TILDE] = ACTIONS(1509), + [anon_sym_BANG_TILDE] = ACTIONS(1509), + [anon_sym_bit_DASHand] = ACTIONS(1509), + [anon_sym_bit_DASHxor] = ACTIONS(1509), + [anon_sym_bit_DASHor] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1509), + [anon_sym_xor] = ACTIONS(1509), + [anon_sym_or] = ACTIONS(1509), + [aux_sym__val_number_decimal_token1] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1509), + [aux_sym__val_number_token5] = ACTIONS(1509), + [aux_sym__val_number_token6] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [aux_sym__record_key_token2] = ACTIONS(1509), [anon_sym_POUND] = ACTIONS(105), }, [553] = { [sym_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(1466), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_where] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(1489), - [anon_sym_STAR_STAR] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1464), - [anon_sym_BANG_TILDE] = ACTIONS(1464), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [anon_sym_not] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT2] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_QMARK2] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [554] = { [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_alias] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_let_DASHenv] = ACTIONS(1491), - [anon_sym_mut] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [sym_cmd_identifier] = ACTIONS(1491), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_def] = ACTIONS(1491), - [anon_sym_export_DASHenv] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_error] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT2] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_source] = ACTIONS(1491), - [anon_sym_source_DASHenv] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_hide] = ACTIONS(1491), - [anon_sym_hide_DASHenv] = ACTIONS(1491), - [anon_sym_overlay] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_where] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_BANG_TILDE] = ACTIONS(1491), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [anon_sym_not] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1491), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_0b] = ACTIONS(1491), - [anon_sym_0o] = ACTIONS(1491), - [anon_sym_0x] = ACTIONS(1491), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [sym_cmd_identifier] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_COLON] = ACTIONS(1513), + [anon_sym_COMMA] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_list] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_make] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_else] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_catch] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1513), + [anon_sym_BANG_TILDE] = ACTIONS(1513), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [aux_sym__record_key_token2] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(105), }, [555] = { + [sym_cell_path] = STATE(690), + [sym_path] = STATE(542), [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_where] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1495), - [anon_sym_BANG_TILDE] = ACTIONS(1495), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [anon_sym_not] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [aux_sym_unquoted_token5] = ACTIONS(1499), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_where] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_BANG_TILDE] = ACTIONS(1400), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, [556] = { + [sym_cell_path] = STATE(669), + [sym_path] = STATE(542), [sym_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1466), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_where] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(1489), - [anon_sym_STAR_STAR] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1464), - [anon_sym_BANG_TILDE] = ACTIONS(1464), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [anon_sym_not] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1480), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_alias] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_let_DASHenv] = ACTIONS(1478), + [anon_sym_mut] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [sym_cmd_identifier] = ACTIONS(1478), + [anon_sym_LF] = ACTIONS(1480), + [anon_sym_def] = ACTIONS(1478), + [anon_sym_export_DASHenv] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_error] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_source] = ACTIONS(1478), + [anon_sym_source_DASHenv] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_hide] = ACTIONS(1478), + [anon_sym_hide_DASHenv] = ACTIONS(1478), + [anon_sym_overlay] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_where] = ACTIONS(1478), + [anon_sym_STAR_STAR] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_SLASH_SLASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_bit_DASHshl] = ACTIONS(1478), + [anon_sym_bit_DASHshr] = ACTIONS(1478), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_not_DASHin] = ACTIONS(1478), + [anon_sym_starts_DASHwith] = ACTIONS(1478), + [anon_sym_ends_DASHwith] = ACTIONS(1478), + [anon_sym_EQ_TILDE] = ACTIONS(1478), + [anon_sym_BANG_TILDE] = ACTIONS(1478), + [anon_sym_bit_DASHand] = ACTIONS(1478), + [anon_sym_bit_DASHxor] = ACTIONS(1478), + [anon_sym_bit_DASHor] = ACTIONS(1478), + [anon_sym_and] = ACTIONS(1478), + [anon_sym_xor] = ACTIONS(1478), + [anon_sym_or] = ACTIONS(1478), + [anon_sym_not] = ACTIONS(1478), + [anon_sym_null] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1478), + [aux_sym__val_number_token2] = ACTIONS(1478), + [aux_sym__val_number_token3] = ACTIONS(1478), + [aux_sym__val_number_token4] = ACTIONS(1478), + [aux_sym__val_number_token5] = ACTIONS(1478), + [aux_sym__val_number_token6] = ACTIONS(1478), + [anon_sym_0b] = ACTIONS(1478), + [anon_sym_0o] = ACTIONS(1478), + [anon_sym_0x] = ACTIONS(1478), + [sym_val_date] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym__str_single_quotes] = ACTIONS(1478), + [sym__str_back_ticks] = ACTIONS(1478), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1478), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1478), + [anon_sym_CARET] = ACTIONS(1478), [anon_sym_POUND] = ACTIONS(105), }, [557] = { [sym_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1477), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_alias] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_let_DASHenv] = ACTIONS(1475), - [anon_sym_mut] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [sym_cmd_identifier] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_def] = ACTIONS(1475), - [anon_sym_export_DASHenv] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT2] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_source] = ACTIONS(1475), - [anon_sym_source_DASHenv] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_hide_DASHenv] = ACTIONS(1475), - [anon_sym_overlay] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_where] = ACTIONS(1475), - [anon_sym_QMARK2] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1475), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_where] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(1490), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, [558] = { + [sym_cell_path] = STATE(709), + [sym_path] = STATE(542), [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(1501), - [anon_sym_alias] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_let_DASHenv] = ACTIONS(1501), - [anon_sym_mut] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1501), - [sym_cmd_identifier] = ACTIONS(1501), - [anon_sym_LF] = ACTIONS(1503), - [anon_sym_def] = ACTIONS(1501), - [anon_sym_export_DASHenv] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_module] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1501), - [anon_sym_error] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT2] = ACTIONS(1503), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_source] = ACTIONS(1501), - [anon_sym_source_DASHenv] = ACTIONS(1501), - [anon_sym_register] = ACTIONS(1501), - [anon_sym_hide] = ACTIONS(1501), - [anon_sym_hide_DASHenv] = ACTIONS(1501), - [anon_sym_overlay] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(1501), - [anon_sym_STAR_STAR] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_bit_DASHshl] = ACTIONS(1501), - [anon_sym_bit_DASHshr] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1501), - [anon_sym_BANG_EQ] = ACTIONS(1501), - [anon_sym_LT2] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1501), - [anon_sym_not_DASHin] = ACTIONS(1501), - [anon_sym_starts_DASHwith] = ACTIONS(1501), - [anon_sym_ends_DASHwith] = ACTIONS(1501), - [anon_sym_EQ_TILDE] = ACTIONS(1501), - [anon_sym_BANG_TILDE] = ACTIONS(1501), - [anon_sym_bit_DASHand] = ACTIONS(1501), - [anon_sym_bit_DASHxor] = ACTIONS(1501), - [anon_sym_bit_DASHor] = ACTIONS(1501), - [anon_sym_and] = ACTIONS(1501), - [anon_sym_xor] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1501), - [aux_sym__val_number_token2] = ACTIONS(1501), - [aux_sym__val_number_token3] = ACTIONS(1501), - [aux_sym__val_number_token4] = ACTIONS(1501), - [aux_sym__val_number_token5] = ACTIONS(1501), - [aux_sym__val_number_token6] = ACTIONS(1501), - [anon_sym_0b] = ACTIONS(1501), - [anon_sym_0o] = ACTIONS(1501), - [anon_sym_0x] = ACTIONS(1501), - [sym_val_date] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), + [ts_builtin_sym_end] = ACTIONS(1469), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_where] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1467), + [anon_sym_BANG_TILDE] = ACTIONS(1467), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [anon_sym_not] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, [559] = { + [sym_cell_path] = STATE(625), + [sym_path] = STATE(549), [sym_comment] = STATE(559), - [anon_sym_export] = ACTIONS(213), - [anon_sym_alias] = ACTIONS(213), - [anon_sym_let] = ACTIONS(213), - [anon_sym_let_DASHenv] = ACTIONS(213), - [anon_sym_mut] = ACTIONS(213), - [anon_sym_const] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [sym_cmd_identifier] = ACTIONS(213), - [anon_sym_LF] = ACTIONS(215), - [anon_sym_def] = ACTIONS(213), - [anon_sym_export_DASHenv] = ACTIONS(213), - [anon_sym_extern] = ACTIONS(213), - [anon_sym_module] = ACTIONS(213), - [anon_sym_use] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_error] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_break] = ACTIONS(213), - [anon_sym_continue] = ACTIONS(213), - [anon_sym_for] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_loop] = ACTIONS(213), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(213), - [anon_sym_if] = ACTIONS(213), - [anon_sym_match] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_DOT2] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(213), - [anon_sym_return] = ACTIONS(213), - [anon_sym_source] = ACTIONS(213), - [anon_sym_source_DASHenv] = ACTIONS(213), - [anon_sym_register] = ACTIONS(213), - [anon_sym_hide] = ACTIONS(213), - [anon_sym_hide_DASHenv] = ACTIONS(213), - [anon_sym_overlay] = ACTIONS(213), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_where] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(213), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(213), - [anon_sym_SLASH_SLASH] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(213), - [anon_sym_bit_DASHshr] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_not_DASHin] = ACTIONS(213), - [anon_sym_starts_DASHwith] = ACTIONS(213), - [anon_sym_ends_DASHwith] = ACTIONS(213), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_BANG_TILDE] = ACTIONS(213), - [anon_sym_bit_DASHand] = ACTIONS(213), - [anon_sym_bit_DASHxor] = ACTIONS(213), - [anon_sym_bit_DASHor] = ACTIONS(213), - [anon_sym_and] = ACTIONS(213), - [anon_sym_xor] = ACTIONS(213), - [anon_sym_or] = ACTIONS(213), - [anon_sym_not] = ACTIONS(213), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(213), - [aux_sym__val_number_token2] = ACTIONS(213), - [aux_sym__val_number_token3] = ACTIONS(213), - [aux_sym__val_number_token4] = ACTIONS(213), - [aux_sym__val_number_token5] = ACTIONS(213), - [aux_sym__val_number_token6] = ACTIONS(213), - [anon_sym_0b] = ACTIONS(213), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym__str_single_quotes] = ACTIONS(213), - [sym__str_back_ticks] = ACTIONS(213), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(213), + [ts_builtin_sym_end] = ACTIONS(1469), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_where] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1467), + [anon_sym_BANG_TILDE] = ACTIONS(1467), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [anon_sym_not] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, [560] = { [sym_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_alias] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_let_DASHenv] = ACTIONS(1454), - [anon_sym_mut] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_cmd_identifier] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_export_DASHenv] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_error] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_source] = ACTIONS(1454), - [anon_sym_source_DASHenv] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_hide_DASHenv] = ACTIONS(1454), - [anon_sym_overlay] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_where] = ACTIONS(1454), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [anon_sym_BANG_TILDE] = ACTIONS(1454), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [anon_sym_not] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_alias] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_let_DASHenv] = ACTIONS(1520), + [anon_sym_mut] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [sym_cmd_identifier] = ACTIONS(1520), + [anon_sym_LF] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1520), + [anon_sym_export_DASHenv] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_module] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_COLON] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1520), + [anon_sym_list] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_in] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_make] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_else] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1520), + [anon_sym_catch] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_source] = ACTIONS(1520), + [anon_sym_source_DASHenv] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_hide] = ACTIONS(1520), + [anon_sym_hide_DASHenv] = ACTIONS(1520), + [anon_sym_overlay] = ACTIONS(1520), + [anon_sym_new] = ACTIONS(1520), + [anon_sym_as] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_PLUS_EQ] = ACTIONS(1520), + [anon_sym_DASH_EQ] = ACTIONS(1520), + [anon_sym_STAR_EQ] = ACTIONS(1520), + [anon_sym_SLASH_EQ] = ACTIONS(1520), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), + [anon_sym_STAR_STAR] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_bit_DASHshl] = ACTIONS(1520), + [anon_sym_bit_DASHshr] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1520), + [anon_sym_BANG_EQ] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1520), + [anon_sym_not_DASHin] = ACTIONS(1520), + [anon_sym_starts_DASHwith] = ACTIONS(1520), + [anon_sym_ends_DASHwith] = ACTIONS(1520), + [anon_sym_EQ_TILDE] = ACTIONS(1520), + [anon_sym_BANG_TILDE] = ACTIONS(1520), + [anon_sym_bit_DASHand] = ACTIONS(1520), + [anon_sym_bit_DASHxor] = ACTIONS(1520), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1520), + [anon_sym_xor] = ACTIONS(1520), + [anon_sym_or] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1520), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [aux_sym__record_key_token2] = ACTIONS(1520), [anon_sym_POUND] = ACTIONS(105), }, [561] = { + [sym_cell_path] = STATE(666), + [sym_path] = STATE(542), [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(1507), - [anon_sym_alias] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_let_DASHenv] = ACTIONS(1507), - [anon_sym_mut] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [sym_cmd_identifier] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1509), - [anon_sym_def] = ACTIONS(1507), - [anon_sym_export_DASHenv] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_module] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_error] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT2] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_source] = ACTIONS(1507), - [anon_sym_source_DASHenv] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_hide] = ACTIONS(1507), - [anon_sym_hide_DASHenv] = ACTIONS(1507), - [anon_sym_overlay] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_where] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_BANG_TILDE] = ACTIONS(1507), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_not] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1507), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_0b] = ACTIONS(1507), - [anon_sym_0o] = ACTIONS(1507), - [anon_sym_0x] = ACTIONS(1507), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), + [ts_builtin_sym_end] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1459), + [anon_sym_alias] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(1459), + [anon_sym_let_DASHenv] = ACTIONS(1459), + [anon_sym_mut] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1459), + [sym_cmd_identifier] = ACTIONS(1459), + [anon_sym_LF] = ACTIONS(1461), + [anon_sym_def] = ACTIONS(1459), + [anon_sym_export_DASHenv] = ACTIONS(1459), + [anon_sym_extern] = ACTIONS(1459), + [anon_sym_module] = ACTIONS(1459), + [anon_sym_use] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_DOLLAR] = ACTIONS(1459), + [anon_sym_error] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_in] = ACTIONS(1459), + [anon_sym_loop] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_source] = ACTIONS(1459), + [anon_sym_source_DASHenv] = ACTIONS(1459), + [anon_sym_register] = ACTIONS(1459), + [anon_sym_hide] = ACTIONS(1459), + [anon_sym_hide_DASHenv] = ACTIONS(1459), + [anon_sym_overlay] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_where] = ACTIONS(1459), + [anon_sym_STAR_STAR] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_bit_DASHshl] = ACTIONS(1459), + [anon_sym_bit_DASHshr] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_LT2] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_not_DASHin] = ACTIONS(1459), + [anon_sym_starts_DASHwith] = ACTIONS(1459), + [anon_sym_ends_DASHwith] = ACTIONS(1459), + [anon_sym_EQ_TILDE] = ACTIONS(1459), + [anon_sym_BANG_TILDE] = ACTIONS(1459), + [anon_sym_bit_DASHand] = ACTIONS(1459), + [anon_sym_bit_DASHxor] = ACTIONS(1459), + [anon_sym_bit_DASHor] = ACTIONS(1459), + [anon_sym_and] = ACTIONS(1459), + [anon_sym_xor] = ACTIONS(1459), + [anon_sym_or] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_null] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [aux_sym__val_number_decimal_token1] = ACTIONS(1459), + [aux_sym__val_number_token1] = ACTIONS(1459), + [aux_sym__val_number_token2] = ACTIONS(1459), + [aux_sym__val_number_token3] = ACTIONS(1459), + [aux_sym__val_number_token4] = ACTIONS(1459), + [aux_sym__val_number_token5] = ACTIONS(1459), + [aux_sym__val_number_token6] = ACTIONS(1459), + [anon_sym_0b] = ACTIONS(1459), + [anon_sym_0o] = ACTIONS(1459), + [anon_sym_0x] = ACTIONS(1459), + [sym_val_date] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym__str_single_quotes] = ACTIONS(1459), + [sym__str_back_ticks] = ACTIONS(1459), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), [anon_sym_POUND] = ACTIONS(105), }, [562] = { + [sym_cell_path] = STATE(699), + [sym_path] = STATE(542), [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(1511), - [anon_sym_alias] = ACTIONS(1511), - [anon_sym_let] = ACTIONS(1511), - [anon_sym_let_DASHenv] = ACTIONS(1511), - [anon_sym_mut] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1511), - [sym_cmd_identifier] = ACTIONS(1511), - [anon_sym_LF] = ACTIONS(1513), - [anon_sym_def] = ACTIONS(1511), - [anon_sym_export_DASHenv] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym_module] = ACTIONS(1511), - [anon_sym_use] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1511), - [anon_sym_error] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_source] = ACTIONS(1511), - [anon_sym_source_DASHenv] = ACTIONS(1511), - [anon_sym_register] = ACTIONS(1511), - [anon_sym_hide] = ACTIONS(1511), - [anon_sym_hide_DASHenv] = ACTIONS(1511), - [anon_sym_overlay] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_where] = ACTIONS(1511), - [anon_sym_STAR_STAR] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_mod] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_bit_DASHshl] = ACTIONS(1511), - [anon_sym_bit_DASHshr] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_LT2] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1511), - [anon_sym_BANG_TILDE] = ACTIONS(1511), - [anon_sym_bit_DASHand] = ACTIONS(1511), - [anon_sym_bit_DASHxor] = ACTIONS(1511), - [anon_sym_bit_DASHor] = ACTIONS(1511), - [anon_sym_and] = ACTIONS(1511), - [anon_sym_xor] = ACTIONS(1511), - [anon_sym_or] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [aux_sym__val_number_decimal_token1] = ACTIONS(1511), - [aux_sym__val_number_token1] = ACTIONS(1511), - [aux_sym__val_number_token2] = ACTIONS(1511), - [aux_sym__val_number_token3] = ACTIONS(1511), - [aux_sym__val_number_token4] = ACTIONS(1511), - [aux_sym__val_number_token5] = ACTIONS(1511), - [aux_sym__val_number_token6] = ACTIONS(1511), - [anon_sym_0b] = ACTIONS(1511), - [anon_sym_0o] = ACTIONS(1511), - [anon_sym_0x] = ACTIONS(1511), - [sym_val_date] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [sym__str_single_quotes] = ACTIONS(1511), - [sym__str_back_ticks] = ACTIONS(1511), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), + [ts_builtin_sym_end] = ACTIONS(1476), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [sym_cmd_identifier] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1474), + [anon_sym_STAR_STAR] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_SLASH_SLASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_bit_DASHshl] = ACTIONS(1474), + [anon_sym_bit_DASHshr] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT2] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_not_DASHin] = ACTIONS(1474), + [anon_sym_starts_DASHwith] = ACTIONS(1474), + [anon_sym_ends_DASHwith] = ACTIONS(1474), + [anon_sym_EQ_TILDE] = ACTIONS(1474), + [anon_sym_BANG_TILDE] = ACTIONS(1474), + [anon_sym_bit_DASHand] = ACTIONS(1474), + [anon_sym_bit_DASHxor] = ACTIONS(1474), + [anon_sym_bit_DASHor] = ACTIONS(1474), + [anon_sym_and] = ACTIONS(1474), + [anon_sym_xor] = ACTIONS(1474), + [anon_sym_or] = ACTIONS(1474), + [anon_sym_not] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_token1] = ACTIONS(1474), + [aux_sym__val_number_token2] = ACTIONS(1474), + [aux_sym__val_number_token3] = ACTIONS(1474), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym__str_single_quotes] = ACTIONS(1474), + [sym__str_back_ticks] = ACTIONS(1474), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1474), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1474), [anon_sym_POUND] = ACTIONS(105), }, [563] = { [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(1515), - [anon_sym_alias] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_let_DASHenv] = ACTIONS(1515), - [anon_sym_mut] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [sym_cmd_identifier] = ACTIONS(1515), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_def] = ACTIONS(1515), - [anon_sym_export_DASHenv] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_module] = ACTIONS(1515), - [anon_sym_use] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_error] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_DOT2] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_source] = ACTIONS(1515), - [anon_sym_source_DASHenv] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_hide] = ACTIONS(1515), - [anon_sym_hide_DASHenv] = ACTIONS(1515), - [anon_sym_overlay] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_where] = ACTIONS(1515), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_not] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1515), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1515), - [anon_sym_0o] = ACTIONS(1515), - [anon_sym_0x] = ACTIONS(1515), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_export] = ACTIONS(1524), + [anon_sym_alias] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_let_DASHenv] = ACTIONS(1524), + [anon_sym_mut] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [sym_cmd_identifier] = ACTIONS(1524), + [anon_sym_LF] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1524), + [anon_sym_export_DASHenv] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_module] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_COLON] = ACTIONS(1524), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_error] = ACTIONS(1524), + [anon_sym_list] = ACTIONS(1524), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_in] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_make] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1524), + [anon_sym_catch] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_source] = ACTIONS(1524), + [anon_sym_source_DASHenv] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_hide] = ACTIONS(1524), + [anon_sym_hide_DASHenv] = ACTIONS(1524), + [anon_sym_overlay] = ACTIONS(1524), + [anon_sym_new] = ACTIONS(1524), + [anon_sym_as] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_PLUS_EQ] = ACTIONS(1524), + [anon_sym_DASH_EQ] = ACTIONS(1524), + [anon_sym_STAR_EQ] = ACTIONS(1524), + [anon_sym_SLASH_EQ] = ACTIONS(1524), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), + [anon_sym_STAR_STAR] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_SLASH_SLASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_bit_DASHshl] = ACTIONS(1524), + [anon_sym_bit_DASHshr] = ACTIONS(1524), + [anon_sym_EQ_EQ] = ACTIONS(1524), + [anon_sym_BANG_EQ] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1524), + [anon_sym_LT_EQ] = ACTIONS(1524), + [anon_sym_GT_EQ] = ACTIONS(1524), + [anon_sym_not_DASHin] = ACTIONS(1524), + [anon_sym_starts_DASHwith] = ACTIONS(1524), + [anon_sym_ends_DASHwith] = ACTIONS(1524), + [anon_sym_EQ_TILDE] = ACTIONS(1524), + [anon_sym_BANG_TILDE] = ACTIONS(1524), + [anon_sym_bit_DASHand] = ACTIONS(1524), + [anon_sym_bit_DASHxor] = ACTIONS(1524), + [anon_sym_bit_DASHor] = ACTIONS(1524), + [anon_sym_and] = ACTIONS(1524), + [anon_sym_xor] = ACTIONS(1524), + [anon_sym_or] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1524), + [aux_sym__val_number_token5] = ACTIONS(1524), + [aux_sym__val_number_token6] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [aux_sym__record_key_token2] = ACTIONS(1524), [anon_sym_POUND] = ACTIONS(105), }, [564] = { + [sym_path] = STATE(649), [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1369), - [anon_sym_BANG_TILDE] = ACTIONS(1369), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token3] = ACTIONS(1379), + [aux_sym_cell_path_repeat1] = STATE(546), + [ts_builtin_sym_end] = ACTIONS(1409), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_alias] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_let_DASHenv] = ACTIONS(1407), + [anon_sym_mut] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_cmd_identifier] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_def] = ACTIONS(1407), + [anon_sym_export_DASHenv] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_error] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_source] = ACTIONS(1407), + [anon_sym_source_DASHenv] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), + [anon_sym_hide_DASHenv] = ACTIONS(1407), + [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_where] = ACTIONS(1407), + [anon_sym_STAR_STAR] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_bit_DASHshl] = ACTIONS(1407), + [anon_sym_bit_DASHshr] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1407), + [anon_sym_BANG_EQ] = ACTIONS(1407), + [anon_sym_LT2] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1407), + [anon_sym_not_DASHin] = ACTIONS(1407), + [anon_sym_starts_DASHwith] = ACTIONS(1407), + [anon_sym_ends_DASHwith] = ACTIONS(1407), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1407), + [anon_sym_bit_DASHxor] = ACTIONS(1407), + [anon_sym_bit_DASHor] = ACTIONS(1407), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_xor] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1407), + [anon_sym_not] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), [anon_sym_POUND] = ACTIONS(105), }, [565] = { @@ -144837,6 +146423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1524), [anon_sym_RBRACE] = ACTIONS(1524), [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT2] = ACTIONS(1526), [anon_sym_try] = ACTIONS(1524), [anon_sym_return] = ACTIONS(1524), [anon_sym_source] = ACTIONS(1524), @@ -144896,4422 +146483,3699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [566] = { [sym_comment] = STATE(566), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_not_DASHin] = ACTIONS(1536), - [anon_sym_starts_DASHwith] = ACTIONS(1536), - [anon_sym_ends_DASHwith] = ACTIONS(1536), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1546), - [anon_sym_bit_DASHxor] = ACTIONS(1548), - [anon_sym_bit_DASHor] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1554), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1421), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_where] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(1528), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, [567] = { [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_alias] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_let_DASHenv] = ACTIONS(1509), + [anon_sym_mut] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [sym_cmd_identifier] = ACTIONS(1509), + [anon_sym_LF] = ACTIONS(1511), + [anon_sym_def] = ACTIONS(1509), + [anon_sym_export_DASHenv] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1509), + [anon_sym_error] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1511), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_source] = ACTIONS(1509), + [anon_sym_source_DASHenv] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_hide] = ACTIONS(1509), + [anon_sym_hide_DASHenv] = ACTIONS(1509), + [anon_sym_overlay] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1509), + [anon_sym_STAR_STAR] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_bit_DASHshl] = ACTIONS(1509), + [anon_sym_bit_DASHshr] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_not_DASHin] = ACTIONS(1509), + [anon_sym_starts_DASHwith] = ACTIONS(1509), + [anon_sym_ends_DASHwith] = ACTIONS(1509), + [anon_sym_EQ_TILDE] = ACTIONS(1509), + [anon_sym_BANG_TILDE] = ACTIONS(1509), + [anon_sym_bit_DASHand] = ACTIONS(1509), + [anon_sym_bit_DASHxor] = ACTIONS(1509), + [anon_sym_bit_DASHor] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1509), + [anon_sym_xor] = ACTIONS(1509), + [anon_sym_or] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [aux_sym__val_number_decimal_token1] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1509), + [aux_sym__val_number_token5] = ACTIONS(1509), + [aux_sym__val_number_token6] = ACTIONS(1509), + [anon_sym_0b] = ACTIONS(1509), + [anon_sym_0o] = ACTIONS(1509), + [anon_sym_0x] = ACTIONS(1509), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), [anon_sym_POUND] = ACTIONS(105), }, [568] = { [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_not_DASHin] = ACTIONS(1536), - [anon_sym_starts_DASHwith] = ACTIONS(1536), - [anon_sym_ends_DASHwith] = ACTIONS(1536), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1546), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1375), + [anon_sym_BANG_TILDE] = ACTIONS(1375), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token3] = ACTIONS(1385), [anon_sym_POUND] = ACTIONS(105), }, [569] = { [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_not_DASHin] = ACTIONS(1536), - [anon_sym_starts_DASHwith] = ACTIONS(1536), - [anon_sym_ends_DASHwith] = ACTIONS(1536), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1546), - [anon_sym_bit_DASHxor] = ACTIONS(1548), - [anon_sym_bit_DASHor] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(213), + [anon_sym_alias] = ACTIONS(213), + [anon_sym_let] = ACTIONS(213), + [anon_sym_let_DASHenv] = ACTIONS(213), + [anon_sym_mut] = ACTIONS(213), + [anon_sym_const] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(213), + [sym_cmd_identifier] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(215), + [anon_sym_def] = ACTIONS(213), + [anon_sym_export_DASHenv] = ACTIONS(213), + [anon_sym_extern] = ACTIONS(213), + [anon_sym_module] = ACTIONS(213), + [anon_sym_use] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_error] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_break] = ACTIONS(213), + [anon_sym_continue] = ACTIONS(213), + [anon_sym_for] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_loop] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [anon_sym_do] = ACTIONS(213), + [anon_sym_if] = ACTIONS(213), + [anon_sym_match] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_try] = ACTIONS(213), + [anon_sym_return] = ACTIONS(213), + [anon_sym_source] = ACTIONS(213), + [anon_sym_source_DASHenv] = ACTIONS(213), + [anon_sym_register] = ACTIONS(213), + [anon_sym_hide] = ACTIONS(213), + [anon_sym_hide_DASHenv] = ACTIONS(213), + [anon_sym_overlay] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(213), + [anon_sym_bit_DASHshr] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_not_DASHin] = ACTIONS(213), + [anon_sym_starts_DASHwith] = ACTIONS(213), + [anon_sym_ends_DASHwith] = ACTIONS(213), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_BANG_TILDE] = ACTIONS(213), + [anon_sym_bit_DASHand] = ACTIONS(213), + [anon_sym_bit_DASHxor] = ACTIONS(213), + [anon_sym_bit_DASHor] = ACTIONS(213), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [anon_sym_not] = ACTIONS(213), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(213), + [aux_sym__val_number_token2] = ACTIONS(213), + [aux_sym__val_number_token3] = ACTIONS(213), + [aux_sym__val_number_token4] = ACTIONS(213), + [aux_sym__val_number_token5] = ACTIONS(213), + [aux_sym__val_number_token6] = ACTIONS(213), + [anon_sym_0b] = ACTIONS(213), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [sym__str_single_quotes] = ACTIONS(213), + [sym__str_back_ticks] = ACTIONS(213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(105), }, [570] = { [sym_comment] = STATE(570), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT2] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_QMARK2] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [571] = { [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1421), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_where] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(1528), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, [572] = { [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_alias] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_let_DASHenv] = ACTIONS(1454), - [anon_sym_mut] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_cmd_identifier] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_export_DASHenv] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_error] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_source] = ACTIONS(1454), - [anon_sym_source_DASHenv] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_hide_DASHenv] = ACTIONS(1454), - [anon_sym_overlay] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_where] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [anon_sym_BANG_TILDE] = ACTIONS(1454), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [anon_sym_not] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT2] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_where] = ACTIONS(1441), + [anon_sym_QMARK2] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1441), + [anon_sym_BANG_TILDE] = ACTIONS(1441), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(105), }, [573] = { [sym_comment] = STATE(573), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [574] = { - [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), [anon_sym_GT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), [anon_sym_EQ_EQ] = ACTIONS(1532), [anon_sym_BANG_EQ] = ACTIONS(1532), [anon_sym_LT2] = ACTIONS(1532), [anon_sym_LT_EQ] = ACTIONS(1532), [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_not_DASHin] = ACTIONS(1536), - [anon_sym_starts_DASHwith] = ACTIONS(1536), - [anon_sym_ends_DASHwith] = ACTIONS(1536), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1546), - [anon_sym_bit_DASHxor] = ACTIONS(1548), - [anon_sym_bit_DASHor] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1532), + [anon_sym_BANG_TILDE] = ACTIONS(1532), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [anon_sym_not] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(105), + }, + [574] = { + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_alias] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_let_DASHenv] = ACTIONS(1520), + [anon_sym_mut] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [sym_cmd_identifier] = ACTIONS(1520), + [anon_sym_LF] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1520), + [anon_sym_export_DASHenv] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_module] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_in] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_source] = ACTIONS(1520), + [anon_sym_source_DASHenv] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_hide] = ACTIONS(1520), + [anon_sym_hide_DASHenv] = ACTIONS(1520), + [anon_sym_overlay] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_where] = ACTIONS(1520), + [anon_sym_STAR_STAR] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_bit_DASHshl] = ACTIONS(1520), + [anon_sym_bit_DASHshr] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1520), + [anon_sym_BANG_EQ] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1520), + [anon_sym_not_DASHin] = ACTIONS(1520), + [anon_sym_starts_DASHwith] = ACTIONS(1520), + [anon_sym_ends_DASHwith] = ACTIONS(1520), + [anon_sym_EQ_TILDE] = ACTIONS(1520), + [anon_sym_BANG_TILDE] = ACTIONS(1520), + [anon_sym_bit_DASHand] = ACTIONS(1520), + [anon_sym_bit_DASHxor] = ACTIONS(1520), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1520), + [anon_sym_xor] = ACTIONS(1520), + [anon_sym_or] = ACTIONS(1520), + [anon_sym_not] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1520), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1520), + [anon_sym_0x] = ACTIONS(1520), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), [anon_sym_POUND] = ACTIONS(105), }, [575] = { [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [sym_cmd_identifier] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_where] = ACTIONS(1536), [anon_sym_STAR_STAR] = ACTIONS(1540), [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_not_DASHin] = ACTIONS(1536), - [anon_sym_starts_DASHwith] = ACTIONS(1536), - [anon_sym_ends_DASHwith] = ACTIONS(1536), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(105), }, [576] = { [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [sym_cmd_identifier] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_where] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1513), + [anon_sym_BANG_TILDE] = ACTIONS(1513), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(105), }, [577] = { [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_where] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_BANG_TILDE] = ACTIONS(1545), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [aux_sym_unquoted_token5] = ACTIONS(1549), [anon_sym_POUND] = ACTIONS(105), }, [578] = { [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(1560), - [anon_sym_alias] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_let_DASHenv] = ACTIONS(1560), - [anon_sym_mut] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1560), - [sym_cmd_identifier] = ACTIONS(1560), - [anon_sym_LF] = ACTIONS(1562), - [anon_sym_def] = ACTIONS(1560), - [anon_sym_export_DASHenv] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_module] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_error] = ACTIONS(1560), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_DOT] = ACTIONS(1560), - [anon_sym_try] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_source] = ACTIONS(1560), - [anon_sym_source_DASHenv] = ACTIONS(1560), - [anon_sym_register] = ACTIONS(1560), - [anon_sym_hide] = ACTIONS(1560), - [anon_sym_hide_DASHenv] = ACTIONS(1560), - [anon_sym_overlay] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_where] = ACTIONS(1560), - [anon_sym_STAR_STAR] = ACTIONS(1560), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_SLASH_SLASH] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_bit_DASHshl] = ACTIONS(1560), - [anon_sym_bit_DASHshr] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1560), - [anon_sym_BANG_EQ] = ACTIONS(1560), - [anon_sym_LT2] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1560), - [anon_sym_not_DASHin] = ACTIONS(1560), - [anon_sym_starts_DASHwith] = ACTIONS(1560), - [anon_sym_ends_DASHwith] = ACTIONS(1560), - [anon_sym_EQ_TILDE] = ACTIONS(1560), - [anon_sym_BANG_TILDE] = ACTIONS(1560), - [anon_sym_bit_DASHand] = ACTIONS(1560), - [anon_sym_bit_DASHxor] = ACTIONS(1560), - [anon_sym_bit_DASHor] = ACTIONS(1560), - [anon_sym_and] = ACTIONS(1560), - [anon_sym_xor] = ACTIONS(1560), - [anon_sym_or] = ACTIONS(1560), - [anon_sym_not] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_token1] = ACTIONS(1560), - [aux_sym__val_number_token2] = ACTIONS(1560), - [aux_sym__val_number_token3] = ACTIONS(1560), - [aux_sym__val_number_token4] = ACTIONS(1560), - [aux_sym__val_number_token5] = ACTIONS(1560), - [aux_sym__val_number_token6] = ACTIONS(1560), - [anon_sym_0b] = ACTIONS(1560), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [sym__str_single_quotes] = ACTIONS(1560), - [sym__str_back_ticks] = ACTIONS(1560), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1560), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1560), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_not_DASHin] = ACTIONS(1559), + [anon_sym_starts_DASHwith] = ACTIONS(1559), + [anon_sym_ends_DASHwith] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_BANG_TILDE] = ACTIONS(1567), + [anon_sym_bit_DASHand] = ACTIONS(1569), + [anon_sym_bit_DASHxor] = ACTIONS(1571), + [anon_sym_bit_DASHor] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1577), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [579] = { [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_alias] = ACTIONS(1564), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_let_DASHenv] = ACTIONS(1564), - [anon_sym_mut] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1564), - [sym_cmd_identifier] = ACTIONS(1564), - [anon_sym_LF] = ACTIONS(1566), - [anon_sym_def] = ACTIONS(1564), - [anon_sym_export_DASHenv] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_use] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1564), - [anon_sym_error] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_in] = ACTIONS(1564), - [anon_sym_loop] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(1564), - [anon_sym_try] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_source] = ACTIONS(1564), - [anon_sym_source_DASHenv] = ACTIONS(1564), - [anon_sym_register] = ACTIONS(1564), - [anon_sym_hide] = ACTIONS(1564), - [anon_sym_hide_DASHenv] = ACTIONS(1564), - [anon_sym_overlay] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_where] = ACTIONS(1564), - [anon_sym_STAR_STAR] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_mod] = ACTIONS(1564), - [anon_sym_SLASH_SLASH] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_bit_DASHshl] = ACTIONS(1564), - [anon_sym_bit_DASHshr] = ACTIONS(1564), - [anon_sym_EQ_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1564), - [anon_sym_LT2] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_not_DASHin] = ACTIONS(1564), - [anon_sym_starts_DASHwith] = ACTIONS(1564), - [anon_sym_ends_DASHwith] = ACTIONS(1564), - [anon_sym_EQ_TILDE] = ACTIONS(1564), - [anon_sym_BANG_TILDE] = ACTIONS(1564), - [anon_sym_bit_DASHand] = ACTIONS(1564), - [anon_sym_bit_DASHxor] = ACTIONS(1564), - [anon_sym_bit_DASHor] = ACTIONS(1564), - [anon_sym_and] = ACTIONS(1564), - [anon_sym_xor] = ACTIONS(1564), - [anon_sym_or] = ACTIONS(1564), - [anon_sym_not] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_token1] = ACTIONS(1564), - [aux_sym__val_number_token2] = ACTIONS(1564), - [aux_sym__val_number_token3] = ACTIONS(1564), - [aux_sym__val_number_token4] = ACTIONS(1564), - [aux_sym__val_number_token5] = ACTIONS(1564), - [aux_sym__val_number_token6] = ACTIONS(1564), - [anon_sym_0b] = ACTIONS(1564), - [anon_sym_0o] = ACTIONS(1564), - [anon_sym_0x] = ACTIONS(1564), - [sym_val_date] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym__str_single_quotes] = ACTIONS(1564), - [sym__str_back_ticks] = ACTIONS(1564), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1564), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_where] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1441), + [anon_sym_BANG_TILDE] = ACTIONS(1441), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(105), }, [580] = { [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_alias] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_let_DASHenv] = ACTIONS(1568), - [anon_sym_mut] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1568), - [sym_cmd_identifier] = ACTIONS(1568), - [anon_sym_LF] = ACTIONS(1570), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_export_DASHenv] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_use] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1568), - [anon_sym_DOLLAR] = ACTIONS(1568), - [anon_sym_error] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_in] = ACTIONS(1568), - [anon_sym_loop] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_source] = ACTIONS(1568), - [anon_sym_source_DASHenv] = ACTIONS(1568), - [anon_sym_register] = ACTIONS(1568), - [anon_sym_hide] = ACTIONS(1568), - [anon_sym_hide_DASHenv] = ACTIONS(1568), - [anon_sym_overlay] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_where] = ACTIONS(1568), - [anon_sym_STAR_STAR] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1568), - [anon_sym_mod] = ACTIONS(1568), - [anon_sym_SLASH_SLASH] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_bit_DASHshl] = ACTIONS(1568), - [anon_sym_bit_DASHshr] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1568), - [anon_sym_BANG_EQ] = ACTIONS(1568), - [anon_sym_LT2] = ACTIONS(1568), - [anon_sym_LT_EQ] = ACTIONS(1568), - [anon_sym_GT_EQ] = ACTIONS(1568), - [anon_sym_not_DASHin] = ACTIONS(1568), - [anon_sym_starts_DASHwith] = ACTIONS(1568), - [anon_sym_ends_DASHwith] = ACTIONS(1568), - [anon_sym_EQ_TILDE] = ACTIONS(1568), - [anon_sym_BANG_TILDE] = ACTIONS(1568), - [anon_sym_bit_DASHand] = ACTIONS(1568), - [anon_sym_bit_DASHxor] = ACTIONS(1568), - [anon_sym_bit_DASHor] = ACTIONS(1568), - [anon_sym_and] = ACTIONS(1568), - [anon_sym_xor] = ACTIONS(1568), - [anon_sym_or] = ACTIONS(1568), - [anon_sym_not] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [aux_sym__val_number_decimal_token1] = ACTIONS(1568), - [aux_sym__val_number_token1] = ACTIONS(1568), - [aux_sym__val_number_token2] = ACTIONS(1568), - [aux_sym__val_number_token3] = ACTIONS(1568), - [aux_sym__val_number_token4] = ACTIONS(1568), - [aux_sym__val_number_token5] = ACTIONS(1568), - [aux_sym__val_number_token6] = ACTIONS(1568), - [anon_sym_0b] = ACTIONS(1568), - [anon_sym_0o] = ACTIONS(1568), - [anon_sym_0x] = ACTIONS(1568), - [sym_val_date] = ACTIONS(1568), - [anon_sym_DQUOTE] = ACTIONS(1568), - [sym__str_single_quotes] = ACTIONS(1568), - [sym__str_back_ticks] = ACTIONS(1568), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_not_DASHin] = ACTIONS(1559), + [anon_sym_starts_DASHwith] = ACTIONS(1559), + [anon_sym_ends_DASHwith] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_BANG_TILDE] = ACTIONS(1567), + [anon_sym_bit_DASHand] = ACTIONS(1569), + [anon_sym_bit_DASHxor] = ACTIONS(1571), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [581] = { [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [582] = { [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [583] = { [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1528), - [anon_sym_mod] = ACTIONS(1528), - [anon_sym_SLASH_SLASH] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1583), + [anon_sym_alias] = ACTIONS(1583), + [anon_sym_let] = ACTIONS(1583), + [anon_sym_let_DASHenv] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [sym_cmd_identifier] = ACTIONS(1583), + [anon_sym_LF] = ACTIONS(1585), + [anon_sym_def] = ACTIONS(1583), + [anon_sym_export_DASHenv] = ACTIONS(1583), + [anon_sym_extern] = ACTIONS(1583), + [anon_sym_module] = ACTIONS(1583), + [anon_sym_use] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(1583), + [anon_sym_error] = ACTIONS(1583), + [anon_sym_GT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_in] = ACTIONS(1583), + [anon_sym_loop] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_source] = ACTIONS(1583), + [anon_sym_source_DASHenv] = ACTIONS(1583), + [anon_sym_register] = ACTIONS(1583), + [anon_sym_hide] = ACTIONS(1583), + [anon_sym_hide_DASHenv] = ACTIONS(1583), + [anon_sym_overlay] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_where] = ACTIONS(1583), + [anon_sym_STAR_STAR] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_mod] = ACTIONS(1583), + [anon_sym_SLASH_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_bit_DASHshl] = ACTIONS(1583), + [anon_sym_bit_DASHshr] = ACTIONS(1583), + [anon_sym_EQ_EQ] = ACTIONS(1583), + [anon_sym_BANG_EQ] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1583), + [anon_sym_GT_EQ] = ACTIONS(1583), + [anon_sym_not_DASHin] = ACTIONS(1583), + [anon_sym_starts_DASHwith] = ACTIONS(1583), + [anon_sym_ends_DASHwith] = ACTIONS(1583), + [anon_sym_EQ_TILDE] = ACTIONS(1583), + [anon_sym_BANG_TILDE] = ACTIONS(1583), + [anon_sym_bit_DASHand] = ACTIONS(1583), + [anon_sym_bit_DASHxor] = ACTIONS(1583), + [anon_sym_bit_DASHor] = ACTIONS(1583), + [anon_sym_and] = ACTIONS(1583), + [anon_sym_xor] = ACTIONS(1583), + [anon_sym_or] = ACTIONS(1583), + [anon_sym_not] = ACTIONS(1583), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1583), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1583), + [anon_sym_0o] = ACTIONS(1583), + [anon_sym_0x] = ACTIONS(1583), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [anon_sym_CARET] = ACTIONS(1583), [anon_sym_POUND] = ACTIONS(105), }, [584] = { [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [sym_cmd_identifier] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_where] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1513), + [anon_sym_BANG_TILDE] = ACTIONS(1513), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(105), }, [585] = { [sym_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1369), - [anon_sym_BANG_TILDE] = ACTIONS(1369), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token3] = ACTIONS(1387), + [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), + [anon_sym_SEMI] = ACTIONS(1587), + [sym_cmd_identifier] = ACTIONS(1587), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_error] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT] = ACTIONS(1587), + [anon_sym_try] = 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_STAR] = ACTIONS(1587), + [anon_sym_where] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1587), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_not] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1587), + [anon_sym_0x] = ACTIONS(1587), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), [anon_sym_POUND] = ACTIONS(105), }, [586] = { [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_not_DASHin] = ACTIONS(1536), - [anon_sym_starts_DASHwith] = ACTIONS(1536), - [anon_sym_ends_DASHwith] = ACTIONS(1536), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1546), - [anon_sym_bit_DASHxor] = ACTIONS(1548), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1591), + [anon_sym_alias] = ACTIONS(1591), + [anon_sym_let] = ACTIONS(1591), + [anon_sym_let_DASHenv] = ACTIONS(1591), + [anon_sym_mut] = ACTIONS(1591), + [anon_sym_const] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [sym_cmd_identifier] = ACTIONS(1591), + [anon_sym_LF] = ACTIONS(1593), + [anon_sym_def] = ACTIONS(1591), + [anon_sym_export_DASHenv] = ACTIONS(1591), + [anon_sym_extern] = ACTIONS(1591), + [anon_sym_module] = ACTIONS(1591), + [anon_sym_use] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_break] = ACTIONS(1591), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_for] = ACTIONS(1591), + [anon_sym_in] = ACTIONS(1591), + [anon_sym_loop] = ACTIONS(1591), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1591), + [anon_sym_match] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1591), + [anon_sym_return] = ACTIONS(1591), + [anon_sym_source] = ACTIONS(1591), + [anon_sym_source_DASHenv] = ACTIONS(1591), + [anon_sym_register] = ACTIONS(1591), + [anon_sym_hide] = ACTIONS(1591), + [anon_sym_hide_DASHenv] = ACTIONS(1591), + [anon_sym_overlay] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_where] = ACTIONS(1591), + [anon_sym_STAR_STAR] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_mod] = ACTIONS(1591), + [anon_sym_SLASH_SLASH] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_bit_DASHshl] = ACTIONS(1591), + [anon_sym_bit_DASHshr] = ACTIONS(1591), + [anon_sym_EQ_EQ] = ACTIONS(1591), + [anon_sym_BANG_EQ] = ACTIONS(1591), + [anon_sym_LT2] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_not_DASHin] = ACTIONS(1591), + [anon_sym_starts_DASHwith] = ACTIONS(1591), + [anon_sym_ends_DASHwith] = ACTIONS(1591), + [anon_sym_EQ_TILDE] = ACTIONS(1591), + [anon_sym_BANG_TILDE] = ACTIONS(1591), + [anon_sym_bit_DASHand] = ACTIONS(1591), + [anon_sym_bit_DASHxor] = ACTIONS(1591), + [anon_sym_bit_DASHor] = ACTIONS(1591), + [anon_sym_and] = ACTIONS(1591), + [anon_sym_xor] = ACTIONS(1591), + [anon_sym_or] = ACTIONS(1591), + [anon_sym_not] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1591), + [aux_sym__val_number_token5] = ACTIONS(1591), + [aux_sym__val_number_token6] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1591), + [anon_sym_0o] = ACTIONS(1591), + [anon_sym_0x] = ACTIONS(1591), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_CARET] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(105), }, [587] = { [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(1572), - [anon_sym_alias] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(1572), - [anon_sym_let_DASHenv] = ACTIONS(1572), - [anon_sym_mut] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_cmd_identifier] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_def] = ACTIONS(1572), - [anon_sym_export_DASHenv] = ACTIONS(1572), - [anon_sym_extern] = ACTIONS(1572), - [anon_sym_module] = ACTIONS(1572), - [anon_sym_use] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_error] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1572), - [anon_sym_loop] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1572), - [anon_sym_try] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_source] = ACTIONS(1572), - [anon_sym_source_DASHenv] = ACTIONS(1572), - [anon_sym_register] = ACTIONS(1572), - [anon_sym_hide] = ACTIONS(1572), - [anon_sym_hide_DASHenv] = ACTIONS(1572), - [anon_sym_overlay] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_where] = ACTIONS(1572), - [anon_sym_STAR_STAR] = ACTIONS(1572), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_SLASH] = ACTIONS(1572), - [anon_sym_mod] = ACTIONS(1572), - [anon_sym_SLASH_SLASH] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_bit_DASHshl] = ACTIONS(1572), - [anon_sym_bit_DASHshr] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT2] = ACTIONS(1572), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_not_DASHin] = ACTIONS(1572), - [anon_sym_starts_DASHwith] = ACTIONS(1572), - [anon_sym_ends_DASHwith] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1572), - [anon_sym_BANG_TILDE] = ACTIONS(1572), - [anon_sym_bit_DASHand] = ACTIONS(1572), - [anon_sym_bit_DASHxor] = ACTIONS(1572), - [anon_sym_bit_DASHor] = ACTIONS(1572), - [anon_sym_and] = ACTIONS(1572), - [anon_sym_xor] = ACTIONS(1572), - [anon_sym_or] = ACTIONS(1572), - [anon_sym_not] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [aux_sym__val_number_decimal_token1] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [aux_sym__val_number_token4] = ACTIONS(1572), - [aux_sym__val_number_token5] = ACTIONS(1572), - [aux_sym__val_number_token6] = ACTIONS(1572), - [anon_sym_0b] = ACTIONS(1572), - [anon_sym_0o] = ACTIONS(1572), - [anon_sym_0x] = ACTIONS(1572), - [sym_val_date] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), - [anon_sym_CARET] = ACTIONS(1572), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_not_DASHin] = ACTIONS(1559), + [anon_sym_starts_DASHwith] = ACTIONS(1559), + [anon_sym_ends_DASHwith] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_BANG_TILDE] = ACTIONS(1567), + [anon_sym_bit_DASHand] = ACTIONS(1569), + [anon_sym_bit_DASHxor] = ACTIONS(1571), + [anon_sym_bit_DASHor] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [588] = { [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(1576), - [anon_sym_alias] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_let_DASHenv] = ACTIONS(1576), - [anon_sym_mut] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_cmd_identifier] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_def] = ACTIONS(1576), - [anon_sym_export_DASHenv] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_error] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_in] = ACTIONS(1576), - [anon_sym_loop] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1576), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_try] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_source] = ACTIONS(1576), - [anon_sym_source_DASHenv] = ACTIONS(1576), - [anon_sym_register] = ACTIONS(1576), - [anon_sym_hide] = ACTIONS(1576), - [anon_sym_hide_DASHenv] = ACTIONS(1576), - [anon_sym_overlay] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_where] = ACTIONS(1576), - [anon_sym_STAR_STAR] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1576), - [anon_sym_SLASH] = ACTIONS(1576), - [anon_sym_mod] = ACTIONS(1576), - [anon_sym_SLASH_SLASH] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_bit_DASHshl] = ACTIONS(1576), - [anon_sym_bit_DASHshr] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1576), - [anon_sym_BANG_EQ] = ACTIONS(1576), - [anon_sym_LT2] = ACTIONS(1576), - [anon_sym_LT_EQ] = ACTIONS(1576), - [anon_sym_GT_EQ] = ACTIONS(1576), - [anon_sym_not_DASHin] = ACTIONS(1576), - [anon_sym_starts_DASHwith] = ACTIONS(1576), - [anon_sym_ends_DASHwith] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1576), - [anon_sym_BANG_TILDE] = ACTIONS(1576), - [anon_sym_bit_DASHand] = ACTIONS(1576), - [anon_sym_bit_DASHxor] = ACTIONS(1576), - [anon_sym_bit_DASHor] = ACTIONS(1576), - [anon_sym_and] = ACTIONS(1576), - [anon_sym_xor] = ACTIONS(1576), - [anon_sym_or] = ACTIONS(1576), - [anon_sym_not] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [aux_sym__val_number_decimal_token1] = ACTIONS(1576), - [aux_sym__val_number_token1] = ACTIONS(1576), - [aux_sym__val_number_token2] = ACTIONS(1576), - [aux_sym__val_number_token3] = ACTIONS(1576), - [aux_sym__val_number_token4] = ACTIONS(1576), - [aux_sym__val_number_token5] = ACTIONS(1576), - [aux_sym__val_number_token6] = ACTIONS(1576), - [anon_sym_0b] = ACTIONS(1576), - [anon_sym_0o] = ACTIONS(1576), - [anon_sym_0x] = ACTIONS(1576), - [sym_val_date] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [sym__str_single_quotes] = ACTIONS(1576), - [sym__str_back_ticks] = ACTIONS(1576), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), - [anon_sym_CARET] = ACTIONS(1576), + [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), + [anon_sym_SEMI] = ACTIONS(1595), + [sym_cmd_identifier] = ACTIONS(1595), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_DOLLAR] = ACTIONS(1595), + [anon_sym_error] = ACTIONS(1595), + [anon_sym_GT] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_break] = ACTIONS(1595), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_for] = ACTIONS(1595), + [anon_sym_in] = ACTIONS(1595), + [anon_sym_loop] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1595), + [anon_sym_match] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_RBRACE] = ACTIONS(1595), + [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_try] = 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_STAR] = ACTIONS(1595), + [anon_sym_where] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_SLASH] = ACTIONS(1595), + [anon_sym_mod] = ACTIONS(1595), + [anon_sym_SLASH_SLASH] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_bit_DASHshl] = ACTIONS(1595), + [anon_sym_bit_DASHshr] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1595), + [anon_sym_BANG_EQ] = ACTIONS(1595), + [anon_sym_LT2] = ACTIONS(1595), + [anon_sym_LT_EQ] = ACTIONS(1595), + [anon_sym_GT_EQ] = ACTIONS(1595), + [anon_sym_not_DASHin] = ACTIONS(1595), + [anon_sym_starts_DASHwith] = ACTIONS(1595), + [anon_sym_ends_DASHwith] = ACTIONS(1595), + [anon_sym_EQ_TILDE] = ACTIONS(1595), + [anon_sym_BANG_TILDE] = ACTIONS(1595), + [anon_sym_bit_DASHand] = ACTIONS(1595), + [anon_sym_bit_DASHxor] = ACTIONS(1595), + [anon_sym_bit_DASHor] = ACTIONS(1595), + [anon_sym_and] = ACTIONS(1595), + [anon_sym_xor] = ACTIONS(1595), + [anon_sym_or] = ACTIONS(1595), + [anon_sym_not] = ACTIONS(1595), + [anon_sym_null] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1595), + [anon_sym_false] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = 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), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [sym__str_single_quotes] = ACTIONS(1595), + [sym__str_back_ticks] = ACTIONS(1595), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1595), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), [anon_sym_POUND] = ACTIONS(105), }, [589] = { [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_alias] = ACTIONS(1580), - [anon_sym_let] = ACTIONS(1580), - [anon_sym_let_DASHenv] = ACTIONS(1580), - [anon_sym_mut] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [sym_cmd_identifier] = ACTIONS(1580), - [anon_sym_LF] = ACTIONS(1582), - [anon_sym_def] = ACTIONS(1580), - [anon_sym_export_DASHenv] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_use] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_DOLLAR] = ACTIONS(1580), - [anon_sym_error] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1580), - [anon_sym_loop] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_match] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_DOT] = ACTIONS(1580), - [anon_sym_try] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_source] = ACTIONS(1580), - [anon_sym_source_DASHenv] = ACTIONS(1580), - [anon_sym_register] = ACTIONS(1580), - [anon_sym_hide] = ACTIONS(1580), - [anon_sym_hide_DASHenv] = ACTIONS(1580), - [anon_sym_overlay] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_where] = ACTIONS(1580), - [anon_sym_STAR_STAR] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [anon_sym_SLASH] = ACTIONS(1580), - [anon_sym_mod] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_bit_DASHshl] = ACTIONS(1580), - [anon_sym_bit_DASHshr] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1580), - [anon_sym_LT2] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_not_DASHin] = ACTIONS(1580), - [anon_sym_starts_DASHwith] = ACTIONS(1580), - [anon_sym_ends_DASHwith] = ACTIONS(1580), - [anon_sym_EQ_TILDE] = ACTIONS(1580), - [anon_sym_BANG_TILDE] = ACTIONS(1580), - [anon_sym_bit_DASHand] = ACTIONS(1580), - [anon_sym_bit_DASHxor] = ACTIONS(1580), - [anon_sym_bit_DASHor] = ACTIONS(1580), - [anon_sym_and] = ACTIONS(1580), - [anon_sym_xor] = ACTIONS(1580), - [anon_sym_or] = ACTIONS(1580), - [anon_sym_not] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [aux_sym__val_number_decimal_token1] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [aux_sym__val_number_token4] = ACTIONS(1580), - [aux_sym__val_number_token5] = ACTIONS(1580), - [aux_sym__val_number_token6] = ACTIONS(1580), - [anon_sym_0b] = ACTIONS(1580), - [anon_sym_0o] = ACTIONS(1580), - [anon_sym_0x] = ACTIONS(1580), - [sym_val_date] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1580), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1580), - [anon_sym_CARET] = ACTIONS(1580), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_not_DASHin] = ACTIONS(1559), + [anon_sym_starts_DASHwith] = ACTIONS(1559), + [anon_sym_ends_DASHwith] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_BANG_TILDE] = ACTIONS(1567), + [anon_sym_bit_DASHand] = ACTIONS(1569), + [anon_sym_bit_DASHxor] = ACTIONS(1571), + [anon_sym_bit_DASHor] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [590] = { [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_alias] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_let_DASHenv] = ACTIONS(1584), - [anon_sym_mut] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1584), - [sym_cmd_identifier] = ACTIONS(1584), - [anon_sym_LF] = ACTIONS(1586), - [anon_sym_def] = ACTIONS(1584), - [anon_sym_export_DASHenv] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_module] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_RPAREN] = ACTIONS(1584), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_error] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_in] = ACTIONS(1584), - [anon_sym_loop] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_try] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_source] = ACTIONS(1584), - [anon_sym_source_DASHenv] = ACTIONS(1584), - [anon_sym_register] = ACTIONS(1584), - [anon_sym_hide] = ACTIONS(1584), - [anon_sym_hide_DASHenv] = ACTIONS(1584), - [anon_sym_overlay] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_where] = ACTIONS(1584), - [anon_sym_STAR_STAR] = ACTIONS(1584), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_mod] = ACTIONS(1584), - [anon_sym_SLASH_SLASH] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_bit_DASHshl] = ACTIONS(1584), - [anon_sym_bit_DASHshr] = ACTIONS(1584), - [anon_sym_EQ_EQ] = ACTIONS(1584), - [anon_sym_BANG_EQ] = ACTIONS(1584), - [anon_sym_LT2] = ACTIONS(1584), - [anon_sym_LT_EQ] = ACTIONS(1584), - [anon_sym_GT_EQ] = ACTIONS(1584), - [anon_sym_not_DASHin] = ACTIONS(1584), - [anon_sym_starts_DASHwith] = ACTIONS(1584), - [anon_sym_ends_DASHwith] = ACTIONS(1584), - [anon_sym_EQ_TILDE] = ACTIONS(1584), - [anon_sym_BANG_TILDE] = ACTIONS(1584), - [anon_sym_bit_DASHand] = ACTIONS(1584), - [anon_sym_bit_DASHxor] = ACTIONS(1584), - [anon_sym_bit_DASHor] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_xor] = ACTIONS(1584), - [anon_sym_or] = ACTIONS(1584), - [anon_sym_not] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [aux_sym__val_number_decimal_token1] = ACTIONS(1584), - [aux_sym__val_number_token1] = ACTIONS(1584), - [aux_sym__val_number_token2] = ACTIONS(1584), - [aux_sym__val_number_token3] = ACTIONS(1584), - [aux_sym__val_number_token4] = ACTIONS(1584), - [aux_sym__val_number_token5] = ACTIONS(1584), - [aux_sym__val_number_token6] = ACTIONS(1584), - [anon_sym_0b] = ACTIONS(1584), - [anon_sym_0o] = ACTIONS(1584), - [anon_sym_0x] = ACTIONS(1584), - [sym_val_date] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1584), - [sym__str_single_quotes] = ACTIONS(1584), - [sym__str_back_ticks] = ACTIONS(1584), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), - [anon_sym_CARET] = ACTIONS(1584), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [sym_cmd_identifier] = ACTIONS(1599), + [anon_sym_LF] = ACTIONS(1601), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_where] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = 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_not] = ACTIONS(1599), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = 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(1599), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [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_CARET] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(105), }, [591] = { [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1603), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_let_DASHenv] = ACTIONS(1603), + [anon_sym_mut] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [sym_cmd_identifier] = ACTIONS(1603), + [anon_sym_LF] = ACTIONS(1605), + [anon_sym_def] = ACTIONS(1603), + [anon_sym_export_DASHenv] = ACTIONS(1603), + [anon_sym_extern] = ACTIONS(1603), + [anon_sym_module] = ACTIONS(1603), + [anon_sym_use] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(1603), + [anon_sym_error] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_in] = ACTIONS(1603), + [anon_sym_loop] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1603), + [anon_sym_do] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1603), + [anon_sym_try] = ACTIONS(1603), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_source] = ACTIONS(1603), + [anon_sym_source_DASHenv] = ACTIONS(1603), + [anon_sym_register] = ACTIONS(1603), + [anon_sym_hide] = ACTIONS(1603), + [anon_sym_hide_DASHenv] = ACTIONS(1603), + [anon_sym_overlay] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_STAR_STAR] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1603), + [anon_sym_mod] = ACTIONS(1603), + [anon_sym_SLASH_SLASH] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_bit_DASHshl] = ACTIONS(1603), + [anon_sym_bit_DASHshr] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1603), + [anon_sym_BANG_EQ] = ACTIONS(1603), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(1603), + [anon_sym_not_DASHin] = ACTIONS(1603), + [anon_sym_starts_DASHwith] = ACTIONS(1603), + [anon_sym_ends_DASHwith] = ACTIONS(1603), + [anon_sym_EQ_TILDE] = ACTIONS(1603), + [anon_sym_BANG_TILDE] = ACTIONS(1603), + [anon_sym_bit_DASHand] = ACTIONS(1603), + [anon_sym_bit_DASHxor] = ACTIONS(1603), + [anon_sym_bit_DASHor] = ACTIONS(1603), + [anon_sym_and] = ACTIONS(1603), + [anon_sym_xor] = ACTIONS(1603), + [anon_sym_or] = ACTIONS(1603), + [anon_sym_not] = ACTIONS(1603), + [anon_sym_null] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1603), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1603), + [aux_sym__val_number_token5] = ACTIONS(1603), + [aux_sym__val_number_token6] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1603), + [anon_sym_0o] = ACTIONS(1603), + [anon_sym_0x] = ACTIONS(1603), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_CARET] = ACTIONS(1603), [anon_sym_POUND] = ACTIONS(105), }, [592] = { [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [593] = { [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(1588), - [anon_sym_alias] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_let_DASHenv] = ACTIONS(1588), - [anon_sym_mut] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1588), - [sym_cmd_identifier] = ACTIONS(1588), - [anon_sym_LF] = ACTIONS(1590), - [anon_sym_def] = ACTIONS(1588), - [anon_sym_export_DASHenv] = ACTIONS(1588), - [anon_sym_extern] = ACTIONS(1588), - [anon_sym_module] = ACTIONS(1588), - [anon_sym_use] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_RPAREN] = ACTIONS(1588), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_error] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1588), - [anon_sym_loop] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_match] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_DOT] = ACTIONS(1588), - [anon_sym_try] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_source] = ACTIONS(1588), - [anon_sym_source_DASHenv] = ACTIONS(1588), - [anon_sym_register] = ACTIONS(1588), - [anon_sym_hide] = ACTIONS(1588), - [anon_sym_hide_DASHenv] = ACTIONS(1588), - [anon_sym_overlay] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_where] = ACTIONS(1588), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_PLUS_PLUS] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1588), - [anon_sym_mod] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_bit_DASHshl] = ACTIONS(1588), - [anon_sym_bit_DASHshr] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_not_DASHin] = ACTIONS(1588), - [anon_sym_starts_DASHwith] = ACTIONS(1588), - [anon_sym_ends_DASHwith] = ACTIONS(1588), - [anon_sym_EQ_TILDE] = ACTIONS(1588), - [anon_sym_BANG_TILDE] = ACTIONS(1588), - [anon_sym_bit_DASHand] = ACTIONS(1588), - [anon_sym_bit_DASHxor] = ACTIONS(1588), - [anon_sym_bit_DASHor] = ACTIONS(1588), - [anon_sym_and] = ACTIONS(1588), - [anon_sym_xor] = ACTIONS(1588), - [anon_sym_or] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [aux_sym__val_number_decimal_token1] = ACTIONS(1588), - [aux_sym__val_number_token1] = ACTIONS(1588), - [aux_sym__val_number_token2] = ACTIONS(1588), - [aux_sym__val_number_token3] = ACTIONS(1588), - [aux_sym__val_number_token4] = ACTIONS(1588), - [aux_sym__val_number_token5] = ACTIONS(1588), - [aux_sym__val_number_token6] = ACTIONS(1588), - [anon_sym_0b] = ACTIONS(1588), - [anon_sym_0o] = ACTIONS(1588), - [anon_sym_0x] = ACTIONS(1588), - [sym_val_date] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [sym__str_single_quotes] = ACTIONS(1588), - [sym__str_back_ticks] = ACTIONS(1588), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), + [ts_builtin_sym_end] = ACTIONS(1377), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1375), + [anon_sym_BANG_TILDE] = ACTIONS(1375), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token3] = ACTIONS(1417), [anon_sym_POUND] = ACTIONS(105), }, [594] = { [sym_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_where] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1495), - [anon_sym_BANG_TILDE] = ACTIONS(1495), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [anon_sym_not] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [aux_sym_unquoted_token5] = ACTIONS(1592), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_alias] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_let_DASHenv] = ACTIONS(1607), + [anon_sym_mut] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [sym_cmd_identifier] = ACTIONS(1607), + [anon_sym_LF] = ACTIONS(1609), + [anon_sym_def] = ACTIONS(1607), + [anon_sym_export_DASHenv] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_source] = ACTIONS(1607), + [anon_sym_source_DASHenv] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_hide] = ACTIONS(1607), + [anon_sym_hide_DASHenv] = ACTIONS(1607), + [anon_sym_overlay] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_where] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = 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_not] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_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(1607), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [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_CARET] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(105), }, [595] = { [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [596] = { [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_not_DASHin] = ACTIONS(1536), - [anon_sym_starts_DASHwith] = ACTIONS(1536), - [anon_sym_ends_DASHwith] = ACTIONS(1536), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1611), + [anon_sym_alias] = ACTIONS(1611), + [anon_sym_let] = ACTIONS(1611), + [anon_sym_let_DASHenv] = ACTIONS(1611), + [anon_sym_mut] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1611), + [anon_sym_SEMI] = ACTIONS(1611), + [sym_cmd_identifier] = ACTIONS(1611), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_def] = ACTIONS(1611), + [anon_sym_export_DASHenv] = ACTIONS(1611), + [anon_sym_extern] = ACTIONS(1611), + [anon_sym_module] = ACTIONS(1611), + [anon_sym_use] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1611), + [anon_sym_error] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_break] = ACTIONS(1611), + [anon_sym_continue] = ACTIONS(1611), + [anon_sym_for] = ACTIONS(1611), + [anon_sym_in] = ACTIONS(1611), + [anon_sym_loop] = ACTIONS(1611), + [anon_sym_while] = ACTIONS(1611), + [anon_sym_do] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_match] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_DOT] = ACTIONS(1611), + [anon_sym_try] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1611), + [anon_sym_source] = ACTIONS(1611), + [anon_sym_source_DASHenv] = ACTIONS(1611), + [anon_sym_register] = ACTIONS(1611), + [anon_sym_hide] = ACTIONS(1611), + [anon_sym_hide_DASHenv] = ACTIONS(1611), + [anon_sym_overlay] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_where] = ACTIONS(1611), + [anon_sym_STAR_STAR] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_mod] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_bit_DASHshl] = ACTIONS(1611), + [anon_sym_bit_DASHshr] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1611), + [anon_sym_BANG_EQ] = ACTIONS(1611), + [anon_sym_LT2] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1611), + [anon_sym_GT_EQ] = ACTIONS(1611), + [anon_sym_not_DASHin] = ACTIONS(1611), + [anon_sym_starts_DASHwith] = ACTIONS(1611), + [anon_sym_ends_DASHwith] = ACTIONS(1611), + [anon_sym_EQ_TILDE] = ACTIONS(1611), + [anon_sym_BANG_TILDE] = ACTIONS(1611), + [anon_sym_bit_DASHand] = ACTIONS(1611), + [anon_sym_bit_DASHxor] = ACTIONS(1611), + [anon_sym_bit_DASHor] = ACTIONS(1611), + [anon_sym_and] = ACTIONS(1611), + [anon_sym_xor] = ACTIONS(1611), + [anon_sym_or] = ACTIONS(1611), + [anon_sym_not] = ACTIONS(1611), + [anon_sym_null] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1611), + [anon_sym_false] = ACTIONS(1611), + [aux_sym__val_number_decimal_token1] = ACTIONS(1611), + [aux_sym__val_number_token1] = ACTIONS(1611), + [aux_sym__val_number_token2] = ACTIONS(1611), + [aux_sym__val_number_token3] = ACTIONS(1611), + [aux_sym__val_number_token4] = ACTIONS(1611), + [aux_sym__val_number_token5] = ACTIONS(1611), + [aux_sym__val_number_token6] = ACTIONS(1611), + [anon_sym_0b] = ACTIONS(1611), + [anon_sym_0o] = ACTIONS(1611), + [anon_sym_0x] = ACTIONS(1611), + [sym_val_date] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym__str_single_quotes] = ACTIONS(1611), + [sym__str_back_ticks] = ACTIONS(1611), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), [anon_sym_POUND] = ACTIONS(105), }, [597] = { [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_not_DASHin] = ACTIONS(1536), - [anon_sym_starts_DASHwith] = ACTIONS(1536), - [anon_sym_ends_DASHwith] = ACTIONS(1536), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1546), - [anon_sym_bit_DASHxor] = ACTIONS(1548), - [anon_sym_bit_DASHor] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1554), - [anon_sym_or] = ACTIONS(1594), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_not_DASHin] = ACTIONS(1559), + [anon_sym_starts_DASHwith] = ACTIONS(1559), + [anon_sym_ends_DASHwith] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_BANG_TILDE] = ACTIONS(1567), + [anon_sym_bit_DASHand] = ACTIONS(1569), + [anon_sym_bit_DASHxor] = ACTIONS(1571), + [anon_sym_bit_DASHor] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1577), + [anon_sym_or] = ACTIONS(1615), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [598] = { [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1542), - [anon_sym_bit_DASHshr] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [599] = { [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_alias] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_let_DASHenv] = ACTIONS(1596), - [anon_sym_mut] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [sym_cmd_identifier] = ACTIONS(1596), - [anon_sym_LF] = ACTIONS(1598), - [anon_sym_def] = ACTIONS(1596), - [anon_sym_export_DASHenv] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_error] = ACTIONS(1596), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_try] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_source] = ACTIONS(1596), - [anon_sym_source_DASHenv] = ACTIONS(1596), - [anon_sym_register] = ACTIONS(1596), - [anon_sym_hide] = ACTIONS(1596), - [anon_sym_hide_DASHenv] = ACTIONS(1596), - [anon_sym_overlay] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_where] = ACTIONS(1596), - [anon_sym_STAR_STAR] = ACTIONS(1596), - [anon_sym_PLUS_PLUS] = ACTIONS(1596), - [anon_sym_SLASH] = ACTIONS(1596), - [anon_sym_mod] = ACTIONS(1596), - [anon_sym_SLASH_SLASH] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_bit_DASHshl] = ACTIONS(1596), - [anon_sym_bit_DASHshr] = ACTIONS(1596), - [anon_sym_EQ_EQ] = ACTIONS(1596), - [anon_sym_BANG_EQ] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1596), - [anon_sym_GT_EQ] = ACTIONS(1596), - [anon_sym_not_DASHin] = ACTIONS(1596), - [anon_sym_starts_DASHwith] = ACTIONS(1596), - [anon_sym_ends_DASHwith] = ACTIONS(1596), - [anon_sym_EQ_TILDE] = ACTIONS(1596), - [anon_sym_BANG_TILDE] = ACTIONS(1596), - [anon_sym_bit_DASHand] = ACTIONS(1596), - [anon_sym_bit_DASHxor] = ACTIONS(1596), - [anon_sym_bit_DASHor] = ACTIONS(1596), - [anon_sym_and] = ACTIONS(1596), - [anon_sym_xor] = ACTIONS(1596), - [anon_sym_or] = ACTIONS(1596), - [anon_sym_not] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_token1] = ACTIONS(1596), - [aux_sym__val_number_token2] = ACTIONS(1596), - [aux_sym__val_number_token3] = ACTIONS(1596), - [aux_sym__val_number_token4] = ACTIONS(1596), - [aux_sym__val_number_token5] = ACTIONS(1596), - [aux_sym__val_number_token6] = ACTIONS(1596), - [anon_sym_0b] = ACTIONS(1596), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(1596), - [sym__str_single_quotes] = ACTIONS(1596), - [sym__str_back_ticks] = ACTIONS(1596), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1596), - [anon_sym_CARET] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [sym_cmd_identifier] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(1617), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_where] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(105), }, [600] = { [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(1600), - [anon_sym_alias] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_let_DASHenv] = ACTIONS(1600), - [anon_sym_mut] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1600), - [sym_cmd_identifier] = ACTIONS(1600), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_def] = ACTIONS(1600), - [anon_sym_export_DASHenv] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_module] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_RPAREN] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_error] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_try] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_source] = ACTIONS(1600), - [anon_sym_source_DASHenv] = ACTIONS(1600), - [anon_sym_register] = ACTIONS(1600), - [anon_sym_hide] = ACTIONS(1600), - [anon_sym_hide_DASHenv] = ACTIONS(1600), - [anon_sym_overlay] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_where] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1600), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1600), - [anon_sym_BANG_TILDE] = ACTIONS(1600), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [anon_sym_not] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1600), - [aux_sym__val_number_token2] = ACTIONS(1600), - [aux_sym__val_number_token3] = ACTIONS(1600), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1600), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_0b] = ACTIONS(1600), - [anon_sym_0o] = ACTIONS(1600), - [anon_sym_0x] = ACTIONS(1600), - [sym_val_date] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym__str_single_quotes] = ACTIONS(1600), - [sym__str_back_ticks] = ACTIONS(1600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1600), - [anon_sym_CARET] = ACTIONS(1600), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [601] = { [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(1507), - [anon_sym_alias] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_let_DASHenv] = ACTIONS(1507), - [anon_sym_mut] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [sym_cmd_identifier] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1509), - [anon_sym_def] = ACTIONS(1507), - [anon_sym_export_DASHenv] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_module] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_error] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_try] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_source] = ACTIONS(1507), - [anon_sym_source_DASHenv] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_hide] = ACTIONS(1507), - [anon_sym_hide_DASHenv] = ACTIONS(1507), - [anon_sym_overlay] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_where] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_BANG_TILDE] = ACTIONS(1507), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_not] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1507), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_0b] = ACTIONS(1507), - [anon_sym_0o] = ACTIONS(1507), - [anon_sym_0x] = ACTIONS(1507), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [602] = { [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(1604), - [anon_sym_alias] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_let_DASHenv] = ACTIONS(1604), - [anon_sym_mut] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1604), - [sym_cmd_identifier] = ACTIONS(1604), - [anon_sym_LF] = ACTIONS(1606), - [anon_sym_def] = ACTIONS(1604), - [anon_sym_export_DASHenv] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1604), - [anon_sym_module] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_RPAREN] = ACTIONS(1604), - [anon_sym_DOLLAR] = ACTIONS(1604), - [anon_sym_error] = ACTIONS(1604), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_in] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_try] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_source] = ACTIONS(1604), - [anon_sym_source_DASHenv] = ACTIONS(1604), - [anon_sym_register] = ACTIONS(1604), - [anon_sym_hide] = ACTIONS(1604), - [anon_sym_hide_DASHenv] = ACTIONS(1604), - [anon_sym_overlay] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_where] = ACTIONS(1604), - [anon_sym_STAR_STAR] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_SLASH_SLASH] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_bit_DASHshl] = ACTIONS(1604), - [anon_sym_bit_DASHshr] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1604), - [anon_sym_BANG_EQ] = ACTIONS(1604), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1604), - [anon_sym_not_DASHin] = ACTIONS(1604), - [anon_sym_starts_DASHwith] = ACTIONS(1604), - [anon_sym_ends_DASHwith] = ACTIONS(1604), - [anon_sym_EQ_TILDE] = ACTIONS(1604), - [anon_sym_BANG_TILDE] = ACTIONS(1604), - [anon_sym_bit_DASHand] = ACTIONS(1604), - [anon_sym_bit_DASHxor] = ACTIONS(1604), - [anon_sym_bit_DASHor] = ACTIONS(1604), - [anon_sym_and] = ACTIONS(1604), - [anon_sym_xor] = ACTIONS(1604), - [anon_sym_or] = ACTIONS(1604), - [anon_sym_not] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [aux_sym__val_number_decimal_token1] = ACTIONS(1604), - [aux_sym__val_number_token1] = ACTIONS(1604), - [aux_sym__val_number_token2] = ACTIONS(1604), - [aux_sym__val_number_token3] = ACTIONS(1604), - [aux_sym__val_number_token4] = ACTIONS(1604), - [aux_sym__val_number_token5] = ACTIONS(1604), - [aux_sym__val_number_token6] = ACTIONS(1604), - [anon_sym_0b] = ACTIONS(1604), - [anon_sym_0o] = ACTIONS(1604), - [anon_sym_0x] = ACTIONS(1604), - [sym_val_date] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1604), - [sym__str_single_quotes] = ACTIONS(1604), - [sym__str_back_ticks] = ACTIONS(1604), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [603] = { [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1619), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_let] = ACTIONS(1619), + [anon_sym_let_DASHenv] = ACTIONS(1619), + [anon_sym_mut] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [sym_cmd_identifier] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1621), + [anon_sym_def] = ACTIONS(1619), + [anon_sym_export_DASHenv] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_module] = ACTIONS(1619), + [anon_sym_use] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_error] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_loop] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_source] = ACTIONS(1619), + [anon_sym_source_DASHenv] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_hide] = ACTIONS(1619), + [anon_sym_hide_DASHenv] = ACTIONS(1619), + [anon_sym_overlay] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_where] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(1619), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1619), + [anon_sym_BANG_TILDE] = ACTIONS(1619), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [anon_sym_not] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1619), + [anon_sym_0o] = ACTIONS(1619), + [anon_sym_0x] = ACTIONS(1619), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), [anon_sym_POUND] = ACTIONS(105), }, [604] = { [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1608), - [sym_cmd_identifier] = ACTIONS(1608), - [anon_sym_LF] = ACTIONS(1610), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_where] = ACTIONS(1608), - [anon_sym_STAR_STAR] = ACTIONS(1608), - [anon_sym_PLUS_PLUS] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_SLASH_SLASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_bit_DASHshl] = ACTIONS(1608), - [anon_sym_bit_DASHshr] = ACTIONS(1608), - [anon_sym_EQ_EQ] = ACTIONS(1608), - [anon_sym_BANG_EQ] = ACTIONS(1608), - [anon_sym_LT2] = ACTIONS(1608), - [anon_sym_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1608), - [anon_sym_not_DASHin] = ACTIONS(1608), - [anon_sym_starts_DASHwith] = ACTIONS(1608), - [anon_sym_ends_DASHwith] = ACTIONS(1608), - [anon_sym_EQ_TILDE] = ACTIONS(1608), - [anon_sym_BANG_TILDE] = ACTIONS(1608), - [anon_sym_bit_DASHand] = ACTIONS(1608), - [anon_sym_bit_DASHxor] = ACTIONS(1608), - [anon_sym_bit_DASHor] = ACTIONS(1608), - [anon_sym_and] = ACTIONS(1608), - [anon_sym_xor] = ACTIONS(1608), - [anon_sym_or] = ACTIONS(1608), - [anon_sym_not] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1608), - [aux_sym__val_number_token2] = ACTIONS(1608), - [aux_sym__val_number_token3] = ACTIONS(1608), - [aux_sym__val_number_token4] = ACTIONS(1608), - [aux_sym__val_number_token5] = ACTIONS(1608), - [aux_sym__val_number_token6] = ACTIONS(1608), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym__str_single_quotes] = ACTIONS(1608), - [sym__str_back_ticks] = ACTIONS(1608), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1608), - [anon_sym_CARET] = ACTIONS(1608), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [605] = { [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_where] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1540), + [anon_sym_alias] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_let_DASHenv] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [sym_cmd_identifier] = ACTIONS(1540), + [anon_sym_LF] = ACTIONS(1623), + [anon_sym_def] = ACTIONS(1540), + [anon_sym_export_DASHenv] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_module] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_error] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_source] = ACTIONS(1540), + [anon_sym_source_DASHenv] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_hide] = ACTIONS(1540), + [anon_sym_hide_DASHenv] = ACTIONS(1540), + [anon_sym_overlay] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_where] = ACTIONS(1540), [anon_sym_STAR_STAR] = ACTIONS(1540), [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [607] = { - [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_alias] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_let_DASHenv] = ACTIONS(1475), - [anon_sym_mut] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [sym_cmd_identifier] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_def] = ACTIONS(1475), - [anon_sym_export_DASHenv] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_source] = ACTIONS(1475), - [anon_sym_source_DASHenv] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_hide_DASHenv] = ACTIONS(1475), - [anon_sym_overlay] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_where] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1475), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(105), - }, - [608] = { - [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(1515), - [anon_sym_alias] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_let_DASHenv] = ACTIONS(1515), - [anon_sym_mut] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [sym_cmd_identifier] = ACTIONS(1515), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_def] = ACTIONS(1515), - [anon_sym_export_DASHenv] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_module] = ACTIONS(1515), - [anon_sym_use] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_error] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_source] = ACTIONS(1515), - [anon_sym_source_DASHenv] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_hide] = ACTIONS(1515), - [anon_sym_hide_DASHenv] = ACTIONS(1515), - [anon_sym_overlay] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_where] = ACTIONS(1515), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_not] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1515), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1515), - [anon_sym_0o] = ACTIONS(1515), - [anon_sym_0x] = ACTIONS(1515), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(105), - }, - [609] = { - [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_alias] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_let_DASHenv] = ACTIONS(1612), - [anon_sym_mut] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1612), - [sym_cmd_identifier] = ACTIONS(1612), - [anon_sym_LF] = ACTIONS(1614), - [anon_sym_def] = ACTIONS(1612), - [anon_sym_export_DASHenv] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_error] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_in] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_DOT] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_source] = ACTIONS(1612), - [anon_sym_source_DASHenv] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_hide] = ACTIONS(1612), - [anon_sym_hide_DASHenv] = ACTIONS(1612), - [anon_sym_overlay] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_where] = ACTIONS(1612), - [anon_sym_STAR_STAR] = ACTIONS(1612), - [anon_sym_PLUS_PLUS] = ACTIONS(1612), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_SLASH_SLASH] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_bit_DASHshl] = ACTIONS(1612), - [anon_sym_bit_DASHshr] = ACTIONS(1612), - [anon_sym_EQ_EQ] = ACTIONS(1612), - [anon_sym_BANG_EQ] = ACTIONS(1612), - [anon_sym_LT2] = ACTIONS(1612), - [anon_sym_LT_EQ] = ACTIONS(1612), - [anon_sym_GT_EQ] = ACTIONS(1612), - [anon_sym_not_DASHin] = ACTIONS(1612), - [anon_sym_starts_DASHwith] = ACTIONS(1612), - [anon_sym_ends_DASHwith] = ACTIONS(1612), - [anon_sym_EQ_TILDE] = ACTIONS(1612), - [anon_sym_BANG_TILDE] = ACTIONS(1612), - [anon_sym_bit_DASHand] = ACTIONS(1612), - [anon_sym_bit_DASHxor] = ACTIONS(1612), - [anon_sym_bit_DASHor] = ACTIONS(1612), - [anon_sym_and] = ACTIONS(1612), - [anon_sym_xor] = ACTIONS(1612), - [anon_sym_or] = ACTIONS(1612), - [anon_sym_not] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1612), - [aux_sym__val_number_token2] = ACTIONS(1612), - [aux_sym__val_number_token3] = ACTIONS(1612), - [aux_sym__val_number_token4] = ACTIONS(1612), - [aux_sym__val_number_token5] = ACTIONS(1612), - [aux_sym__val_number_token6] = ACTIONS(1612), - [anon_sym_0b] = ACTIONS(1612), - [anon_sym_0o] = ACTIONS(1612), - [anon_sym_0x] = ACTIONS(1612), - [sym_val_date] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__str_single_quotes] = ACTIONS(1612), - [sym__str_back_ticks] = ACTIONS(1612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(105), - }, - [610] = { - [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_alias] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_let_DASHenv] = ACTIONS(1491), - [anon_sym_mut] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [sym_cmd_identifier] = ACTIONS(1491), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_def] = ACTIONS(1491), - [anon_sym_export_DASHenv] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_error] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_source] = ACTIONS(1491), - [anon_sym_source_DASHenv] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_hide] = ACTIONS(1491), - [anon_sym_hide_DASHenv] = ACTIONS(1491), - [anon_sym_overlay] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_where] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_BANG_TILDE] = ACTIONS(1491), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [anon_sym_not] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1491), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_0b] = ACTIONS(1491), - [anon_sym_0o] = ACTIONS(1491), - [anon_sym_0x] = ACTIONS(1491), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(105), - }, - [611] = { - [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(1616), - [anon_sym_alias] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_let_DASHenv] = ACTIONS(1616), - [anon_sym_mut] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1616), - [sym_cmd_identifier] = ACTIONS(1616), - [anon_sym_LF] = ACTIONS(1618), - [anon_sym_def] = ACTIONS(1616), - [anon_sym_export_DASHenv] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_module] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1616), - [anon_sym_DOLLAR] = ACTIONS(1616), - [anon_sym_error] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_in] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_DOT] = ACTIONS(1616), - [anon_sym_try] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_source] = ACTIONS(1616), - [anon_sym_source_DASHenv] = ACTIONS(1616), - [anon_sym_register] = ACTIONS(1616), - [anon_sym_hide] = ACTIONS(1616), - [anon_sym_hide_DASHenv] = ACTIONS(1616), - [anon_sym_overlay] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_where] = ACTIONS(1616), - [anon_sym_STAR_STAR] = ACTIONS(1616), - [anon_sym_PLUS_PLUS] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_SLASH_SLASH] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_bit_DASHshl] = ACTIONS(1616), - [anon_sym_bit_DASHshr] = ACTIONS(1616), - [anon_sym_EQ_EQ] = ACTIONS(1616), - [anon_sym_BANG_EQ] = ACTIONS(1616), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ] = ACTIONS(1616), - [anon_sym_GT_EQ] = ACTIONS(1616), - [anon_sym_not_DASHin] = ACTIONS(1616), - [anon_sym_starts_DASHwith] = ACTIONS(1616), - [anon_sym_ends_DASHwith] = ACTIONS(1616), - [anon_sym_EQ_TILDE] = ACTIONS(1616), - [anon_sym_BANG_TILDE] = ACTIONS(1616), - [anon_sym_bit_DASHand] = ACTIONS(1616), - [anon_sym_bit_DASHxor] = ACTIONS(1616), - [anon_sym_bit_DASHor] = ACTIONS(1616), - [anon_sym_and] = ACTIONS(1616), - [anon_sym_xor] = ACTIONS(1616), - [anon_sym_or] = ACTIONS(1616), - [anon_sym_not] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1616), - [aux_sym__val_number_token1] = ACTIONS(1616), - [aux_sym__val_number_token2] = ACTIONS(1616), - [aux_sym__val_number_token3] = ACTIONS(1616), - [aux_sym__val_number_token4] = ACTIONS(1616), - [aux_sym__val_number_token5] = ACTIONS(1616), - [aux_sym__val_number_token6] = ACTIONS(1616), - [anon_sym_0b] = ACTIONS(1616), - [anon_sym_0o] = ACTIONS(1616), - [anon_sym_0x] = ACTIONS(1616), - [sym_val_date] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1616), - [sym__str_single_quotes] = ACTIONS(1616), - [sym__str_back_ticks] = ACTIONS(1616), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1616), - [anon_sym_CARET] = ACTIONS(1616), - [anon_sym_POUND] = ACTIONS(105), - }, - [612] = { - [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(1620), - [anon_sym_alias] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_let_DASHenv] = ACTIONS(1620), - [anon_sym_mut] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [sym_cmd_identifier] = ACTIONS(1620), - [anon_sym_LF] = ACTIONS(1622), - [anon_sym_def] = ACTIONS(1620), - [anon_sym_export_DASHenv] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1620), - [anon_sym_module] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_error] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_DOT] = ACTIONS(1620), - [anon_sym_try] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_source] = ACTIONS(1620), - [anon_sym_source_DASHenv] = ACTIONS(1620), - [anon_sym_register] = ACTIONS(1620), - [anon_sym_hide] = ACTIONS(1620), - [anon_sym_hide_DASHenv] = ACTIONS(1620), - [anon_sym_overlay] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_where] = ACTIONS(1620), - [anon_sym_STAR_STAR] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_SLASH_SLASH] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_bit_DASHshl] = ACTIONS(1620), - [anon_sym_bit_DASHshr] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_not_DASHin] = ACTIONS(1620), - [anon_sym_starts_DASHwith] = ACTIONS(1620), - [anon_sym_ends_DASHwith] = ACTIONS(1620), - [anon_sym_EQ_TILDE] = ACTIONS(1620), - [anon_sym_BANG_TILDE] = ACTIONS(1620), - [anon_sym_bit_DASHand] = ACTIONS(1620), - [anon_sym_bit_DASHxor] = ACTIONS(1620), - [anon_sym_bit_DASHor] = ACTIONS(1620), - [anon_sym_and] = ACTIONS(1620), - [anon_sym_xor] = ACTIONS(1620), - [anon_sym_or] = ACTIONS(1620), - [anon_sym_not] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [aux_sym__val_number_decimal_token1] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1620), - [aux_sym__val_number_token2] = ACTIONS(1620), - [aux_sym__val_number_token3] = ACTIONS(1620), - [aux_sym__val_number_token4] = ACTIONS(1620), - [aux_sym__val_number_token5] = ACTIONS(1620), - [aux_sym__val_number_token6] = ACTIONS(1620), - [anon_sym_0b] = ACTIONS(1620), - [anon_sym_0o] = ACTIONS(1620), - [anon_sym_0x] = ACTIONS(1620), - [sym_val_date] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1620), - [sym__str_single_quotes] = ACTIONS(1620), - [sym__str_back_ticks] = ACTIONS(1620), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), - [anon_sym_CARET] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(105), - }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(1600), - [anon_sym_alias] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_let_DASHenv] = ACTIONS(1600), - [anon_sym_mut] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1600), - [sym_cmd_identifier] = ACTIONS(1600), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_def] = ACTIONS(1600), - [anon_sym_export_DASHenv] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_module] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_RPAREN] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_error] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_try] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_source] = ACTIONS(1600), - [anon_sym_source_DASHenv] = ACTIONS(1600), - [anon_sym_register] = ACTIONS(1600), - [anon_sym_hide] = ACTIONS(1600), - [anon_sym_hide_DASHenv] = ACTIONS(1600), - [anon_sym_overlay] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_where] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1600), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1600), - [anon_sym_BANG_TILDE] = ACTIONS(1600), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [anon_sym_not] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1600), - [aux_sym__val_number_token2] = ACTIONS(1600), - [aux_sym__val_number_token3] = ACTIONS(1600), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1600), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_0b] = ACTIONS(1600), - [anon_sym_0o] = ACTIONS(1600), - [anon_sym_0x] = ACTIONS(1600), - [sym_val_date] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym__str_single_quotes] = ACTIONS(1600), - [sym__str_back_ticks] = ACTIONS(1600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1600), - [anon_sym_CARET] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_not] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [aux_sym__val_number_token4] = ACTIONS(1540), + [aux_sym__val_number_token5] = ACTIONS(1540), + [aux_sym__val_number_token6] = ACTIONS(1540), + [anon_sym_0b] = ACTIONS(1540), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(105), }, - [614] = { - [sym_comment] = STATE(614), + [606] = { + [sym_comment] = STATE(606), + [ts_builtin_sym_end] = ACTIONS(215), [anon_sym_export] = ACTIONS(213), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(213), @@ -149328,7 +150192,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(213), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_error] = ACTIONS(213), [anon_sym_GT] = ACTIONS(213), @@ -149343,8 +150206,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(213), [anon_sym_match] = ACTIONS(213), [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(213), [anon_sym_DOT] = ACTIONS(213), + [anon_sym_DOT2] = ACTIONS(1617), [anon_sym_try] = ACTIONS(213), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(213), @@ -149402,1481 +150265,2216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(105), }, + [607] = { + [sym_comment] = STATE(607), + [anon_sym_export] = ACTIONS(1619), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_let] = ACTIONS(1619), + [anon_sym_let_DASHenv] = ACTIONS(1619), + [anon_sym_mut] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [sym_cmd_identifier] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1621), + [anon_sym_def] = ACTIONS(1619), + [anon_sym_export_DASHenv] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_module] = ACTIONS(1619), + [anon_sym_use] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_error] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_loop] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_source] = ACTIONS(1619), + [anon_sym_source_DASHenv] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_hide] = ACTIONS(1619), + [anon_sym_hide_DASHenv] = ACTIONS(1619), + [anon_sym_overlay] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_where] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(1619), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1619), + [anon_sym_BANG_TILDE] = ACTIONS(1619), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [anon_sym_not] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1619), + [anon_sym_0o] = ACTIONS(1619), + [anon_sym_0x] = ACTIONS(1619), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(105), + }, + [608] = { + [sym_comment] = STATE(608), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), + }, + [609] = { + [sym_comment] = STATE(609), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), + }, + [610] = { + [sym_comment] = STATE(610), + [ts_builtin_sym_end] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_alias] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_let_DASHenv] = ACTIONS(1509), + [anon_sym_mut] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [sym_cmd_identifier] = ACTIONS(1509), + [anon_sym_LF] = ACTIONS(1511), + [anon_sym_def] = ACTIONS(1509), + [anon_sym_export_DASHenv] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1509), + [anon_sym_error] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1511), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_source] = ACTIONS(1509), + [anon_sym_source_DASHenv] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_hide] = ACTIONS(1509), + [anon_sym_hide_DASHenv] = ACTIONS(1509), + [anon_sym_overlay] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1509), + [anon_sym_STAR_STAR] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_bit_DASHshl] = ACTIONS(1509), + [anon_sym_bit_DASHshr] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_not_DASHin] = ACTIONS(1509), + [anon_sym_starts_DASHwith] = ACTIONS(1509), + [anon_sym_ends_DASHwith] = ACTIONS(1509), + [anon_sym_EQ_TILDE] = ACTIONS(1509), + [anon_sym_BANG_TILDE] = ACTIONS(1509), + [anon_sym_bit_DASHand] = ACTIONS(1509), + [anon_sym_bit_DASHxor] = ACTIONS(1509), + [anon_sym_bit_DASHor] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1509), + [anon_sym_xor] = ACTIONS(1509), + [anon_sym_or] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [aux_sym__val_number_decimal_token1] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1509), + [aux_sym__val_number_token5] = ACTIONS(1509), + [aux_sym__val_number_token6] = ACTIONS(1509), + [anon_sym_0b] = ACTIONS(1509), + [anon_sym_0o] = ACTIONS(1509), + [anon_sym_0x] = ACTIONS(1509), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(105), + }, + [611] = { + [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), + }, + [612] = { + [sym_comment] = STATE(612), + [anon_sym_export] = ACTIONS(1625), + [anon_sym_alias] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_let_DASHenv] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [sym_cmd_identifier] = ACTIONS(1625), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_export_DASHenv] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_module] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_error] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_source] = ACTIONS(1625), + [anon_sym_source_DASHenv] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_hide] = ACTIONS(1625), + [anon_sym_hide_DASHenv] = ACTIONS(1625), + [anon_sym_overlay] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_where] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_SLASH] = ACTIONS(1625), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT_EQ] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_not] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1625), + [anon_sym_0x] = ACTIONS(1625), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(105), + }, + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_alias] = ACTIONS(1629), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_let_DASHenv] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [sym_cmd_identifier] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_export_DASHenv] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_use] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_error] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_loop] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_source] = ACTIONS(1629), + [anon_sym_source_DASHenv] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_hide] = ACTIONS(1629), + [anon_sym_hide_DASHenv] = ACTIONS(1629), + [anon_sym_overlay] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_where] = ACTIONS(1629), + [anon_sym_STAR_STAR] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_mod] = ACTIONS(1629), + [anon_sym_SLASH_SLASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_bit_DASHshl] = ACTIONS(1629), + [anon_sym_bit_DASHshr] = ACTIONS(1629), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ] = ACTIONS(1629), + [anon_sym_GT_EQ] = ACTIONS(1629), + [anon_sym_not_DASHin] = ACTIONS(1629), + [anon_sym_starts_DASHwith] = ACTIONS(1629), + [anon_sym_ends_DASHwith] = ACTIONS(1629), + [anon_sym_EQ_TILDE] = ACTIONS(1629), + [anon_sym_BANG_TILDE] = ACTIONS(1629), + [anon_sym_bit_DASHand] = ACTIONS(1629), + [anon_sym_bit_DASHxor] = ACTIONS(1629), + [anon_sym_bit_DASHor] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_xor] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_not] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1629), + [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(1629), + [anon_sym_0o] = ACTIONS(1629), + [anon_sym_0x] = ACTIONS(1629), + [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_CARET] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(105), + }, + [614] = { + [sym_comment] = STATE(614), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), + }, [615] = { [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_alias] = ACTIONS(1624), - [anon_sym_let] = ACTIONS(1624), - [anon_sym_let_DASHenv] = ACTIONS(1624), - [anon_sym_mut] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1624), - [sym_cmd_identifier] = ACTIONS(1624), - [anon_sym_LF] = ACTIONS(1626), - [anon_sym_def] = ACTIONS(1624), - [anon_sym_export_DASHenv] = ACTIONS(1624), - [anon_sym_extern] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_use] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_RPAREN] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1624), - [anon_sym_error] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_in] = ACTIONS(1624), - [anon_sym_loop] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_DOT] = ACTIONS(1624), - [anon_sym_try] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_source] = ACTIONS(1624), - [anon_sym_source_DASHenv] = ACTIONS(1624), - [anon_sym_register] = ACTIONS(1624), - [anon_sym_hide] = ACTIONS(1624), - [anon_sym_hide_DASHenv] = ACTIONS(1624), - [anon_sym_overlay] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_where] = ACTIONS(1624), - [anon_sym_STAR_STAR] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_SLASH_SLASH] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_bit_DASHshl] = ACTIONS(1624), - [anon_sym_bit_DASHshr] = ACTIONS(1624), - [anon_sym_EQ_EQ] = ACTIONS(1624), - [anon_sym_BANG_EQ] = ACTIONS(1624), - [anon_sym_LT2] = ACTIONS(1624), - [anon_sym_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_EQ] = ACTIONS(1624), - [anon_sym_not_DASHin] = ACTIONS(1624), - [anon_sym_starts_DASHwith] = ACTIONS(1624), - [anon_sym_ends_DASHwith] = ACTIONS(1624), - [anon_sym_EQ_TILDE] = ACTIONS(1624), - [anon_sym_BANG_TILDE] = ACTIONS(1624), - [anon_sym_bit_DASHand] = ACTIONS(1624), - [anon_sym_bit_DASHxor] = ACTIONS(1624), - [anon_sym_bit_DASHor] = ACTIONS(1624), - [anon_sym_and] = ACTIONS(1624), - [anon_sym_xor] = ACTIONS(1624), - [anon_sym_or] = ACTIONS(1624), - [anon_sym_not] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [aux_sym__val_number_decimal_token1] = ACTIONS(1624), - [aux_sym__val_number_token1] = ACTIONS(1624), - [aux_sym__val_number_token2] = ACTIONS(1624), - [aux_sym__val_number_token3] = ACTIONS(1624), - [aux_sym__val_number_token4] = ACTIONS(1624), - [aux_sym__val_number_token5] = ACTIONS(1624), - [aux_sym__val_number_token6] = ACTIONS(1624), - [anon_sym_0b] = ACTIONS(1624), - [anon_sym_0o] = ACTIONS(1624), - [anon_sym_0x] = ACTIONS(1624), - [sym_val_date] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1624), - [sym__str_single_quotes] = ACTIONS(1624), - [sym__str_back_ticks] = ACTIONS(1624), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1624), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1624), - [anon_sym_CARET] = ACTIONS(1624), + [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), + [anon_sym_SEMI] = ACTIONS(1633), + [sym_cmd_identifier] = ACTIONS(1633), + [anon_sym_LF] = ACTIONS(1635), + [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_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1633), + [anon_sym_loop] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_DOT] = ACTIONS(1633), + [anon_sym_try] = 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_STAR] = ACTIONS(1633), + [anon_sym_where] = ACTIONS(1633), + [anon_sym_STAR_STAR] = ACTIONS(1633), + [anon_sym_PLUS_PLUS] = ACTIONS(1633), + [anon_sym_SLASH] = ACTIONS(1633), + [anon_sym_mod] = ACTIONS(1633), + [anon_sym_SLASH_SLASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_bit_DASHshl] = ACTIONS(1633), + [anon_sym_bit_DASHshr] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1633), + [anon_sym_BANG_EQ] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_not_DASHin] = ACTIONS(1633), + [anon_sym_starts_DASHwith] = ACTIONS(1633), + [anon_sym_ends_DASHwith] = ACTIONS(1633), + [anon_sym_EQ_TILDE] = ACTIONS(1633), + [anon_sym_BANG_TILDE] = ACTIONS(1633), + [anon_sym_bit_DASHand] = ACTIONS(1633), + [anon_sym_bit_DASHxor] = ACTIONS(1633), + [anon_sym_bit_DASHor] = ACTIONS(1633), + [anon_sym_and] = ACTIONS(1633), + [anon_sym_xor] = ACTIONS(1633), + [anon_sym_or] = ACTIONS(1633), + [anon_sym_not] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(1633), + [anon_sym_0o] = ACTIONS(1633), + [anon_sym_0x] = ACTIONS(1633), + [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), + [anon_sym_CARET] = ACTIONS(1633), [anon_sym_POUND] = ACTIONS(105), }, [616] = { [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_not_DASHin] = ACTIONS(1559), + [anon_sym_starts_DASHwith] = ACTIONS(1559), + [anon_sym_ends_DASHwith] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_BANG_TILDE] = ACTIONS(1567), + [anon_sym_bit_DASHand] = ACTIONS(1569), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [617] = { [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_alias] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_let_DASHenv] = ACTIONS(1628), - [anon_sym_mut] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1628), - [sym_cmd_identifier] = ACTIONS(1628), - [anon_sym_LF] = ACTIONS(1630), - [anon_sym_def] = ACTIONS(1628), - [anon_sym_export_DASHenv] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_error] = ACTIONS(1628), - [anon_sym_GT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1628), - [anon_sym_try] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_source] = ACTIONS(1628), - [anon_sym_source_DASHenv] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_hide] = ACTIONS(1628), - [anon_sym_hide_DASHenv] = ACTIONS(1628), - [anon_sym_overlay] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_where] = ACTIONS(1628), - [anon_sym_STAR_STAR] = ACTIONS(1628), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_SLASH] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_SLASH_SLASH] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_bit_DASHshl] = ACTIONS(1628), - [anon_sym_bit_DASHshr] = ACTIONS(1628), - [anon_sym_EQ_EQ] = ACTIONS(1628), - [anon_sym_BANG_EQ] = ACTIONS(1628), - [anon_sym_LT2] = ACTIONS(1628), - [anon_sym_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_EQ] = ACTIONS(1628), - [anon_sym_not_DASHin] = ACTIONS(1628), - [anon_sym_starts_DASHwith] = ACTIONS(1628), - [anon_sym_ends_DASHwith] = ACTIONS(1628), - [anon_sym_EQ_TILDE] = ACTIONS(1628), - [anon_sym_BANG_TILDE] = ACTIONS(1628), - [anon_sym_bit_DASHand] = ACTIONS(1628), - [anon_sym_bit_DASHxor] = ACTIONS(1628), - [anon_sym_bit_DASHor] = ACTIONS(1628), - [anon_sym_and] = ACTIONS(1628), - [anon_sym_xor] = ACTIONS(1628), - [anon_sym_or] = ACTIONS(1628), - [anon_sym_not] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1628), - [aux_sym__val_number_token2] = ACTIONS(1628), - [aux_sym__val_number_token3] = ACTIONS(1628), - [aux_sym__val_number_token4] = ACTIONS(1628), - [aux_sym__val_number_token5] = ACTIONS(1628), - [aux_sym__val_number_token6] = ACTIONS(1628), - [anon_sym_0b] = ACTIONS(1628), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1628), - [sym__str_single_quotes] = ACTIONS(1628), - [sym__str_back_ticks] = ACTIONS(1628), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), - [anon_sym_CARET] = ACTIONS(1628), + [anon_sym_export] = ACTIONS(1637), + [anon_sym_alias] = ACTIONS(1637), + [anon_sym_let] = ACTIONS(1637), + [anon_sym_let_DASHenv] = ACTIONS(1637), + [anon_sym_mut] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [sym_cmd_identifier] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1639), + [anon_sym_def] = ACTIONS(1637), + [anon_sym_export_DASHenv] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_module] = ACTIONS(1637), + [anon_sym_use] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_error] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_in] = ACTIONS(1637), + [anon_sym_loop] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_match] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1637), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_try] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_source] = ACTIONS(1637), + [anon_sym_source_DASHenv] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_hide] = ACTIONS(1637), + [anon_sym_hide_DASHenv] = ACTIONS(1637), + [anon_sym_overlay] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_where] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1637), + [anon_sym_mod] = ACTIONS(1637), + [anon_sym_SLASH_SLASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_bit_DASHshl] = ACTIONS(1637), + [anon_sym_bit_DASHshr] = ACTIONS(1637), + [anon_sym_EQ_EQ] = ACTIONS(1637), + [anon_sym_BANG_EQ] = ACTIONS(1637), + [anon_sym_LT2] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1637), + [anon_sym_not_DASHin] = ACTIONS(1637), + [anon_sym_starts_DASHwith] = ACTIONS(1637), + [anon_sym_ends_DASHwith] = ACTIONS(1637), + [anon_sym_EQ_TILDE] = ACTIONS(1637), + [anon_sym_BANG_TILDE] = ACTIONS(1637), + [anon_sym_bit_DASHand] = ACTIONS(1637), + [anon_sym_bit_DASHxor] = ACTIONS(1637), + [anon_sym_bit_DASHor] = ACTIONS(1637), + [anon_sym_and] = ACTIONS(1637), + [anon_sym_xor] = ACTIONS(1637), + [anon_sym_or] = ACTIONS(1637), + [anon_sym_not] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [aux_sym__val_number_decimal_token1] = ACTIONS(1637), + [aux_sym__val_number_token1] = ACTIONS(1637), + [aux_sym__val_number_token2] = ACTIONS(1637), + [aux_sym__val_number_token3] = ACTIONS(1637), + [aux_sym__val_number_token4] = ACTIONS(1637), + [aux_sym__val_number_token5] = ACTIONS(1637), + [aux_sym__val_number_token6] = ACTIONS(1637), + [anon_sym_0b] = ACTIONS(1637), + [anon_sym_0o] = ACTIONS(1637), + [anon_sym_0x] = ACTIONS(1637), + [sym_val_date] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym__str_single_quotes] = ACTIONS(1637), + [sym__str_back_ticks] = ACTIONS(1637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1637), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), [anon_sym_POUND] = ACTIONS(105), }, [618] = { [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_alias] = ACTIONS(1632), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_let_DASHenv] = ACTIONS(1632), - [anon_sym_mut] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1632), - [sym_cmd_identifier] = ACTIONS(1632), - [anon_sym_LF] = ACTIONS(1634), - [anon_sym_def] = ACTIONS(1632), - [anon_sym_export_DASHenv] = ACTIONS(1632), - [anon_sym_extern] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_use] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_DOLLAR] = ACTIONS(1632), - [anon_sym_error] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_loop] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_try] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_source] = ACTIONS(1632), - [anon_sym_source_DASHenv] = ACTIONS(1632), - [anon_sym_register] = ACTIONS(1632), - [anon_sym_hide] = ACTIONS(1632), - [anon_sym_hide_DASHenv] = ACTIONS(1632), - [anon_sym_overlay] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_where] = ACTIONS(1632), - [anon_sym_STAR_STAR] = ACTIONS(1632), - [anon_sym_PLUS_PLUS] = ACTIONS(1632), - [anon_sym_SLASH] = ACTIONS(1632), - [anon_sym_mod] = ACTIONS(1632), - [anon_sym_SLASH_SLASH] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_bit_DASHshl] = ACTIONS(1632), - [anon_sym_bit_DASHshr] = ACTIONS(1632), - [anon_sym_EQ_EQ] = ACTIONS(1632), - [anon_sym_BANG_EQ] = ACTIONS(1632), - [anon_sym_LT2] = ACTIONS(1632), - [anon_sym_LT_EQ] = ACTIONS(1632), - [anon_sym_GT_EQ] = ACTIONS(1632), - [anon_sym_not_DASHin] = ACTIONS(1632), - [anon_sym_starts_DASHwith] = ACTIONS(1632), - [anon_sym_ends_DASHwith] = ACTIONS(1632), - [anon_sym_EQ_TILDE] = ACTIONS(1632), - [anon_sym_BANG_TILDE] = ACTIONS(1632), - [anon_sym_bit_DASHand] = ACTIONS(1632), - [anon_sym_bit_DASHxor] = ACTIONS(1632), - [anon_sym_bit_DASHor] = ACTIONS(1632), - [anon_sym_and] = ACTIONS(1632), - [anon_sym_xor] = ACTIONS(1632), - [anon_sym_or] = ACTIONS(1632), - [anon_sym_not] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [aux_sym__val_number_decimal_token1] = ACTIONS(1632), - [aux_sym__val_number_token1] = ACTIONS(1632), - [aux_sym__val_number_token2] = ACTIONS(1632), - [aux_sym__val_number_token3] = ACTIONS(1632), - [aux_sym__val_number_token4] = ACTIONS(1632), - [aux_sym__val_number_token5] = ACTIONS(1632), - [aux_sym__val_number_token6] = ACTIONS(1632), - [anon_sym_0b] = ACTIONS(1632), - [anon_sym_0o] = ACTIONS(1632), - [anon_sym_0x] = ACTIONS(1632), - [sym_val_date] = ACTIONS(1632), - [anon_sym_DQUOTE] = ACTIONS(1632), - [sym__str_single_quotes] = ACTIONS(1632), - [sym__str_back_ticks] = ACTIONS(1632), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1632), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_not_DASHin] = ACTIONS(1559), + [anon_sym_starts_DASHwith] = ACTIONS(1559), + [anon_sym_ends_DASHwith] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1567), + [anon_sym_BANG_TILDE] = ACTIONS(1567), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [619] = { [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(1636), - [anon_sym_alias] = ACTIONS(1636), - [anon_sym_let] = ACTIONS(1636), - [anon_sym_let_DASHenv] = ACTIONS(1636), - [anon_sym_mut] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1636), - [sym_cmd_identifier] = ACTIONS(1636), - [anon_sym_LF] = ACTIONS(1638), - [anon_sym_def] = ACTIONS(1636), - [anon_sym_export_DASHenv] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1636), - [anon_sym_module] = ACTIONS(1636), - [anon_sym_use] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_DOLLAR] = ACTIONS(1636), - [anon_sym_error] = ACTIONS(1636), - [anon_sym_GT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1636), - [anon_sym_loop] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_do] = ACTIONS(1636), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_match] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_try] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_source] = ACTIONS(1636), - [anon_sym_source_DASHenv] = ACTIONS(1636), - [anon_sym_register] = ACTIONS(1636), - [anon_sym_hide] = ACTIONS(1636), - [anon_sym_hide_DASHenv] = ACTIONS(1636), - [anon_sym_overlay] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_where] = ACTIONS(1636), - [anon_sym_STAR_STAR] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_SLASH] = ACTIONS(1636), - [anon_sym_mod] = ACTIONS(1636), - [anon_sym_SLASH_SLASH] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_bit_DASHshl] = ACTIONS(1636), - [anon_sym_bit_DASHshr] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT2] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_not_DASHin] = ACTIONS(1636), - [anon_sym_starts_DASHwith] = ACTIONS(1636), - [anon_sym_ends_DASHwith] = ACTIONS(1636), - [anon_sym_EQ_TILDE] = ACTIONS(1636), - [anon_sym_BANG_TILDE] = ACTIONS(1636), - [anon_sym_bit_DASHand] = ACTIONS(1636), - [anon_sym_bit_DASHxor] = ACTIONS(1636), - [anon_sym_bit_DASHor] = ACTIONS(1636), - [anon_sym_and] = ACTIONS(1636), - [anon_sym_xor] = ACTIONS(1636), - [anon_sym_or] = ACTIONS(1636), - [anon_sym_not] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [aux_sym__val_number_decimal_token1] = ACTIONS(1636), - [aux_sym__val_number_token1] = ACTIONS(1636), - [aux_sym__val_number_token2] = ACTIONS(1636), - [aux_sym__val_number_token3] = ACTIONS(1636), - [aux_sym__val_number_token4] = ACTIONS(1636), - [aux_sym__val_number_token5] = ACTIONS(1636), - [aux_sym__val_number_token6] = ACTIONS(1636), - [anon_sym_0b] = ACTIONS(1636), - [anon_sym_0o] = ACTIONS(1636), - [anon_sym_0x] = ACTIONS(1636), - [sym_val_date] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1636), - [sym__str_single_quotes] = ACTIONS(1636), - [sym__str_back_ticks] = ACTIONS(1636), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1636), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1636), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [620] = { [sym_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(1509), - [anon_sym_export] = ACTIONS(1507), - [anon_sym_alias] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_let_DASHenv] = ACTIONS(1507), - [anon_sym_mut] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [sym_cmd_identifier] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1509), - [anon_sym_def] = ACTIONS(1507), - [anon_sym_export_DASHenv] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_module] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_error] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT2] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_source] = ACTIONS(1507), - [anon_sym_source_DASHenv] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_hide] = ACTIONS(1507), - [anon_sym_hide_DASHenv] = ACTIONS(1507), - [anon_sym_overlay] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_where] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_BANG_TILDE] = ACTIONS(1507), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_not] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1507), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_0b] = ACTIONS(1507), - [anon_sym_0o] = ACTIONS(1507), - [anon_sym_0x] = ACTIONS(1507), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_alias] = ACTIONS(1641), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_let_DASHenv] = ACTIONS(1641), + [anon_sym_mut] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [sym_cmd_identifier] = ACTIONS(1641), + [anon_sym_LF] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_export_DASHenv] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_use] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1641), + [anon_sym_error] = ACTIONS(1641), + [anon_sym_GT] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1641), + [anon_sym_loop] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_source] = ACTIONS(1641), + [anon_sym_source_DASHenv] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_hide] = ACTIONS(1641), + [anon_sym_hide_DASHenv] = ACTIONS(1641), + [anon_sym_overlay] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_where] = ACTIONS(1641), + [anon_sym_STAR_STAR] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1641), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_mod] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_bit_DASHshl] = ACTIONS(1641), + [anon_sym_bit_DASHshr] = ACTIONS(1641), + [anon_sym_EQ_EQ] = ACTIONS(1641), + [anon_sym_BANG_EQ] = ACTIONS(1641), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ] = ACTIONS(1641), + [anon_sym_GT_EQ] = ACTIONS(1641), + [anon_sym_not_DASHin] = ACTIONS(1641), + [anon_sym_starts_DASHwith] = ACTIONS(1641), + [anon_sym_ends_DASHwith] = ACTIONS(1641), + [anon_sym_EQ_TILDE] = ACTIONS(1641), + [anon_sym_BANG_TILDE] = ACTIONS(1641), + [anon_sym_bit_DASHand] = ACTIONS(1641), + [anon_sym_bit_DASHxor] = ACTIONS(1641), + [anon_sym_bit_DASHor] = ACTIONS(1641), + [anon_sym_and] = ACTIONS(1641), + [anon_sym_xor] = ACTIONS(1641), + [anon_sym_or] = ACTIONS(1641), + [anon_sym_not] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [aux_sym__val_number_token4] = ACTIONS(1641), + [aux_sym__val_number_token5] = ACTIONS(1641), + [aux_sym__val_number_token6] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1641), + [anon_sym_0x] = ACTIONS(1641), + [sym_val_date] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), + [anon_sym_CARET] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(105), }, [621] = { [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1426), - [anon_sym_BANG_TILDE] = ACTIONS(1426), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [anon_sym_not] = ACTIONS(1426), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1547), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_where] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_BANG_TILDE] = ACTIONS(1545), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [aux_sym_unquoted_token5] = ACTIONS(1645), [anon_sym_POUND] = ACTIONS(105), }, [622] = { [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(1640), - [anon_sym_alias] = ACTIONS(1640), - [anon_sym_let] = ACTIONS(1640), - [anon_sym_let_DASHenv] = ACTIONS(1640), - [anon_sym_mut] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [sym_cmd_identifier] = ACTIONS(1640), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_def] = ACTIONS(1640), - [anon_sym_export_DASHenv] = ACTIONS(1640), - [anon_sym_extern] = ACTIONS(1640), - [anon_sym_module] = ACTIONS(1640), - [anon_sym_use] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1640), - [anon_sym_error] = ACTIONS(1640), - [anon_sym_GT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_in] = ACTIONS(1640), - [anon_sym_loop] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_match] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_DOT] = ACTIONS(1640), - [anon_sym_try] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_source] = ACTIONS(1640), - [anon_sym_source_DASHenv] = ACTIONS(1640), - [anon_sym_register] = ACTIONS(1640), - [anon_sym_hide] = ACTIONS(1640), - [anon_sym_hide_DASHenv] = ACTIONS(1640), - [anon_sym_overlay] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_where] = ACTIONS(1640), - [anon_sym_STAR_STAR] = ACTIONS(1640), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_SLASH] = ACTIONS(1640), - [anon_sym_mod] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_bit_DASHshl] = ACTIONS(1640), - [anon_sym_bit_DASHshr] = ACTIONS(1640), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT2] = ACTIONS(1640), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_not_DASHin] = ACTIONS(1640), - [anon_sym_starts_DASHwith] = ACTIONS(1640), - [anon_sym_ends_DASHwith] = ACTIONS(1640), - [anon_sym_EQ_TILDE] = ACTIONS(1640), - [anon_sym_BANG_TILDE] = ACTIONS(1640), - [anon_sym_bit_DASHand] = ACTIONS(1640), - [anon_sym_bit_DASHxor] = ACTIONS(1640), - [anon_sym_bit_DASHor] = ACTIONS(1640), - [anon_sym_and] = ACTIONS(1640), - [anon_sym_xor] = ACTIONS(1640), - [anon_sym_or] = ACTIONS(1640), - [anon_sym_not] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [aux_sym__val_number_token4] = ACTIONS(1640), - [aux_sym__val_number_token5] = ACTIONS(1640), - [aux_sym__val_number_token6] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1640), - [anon_sym_0o] = ACTIONS(1640), - [anon_sym_0x] = ACTIONS(1640), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_CARET] = ACTIONS(1640), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [sym_cmd_identifier] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_where] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_mod] = ACTIONS(1647), + [anon_sym_SLASH_SLASH] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_bit_DASHshl] = ACTIONS(1647), + [anon_sym_bit_DASHshr] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_not_DASHin] = ACTIONS(1647), + [anon_sym_starts_DASHwith] = ACTIONS(1647), + [anon_sym_ends_DASHwith] = ACTIONS(1647), + [anon_sym_EQ_TILDE] = ACTIONS(1647), + [anon_sym_BANG_TILDE] = ACTIONS(1647), + [anon_sym_bit_DASHand] = ACTIONS(1647), + [anon_sym_bit_DASHxor] = ACTIONS(1647), + [anon_sym_bit_DASHor] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_xor] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_null] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1647), + [anon_sym_false] = ACTIONS(1647), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_token1] = ACTIONS(1647), + [aux_sym__val_number_token2] = ACTIONS(1647), + [aux_sym__val_number_token3] = ACTIONS(1647), + [aux_sym__val_number_token4] = ACTIONS(1647), + [aux_sym__val_number_token5] = ACTIONS(1647), + [aux_sym__val_number_token6] = ACTIONS(1647), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym__str_single_quotes] = ACTIONS(1647), + [sym__str_back_ticks] = ACTIONS(1647), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(105), }, [623] = { [sym_comment] = STATE(623), - [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), - [anon_sym_SEMI] = ACTIONS(1519), - [sym_cmd_identifier] = ACTIONS(1519), - [anon_sym_LF] = ACTIONS(1644), - [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(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_error] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_in] = 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(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_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_STAR] = ACTIONS(1519), - [anon_sym_where] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_not] = ACTIONS(1519), - [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_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [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(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [sym_cmd_identifier] = ACTIONS(1651), + [anon_sym_LF] = ACTIONS(1653), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_GT] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_where] = ACTIONS(1651), + [anon_sym_STAR_STAR] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(1651), + [anon_sym_mod] = ACTIONS(1651), + [anon_sym_SLASH_SLASH] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_bit_DASHshl] = ACTIONS(1651), + [anon_sym_bit_DASHshr] = ACTIONS(1651), + [anon_sym_EQ_EQ] = ACTIONS(1651), + [anon_sym_BANG_EQ] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ] = ACTIONS(1651), + [anon_sym_GT_EQ] = ACTIONS(1651), + [anon_sym_not_DASHin] = ACTIONS(1651), + [anon_sym_starts_DASHwith] = ACTIONS(1651), + [anon_sym_ends_DASHwith] = ACTIONS(1651), + [anon_sym_EQ_TILDE] = ACTIONS(1651), + [anon_sym_BANG_TILDE] = ACTIONS(1651), + [anon_sym_bit_DASHand] = ACTIONS(1651), + [anon_sym_bit_DASHxor] = ACTIONS(1651), + [anon_sym_bit_DASHor] = ACTIONS(1651), + [anon_sym_and] = ACTIONS(1651), + [anon_sym_xor] = ACTIONS(1651), + [anon_sym_or] = ACTIONS(1651), + [anon_sym_not] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1651), [anon_sym_POUND] = ACTIONS(105), }, [624] = { [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_alias] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_let_DASHenv] = ACTIONS(1646), - [anon_sym_mut] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1646), - [sym_cmd_identifier] = ACTIONS(1646), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1646), - [anon_sym_export_DASHenv] = ACTIONS(1646), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_use] = ACTIONS(1646), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_RPAREN] = ACTIONS(1646), - [anon_sym_DOLLAR] = ACTIONS(1646), - [anon_sym_error] = ACTIONS(1646), - [anon_sym_GT] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_in] = ACTIONS(1646), - [anon_sym_loop] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_do] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_match] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_DOT] = ACTIONS(1646), - [anon_sym_try] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_source] = ACTIONS(1646), - [anon_sym_source_DASHenv] = ACTIONS(1646), - [anon_sym_register] = ACTIONS(1646), - [anon_sym_hide] = ACTIONS(1646), - [anon_sym_hide_DASHenv] = ACTIONS(1646), - [anon_sym_overlay] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_where] = ACTIONS(1646), - [anon_sym_STAR_STAR] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_SLASH] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_SLASH_SLASH] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_bit_DASHshl] = ACTIONS(1646), - [anon_sym_bit_DASHshr] = ACTIONS(1646), - [anon_sym_EQ_EQ] = ACTIONS(1646), - [anon_sym_BANG_EQ] = ACTIONS(1646), - [anon_sym_LT2] = ACTIONS(1646), - [anon_sym_LT_EQ] = ACTIONS(1646), - [anon_sym_GT_EQ] = ACTIONS(1646), - [anon_sym_not_DASHin] = ACTIONS(1646), - [anon_sym_starts_DASHwith] = ACTIONS(1646), - [anon_sym_ends_DASHwith] = ACTIONS(1646), - [anon_sym_EQ_TILDE] = ACTIONS(1646), - [anon_sym_BANG_TILDE] = ACTIONS(1646), - [anon_sym_bit_DASHand] = ACTIONS(1646), - [anon_sym_bit_DASHxor] = ACTIONS(1646), - [anon_sym_bit_DASHor] = ACTIONS(1646), - [anon_sym_and] = ACTIONS(1646), - [anon_sym_xor] = ACTIONS(1646), - [anon_sym_or] = ACTIONS(1646), - [anon_sym_not] = ACTIONS(1646), - [anon_sym_null] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [aux_sym__val_number_decimal_token1] = ACTIONS(1646), - [aux_sym__val_number_token1] = ACTIONS(1646), - [aux_sym__val_number_token2] = ACTIONS(1646), - [aux_sym__val_number_token3] = ACTIONS(1646), - [aux_sym__val_number_token4] = ACTIONS(1646), - [aux_sym__val_number_token5] = ACTIONS(1646), - [aux_sym__val_number_token6] = ACTIONS(1646), - [anon_sym_0b] = ACTIONS(1646), - [anon_sym_0o] = ACTIONS(1646), - [anon_sym_0x] = ACTIONS(1646), - [sym_val_date] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [sym__str_single_quotes] = ACTIONS(1646), - [sym__str_back_ticks] = ACTIONS(1646), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1646), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1646), - [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_alias] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_let_DASHenv] = ACTIONS(1655), + [anon_sym_mut] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [sym_cmd_identifier] = ACTIONS(1655), + [anon_sym_LF] = ACTIONS(1657), + [anon_sym_def] = ACTIONS(1655), + [anon_sym_export_DASHenv] = ACTIONS(1655), + [anon_sym_extern] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_use] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_error] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_loop] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_match] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_source] = ACTIONS(1655), + [anon_sym_source_DASHenv] = ACTIONS(1655), + [anon_sym_register] = ACTIONS(1655), + [anon_sym_hide] = ACTIONS(1655), + [anon_sym_hide_DASHenv] = ACTIONS(1655), + [anon_sym_overlay] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_where] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_mod] = ACTIONS(1655), + [anon_sym_SLASH_SLASH] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_bit_DASHshl] = ACTIONS(1655), + [anon_sym_bit_DASHshr] = ACTIONS(1655), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_LT2] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1655), + [anon_sym_GT_EQ] = ACTIONS(1655), + [anon_sym_not_DASHin] = ACTIONS(1655), + [anon_sym_starts_DASHwith] = ACTIONS(1655), + [anon_sym_ends_DASHwith] = ACTIONS(1655), + [anon_sym_EQ_TILDE] = ACTIONS(1655), + [anon_sym_BANG_TILDE] = ACTIONS(1655), + [anon_sym_bit_DASHand] = ACTIONS(1655), + [anon_sym_bit_DASHxor] = ACTIONS(1655), + [anon_sym_bit_DASHor] = ACTIONS(1655), + [anon_sym_and] = ACTIONS(1655), + [anon_sym_xor] = ACTIONS(1655), + [anon_sym_or] = ACTIONS(1655), + [anon_sym_not] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1655), + [aux_sym__val_number_token1] = ACTIONS(1655), + [aux_sym__val_number_token2] = ACTIONS(1655), + [aux_sym__val_number_token3] = ACTIONS(1655), + [aux_sym__val_number_token4] = ACTIONS(1655), + [aux_sym__val_number_token5] = ACTIONS(1655), + [aux_sym__val_number_token6] = ACTIONS(1655), + [anon_sym_0b] = ACTIONS(1655), + [anon_sym_0o] = ACTIONS(1655), + [anon_sym_0x] = ACTIONS(1655), + [sym_val_date] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym__str_single_quotes] = ACTIONS(1655), + [sym__str_back_ticks] = ACTIONS(1655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_POUND] = ACTIONS(105), }, [625] = { [sym_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1511), - [anon_sym_alias] = ACTIONS(1511), - [anon_sym_let] = ACTIONS(1511), - [anon_sym_let_DASHenv] = ACTIONS(1511), - [anon_sym_mut] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1511), - [sym_cmd_identifier] = ACTIONS(1511), - [anon_sym_LF] = ACTIONS(1513), - [anon_sym_def] = ACTIONS(1511), - [anon_sym_export_DASHenv] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym_module] = ACTIONS(1511), - [anon_sym_use] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1511), - [anon_sym_error] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_source] = ACTIONS(1511), - [anon_sym_source_DASHenv] = ACTIONS(1511), - [anon_sym_register] = ACTIONS(1511), - [anon_sym_hide] = ACTIONS(1511), - [anon_sym_hide_DASHenv] = ACTIONS(1511), - [anon_sym_overlay] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_where] = ACTIONS(1511), - [anon_sym_STAR_STAR] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_mod] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_bit_DASHshl] = ACTIONS(1511), - [anon_sym_bit_DASHshr] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_LT2] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1511), - [anon_sym_BANG_TILDE] = ACTIONS(1511), - [anon_sym_bit_DASHand] = ACTIONS(1511), - [anon_sym_bit_DASHxor] = ACTIONS(1511), - [anon_sym_bit_DASHor] = ACTIONS(1511), - [anon_sym_and] = ACTIONS(1511), - [anon_sym_xor] = ACTIONS(1511), - [anon_sym_or] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [aux_sym__val_number_decimal_token1] = ACTIONS(1511), - [aux_sym__val_number_token1] = ACTIONS(1511), - [aux_sym__val_number_token2] = ACTIONS(1511), - [aux_sym__val_number_token3] = ACTIONS(1511), - [aux_sym__val_number_token4] = ACTIONS(1511), - [aux_sym__val_number_token5] = ACTIONS(1511), - [aux_sym__val_number_token6] = ACTIONS(1511), - [anon_sym_0b] = ACTIONS(1511), - [anon_sym_0o] = ACTIONS(1511), - [anon_sym_0x] = ACTIONS(1511), - [sym_val_date] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [sym__str_single_quotes] = ACTIONS(1511), - [sym__str_back_ticks] = ACTIONS(1511), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), + [ts_builtin_sym_end] = ACTIONS(1534), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1532), + [anon_sym_BANG_EQ] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1532), + [anon_sym_GT_EQ] = ACTIONS(1532), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1532), + [anon_sym_BANG_TILDE] = ACTIONS(1532), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [anon_sym_not] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), [anon_sym_POUND] = ACTIONS(105), }, [626] = { [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(1650), - [anon_sym_alias] = ACTIONS(1650), - [anon_sym_let] = ACTIONS(1650), - [anon_sym_let_DASHenv] = ACTIONS(1650), - [anon_sym_mut] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [sym_cmd_identifier] = ACTIONS(1650), - [anon_sym_LF] = ACTIONS(1652), - [anon_sym_def] = ACTIONS(1650), - [anon_sym_export_DASHenv] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_module] = ACTIONS(1650), - [anon_sym_use] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_in] = ACTIONS(1650), - [anon_sym_loop] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_match] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_source] = ACTIONS(1650), - [anon_sym_source_DASHenv] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1650), - [anon_sym_hide] = ACTIONS(1650), - [anon_sym_hide_DASHenv] = ACTIONS(1650), - [anon_sym_overlay] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_where] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_SLASH] = ACTIONS(1650), - [anon_sym_mod] = ACTIONS(1650), - [anon_sym_SLASH_SLASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_bit_DASHshl] = ACTIONS(1650), - [anon_sym_bit_DASHshr] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1650), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_not_DASHin] = ACTIONS(1650), - [anon_sym_starts_DASHwith] = ACTIONS(1650), - [anon_sym_ends_DASHwith] = ACTIONS(1650), - [anon_sym_EQ_TILDE] = ACTIONS(1650), - [anon_sym_BANG_TILDE] = ACTIONS(1650), - [anon_sym_bit_DASHand] = ACTIONS(1650), - [anon_sym_bit_DASHxor] = ACTIONS(1650), - [anon_sym_bit_DASHor] = ACTIONS(1650), - [anon_sym_and] = ACTIONS(1650), - [anon_sym_xor] = ACTIONS(1650), - [anon_sym_or] = ACTIONS(1650), - [anon_sym_not] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1650), - [anon_sym_0o] = ACTIONS(1650), - [anon_sym_0x] = ACTIONS(1650), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_CARET] = ACTIONS(1650), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [sym_cmd_identifier] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_where] = ACTIONS(1659), + [anon_sym_STAR_STAR] = ACTIONS(1659), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_SLASH] = ACTIONS(1659), + [anon_sym_mod] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_bit_DASHshl] = ACTIONS(1659), + [anon_sym_bit_DASHshr] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1659), + [anon_sym_BANG_EQ] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1659), + [anon_sym_LT_EQ] = ACTIONS(1659), + [anon_sym_GT_EQ] = ACTIONS(1659), + [anon_sym_not_DASHin] = ACTIONS(1659), + [anon_sym_starts_DASHwith] = ACTIONS(1659), + [anon_sym_ends_DASHwith] = ACTIONS(1659), + [anon_sym_EQ_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(1659), + [anon_sym_bit_DASHand] = ACTIONS(1659), + [anon_sym_bit_DASHxor] = ACTIONS(1659), + [anon_sym_bit_DASHor] = ACTIONS(1659), + [anon_sym_and] = ACTIONS(1659), + [anon_sym_xor] = ACTIONS(1659), + [anon_sym_or] = ACTIONS(1659), + [anon_sym_not] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [aux_sym__val_number_token4] = ACTIONS(1659), + [aux_sym__val_number_token5] = ACTIONS(1659), + [aux_sym__val_number_token6] = ACTIONS(1659), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), + [anon_sym_CARET] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(105), }, [627] = { [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(1654), - [anon_sym_alias] = ACTIONS(1654), - [anon_sym_let] = ACTIONS(1654), - [anon_sym_let_DASHenv] = ACTIONS(1654), - [anon_sym_mut] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1654), - [sym_cmd_identifier] = ACTIONS(1654), - [anon_sym_LF] = ACTIONS(1656), - [anon_sym_def] = ACTIONS(1654), - [anon_sym_export_DASHenv] = ACTIONS(1654), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_use] = ACTIONS(1654), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1654), - [anon_sym_error] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_in] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_DOT] = ACTIONS(1654), - [anon_sym_try] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_source] = ACTIONS(1654), - [anon_sym_source_DASHenv] = ACTIONS(1654), - [anon_sym_register] = ACTIONS(1654), - [anon_sym_hide] = ACTIONS(1654), - [anon_sym_hide_DASHenv] = ACTIONS(1654), - [anon_sym_overlay] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_where] = ACTIONS(1654), - [anon_sym_STAR_STAR] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_SLASH] = ACTIONS(1654), - [anon_sym_mod] = ACTIONS(1654), - [anon_sym_SLASH_SLASH] = ACTIONS(1654), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_bit_DASHshl] = ACTIONS(1654), - [anon_sym_bit_DASHshr] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), - [anon_sym_LT2] = ACTIONS(1654), - [anon_sym_LT_EQ] = ACTIONS(1654), - [anon_sym_GT_EQ] = ACTIONS(1654), - [anon_sym_not_DASHin] = ACTIONS(1654), - [anon_sym_starts_DASHwith] = ACTIONS(1654), - [anon_sym_ends_DASHwith] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1654), - [anon_sym_BANG_TILDE] = ACTIONS(1654), - [anon_sym_bit_DASHand] = ACTIONS(1654), - [anon_sym_bit_DASHxor] = ACTIONS(1654), - [anon_sym_bit_DASHor] = ACTIONS(1654), - [anon_sym_and] = ACTIONS(1654), - [anon_sym_xor] = ACTIONS(1654), - [anon_sym_or] = ACTIONS(1654), - [anon_sym_not] = ACTIONS(1654), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1654), - [anon_sym_false] = ACTIONS(1654), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_token1] = ACTIONS(1654), - [aux_sym__val_number_token2] = ACTIONS(1654), - [aux_sym__val_number_token3] = ACTIONS(1654), - [aux_sym__val_number_token4] = ACTIONS(1654), - [aux_sym__val_number_token5] = ACTIONS(1654), - [aux_sym__val_number_token6] = ACTIONS(1654), - [anon_sym_0b] = ACTIONS(1654), - [anon_sym_0o] = ACTIONS(1654), - [anon_sym_0x] = ACTIONS(1654), - [sym_val_date] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [sym__str_single_quotes] = ACTIONS(1654), - [sym__str_back_ticks] = ACTIONS(1654), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1654), - [anon_sym_CARET] = ACTIONS(1654), + [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), + [anon_sym_SEMI] = ACTIONS(1663), + [sym_cmd_identifier] = ACTIONS(1663), + [anon_sym_LF] = ACTIONS(1665), + [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_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_try] = 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_STAR] = ACTIONS(1663), + [anon_sym_where] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_not] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1663), + [aux_sym__val_number_token2] = ACTIONS(1663), + [aux_sym__val_number_token3] = ACTIONS(1663), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_0b] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(105), }, [628] = { [sym_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1501), - [anon_sym_alias] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_let_DASHenv] = ACTIONS(1501), - [anon_sym_mut] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1501), - [sym_cmd_identifier] = ACTIONS(1501), - [anon_sym_LF] = ACTIONS(1503), - [anon_sym_def] = ACTIONS(1501), - [anon_sym_export_DASHenv] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_module] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1501), - [anon_sym_error] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT2] = ACTIONS(1503), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_source] = ACTIONS(1501), - [anon_sym_source_DASHenv] = ACTIONS(1501), - [anon_sym_register] = ACTIONS(1501), - [anon_sym_hide] = ACTIONS(1501), - [anon_sym_hide_DASHenv] = ACTIONS(1501), - [anon_sym_overlay] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(1501), - [anon_sym_STAR_STAR] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_bit_DASHshl] = ACTIONS(1501), - [anon_sym_bit_DASHshr] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1501), - [anon_sym_BANG_EQ] = ACTIONS(1501), - [anon_sym_LT2] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1501), - [anon_sym_not_DASHin] = ACTIONS(1501), - [anon_sym_starts_DASHwith] = ACTIONS(1501), - [anon_sym_ends_DASHwith] = ACTIONS(1501), - [anon_sym_EQ_TILDE] = ACTIONS(1501), - [anon_sym_BANG_TILDE] = ACTIONS(1501), - [anon_sym_bit_DASHand] = ACTIONS(1501), - [anon_sym_bit_DASHxor] = ACTIONS(1501), - [anon_sym_bit_DASHor] = ACTIONS(1501), - [anon_sym_and] = ACTIONS(1501), - [anon_sym_xor] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1501), - [aux_sym__val_number_token2] = ACTIONS(1501), - [aux_sym__val_number_token3] = ACTIONS(1501), - [aux_sym__val_number_token4] = ACTIONS(1501), - [aux_sym__val_number_token5] = ACTIONS(1501), - [aux_sym__val_number_token6] = ACTIONS(1501), - [anon_sym_0b] = ACTIONS(1501), - [anon_sym_0o] = ACTIONS(1501), - [anon_sym_0x] = ACTIONS(1501), - [sym_val_date] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), + [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), + [anon_sym_SEMI] = ACTIONS(1667), + [sym_cmd_identifier] = ACTIONS(1667), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1667), + [anon_sym_try] = 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_STAR] = ACTIONS(1667), + [anon_sym_where] = ACTIONS(1667), + [anon_sym_STAR_STAR] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_SLASH_SLASH] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_bit_DASHshl] = ACTIONS(1667), + [anon_sym_bit_DASHshr] = ACTIONS(1667), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1667), + [anon_sym_GT_EQ] = ACTIONS(1667), + [anon_sym_not_DASHin] = ACTIONS(1667), + [anon_sym_starts_DASHwith] = ACTIONS(1667), + [anon_sym_ends_DASHwith] = ACTIONS(1667), + [anon_sym_EQ_TILDE] = ACTIONS(1667), + [anon_sym_BANG_TILDE] = ACTIONS(1667), + [anon_sym_bit_DASHand] = ACTIONS(1667), + [anon_sym_bit_DASHxor] = ACTIONS(1667), + [anon_sym_bit_DASHor] = ACTIONS(1667), + [anon_sym_and] = ACTIONS(1667), + [anon_sym_xor] = ACTIONS(1667), + [anon_sym_or] = ACTIONS(1667), + [anon_sym_not] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = 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), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(105), }, [629] = { [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(1658), - [anon_sym_alias] = ACTIONS(1658), - [anon_sym_let] = ACTIONS(1658), - [anon_sym_let_DASHenv] = ACTIONS(1658), - [anon_sym_mut] = ACTIONS(1658), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1658), - [sym_cmd_identifier] = ACTIONS(1658), - [anon_sym_LF] = ACTIONS(1660), - [anon_sym_def] = ACTIONS(1658), - [anon_sym_export_DASHenv] = ACTIONS(1658), - [anon_sym_extern] = ACTIONS(1658), - [anon_sym_module] = ACTIONS(1658), - [anon_sym_use] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_RPAREN] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1658), - [anon_sym_error] = ACTIONS(1658), - [anon_sym_GT] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_continue] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_in] = ACTIONS(1658), - [anon_sym_loop] = ACTIONS(1658), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_do] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_match] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_source] = ACTIONS(1658), - [anon_sym_source_DASHenv] = ACTIONS(1658), - [anon_sym_register] = ACTIONS(1658), - [anon_sym_hide] = ACTIONS(1658), - [anon_sym_hide_DASHenv] = ACTIONS(1658), - [anon_sym_overlay] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_where] = ACTIONS(1658), - [anon_sym_STAR_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_mod] = ACTIONS(1658), - [anon_sym_SLASH_SLASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_bit_DASHshl] = ACTIONS(1658), - [anon_sym_bit_DASHshr] = ACTIONS(1658), - [anon_sym_EQ_EQ] = ACTIONS(1658), - [anon_sym_BANG_EQ] = ACTIONS(1658), - [anon_sym_LT2] = ACTIONS(1658), - [anon_sym_LT_EQ] = ACTIONS(1658), - [anon_sym_GT_EQ] = ACTIONS(1658), - [anon_sym_not_DASHin] = ACTIONS(1658), - [anon_sym_starts_DASHwith] = ACTIONS(1658), - [anon_sym_ends_DASHwith] = ACTIONS(1658), - [anon_sym_EQ_TILDE] = ACTIONS(1658), - [anon_sym_BANG_TILDE] = ACTIONS(1658), - [anon_sym_bit_DASHand] = ACTIONS(1658), - [anon_sym_bit_DASHxor] = ACTIONS(1658), - [anon_sym_bit_DASHor] = ACTIONS(1658), - [anon_sym_and] = ACTIONS(1658), - [anon_sym_xor] = ACTIONS(1658), - [anon_sym_or] = ACTIONS(1658), - [anon_sym_not] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [aux_sym__val_number_token4] = ACTIONS(1658), - [aux_sym__val_number_token5] = ACTIONS(1658), - [aux_sym__val_number_token6] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1658), - [anon_sym_0o] = ACTIONS(1658), - [anon_sym_0x] = ACTIONS(1658), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_alias] = ACTIONS(1671), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_let_DASHenv] = ACTIONS(1671), + [anon_sym_mut] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [sym_cmd_identifier] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_def] = ACTIONS(1671), + [anon_sym_export_DASHenv] = ACTIONS(1671), + [anon_sym_extern] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_use] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_error] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_loop] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_do] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DOT] = ACTIONS(1671), + [anon_sym_try] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_source] = ACTIONS(1671), + [anon_sym_source_DASHenv] = ACTIONS(1671), + [anon_sym_register] = ACTIONS(1671), + [anon_sym_hide] = ACTIONS(1671), + [anon_sym_hide_DASHenv] = ACTIONS(1671), + [anon_sym_overlay] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_where] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_SLASH] = ACTIONS(1671), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1671), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1671), + [anon_sym_0x] = ACTIONS(1671), + [sym_val_date] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [sym__str_single_quotes] = ACTIONS(1671), + [sym__str_back_ticks] = ACTIONS(1671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), + [anon_sym_CARET] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(105), }, [630] = { [sym_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(1517), - [anon_sym_export] = ACTIONS(1515), - [anon_sym_alias] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_let_DASHenv] = ACTIONS(1515), - [anon_sym_mut] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [sym_cmd_identifier] = ACTIONS(1515), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_def] = ACTIONS(1515), - [anon_sym_export_DASHenv] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_module] = ACTIONS(1515), - [anon_sym_use] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_error] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_DOT2] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_source] = ACTIONS(1515), - [anon_sym_source_DASHenv] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_hide] = ACTIONS(1515), - [anon_sym_hide_DASHenv] = ACTIONS(1515), - [anon_sym_overlay] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_where] = ACTIONS(1515), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_not] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1515), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1515), - [anon_sym_0o] = ACTIONS(1515), - [anon_sym_0x] = ACTIONS(1515), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_alias] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_let_DASHenv] = ACTIONS(1675), + [anon_sym_mut] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [sym_cmd_identifier] = ACTIONS(1675), + [anon_sym_LF] = ACTIONS(1677), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_export_DASHenv] = ACTIONS(1675), + [anon_sym_extern] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_use] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_error] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_loop] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_source] = ACTIONS(1675), + [anon_sym_source_DASHenv] = ACTIONS(1675), + [anon_sym_register] = ACTIONS(1675), + [anon_sym_hide] = ACTIONS(1675), + [anon_sym_hide_DASHenv] = ACTIONS(1675), + [anon_sym_overlay] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_where] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1675), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT_EQ] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_not] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = 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(1675), + [anon_sym_0o] = ACTIONS(1675), + [anon_sym_0x] = ACTIONS(1675), + [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_CARET] = ACTIONS(1675), [anon_sym_POUND] = ACTIONS(105), }, [631] = { [sym_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(215), [anon_sym_export] = ACTIONS(213), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(213), @@ -150893,6 +152491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(213), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(213), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_error] = ACTIONS(213), [anon_sym_GT] = ACTIONS(213), @@ -150907,8 +152506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(213), [anon_sym_match] = ACTIONS(213), [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(213), [anon_sym_DOT] = ACTIONS(213), - [anon_sym_DOT2] = ACTIONS(1662), [anon_sym_try] = ACTIONS(213), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(213), @@ -150968,557 +152567,2117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [632] = { [sym_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(1493), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_alias] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_let_DASHenv] = ACTIONS(1491), - [anon_sym_mut] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [sym_cmd_identifier] = ACTIONS(1491), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_def] = ACTIONS(1491), - [anon_sym_export_DASHenv] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_error] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT2] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_source] = ACTIONS(1491), - [anon_sym_source_DASHenv] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_hide] = ACTIONS(1491), - [anon_sym_hide_DASHenv] = ACTIONS(1491), - [anon_sym_overlay] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_where] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_BANG_TILDE] = ACTIONS(1491), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [anon_sym_not] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1491), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_0b] = ACTIONS(1491), - [anon_sym_0o] = ACTIONS(1491), - [anon_sym_0x] = ACTIONS(1491), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_bit_DASHshl] = ACTIONS(1565), + [anon_sym_bit_DASHshr] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT2] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_not_DASHin] = ACTIONS(1559), + [anon_sym_starts_DASHwith] = ACTIONS(1559), + [anon_sym_ends_DASHwith] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [633] = { [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_where] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1495), - [anon_sym_BANG_TILDE] = ACTIONS(1495), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [anon_sym_not] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [634] = { [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(1664), - [anon_sym_alias] = ACTIONS(1664), - [anon_sym_let] = ACTIONS(1664), - [anon_sym_let_DASHenv] = ACTIONS(1664), - [anon_sym_mut] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [sym_cmd_identifier] = ACTIONS(1664), - [anon_sym_LF] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1664), - [anon_sym_export_DASHenv] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_module] = ACTIONS(1664), - [anon_sym_use] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_error] = ACTIONS(1664), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_in] = ACTIONS(1664), - [anon_sym_loop] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_match] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_try] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_source] = ACTIONS(1664), - [anon_sym_source_DASHenv] = ACTIONS(1664), - [anon_sym_register] = ACTIONS(1664), - [anon_sym_hide] = ACTIONS(1664), - [anon_sym_hide_DASHenv] = ACTIONS(1664), - [anon_sym_overlay] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_where] = ACTIONS(1664), - [anon_sym_STAR_STAR] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_mod] = ACTIONS(1664), - [anon_sym_SLASH_SLASH] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_bit_DASHshl] = ACTIONS(1664), - [anon_sym_bit_DASHshr] = ACTIONS(1664), - [anon_sym_EQ_EQ] = ACTIONS(1664), - [anon_sym_BANG_EQ] = ACTIONS(1664), - [anon_sym_LT2] = ACTIONS(1664), - [anon_sym_LT_EQ] = ACTIONS(1664), - [anon_sym_GT_EQ] = ACTIONS(1664), - [anon_sym_not_DASHin] = ACTIONS(1664), - [anon_sym_starts_DASHwith] = ACTIONS(1664), - [anon_sym_ends_DASHwith] = ACTIONS(1664), - [anon_sym_EQ_TILDE] = ACTIONS(1664), - [anon_sym_BANG_TILDE] = ACTIONS(1664), - [anon_sym_bit_DASHand] = ACTIONS(1664), - [anon_sym_bit_DASHxor] = ACTIONS(1664), - [anon_sym_bit_DASHor] = ACTIONS(1664), - [anon_sym_and] = ACTIONS(1664), - [anon_sym_xor] = ACTIONS(1664), - [anon_sym_or] = ACTIONS(1664), - [anon_sym_not] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [aux_sym__val_number_decimal_token1] = ACTIONS(1664), - [aux_sym__val_number_token1] = ACTIONS(1664), - [aux_sym__val_number_token2] = ACTIONS(1664), - [aux_sym__val_number_token3] = ACTIONS(1664), - [aux_sym__val_number_token4] = ACTIONS(1664), - [aux_sym__val_number_token5] = ACTIONS(1664), - [aux_sym__val_number_token6] = ACTIONS(1664), - [anon_sym_0b] = ACTIONS(1664), - [anon_sym_0o] = ACTIONS(1664), - [anon_sym_0x] = ACTIONS(1664), - [sym_val_date] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1664), - [sym__str_single_quotes] = ACTIONS(1664), - [sym__str_back_ticks] = ACTIONS(1664), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1664), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1664), - [anon_sym_CARET] = ACTIONS(1664), + [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), + [anon_sym_SEMI] = ACTIONS(1445), + [sym_cmd_identifier] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [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(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_in] = 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(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_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_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1445), + [anon_sym_BANG_TILDE] = ACTIONS(1445), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [anon_sym_not] = ACTIONS(1445), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(105), }, [635] = { [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(1668), - [anon_sym_alias] = ACTIONS(1668), - [anon_sym_let] = ACTIONS(1668), - [anon_sym_let_DASHenv] = ACTIONS(1668), - [anon_sym_mut] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [sym_cmd_identifier] = ACTIONS(1668), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_def] = ACTIONS(1668), - [anon_sym_export_DASHenv] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_module] = ACTIONS(1668), - [anon_sym_use] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_error] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_in] = ACTIONS(1668), - [anon_sym_loop] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1668), - [anon_sym_do] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_source] = ACTIONS(1668), - [anon_sym_source_DASHenv] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1668), - [anon_sym_hide] = ACTIONS(1668), - [anon_sym_hide_DASHenv] = ACTIONS(1668), - [anon_sym_overlay] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_where] = ACTIONS(1668), - [anon_sym_STAR_STAR] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_SLASH] = ACTIONS(1668), - [anon_sym_mod] = ACTIONS(1668), - [anon_sym_SLASH_SLASH] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_bit_DASHshl] = ACTIONS(1668), - [anon_sym_bit_DASHshr] = ACTIONS(1668), - [anon_sym_EQ_EQ] = ACTIONS(1668), - [anon_sym_BANG_EQ] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1668), - [anon_sym_LT_EQ] = ACTIONS(1668), - [anon_sym_GT_EQ] = ACTIONS(1668), - [anon_sym_not_DASHin] = ACTIONS(1668), - [anon_sym_starts_DASHwith] = ACTIONS(1668), - [anon_sym_ends_DASHwith] = ACTIONS(1668), - [anon_sym_EQ_TILDE] = ACTIONS(1668), - [anon_sym_BANG_TILDE] = ACTIONS(1668), - [anon_sym_bit_DASHand] = ACTIONS(1668), - [anon_sym_bit_DASHxor] = ACTIONS(1668), - [anon_sym_bit_DASHor] = ACTIONS(1668), - [anon_sym_and] = ACTIONS(1668), - [anon_sym_xor] = ACTIONS(1668), - [anon_sym_or] = ACTIONS(1668), - [anon_sym_not] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1668), - [anon_sym_0o] = ACTIONS(1668), - [anon_sym_0x] = ACTIONS(1668), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_CARET] = ACTIONS(1668), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_alias] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_let_DASHenv] = ACTIONS(1679), + [anon_sym_mut] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1679), + [sym_cmd_identifier] = ACTIONS(1679), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_def] = ACTIONS(1679), + [anon_sym_export_DASHenv] = ACTIONS(1679), + [anon_sym_extern] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1679), + [anon_sym_error] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1679), + [anon_sym_continue] = ACTIONS(1679), + [anon_sym_for] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_loop] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1679), + [anon_sym_do] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_try] = ACTIONS(1679), + [anon_sym_return] = ACTIONS(1679), + [anon_sym_source] = ACTIONS(1679), + [anon_sym_source_DASHenv] = ACTIONS(1679), + [anon_sym_register] = ACTIONS(1679), + [anon_sym_hide] = ACTIONS(1679), + [anon_sym_hide_DASHenv] = ACTIONS(1679), + [anon_sym_overlay] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_where] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1679), + [anon_sym_mod] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_bit_DASHshl] = ACTIONS(1679), + [anon_sym_bit_DASHshr] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_not_DASHin] = ACTIONS(1679), + [anon_sym_starts_DASHwith] = ACTIONS(1679), + [anon_sym_ends_DASHwith] = ACTIONS(1679), + [anon_sym_EQ_TILDE] = ACTIONS(1679), + [anon_sym_BANG_TILDE] = ACTIONS(1679), + [anon_sym_bit_DASHand] = ACTIONS(1679), + [anon_sym_bit_DASHxor] = ACTIONS(1679), + [anon_sym_bit_DASHor] = ACTIONS(1679), + [anon_sym_and] = ACTIONS(1679), + [anon_sym_xor] = ACTIONS(1679), + [anon_sym_or] = ACTIONS(1679), + [anon_sym_not] = ACTIONS(1679), + [anon_sym_null] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [aux_sym__val_number_decimal_token1] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(1679), + [aux_sym__val_number_token2] = ACTIONS(1679), + [aux_sym__val_number_token3] = ACTIONS(1679), + [aux_sym__val_number_token4] = ACTIONS(1679), + [aux_sym__val_number_token5] = ACTIONS(1679), + [aux_sym__val_number_token6] = ACTIONS(1679), + [anon_sym_0b] = ACTIONS(1679), + [anon_sym_0o] = ACTIONS(1679), + [anon_sym_0x] = ACTIONS(1679), + [sym_val_date] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [sym__str_single_quotes] = ACTIONS(1679), + [sym__str_back_ticks] = ACTIONS(1679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1679), + [anon_sym_CARET] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(105), }, [636] = { [sym_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1485), - [anon_sym_alias] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_let_DASHenv] = ACTIONS(1485), - [anon_sym_mut] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1485), - [sym_cmd_identifier] = ACTIONS(1485), - [anon_sym_LF] = ACTIONS(1487), - [anon_sym_def] = ACTIONS(1485), - [anon_sym_export_DASHenv] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_module] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_error] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_in] = ACTIONS(1485), - [anon_sym_loop] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_DOT2] = ACTIONS(1487), - [anon_sym_try] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_source] = ACTIONS(1485), - [anon_sym_source_DASHenv] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_hide] = ACTIONS(1485), - [anon_sym_hide_DASHenv] = ACTIONS(1485), - [anon_sym_overlay] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_where] = ACTIONS(1485), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_SLASH_SLASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_bit_DASHshl] = ACTIONS(1485), - [anon_sym_bit_DASHshr] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_LT2] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_not_DASHin] = ACTIONS(1485), - [anon_sym_starts_DASHwith] = ACTIONS(1485), - [anon_sym_ends_DASHwith] = ACTIONS(1485), - [anon_sym_EQ_TILDE] = ACTIONS(1485), - [anon_sym_BANG_TILDE] = ACTIONS(1485), - [anon_sym_bit_DASHand] = ACTIONS(1485), - [anon_sym_bit_DASHxor] = ACTIONS(1485), - [anon_sym_bit_DASHor] = ACTIONS(1485), - [anon_sym_and] = ACTIONS(1485), - [anon_sym_xor] = ACTIONS(1485), - [anon_sym_or] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_null] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [aux_sym__val_number_decimal_token1] = ACTIONS(1485), - [aux_sym__val_number_token1] = ACTIONS(1485), - [aux_sym__val_number_token2] = ACTIONS(1485), - [aux_sym__val_number_token3] = ACTIONS(1485), - [aux_sym__val_number_token4] = ACTIONS(1485), - [aux_sym__val_number_token5] = ACTIONS(1485), - [aux_sym__val_number_token6] = ACTIONS(1485), - [anon_sym_0b] = ACTIONS(1485), - [anon_sym_0o] = ACTIONS(1485), - [anon_sym_0x] = ACTIONS(1485), - [sym_val_date] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym__str_single_quotes] = ACTIONS(1485), - [sym__str_back_ticks] = ACTIONS(1485), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [sym_cmd_identifier] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_where] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1513), + [anon_sym_BANG_TILDE] = ACTIONS(1513), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(105), }, [637] = { [sym_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_LT2] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_not_DASHin] = ACTIONS(1676), - [anon_sym_starts_DASHwith] = ACTIONS(1676), - [anon_sym_ends_DASHwith] = ACTIONS(1676), - [anon_sym_EQ_TILDE] = ACTIONS(1684), - [anon_sym_BANG_TILDE] = ACTIONS(1684), - [anon_sym_bit_DASHand] = ACTIONS(1686), - [anon_sym_bit_DASHxor] = ACTIONS(1688), - [anon_sym_bit_DASHor] = ACTIONS(1690), - [anon_sym_and] = ACTIONS(1692), - [anon_sym_xor] = ACTIONS(1694), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1683), + [anon_sym_alias] = ACTIONS(1683), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_let_DASHenv] = ACTIONS(1683), + [anon_sym_mut] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [sym_cmd_identifier] = ACTIONS(1683), + [anon_sym_LF] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1683), + [anon_sym_export_DASHenv] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_module] = ACTIONS(1683), + [anon_sym_use] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1683), + [anon_sym_error] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_loop] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_match] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1683), + [anon_sym_try] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_source] = ACTIONS(1683), + [anon_sym_source_DASHenv] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1683), + [anon_sym_hide] = ACTIONS(1683), + [anon_sym_hide_DASHenv] = ACTIONS(1683), + [anon_sym_overlay] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1683), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_not] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1683), + [anon_sym_0x] = ACTIONS(1683), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1683), [anon_sym_POUND] = ACTIONS(105), }, [638] = { [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_alias] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_let_DASHenv] = ACTIONS(1687), + [anon_sym_mut] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [sym_cmd_identifier] = ACTIONS(1687), + [anon_sym_LF] = ACTIONS(1689), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_export_DASHenv] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_error] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_DOT] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_source] = ACTIONS(1687), + [anon_sym_source_DASHenv] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_hide] = ACTIONS(1687), + [anon_sym_hide_DASHenv] = ACTIONS(1687), + [anon_sym_overlay] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_where] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = 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_not] = ACTIONS(1687), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = 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(1687), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [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_CARET] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(105), + }, + [639] = { + [sym_comment] = STATE(639), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), + }, + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), + }, + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1532), + [anon_sym_BANG_EQ] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1532), + [anon_sym_GT_EQ] = ACTIONS(1532), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1532), + [anon_sym_BANG_TILDE] = ACTIONS(1532), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [anon_sym_not] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(105), + }, + [642] = { + [sym_comment] = STATE(642), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), + }, + [643] = { + [sym_comment] = STATE(643), + [ts_builtin_sym_end] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_alias] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_let_DASHenv] = ACTIONS(1520), + [anon_sym_mut] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [sym_cmd_identifier] = ACTIONS(1520), + [anon_sym_LF] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1520), + [anon_sym_export_DASHenv] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_module] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_in] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_source] = ACTIONS(1520), + [anon_sym_source_DASHenv] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_hide] = ACTIONS(1520), + [anon_sym_hide_DASHenv] = ACTIONS(1520), + [anon_sym_overlay] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_where] = ACTIONS(1520), + [anon_sym_STAR_STAR] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_bit_DASHshl] = ACTIONS(1520), + [anon_sym_bit_DASHshr] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1520), + [anon_sym_BANG_EQ] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1520), + [anon_sym_not_DASHin] = ACTIONS(1520), + [anon_sym_starts_DASHwith] = ACTIONS(1520), + [anon_sym_ends_DASHwith] = ACTIONS(1520), + [anon_sym_EQ_TILDE] = ACTIONS(1520), + [anon_sym_BANG_TILDE] = ACTIONS(1520), + [anon_sym_bit_DASHand] = ACTIONS(1520), + [anon_sym_bit_DASHxor] = ACTIONS(1520), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1520), + [anon_sym_xor] = ACTIONS(1520), + [anon_sym_or] = ACTIONS(1520), + [anon_sym_not] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1520), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1520), + [anon_sym_0x] = ACTIONS(1520), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(105), + }, + [644] = { + [sym_comment] = STATE(644), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), + }, + [645] = { + [sym_comment] = STATE(645), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_alias] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_let_DASHenv] = ACTIONS(1691), + [anon_sym_mut] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [sym_cmd_identifier] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_export_DASHenv] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_DOT] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_source] = ACTIONS(1691), + [anon_sym_source_DASHenv] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_hide] = ACTIONS(1691), + [anon_sym_hide_DASHenv] = ACTIONS(1691), + [anon_sym_overlay] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_where] = ACTIONS(1691), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT2] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT_EQ] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_not] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1691), + [anon_sym_0x] = ACTIONS(1691), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(105), + }, + [646] = { + [sym_comment] = STATE(646), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [sym_cmd_identifier] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_where] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(105), + }, + [647] = { + [sym_comment] = STATE(647), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_where] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_BANG_TILDE] = ACTIONS(1545), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(105), + }, + [648] = { + [sym_comment] = STATE(648), + [anon_sym_export] = ACTIONS(1695), + [anon_sym_alias] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_let_DASHenv] = ACTIONS(1695), + [anon_sym_mut] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [sym_cmd_identifier] = ACTIONS(1695), + [anon_sym_LF] = ACTIONS(1697), + [anon_sym_def] = ACTIONS(1695), + [anon_sym_export_DASHenv] = ACTIONS(1695), + [anon_sym_extern] = ACTIONS(1695), + [anon_sym_module] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1695), + [anon_sym_error] = ACTIONS(1695), + [anon_sym_GT] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_in] = ACTIONS(1695), + [anon_sym_loop] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_do] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_source] = ACTIONS(1695), + [anon_sym_source_DASHenv] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1695), + [anon_sym_hide] = ACTIONS(1695), + [anon_sym_hide_DASHenv] = ACTIONS(1695), + [anon_sym_overlay] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_where] = ACTIONS(1695), + [anon_sym_STAR_STAR] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_bit_DASHshl] = ACTIONS(1695), + [anon_sym_bit_DASHshr] = ACTIONS(1695), + [anon_sym_EQ_EQ] = ACTIONS(1695), + [anon_sym_BANG_EQ] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1695), + [anon_sym_LT_EQ] = ACTIONS(1695), + [anon_sym_GT_EQ] = ACTIONS(1695), + [anon_sym_not_DASHin] = ACTIONS(1695), + [anon_sym_starts_DASHwith] = ACTIONS(1695), + [anon_sym_ends_DASHwith] = ACTIONS(1695), + [anon_sym_EQ_TILDE] = ACTIONS(1695), + [anon_sym_BANG_TILDE] = ACTIONS(1695), + [anon_sym_bit_DASHand] = ACTIONS(1695), + [anon_sym_bit_DASHxor] = ACTIONS(1695), + [anon_sym_bit_DASHor] = ACTIONS(1695), + [anon_sym_and] = ACTIONS(1695), + [anon_sym_xor] = ACTIONS(1695), + [anon_sym_or] = ACTIONS(1695), + [anon_sym_not] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1695), + [anon_sym_0o] = ACTIONS(1695), + [anon_sym_0x] = ACTIONS(1695), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_CARET] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(105), + }, + [649] = { + [sym_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1526), + [anon_sym_export] = ACTIONS(1524), + [anon_sym_alias] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_let_DASHenv] = ACTIONS(1524), + [anon_sym_mut] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [sym_cmd_identifier] = ACTIONS(1524), + [anon_sym_LF] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1524), + [anon_sym_export_DASHenv] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_module] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_error] = ACTIONS(1524), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_in] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_source] = ACTIONS(1524), + [anon_sym_source_DASHenv] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_hide] = ACTIONS(1524), + [anon_sym_hide_DASHenv] = ACTIONS(1524), + [anon_sym_overlay] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_where] = ACTIONS(1524), + [anon_sym_STAR_STAR] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_SLASH_SLASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_bit_DASHshl] = ACTIONS(1524), + [anon_sym_bit_DASHshr] = ACTIONS(1524), + [anon_sym_EQ_EQ] = ACTIONS(1524), + [anon_sym_BANG_EQ] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1524), + [anon_sym_LT_EQ] = ACTIONS(1524), + [anon_sym_GT_EQ] = ACTIONS(1524), + [anon_sym_not_DASHin] = ACTIONS(1524), + [anon_sym_starts_DASHwith] = ACTIONS(1524), + [anon_sym_ends_DASHwith] = ACTIONS(1524), + [anon_sym_EQ_TILDE] = ACTIONS(1524), + [anon_sym_BANG_TILDE] = ACTIONS(1524), + [anon_sym_bit_DASHand] = ACTIONS(1524), + [anon_sym_bit_DASHxor] = ACTIONS(1524), + [anon_sym_bit_DASHor] = ACTIONS(1524), + [anon_sym_and] = ACTIONS(1524), + [anon_sym_xor] = ACTIONS(1524), + [anon_sym_or] = ACTIONS(1524), + [anon_sym_not] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1524), + [aux_sym__val_number_token5] = ACTIONS(1524), + [aux_sym__val_number_token6] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1524), + [anon_sym_0o] = ACTIONS(1524), + [anon_sym_0x] = ACTIONS(1524), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(105), + }, + [650] = { + [sym_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(1649), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [sym_cmd_identifier] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_where] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_mod] = ACTIONS(1647), + [anon_sym_SLASH_SLASH] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_bit_DASHshl] = ACTIONS(1647), + [anon_sym_bit_DASHshr] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_not_DASHin] = ACTIONS(1647), + [anon_sym_starts_DASHwith] = ACTIONS(1647), + [anon_sym_ends_DASHwith] = ACTIONS(1647), + [anon_sym_EQ_TILDE] = ACTIONS(1647), + [anon_sym_BANG_TILDE] = ACTIONS(1647), + [anon_sym_bit_DASHand] = ACTIONS(1647), + [anon_sym_bit_DASHxor] = ACTIONS(1647), + [anon_sym_bit_DASHor] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_xor] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_null] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1647), + [anon_sym_false] = ACTIONS(1647), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_token1] = ACTIONS(1647), + [aux_sym__val_number_token2] = ACTIONS(1647), + [aux_sym__val_number_token3] = ACTIONS(1647), + [aux_sym__val_number_token4] = ACTIONS(1647), + [aux_sym__val_number_token5] = ACTIONS(1647), + [aux_sym__val_number_token6] = ACTIONS(1647), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym__str_single_quotes] = ACTIONS(1647), + [sym__str_back_ticks] = ACTIONS(1647), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1647), + [anon_sym_POUND] = ACTIONS(105), + }, + [651] = { + [sym_comment] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(1593), + [anon_sym_export] = ACTIONS(1591), + [anon_sym_alias] = ACTIONS(1591), + [anon_sym_let] = ACTIONS(1591), + [anon_sym_let_DASHenv] = ACTIONS(1591), + [anon_sym_mut] = ACTIONS(1591), + [anon_sym_const] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [sym_cmd_identifier] = ACTIONS(1591), + [anon_sym_LF] = ACTIONS(1593), + [anon_sym_def] = ACTIONS(1591), + [anon_sym_export_DASHenv] = ACTIONS(1591), + [anon_sym_extern] = ACTIONS(1591), + [anon_sym_module] = ACTIONS(1591), + [anon_sym_use] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_break] = ACTIONS(1591), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_for] = ACTIONS(1591), + [anon_sym_in] = ACTIONS(1591), + [anon_sym_loop] = ACTIONS(1591), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1591), + [anon_sym_match] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1591), + [anon_sym_return] = ACTIONS(1591), + [anon_sym_source] = ACTIONS(1591), + [anon_sym_source_DASHenv] = ACTIONS(1591), + [anon_sym_register] = ACTIONS(1591), + [anon_sym_hide] = ACTIONS(1591), + [anon_sym_hide_DASHenv] = ACTIONS(1591), + [anon_sym_overlay] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_where] = ACTIONS(1591), + [anon_sym_STAR_STAR] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_mod] = ACTIONS(1591), + [anon_sym_SLASH_SLASH] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_bit_DASHshl] = ACTIONS(1591), + [anon_sym_bit_DASHshr] = ACTIONS(1591), + [anon_sym_EQ_EQ] = ACTIONS(1591), + [anon_sym_BANG_EQ] = ACTIONS(1591), + [anon_sym_LT2] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_not_DASHin] = ACTIONS(1591), + [anon_sym_starts_DASHwith] = ACTIONS(1591), + [anon_sym_ends_DASHwith] = ACTIONS(1591), + [anon_sym_EQ_TILDE] = ACTIONS(1591), + [anon_sym_BANG_TILDE] = ACTIONS(1591), + [anon_sym_bit_DASHand] = ACTIONS(1591), + [anon_sym_bit_DASHxor] = ACTIONS(1591), + [anon_sym_bit_DASHor] = ACTIONS(1591), + [anon_sym_and] = ACTIONS(1591), + [anon_sym_xor] = ACTIONS(1591), + [anon_sym_or] = ACTIONS(1591), + [anon_sym_not] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1591), + [aux_sym__val_number_token5] = ACTIONS(1591), + [aux_sym__val_number_token6] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1591), + [anon_sym_0o] = ACTIONS(1591), + [anon_sym_0x] = ACTIONS(1591), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(105), + }, + [652] = { + [sym_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(1589), + [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), + [anon_sym_SEMI] = ACTIONS(1587), + [sym_cmd_identifier] = ACTIONS(1587), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_error] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DOT] = ACTIONS(1587), + [anon_sym_try] = 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_STAR] = ACTIONS(1587), + [anon_sym_where] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1587), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_not] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1587), + [anon_sym_0x] = ACTIONS(1587), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(105), + }, + [653] = { + [sym_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_alias] = ACTIONS(1671), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_let_DASHenv] = ACTIONS(1671), + [anon_sym_mut] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [sym_cmd_identifier] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_def] = ACTIONS(1671), + [anon_sym_export_DASHenv] = ACTIONS(1671), + [anon_sym_extern] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_use] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_error] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_loop] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_do] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_DOT] = ACTIONS(1671), + [anon_sym_try] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_source] = ACTIONS(1671), + [anon_sym_source_DASHenv] = ACTIONS(1671), + [anon_sym_register] = ACTIONS(1671), + [anon_sym_hide] = ACTIONS(1671), + [anon_sym_hide_DASHenv] = ACTIONS(1671), + [anon_sym_overlay] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_where] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_SLASH] = ACTIONS(1671), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1671), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1671), + [anon_sym_0x] = ACTIONS(1671), + [sym_val_date] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [sym__str_single_quotes] = ACTIONS(1671), + [sym__str_back_ticks] = ACTIONS(1671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(105), + }, + [654] = { + [sym_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(1685), + [anon_sym_export] = ACTIONS(1683), + [anon_sym_alias] = ACTIONS(1683), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_let_DASHenv] = ACTIONS(1683), + [anon_sym_mut] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [sym_cmd_identifier] = ACTIONS(1683), + [anon_sym_LF] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1683), + [anon_sym_export_DASHenv] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_module] = ACTIONS(1683), + [anon_sym_use] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1683), + [anon_sym_error] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_loop] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_match] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1683), + [anon_sym_try] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_source] = ACTIONS(1683), + [anon_sym_source_DASHenv] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1683), + [anon_sym_hide] = ACTIONS(1683), + [anon_sym_hide_DASHenv] = ACTIONS(1683), + [anon_sym_overlay] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1683), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_not] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1683), + [anon_sym_0x] = ACTIONS(1683), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(105), + }, + [655] = { + [sym_comment] = STATE(655), [ts_builtin_sym_end] = ACTIONS(215), [anon_sym_export] = ACTIONS(213), [anon_sym_alias] = ACTIONS(213), @@ -151608,6428 +154767,5201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(105), }, - [639] = { - [sym_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [640] = { - [sym_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(1509), - [anon_sym_export] = ACTIONS(1507), - [anon_sym_alias] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_let_DASHenv] = ACTIONS(1507), - [anon_sym_mut] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [sym_cmd_identifier] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1509), - [anon_sym_def] = ACTIONS(1507), - [anon_sym_export_DASHenv] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_module] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_error] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_try] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_source] = ACTIONS(1507), - [anon_sym_source_DASHenv] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_hide] = ACTIONS(1507), - [anon_sym_hide_DASHenv] = ACTIONS(1507), - [anon_sym_overlay] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_where] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_BANG_TILDE] = ACTIONS(1507), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_not] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1507), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_0b] = ACTIONS(1507), - [anon_sym_0o] = ACTIONS(1507), - [anon_sym_0x] = ACTIONS(1507), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(105), - }, - [641] = { - [sym_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [642] = { - [sym_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1640), - [anon_sym_alias] = ACTIONS(1640), - [anon_sym_let] = ACTIONS(1640), - [anon_sym_let_DASHenv] = ACTIONS(1640), - [anon_sym_mut] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [sym_cmd_identifier] = ACTIONS(1640), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_def] = ACTIONS(1640), - [anon_sym_export_DASHenv] = ACTIONS(1640), - [anon_sym_extern] = ACTIONS(1640), - [anon_sym_module] = ACTIONS(1640), - [anon_sym_use] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1640), - [anon_sym_error] = ACTIONS(1640), - [anon_sym_GT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_in] = ACTIONS(1640), - [anon_sym_loop] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_match] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_DOT] = ACTIONS(1640), - [anon_sym_try] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_source] = ACTIONS(1640), - [anon_sym_source_DASHenv] = ACTIONS(1640), - [anon_sym_register] = ACTIONS(1640), - [anon_sym_hide] = ACTIONS(1640), - [anon_sym_hide_DASHenv] = ACTIONS(1640), - [anon_sym_overlay] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_where] = ACTIONS(1640), - [anon_sym_STAR_STAR] = ACTIONS(1640), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_SLASH] = ACTIONS(1640), - [anon_sym_mod] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_bit_DASHshl] = ACTIONS(1640), - [anon_sym_bit_DASHshr] = ACTIONS(1640), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT2] = ACTIONS(1640), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_not_DASHin] = ACTIONS(1640), - [anon_sym_starts_DASHwith] = ACTIONS(1640), - [anon_sym_ends_DASHwith] = ACTIONS(1640), - [anon_sym_EQ_TILDE] = ACTIONS(1640), - [anon_sym_BANG_TILDE] = ACTIONS(1640), - [anon_sym_bit_DASHand] = ACTIONS(1640), - [anon_sym_bit_DASHxor] = ACTIONS(1640), - [anon_sym_bit_DASHor] = ACTIONS(1640), - [anon_sym_and] = ACTIONS(1640), - [anon_sym_xor] = ACTIONS(1640), - [anon_sym_or] = ACTIONS(1640), - [anon_sym_not] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [aux_sym__val_number_token4] = ACTIONS(1640), - [aux_sym__val_number_token5] = ACTIONS(1640), - [aux_sym__val_number_token6] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1640), - [anon_sym_0o] = ACTIONS(1640), - [anon_sym_0x] = ACTIONS(1640), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_CARET] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(105), - }, - [643] = { - [sym_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [644] = { - [sym_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [645] = { - [sym_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(1614), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_alias] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_let_DASHenv] = ACTIONS(1612), - [anon_sym_mut] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1612), - [sym_cmd_identifier] = ACTIONS(1612), - [anon_sym_LF] = ACTIONS(1614), - [anon_sym_def] = ACTIONS(1612), - [anon_sym_export_DASHenv] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_error] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_in] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_DOT] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_source] = ACTIONS(1612), - [anon_sym_source_DASHenv] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_hide] = ACTIONS(1612), - [anon_sym_hide_DASHenv] = ACTIONS(1612), - [anon_sym_overlay] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_where] = ACTIONS(1612), - [anon_sym_STAR_STAR] = ACTIONS(1612), - [anon_sym_PLUS_PLUS] = ACTIONS(1612), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_SLASH_SLASH] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_bit_DASHshl] = ACTIONS(1612), - [anon_sym_bit_DASHshr] = ACTIONS(1612), - [anon_sym_EQ_EQ] = ACTIONS(1612), - [anon_sym_BANG_EQ] = ACTIONS(1612), - [anon_sym_LT2] = ACTIONS(1612), - [anon_sym_LT_EQ] = ACTIONS(1612), - [anon_sym_GT_EQ] = ACTIONS(1612), - [anon_sym_not_DASHin] = ACTIONS(1612), - [anon_sym_starts_DASHwith] = ACTIONS(1612), - [anon_sym_ends_DASHwith] = ACTIONS(1612), - [anon_sym_EQ_TILDE] = ACTIONS(1612), - [anon_sym_BANG_TILDE] = ACTIONS(1612), - [anon_sym_bit_DASHand] = ACTIONS(1612), - [anon_sym_bit_DASHxor] = ACTIONS(1612), - [anon_sym_bit_DASHor] = ACTIONS(1612), - [anon_sym_and] = ACTIONS(1612), - [anon_sym_xor] = ACTIONS(1612), - [anon_sym_or] = ACTIONS(1612), - [anon_sym_not] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1612), - [aux_sym__val_number_token2] = ACTIONS(1612), - [aux_sym__val_number_token3] = ACTIONS(1612), - [aux_sym__val_number_token4] = ACTIONS(1612), - [aux_sym__val_number_token5] = ACTIONS(1612), - [aux_sym__val_number_token6] = ACTIONS(1612), - [anon_sym_0b] = ACTIONS(1612), - [anon_sym_0o] = ACTIONS(1612), - [anon_sym_0x] = ACTIONS(1612), - [sym_val_date] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__str_single_quotes] = ACTIONS(1612), - [sym__str_back_ticks] = ACTIONS(1612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(105), - }, - [646] = { - [sym_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(1606), - [anon_sym_export] = ACTIONS(1604), - [anon_sym_alias] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_let_DASHenv] = ACTIONS(1604), - [anon_sym_mut] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1604), - [sym_cmd_identifier] = ACTIONS(1604), - [anon_sym_LF] = ACTIONS(1606), - [anon_sym_def] = ACTIONS(1604), - [anon_sym_export_DASHenv] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1604), - [anon_sym_module] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_DOLLAR] = ACTIONS(1604), - [anon_sym_error] = ACTIONS(1604), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_in] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_try] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_source] = ACTIONS(1604), - [anon_sym_source_DASHenv] = ACTIONS(1604), - [anon_sym_register] = ACTIONS(1604), - [anon_sym_hide] = ACTIONS(1604), - [anon_sym_hide_DASHenv] = ACTIONS(1604), - [anon_sym_overlay] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_where] = ACTIONS(1604), - [anon_sym_STAR_STAR] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_SLASH_SLASH] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_bit_DASHshl] = ACTIONS(1604), - [anon_sym_bit_DASHshr] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1604), - [anon_sym_BANG_EQ] = ACTIONS(1604), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1604), - [anon_sym_not_DASHin] = ACTIONS(1604), - [anon_sym_starts_DASHwith] = ACTIONS(1604), - [anon_sym_ends_DASHwith] = ACTIONS(1604), - [anon_sym_EQ_TILDE] = ACTIONS(1604), - [anon_sym_BANG_TILDE] = ACTIONS(1604), - [anon_sym_bit_DASHand] = ACTIONS(1604), - [anon_sym_bit_DASHxor] = ACTIONS(1604), - [anon_sym_bit_DASHor] = ACTIONS(1604), - [anon_sym_and] = ACTIONS(1604), - [anon_sym_xor] = ACTIONS(1604), - [anon_sym_or] = ACTIONS(1604), - [anon_sym_not] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [aux_sym__val_number_decimal_token1] = ACTIONS(1604), - [aux_sym__val_number_token1] = ACTIONS(1604), - [aux_sym__val_number_token2] = ACTIONS(1604), - [aux_sym__val_number_token3] = ACTIONS(1604), - [aux_sym__val_number_token4] = ACTIONS(1604), - [aux_sym__val_number_token5] = ACTIONS(1604), - [aux_sym__val_number_token6] = ACTIONS(1604), - [anon_sym_0b] = ACTIONS(1604), - [anon_sym_0o] = ACTIONS(1604), - [anon_sym_0x] = ACTIONS(1604), - [sym_val_date] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1604), - [sym__str_single_quotes] = ACTIONS(1604), - [sym__str_back_ticks] = ACTIONS(1604), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1604), - [anon_sym_POUND] = ACTIONS(105), - }, - [647] = { - [sym_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [648] = { - [sym_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(1590), - [anon_sym_export] = ACTIONS(1588), - [anon_sym_alias] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_let_DASHenv] = ACTIONS(1588), - [anon_sym_mut] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1588), - [sym_cmd_identifier] = ACTIONS(1588), - [anon_sym_LF] = ACTIONS(1590), - [anon_sym_def] = ACTIONS(1588), - [anon_sym_export_DASHenv] = ACTIONS(1588), - [anon_sym_extern] = ACTIONS(1588), - [anon_sym_module] = ACTIONS(1588), - [anon_sym_use] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_error] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1588), - [anon_sym_loop] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_match] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_DOT] = ACTIONS(1588), - [anon_sym_try] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_source] = ACTIONS(1588), - [anon_sym_source_DASHenv] = ACTIONS(1588), - [anon_sym_register] = ACTIONS(1588), - [anon_sym_hide] = ACTIONS(1588), - [anon_sym_hide_DASHenv] = ACTIONS(1588), - [anon_sym_overlay] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_where] = ACTIONS(1588), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_PLUS_PLUS] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1588), - [anon_sym_mod] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_bit_DASHshl] = ACTIONS(1588), - [anon_sym_bit_DASHshr] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_not_DASHin] = ACTIONS(1588), - [anon_sym_starts_DASHwith] = ACTIONS(1588), - [anon_sym_ends_DASHwith] = ACTIONS(1588), - [anon_sym_EQ_TILDE] = ACTIONS(1588), - [anon_sym_BANG_TILDE] = ACTIONS(1588), - [anon_sym_bit_DASHand] = ACTIONS(1588), - [anon_sym_bit_DASHxor] = ACTIONS(1588), - [anon_sym_bit_DASHor] = ACTIONS(1588), - [anon_sym_and] = ACTIONS(1588), - [anon_sym_xor] = ACTIONS(1588), - [anon_sym_or] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [aux_sym__val_number_decimal_token1] = ACTIONS(1588), - [aux_sym__val_number_token1] = ACTIONS(1588), - [aux_sym__val_number_token2] = ACTIONS(1588), - [aux_sym__val_number_token3] = ACTIONS(1588), - [aux_sym__val_number_token4] = ACTIONS(1588), - [aux_sym__val_number_token5] = ACTIONS(1588), - [aux_sym__val_number_token6] = ACTIONS(1588), - [anon_sym_0b] = ACTIONS(1588), - [anon_sym_0o] = ACTIONS(1588), - [anon_sym_0x] = ACTIONS(1588), - [sym_val_date] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [sym__str_single_quotes] = ACTIONS(1588), - [sym__str_back_ticks] = ACTIONS(1588), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_POUND] = ACTIONS(105), - }, - [649] = { - [sym_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_LT2] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [650] = { - [sym_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1574), - [anon_sym_export] = ACTIONS(1572), - [anon_sym_alias] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(1572), - [anon_sym_let_DASHenv] = ACTIONS(1572), - [anon_sym_mut] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_cmd_identifier] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_def] = ACTIONS(1572), - [anon_sym_export_DASHenv] = ACTIONS(1572), - [anon_sym_extern] = ACTIONS(1572), - [anon_sym_module] = ACTIONS(1572), - [anon_sym_use] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_error] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1572), - [anon_sym_loop] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1572), - [anon_sym_try] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_source] = ACTIONS(1572), - [anon_sym_source_DASHenv] = ACTIONS(1572), - [anon_sym_register] = ACTIONS(1572), - [anon_sym_hide] = ACTIONS(1572), - [anon_sym_hide_DASHenv] = ACTIONS(1572), - [anon_sym_overlay] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_where] = ACTIONS(1572), - [anon_sym_STAR_STAR] = ACTIONS(1572), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_SLASH] = ACTIONS(1572), - [anon_sym_mod] = ACTIONS(1572), - [anon_sym_SLASH_SLASH] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_bit_DASHshl] = ACTIONS(1572), - [anon_sym_bit_DASHshr] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT2] = ACTIONS(1572), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_not_DASHin] = ACTIONS(1572), - [anon_sym_starts_DASHwith] = ACTIONS(1572), - [anon_sym_ends_DASHwith] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1572), - [anon_sym_BANG_TILDE] = ACTIONS(1572), - [anon_sym_bit_DASHand] = ACTIONS(1572), - [anon_sym_bit_DASHxor] = ACTIONS(1572), - [anon_sym_bit_DASHor] = ACTIONS(1572), - [anon_sym_and] = ACTIONS(1572), - [anon_sym_xor] = ACTIONS(1572), - [anon_sym_or] = ACTIONS(1572), - [anon_sym_not] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [aux_sym__val_number_decimal_token1] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [aux_sym__val_number_token4] = ACTIONS(1572), - [aux_sym__val_number_token5] = ACTIONS(1572), - [aux_sym__val_number_token6] = ACTIONS(1572), - [anon_sym_0b] = ACTIONS(1572), - [anon_sym_0o] = ACTIONS(1572), - [anon_sym_0x] = ACTIONS(1572), - [sym_val_date] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(105), - }, - [651] = { - [sym_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(1578), - [anon_sym_export] = ACTIONS(1576), - [anon_sym_alias] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_let_DASHenv] = ACTIONS(1576), - [anon_sym_mut] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_cmd_identifier] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_def] = ACTIONS(1576), - [anon_sym_export_DASHenv] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_error] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_in] = ACTIONS(1576), - [anon_sym_loop] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_try] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_source] = ACTIONS(1576), - [anon_sym_source_DASHenv] = ACTIONS(1576), - [anon_sym_register] = ACTIONS(1576), - [anon_sym_hide] = ACTIONS(1576), - [anon_sym_hide_DASHenv] = ACTIONS(1576), - [anon_sym_overlay] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_where] = ACTIONS(1576), - [anon_sym_STAR_STAR] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1576), - [anon_sym_SLASH] = ACTIONS(1576), - [anon_sym_mod] = ACTIONS(1576), - [anon_sym_SLASH_SLASH] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_bit_DASHshl] = ACTIONS(1576), - [anon_sym_bit_DASHshr] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1576), - [anon_sym_BANG_EQ] = ACTIONS(1576), - [anon_sym_LT2] = ACTIONS(1576), - [anon_sym_LT_EQ] = ACTIONS(1576), - [anon_sym_GT_EQ] = ACTIONS(1576), - [anon_sym_not_DASHin] = ACTIONS(1576), - [anon_sym_starts_DASHwith] = ACTIONS(1576), - [anon_sym_ends_DASHwith] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1576), - [anon_sym_BANG_TILDE] = ACTIONS(1576), - [anon_sym_bit_DASHand] = ACTIONS(1576), - [anon_sym_bit_DASHxor] = ACTIONS(1576), - [anon_sym_bit_DASHor] = ACTIONS(1576), - [anon_sym_and] = ACTIONS(1576), - [anon_sym_xor] = ACTIONS(1576), - [anon_sym_or] = ACTIONS(1576), - [anon_sym_not] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [aux_sym__val_number_decimal_token1] = ACTIONS(1576), - [aux_sym__val_number_token1] = ACTIONS(1576), - [aux_sym__val_number_token2] = ACTIONS(1576), - [aux_sym__val_number_token3] = ACTIONS(1576), - [aux_sym__val_number_token4] = ACTIONS(1576), - [aux_sym__val_number_token5] = ACTIONS(1576), - [aux_sym__val_number_token6] = ACTIONS(1576), - [anon_sym_0b] = ACTIONS(1576), - [anon_sym_0o] = ACTIONS(1576), - [anon_sym_0x] = ACTIONS(1576), - [sym_val_date] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [sym__str_single_quotes] = ACTIONS(1576), - [sym__str_back_ticks] = ACTIONS(1576), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(105), - }, - [652] = { - [sym_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(1644), - [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), - [anon_sym_SEMI] = ACTIONS(1519), - [sym_cmd_identifier] = ACTIONS(1519), - [anon_sym_LF] = ACTIONS(1644), - [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(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_error] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_in] = 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(1519), - [anon_sym_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_STAR] = ACTIONS(1519), - [anon_sym_where] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_not] = ACTIONS(1519), - [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_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [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(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(105), - }, - [653] = { - [sym_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1566), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_alias] = ACTIONS(1564), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_let_DASHenv] = ACTIONS(1564), - [anon_sym_mut] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1564), - [sym_cmd_identifier] = ACTIONS(1564), - [anon_sym_LF] = ACTIONS(1566), - [anon_sym_def] = ACTIONS(1564), - [anon_sym_export_DASHenv] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_use] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1564), - [anon_sym_error] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_in] = ACTIONS(1564), - [anon_sym_loop] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(1564), - [anon_sym_try] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_source] = ACTIONS(1564), - [anon_sym_source_DASHenv] = ACTIONS(1564), - [anon_sym_register] = ACTIONS(1564), - [anon_sym_hide] = ACTIONS(1564), - [anon_sym_hide_DASHenv] = ACTIONS(1564), - [anon_sym_overlay] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_where] = ACTIONS(1564), - [anon_sym_STAR_STAR] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_mod] = ACTIONS(1564), - [anon_sym_SLASH_SLASH] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_bit_DASHshl] = ACTIONS(1564), - [anon_sym_bit_DASHshr] = ACTIONS(1564), - [anon_sym_EQ_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1564), - [anon_sym_LT2] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_not_DASHin] = ACTIONS(1564), - [anon_sym_starts_DASHwith] = ACTIONS(1564), - [anon_sym_ends_DASHwith] = ACTIONS(1564), - [anon_sym_EQ_TILDE] = ACTIONS(1564), - [anon_sym_BANG_TILDE] = ACTIONS(1564), - [anon_sym_bit_DASHand] = ACTIONS(1564), - [anon_sym_bit_DASHxor] = ACTIONS(1564), - [anon_sym_bit_DASHor] = ACTIONS(1564), - [anon_sym_and] = ACTIONS(1564), - [anon_sym_xor] = ACTIONS(1564), - [anon_sym_or] = ACTIONS(1564), - [anon_sym_not] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_token1] = ACTIONS(1564), - [aux_sym__val_number_token2] = ACTIONS(1564), - [aux_sym__val_number_token3] = ACTIONS(1564), - [aux_sym__val_number_token4] = ACTIONS(1564), - [aux_sym__val_number_token5] = ACTIONS(1564), - [aux_sym__val_number_token6] = ACTIONS(1564), - [anon_sym_0b] = ACTIONS(1564), - [anon_sym_0o] = ACTIONS(1564), - [anon_sym_0x] = ACTIONS(1564), - [sym_val_date] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym__str_single_quotes] = ACTIONS(1564), - [sym__str_back_ticks] = ACTIONS(1564), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1564), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(105), - }, - [654] = { - [sym_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [655] = { - [sym_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(1562), - [anon_sym_export] = ACTIONS(1560), - [anon_sym_alias] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_let_DASHenv] = ACTIONS(1560), - [anon_sym_mut] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1560), - [sym_cmd_identifier] = ACTIONS(1560), - [anon_sym_LF] = ACTIONS(1562), - [anon_sym_def] = ACTIONS(1560), - [anon_sym_export_DASHenv] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_module] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_error] = ACTIONS(1560), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_DOT] = ACTIONS(1560), - [anon_sym_try] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_source] = ACTIONS(1560), - [anon_sym_source_DASHenv] = ACTIONS(1560), - [anon_sym_register] = ACTIONS(1560), - [anon_sym_hide] = ACTIONS(1560), - [anon_sym_hide_DASHenv] = ACTIONS(1560), - [anon_sym_overlay] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_where] = ACTIONS(1560), - [anon_sym_STAR_STAR] = ACTIONS(1560), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_SLASH_SLASH] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_bit_DASHshl] = ACTIONS(1560), - [anon_sym_bit_DASHshr] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1560), - [anon_sym_BANG_EQ] = ACTIONS(1560), - [anon_sym_LT2] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1560), - [anon_sym_not_DASHin] = ACTIONS(1560), - [anon_sym_starts_DASHwith] = ACTIONS(1560), - [anon_sym_ends_DASHwith] = ACTIONS(1560), - [anon_sym_EQ_TILDE] = ACTIONS(1560), - [anon_sym_BANG_TILDE] = ACTIONS(1560), - [anon_sym_bit_DASHand] = ACTIONS(1560), - [anon_sym_bit_DASHxor] = ACTIONS(1560), - [anon_sym_bit_DASHor] = ACTIONS(1560), - [anon_sym_and] = ACTIONS(1560), - [anon_sym_xor] = ACTIONS(1560), - [anon_sym_or] = ACTIONS(1560), - [anon_sym_not] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_token1] = ACTIONS(1560), - [aux_sym__val_number_token2] = ACTIONS(1560), - [aux_sym__val_number_token3] = ACTIONS(1560), - [aux_sym__val_number_token4] = ACTIONS(1560), - [aux_sym__val_number_token5] = ACTIONS(1560), - [aux_sym__val_number_token6] = ACTIONS(1560), - [anon_sym_0b] = ACTIONS(1560), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [sym__str_single_quotes] = ACTIONS(1560), - [sym__str_back_ticks] = ACTIONS(1560), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1560), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(105), - }, [656] = { [sym_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1608), - [sym_cmd_identifier] = ACTIONS(1608), - [anon_sym_LF] = ACTIONS(1610), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_where] = ACTIONS(1608), - [anon_sym_STAR_STAR] = ACTIONS(1608), - [anon_sym_PLUS_PLUS] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_SLASH_SLASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_bit_DASHshl] = ACTIONS(1608), - [anon_sym_bit_DASHshr] = ACTIONS(1608), - [anon_sym_EQ_EQ] = ACTIONS(1608), - [anon_sym_BANG_EQ] = ACTIONS(1608), - [anon_sym_LT2] = ACTIONS(1608), - [anon_sym_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1608), - [anon_sym_not_DASHin] = ACTIONS(1608), - [anon_sym_starts_DASHwith] = ACTIONS(1608), - [anon_sym_ends_DASHwith] = ACTIONS(1608), - [anon_sym_EQ_TILDE] = ACTIONS(1608), - [anon_sym_BANG_TILDE] = ACTIONS(1608), - [anon_sym_bit_DASHand] = ACTIONS(1608), - [anon_sym_bit_DASHxor] = ACTIONS(1608), - [anon_sym_bit_DASHor] = ACTIONS(1608), - [anon_sym_and] = ACTIONS(1608), - [anon_sym_xor] = ACTIONS(1608), - [anon_sym_or] = ACTIONS(1608), - [anon_sym_not] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1608), - [aux_sym__val_number_token2] = ACTIONS(1608), - [aux_sym__val_number_token3] = ACTIONS(1608), - [aux_sym__val_number_token4] = ACTIONS(1608), - [aux_sym__val_number_token5] = ACTIONS(1608), - [aux_sym__val_number_token6] = ACTIONS(1608), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym__str_single_quotes] = ACTIONS(1608), - [sym__str_back_ticks] = ACTIONS(1608), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1608), - [anon_sym_CARET] = ACTIONS(1608), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [657] = { [sym_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_LT2] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_not_DASHin] = ACTIONS(1676), - [anon_sym_starts_DASHwith] = ACTIONS(1676), - [anon_sym_ends_DASHwith] = ACTIONS(1676), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [658] = { [sym_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [659] = { [sym_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_export] = ACTIONS(1654), - [anon_sym_alias] = ACTIONS(1654), - [anon_sym_let] = ACTIONS(1654), - [anon_sym_let_DASHenv] = ACTIONS(1654), - [anon_sym_mut] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1654), - [sym_cmd_identifier] = ACTIONS(1654), - [anon_sym_LF] = ACTIONS(1656), - [anon_sym_def] = ACTIONS(1654), - [anon_sym_export_DASHenv] = ACTIONS(1654), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_use] = ACTIONS(1654), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1654), - [anon_sym_error] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_in] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_DOT] = ACTIONS(1654), - [anon_sym_try] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_source] = ACTIONS(1654), - [anon_sym_source_DASHenv] = ACTIONS(1654), - [anon_sym_register] = ACTIONS(1654), - [anon_sym_hide] = ACTIONS(1654), - [anon_sym_hide_DASHenv] = ACTIONS(1654), - [anon_sym_overlay] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_where] = ACTIONS(1654), - [anon_sym_STAR_STAR] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_SLASH] = ACTIONS(1654), - [anon_sym_mod] = ACTIONS(1654), - [anon_sym_SLASH_SLASH] = ACTIONS(1654), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_bit_DASHshl] = ACTIONS(1654), - [anon_sym_bit_DASHshr] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), - [anon_sym_LT2] = ACTIONS(1654), - [anon_sym_LT_EQ] = ACTIONS(1654), - [anon_sym_GT_EQ] = ACTIONS(1654), - [anon_sym_not_DASHin] = ACTIONS(1654), - [anon_sym_starts_DASHwith] = ACTIONS(1654), - [anon_sym_ends_DASHwith] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1654), - [anon_sym_BANG_TILDE] = ACTIONS(1654), - [anon_sym_bit_DASHand] = ACTIONS(1654), - [anon_sym_bit_DASHxor] = ACTIONS(1654), - [anon_sym_bit_DASHor] = ACTIONS(1654), - [anon_sym_and] = ACTIONS(1654), - [anon_sym_xor] = ACTIONS(1654), - [anon_sym_or] = ACTIONS(1654), - [anon_sym_not] = ACTIONS(1654), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1654), - [anon_sym_false] = ACTIONS(1654), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_token1] = ACTIONS(1654), - [aux_sym__val_number_token2] = ACTIONS(1654), - [aux_sym__val_number_token3] = ACTIONS(1654), - [aux_sym__val_number_token4] = ACTIONS(1654), - [aux_sym__val_number_token5] = ACTIONS(1654), - [aux_sym__val_number_token6] = ACTIONS(1654), - [anon_sym_0b] = ACTIONS(1654), - [anon_sym_0o] = ACTIONS(1654), - [anon_sym_0x] = ACTIONS(1654), - [sym_val_date] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [sym__str_single_quotes] = ACTIONS(1654), - [sym__str_back_ticks] = ACTIONS(1654), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1654), - [anon_sym_CARET] = ACTIONS(1654), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_not_DASHin] = ACTIONS(1709), + [anon_sym_starts_DASHwith] = ACTIONS(1709), + [anon_sym_ends_DASHwith] = ACTIONS(1709), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1715), + [anon_sym_bit_DASHor] = ACTIONS(1717), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [660] = { [sym_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1528), - [anon_sym_mod] = ACTIONS(1528), - [anon_sym_SLASH_SLASH] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1547), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_where] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_BANG_TILDE] = ACTIONS(1545), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), [anon_sym_POUND] = ACTIONS(105), }, [661] = { [sym_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_alias] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_let_DASHenv] = ACTIONS(1454), - [anon_sym_mut] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_cmd_identifier] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_export_DASHenv] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_error] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_source] = ACTIONS(1454), - [anon_sym_source_DASHenv] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_hide_DASHenv] = ACTIONS(1454), - [anon_sym_overlay] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_where] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [anon_sym_BANG_TILDE] = ACTIONS(1454), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [anon_sym_not] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1585), + [anon_sym_export] = ACTIONS(1583), + [anon_sym_alias] = ACTIONS(1583), + [anon_sym_let] = ACTIONS(1583), + [anon_sym_let_DASHenv] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [sym_cmd_identifier] = ACTIONS(1583), + [anon_sym_LF] = ACTIONS(1585), + [anon_sym_def] = ACTIONS(1583), + [anon_sym_export_DASHenv] = ACTIONS(1583), + [anon_sym_extern] = ACTIONS(1583), + [anon_sym_module] = ACTIONS(1583), + [anon_sym_use] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(1583), + [anon_sym_error] = ACTIONS(1583), + [anon_sym_GT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_in] = ACTIONS(1583), + [anon_sym_loop] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_source] = ACTIONS(1583), + [anon_sym_source_DASHenv] = ACTIONS(1583), + [anon_sym_register] = ACTIONS(1583), + [anon_sym_hide] = ACTIONS(1583), + [anon_sym_hide_DASHenv] = ACTIONS(1583), + [anon_sym_overlay] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_where] = ACTIONS(1583), + [anon_sym_STAR_STAR] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_mod] = ACTIONS(1583), + [anon_sym_SLASH_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_bit_DASHshl] = ACTIONS(1583), + [anon_sym_bit_DASHshr] = ACTIONS(1583), + [anon_sym_EQ_EQ] = ACTIONS(1583), + [anon_sym_BANG_EQ] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1583), + [anon_sym_GT_EQ] = ACTIONS(1583), + [anon_sym_not_DASHin] = ACTIONS(1583), + [anon_sym_starts_DASHwith] = ACTIONS(1583), + [anon_sym_ends_DASHwith] = ACTIONS(1583), + [anon_sym_EQ_TILDE] = ACTIONS(1583), + [anon_sym_BANG_TILDE] = ACTIONS(1583), + [anon_sym_bit_DASHand] = ACTIONS(1583), + [anon_sym_bit_DASHxor] = ACTIONS(1583), + [anon_sym_bit_DASHor] = ACTIONS(1583), + [anon_sym_and] = ACTIONS(1583), + [anon_sym_xor] = ACTIONS(1583), + [anon_sym_or] = ACTIONS(1583), + [anon_sym_not] = ACTIONS(1583), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1583), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1583), + [anon_sym_0o] = ACTIONS(1583), + [anon_sym_0x] = ACTIONS(1583), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [anon_sym_CARET] = ACTIONS(1583), [anon_sym_POUND] = ACTIONS(105), }, [662] = { [sym_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1597), + [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), + [anon_sym_SEMI] = ACTIONS(1595), + [sym_cmd_identifier] = ACTIONS(1595), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_DOLLAR] = ACTIONS(1595), + [anon_sym_error] = ACTIONS(1595), + [anon_sym_GT] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_break] = ACTIONS(1595), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_for] = ACTIONS(1595), + [anon_sym_in] = ACTIONS(1595), + [anon_sym_loop] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1595), + [anon_sym_match] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_try] = 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_STAR] = ACTIONS(1595), + [anon_sym_where] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_SLASH] = ACTIONS(1595), + [anon_sym_mod] = ACTIONS(1595), + [anon_sym_SLASH_SLASH] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_bit_DASHshl] = ACTIONS(1595), + [anon_sym_bit_DASHshr] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1595), + [anon_sym_BANG_EQ] = ACTIONS(1595), + [anon_sym_LT2] = ACTIONS(1595), + [anon_sym_LT_EQ] = ACTIONS(1595), + [anon_sym_GT_EQ] = ACTIONS(1595), + [anon_sym_not_DASHin] = ACTIONS(1595), + [anon_sym_starts_DASHwith] = ACTIONS(1595), + [anon_sym_ends_DASHwith] = ACTIONS(1595), + [anon_sym_EQ_TILDE] = ACTIONS(1595), + [anon_sym_BANG_TILDE] = ACTIONS(1595), + [anon_sym_bit_DASHand] = ACTIONS(1595), + [anon_sym_bit_DASHxor] = ACTIONS(1595), + [anon_sym_bit_DASHor] = ACTIONS(1595), + [anon_sym_and] = ACTIONS(1595), + [anon_sym_xor] = ACTIONS(1595), + [anon_sym_or] = ACTIONS(1595), + [anon_sym_not] = ACTIONS(1595), + [anon_sym_null] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1595), + [anon_sym_false] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = 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), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [sym__str_single_quotes] = ACTIONS(1595), + [sym__str_back_ticks] = ACTIONS(1595), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1595), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), [anon_sym_POUND] = ACTIONS(105), }, [663] = { [sym_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1621), + [anon_sym_export] = ACTIONS(1619), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_let] = ACTIONS(1619), + [anon_sym_let_DASHenv] = ACTIONS(1619), + [anon_sym_mut] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [sym_cmd_identifier] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1621), + [anon_sym_def] = ACTIONS(1619), + [anon_sym_export_DASHenv] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_module] = ACTIONS(1619), + [anon_sym_use] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_error] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_loop] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_source] = ACTIONS(1619), + [anon_sym_source_DASHenv] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_hide] = ACTIONS(1619), + [anon_sym_hide_DASHenv] = ACTIONS(1619), + [anon_sym_overlay] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_where] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(1619), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1619), + [anon_sym_BANG_TILDE] = ACTIONS(1619), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [anon_sym_not] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1619), + [anon_sym_0o] = ACTIONS(1619), + [anon_sym_0x] = ACTIONS(1619), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), [anon_sym_POUND] = ACTIONS(105), }, [664] = { [sym_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_LT2] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_not_DASHin] = ACTIONS(1676), - [anon_sym_starts_DASHwith] = ACTIONS(1676), - [anon_sym_ends_DASHwith] = ACTIONS(1676), - [anon_sym_EQ_TILDE] = ACTIONS(1684), - [anon_sym_BANG_TILDE] = ACTIONS(1684), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1621), + [anon_sym_export] = ACTIONS(1619), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_let] = ACTIONS(1619), + [anon_sym_let_DASHenv] = ACTIONS(1619), + [anon_sym_mut] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [sym_cmd_identifier] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1621), + [anon_sym_def] = ACTIONS(1619), + [anon_sym_export_DASHenv] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_module] = ACTIONS(1619), + [anon_sym_use] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_error] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_loop] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_source] = ACTIONS(1619), + [anon_sym_source_DASHenv] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_hide] = ACTIONS(1619), + [anon_sym_hide_DASHenv] = ACTIONS(1619), + [anon_sym_overlay] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_where] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(1619), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1619), + [anon_sym_BANG_TILDE] = ACTIONS(1619), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [anon_sym_not] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1619), + [anon_sym_0o] = ACTIONS(1619), + [anon_sym_0x] = ACTIONS(1619), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), [anon_sym_POUND] = ACTIONS(105), }, [665] = { [sym_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1635), + [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), + [anon_sym_SEMI] = ACTIONS(1633), + [sym_cmd_identifier] = ACTIONS(1633), + [anon_sym_LF] = ACTIONS(1635), + [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_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1633), + [anon_sym_loop] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_DOT] = ACTIONS(1633), + [anon_sym_try] = 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_STAR] = ACTIONS(1633), + [anon_sym_where] = ACTIONS(1633), + [anon_sym_STAR_STAR] = ACTIONS(1633), + [anon_sym_PLUS_PLUS] = ACTIONS(1633), + [anon_sym_SLASH] = ACTIONS(1633), + [anon_sym_mod] = ACTIONS(1633), + [anon_sym_SLASH_SLASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_bit_DASHshl] = ACTIONS(1633), + [anon_sym_bit_DASHshr] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1633), + [anon_sym_BANG_EQ] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_not_DASHin] = ACTIONS(1633), + [anon_sym_starts_DASHwith] = ACTIONS(1633), + [anon_sym_ends_DASHwith] = ACTIONS(1633), + [anon_sym_EQ_TILDE] = ACTIONS(1633), + [anon_sym_BANG_TILDE] = ACTIONS(1633), + [anon_sym_bit_DASHand] = ACTIONS(1633), + [anon_sym_bit_DASHxor] = ACTIONS(1633), + [anon_sym_bit_DASHor] = ACTIONS(1633), + [anon_sym_and] = ACTIONS(1633), + [anon_sym_xor] = ACTIONS(1633), + [anon_sym_or] = ACTIONS(1633), + [anon_sym_not] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(1633), + [anon_sym_0o] = ACTIONS(1633), + [anon_sym_0x] = ACTIONS(1633), + [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), + [anon_sym_CARET] = ACTIONS(1633), [anon_sym_POUND] = ACTIONS(105), }, [666] = { [sym_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_alias] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_let_DASHenv] = ACTIONS(1646), - [anon_sym_mut] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1646), - [sym_cmd_identifier] = ACTIONS(1646), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1646), - [anon_sym_export_DASHenv] = ACTIONS(1646), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_use] = ACTIONS(1646), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_DOLLAR] = ACTIONS(1646), - [anon_sym_error] = ACTIONS(1646), - [anon_sym_GT] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_in] = ACTIONS(1646), - [anon_sym_loop] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_do] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_match] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DOT] = ACTIONS(1646), - [anon_sym_try] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_source] = ACTIONS(1646), - [anon_sym_source_DASHenv] = ACTIONS(1646), - [anon_sym_register] = ACTIONS(1646), - [anon_sym_hide] = ACTIONS(1646), - [anon_sym_hide_DASHenv] = ACTIONS(1646), - [anon_sym_overlay] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_where] = ACTIONS(1646), - [anon_sym_STAR_STAR] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_SLASH] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_SLASH_SLASH] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_bit_DASHshl] = ACTIONS(1646), - [anon_sym_bit_DASHshr] = ACTIONS(1646), - [anon_sym_EQ_EQ] = ACTIONS(1646), - [anon_sym_BANG_EQ] = ACTIONS(1646), - [anon_sym_LT2] = ACTIONS(1646), - [anon_sym_LT_EQ] = ACTIONS(1646), - [anon_sym_GT_EQ] = ACTIONS(1646), - [anon_sym_not_DASHin] = ACTIONS(1646), - [anon_sym_starts_DASHwith] = ACTIONS(1646), - [anon_sym_ends_DASHwith] = ACTIONS(1646), - [anon_sym_EQ_TILDE] = ACTIONS(1646), - [anon_sym_BANG_TILDE] = ACTIONS(1646), - [anon_sym_bit_DASHand] = ACTIONS(1646), - [anon_sym_bit_DASHxor] = ACTIONS(1646), - [anon_sym_bit_DASHor] = ACTIONS(1646), - [anon_sym_and] = ACTIONS(1646), - [anon_sym_xor] = ACTIONS(1646), - [anon_sym_or] = ACTIONS(1646), - [anon_sym_not] = ACTIONS(1646), - [anon_sym_null] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [aux_sym__val_number_decimal_token1] = ACTIONS(1646), - [aux_sym__val_number_token1] = ACTIONS(1646), - [aux_sym__val_number_token2] = ACTIONS(1646), - [aux_sym__val_number_token3] = ACTIONS(1646), - [aux_sym__val_number_token4] = ACTIONS(1646), - [aux_sym__val_number_token5] = ACTIONS(1646), - [aux_sym__val_number_token6] = ACTIONS(1646), - [anon_sym_0b] = ACTIONS(1646), - [anon_sym_0o] = ACTIONS(1646), - [anon_sym_0x] = ACTIONS(1646), - [sym_val_date] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [sym__str_single_quotes] = ACTIONS(1646), - [sym__str_back_ticks] = ACTIONS(1646), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1646), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1646), - [anon_sym_CARET] = ACTIONS(1646), + [ts_builtin_sym_end] = ACTIONS(1697), + [anon_sym_export] = ACTIONS(1695), + [anon_sym_alias] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_let_DASHenv] = ACTIONS(1695), + [anon_sym_mut] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [sym_cmd_identifier] = ACTIONS(1695), + [anon_sym_LF] = ACTIONS(1697), + [anon_sym_def] = ACTIONS(1695), + [anon_sym_export_DASHenv] = ACTIONS(1695), + [anon_sym_extern] = ACTIONS(1695), + [anon_sym_module] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1695), + [anon_sym_error] = ACTIONS(1695), + [anon_sym_GT] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_in] = ACTIONS(1695), + [anon_sym_loop] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_do] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_source] = ACTIONS(1695), + [anon_sym_source_DASHenv] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1695), + [anon_sym_hide] = ACTIONS(1695), + [anon_sym_hide_DASHenv] = ACTIONS(1695), + [anon_sym_overlay] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_where] = ACTIONS(1695), + [anon_sym_STAR_STAR] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_bit_DASHshl] = ACTIONS(1695), + [anon_sym_bit_DASHshr] = ACTIONS(1695), + [anon_sym_EQ_EQ] = ACTIONS(1695), + [anon_sym_BANG_EQ] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1695), + [anon_sym_LT_EQ] = ACTIONS(1695), + [anon_sym_GT_EQ] = ACTIONS(1695), + [anon_sym_not_DASHin] = ACTIONS(1695), + [anon_sym_starts_DASHwith] = ACTIONS(1695), + [anon_sym_ends_DASHwith] = ACTIONS(1695), + [anon_sym_EQ_TILDE] = ACTIONS(1695), + [anon_sym_BANG_TILDE] = ACTIONS(1695), + [anon_sym_bit_DASHand] = ACTIONS(1695), + [anon_sym_bit_DASHxor] = ACTIONS(1695), + [anon_sym_bit_DASHor] = ACTIONS(1695), + [anon_sym_and] = ACTIONS(1695), + [anon_sym_xor] = ACTIONS(1695), + [anon_sym_or] = ACTIONS(1695), + [anon_sym_not] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1695), + [anon_sym_0o] = ACTIONS(1695), + [anon_sym_0x] = ACTIONS(1695), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_CARET] = ACTIONS(1695), [anon_sym_POUND] = ACTIONS(105), }, [667] = { [sym_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_LT2] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_not_DASHin] = ACTIONS(1676), - [anon_sym_starts_DASHwith] = ACTIONS(1676), - [anon_sym_ends_DASHwith] = ACTIONS(1676), - [anon_sym_EQ_TILDE] = ACTIONS(1684), - [anon_sym_BANG_TILDE] = ACTIONS(1684), - [anon_sym_bit_DASHand] = ACTIONS(1686), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [sym_cmd_identifier] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_where] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(105), }, [668] = { [sym_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(1660), - [anon_sym_export] = ACTIONS(1658), - [anon_sym_alias] = ACTIONS(1658), - [anon_sym_let] = ACTIONS(1658), - [anon_sym_let_DASHenv] = ACTIONS(1658), - [anon_sym_mut] = ACTIONS(1658), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1658), - [sym_cmd_identifier] = ACTIONS(1658), - [anon_sym_LF] = ACTIONS(1660), - [anon_sym_def] = ACTIONS(1658), - [anon_sym_export_DASHenv] = ACTIONS(1658), - [anon_sym_extern] = ACTIONS(1658), - [anon_sym_module] = ACTIONS(1658), - [anon_sym_use] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1658), - [anon_sym_error] = ACTIONS(1658), - [anon_sym_GT] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_continue] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_in] = ACTIONS(1658), - [anon_sym_loop] = ACTIONS(1658), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_do] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_match] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_source] = ACTIONS(1658), - [anon_sym_source_DASHenv] = ACTIONS(1658), - [anon_sym_register] = ACTIONS(1658), - [anon_sym_hide] = ACTIONS(1658), - [anon_sym_hide_DASHenv] = ACTIONS(1658), - [anon_sym_overlay] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_where] = ACTIONS(1658), - [anon_sym_STAR_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_mod] = ACTIONS(1658), - [anon_sym_SLASH_SLASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_bit_DASHshl] = ACTIONS(1658), - [anon_sym_bit_DASHshr] = ACTIONS(1658), - [anon_sym_EQ_EQ] = ACTIONS(1658), - [anon_sym_BANG_EQ] = ACTIONS(1658), - [anon_sym_LT2] = ACTIONS(1658), - [anon_sym_LT_EQ] = ACTIONS(1658), - [anon_sym_GT_EQ] = ACTIONS(1658), - [anon_sym_not_DASHin] = ACTIONS(1658), - [anon_sym_starts_DASHwith] = ACTIONS(1658), - [anon_sym_ends_DASHwith] = ACTIONS(1658), - [anon_sym_EQ_TILDE] = ACTIONS(1658), - [anon_sym_BANG_TILDE] = ACTIONS(1658), - [anon_sym_bit_DASHand] = ACTIONS(1658), - [anon_sym_bit_DASHxor] = ACTIONS(1658), - [anon_sym_bit_DASHor] = ACTIONS(1658), - [anon_sym_and] = ACTIONS(1658), - [anon_sym_xor] = ACTIONS(1658), - [anon_sym_or] = ACTIONS(1658), - [anon_sym_not] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [aux_sym__val_number_token4] = ACTIONS(1658), - [aux_sym__val_number_token5] = ACTIONS(1658), - [aux_sym__val_number_token6] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1658), - [anon_sym_0o] = ACTIONS(1658), - [anon_sym_0x] = ACTIONS(1658), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [anon_sym_CARET] = ACTIONS(1658), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [669] = { [sym_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1653), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [sym_cmd_identifier] = ACTIONS(1651), + [anon_sym_LF] = ACTIONS(1653), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_GT] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_where] = ACTIONS(1651), + [anon_sym_STAR_STAR] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(1651), + [anon_sym_mod] = ACTIONS(1651), + [anon_sym_SLASH_SLASH] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_bit_DASHshl] = ACTIONS(1651), + [anon_sym_bit_DASHshr] = ACTIONS(1651), + [anon_sym_EQ_EQ] = ACTIONS(1651), + [anon_sym_BANG_EQ] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ] = ACTIONS(1651), + [anon_sym_GT_EQ] = ACTIONS(1651), + [anon_sym_not_DASHin] = ACTIONS(1651), + [anon_sym_starts_DASHwith] = ACTIONS(1651), + [anon_sym_ends_DASHwith] = ACTIONS(1651), + [anon_sym_EQ_TILDE] = ACTIONS(1651), + [anon_sym_BANG_TILDE] = ACTIONS(1651), + [anon_sym_bit_DASHand] = ACTIONS(1651), + [anon_sym_bit_DASHxor] = ACTIONS(1651), + [anon_sym_bit_DASHor] = ACTIONS(1651), + [anon_sym_and] = ACTIONS(1651), + [anon_sym_xor] = ACTIONS(1651), + [anon_sym_or] = ACTIONS(1651), + [anon_sym_not] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1651), [anon_sym_POUND] = ACTIONS(105), }, [670] = { [sym_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1620), - [anon_sym_alias] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_let_DASHenv] = ACTIONS(1620), - [anon_sym_mut] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1620), - [sym_cmd_identifier] = ACTIONS(1620), - [anon_sym_LF] = ACTIONS(1622), - [anon_sym_def] = ACTIONS(1620), - [anon_sym_export_DASHenv] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1620), - [anon_sym_module] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_error] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_DOT] = ACTIONS(1620), - [anon_sym_try] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_source] = ACTIONS(1620), - [anon_sym_source_DASHenv] = ACTIONS(1620), - [anon_sym_register] = ACTIONS(1620), - [anon_sym_hide] = ACTIONS(1620), - [anon_sym_hide_DASHenv] = ACTIONS(1620), - [anon_sym_overlay] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_where] = ACTIONS(1620), - [anon_sym_STAR_STAR] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_SLASH_SLASH] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_bit_DASHshl] = ACTIONS(1620), - [anon_sym_bit_DASHshr] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_not_DASHin] = ACTIONS(1620), - [anon_sym_starts_DASHwith] = ACTIONS(1620), - [anon_sym_ends_DASHwith] = ACTIONS(1620), - [anon_sym_EQ_TILDE] = ACTIONS(1620), - [anon_sym_BANG_TILDE] = ACTIONS(1620), - [anon_sym_bit_DASHand] = ACTIONS(1620), - [anon_sym_bit_DASHxor] = ACTIONS(1620), - [anon_sym_bit_DASHor] = ACTIONS(1620), - [anon_sym_and] = ACTIONS(1620), - [anon_sym_xor] = ACTIONS(1620), - [anon_sym_or] = ACTIONS(1620), - [anon_sym_not] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [aux_sym__val_number_decimal_token1] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1620), - [aux_sym__val_number_token2] = ACTIONS(1620), - [aux_sym__val_number_token3] = ACTIONS(1620), - [aux_sym__val_number_token4] = ACTIONS(1620), - [aux_sym__val_number_token5] = ACTIONS(1620), - [aux_sym__val_number_token6] = ACTIONS(1620), - [anon_sym_0b] = ACTIONS(1620), - [anon_sym_0o] = ACTIONS(1620), - [anon_sym_0x] = ACTIONS(1620), - [sym_val_date] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1620), - [sym__str_single_quotes] = ACTIONS(1620), - [sym__str_back_ticks] = ACTIONS(1620), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), - [anon_sym_CARET] = ACTIONS(1620), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [671] = { [sym_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1634), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_alias] = ACTIONS(1632), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_let_DASHenv] = ACTIONS(1632), - [anon_sym_mut] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1632), - [sym_cmd_identifier] = ACTIONS(1632), - [anon_sym_LF] = ACTIONS(1634), - [anon_sym_def] = ACTIONS(1632), - [anon_sym_export_DASHenv] = ACTIONS(1632), - [anon_sym_extern] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_use] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_DOLLAR] = ACTIONS(1632), - [anon_sym_error] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_loop] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_try] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_source] = ACTIONS(1632), - [anon_sym_source_DASHenv] = ACTIONS(1632), - [anon_sym_register] = ACTIONS(1632), - [anon_sym_hide] = ACTIONS(1632), - [anon_sym_hide_DASHenv] = ACTIONS(1632), - [anon_sym_overlay] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_where] = ACTIONS(1632), - [anon_sym_STAR_STAR] = ACTIONS(1632), - [anon_sym_PLUS_PLUS] = ACTIONS(1632), - [anon_sym_SLASH] = ACTIONS(1632), - [anon_sym_mod] = ACTIONS(1632), - [anon_sym_SLASH_SLASH] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_bit_DASHshl] = ACTIONS(1632), - [anon_sym_bit_DASHshr] = ACTIONS(1632), - [anon_sym_EQ_EQ] = ACTIONS(1632), - [anon_sym_BANG_EQ] = ACTIONS(1632), - [anon_sym_LT2] = ACTIONS(1632), - [anon_sym_LT_EQ] = ACTIONS(1632), - [anon_sym_GT_EQ] = ACTIONS(1632), - [anon_sym_not_DASHin] = ACTIONS(1632), - [anon_sym_starts_DASHwith] = ACTIONS(1632), - [anon_sym_ends_DASHwith] = ACTIONS(1632), - [anon_sym_EQ_TILDE] = ACTIONS(1632), - [anon_sym_BANG_TILDE] = ACTIONS(1632), - [anon_sym_bit_DASHand] = ACTIONS(1632), - [anon_sym_bit_DASHxor] = ACTIONS(1632), - [anon_sym_bit_DASHor] = ACTIONS(1632), - [anon_sym_and] = ACTIONS(1632), - [anon_sym_xor] = ACTIONS(1632), - [anon_sym_or] = ACTIONS(1632), - [anon_sym_not] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [aux_sym__val_number_decimal_token1] = ACTIONS(1632), - [aux_sym__val_number_token1] = ACTIONS(1632), - [aux_sym__val_number_token2] = ACTIONS(1632), - [aux_sym__val_number_token3] = ACTIONS(1632), - [aux_sym__val_number_token4] = ACTIONS(1632), - [aux_sym__val_number_token5] = ACTIONS(1632), - [aux_sym__val_number_token6] = ACTIONS(1632), - [anon_sym_0b] = ACTIONS(1632), - [anon_sym_0o] = ACTIONS(1632), - [anon_sym_0x] = ACTIONS(1632), - [sym_val_date] = ACTIONS(1632), - [anon_sym_DQUOTE] = ACTIONS(1632), - [sym__str_single_quotes] = ACTIONS(1632), - [sym__str_back_ticks] = ACTIONS(1632), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1632), + [ts_builtin_sym_end] = ACTIONS(1631), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_alias] = ACTIONS(1629), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_let_DASHenv] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [sym_cmd_identifier] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_export_DASHenv] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_use] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_error] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_loop] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_source] = ACTIONS(1629), + [anon_sym_source_DASHenv] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_hide] = ACTIONS(1629), + [anon_sym_hide_DASHenv] = ACTIONS(1629), + [anon_sym_overlay] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_where] = ACTIONS(1629), + [anon_sym_STAR_STAR] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_mod] = ACTIONS(1629), + [anon_sym_SLASH_SLASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_bit_DASHshl] = ACTIONS(1629), + [anon_sym_bit_DASHshr] = ACTIONS(1629), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ] = ACTIONS(1629), + [anon_sym_GT_EQ] = ACTIONS(1629), + [anon_sym_not_DASHin] = ACTIONS(1629), + [anon_sym_starts_DASHwith] = ACTIONS(1629), + [anon_sym_ends_DASHwith] = ACTIONS(1629), + [anon_sym_EQ_TILDE] = ACTIONS(1629), + [anon_sym_BANG_TILDE] = ACTIONS(1629), + [anon_sym_bit_DASHand] = ACTIONS(1629), + [anon_sym_bit_DASHxor] = ACTIONS(1629), + [anon_sym_bit_DASHor] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_xor] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_not] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1629), + [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(1629), + [anon_sym_0o] = ACTIONS(1629), + [anon_sym_0x] = ACTIONS(1629), + [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_CARET] = ACTIONS(1629), [anon_sym_POUND] = ACTIONS(105), }, [672] = { [sym_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(1602), - [anon_sym_export] = ACTIONS(1600), - [anon_sym_alias] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_let_DASHenv] = ACTIONS(1600), - [anon_sym_mut] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1600), - [sym_cmd_identifier] = ACTIONS(1600), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_def] = ACTIONS(1600), - [anon_sym_export_DASHenv] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_module] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_error] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_try] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_source] = ACTIONS(1600), - [anon_sym_source_DASHenv] = ACTIONS(1600), - [anon_sym_register] = ACTIONS(1600), - [anon_sym_hide] = ACTIONS(1600), - [anon_sym_hide_DASHenv] = ACTIONS(1600), - [anon_sym_overlay] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_where] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1600), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1600), - [anon_sym_BANG_TILDE] = ACTIONS(1600), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [anon_sym_not] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1600), - [aux_sym__val_number_token2] = ACTIONS(1600), - [aux_sym__val_number_token3] = ACTIONS(1600), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1600), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_0b] = ACTIONS(1600), - [anon_sym_0o] = ACTIONS(1600), - [anon_sym_0x] = ACTIONS(1600), - [sym_val_date] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym__str_single_quotes] = ACTIONS(1600), - [sym__str_back_ticks] = ACTIONS(1600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1600), - [anon_sym_CARET] = ACTIONS(1600), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [sym_cmd_identifier] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_where] = ACTIONS(1659), + [anon_sym_STAR_STAR] = ACTIONS(1659), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_SLASH] = ACTIONS(1659), + [anon_sym_mod] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_bit_DASHshl] = ACTIONS(1659), + [anon_sym_bit_DASHshr] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1659), + [anon_sym_BANG_EQ] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1659), + [anon_sym_LT_EQ] = ACTIONS(1659), + [anon_sym_GT_EQ] = ACTIONS(1659), + [anon_sym_not_DASHin] = ACTIONS(1659), + [anon_sym_starts_DASHwith] = ACTIONS(1659), + [anon_sym_ends_DASHwith] = ACTIONS(1659), + [anon_sym_EQ_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(1659), + [anon_sym_bit_DASHand] = ACTIONS(1659), + [anon_sym_bit_DASHxor] = ACTIONS(1659), + [anon_sym_bit_DASHor] = ACTIONS(1659), + [anon_sym_and] = ACTIONS(1659), + [anon_sym_xor] = ACTIONS(1659), + [anon_sym_or] = ACTIONS(1659), + [anon_sym_not] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [aux_sym__val_number_token4] = ACTIONS(1659), + [aux_sym__val_number_token5] = ACTIONS(1659), + [aux_sym__val_number_token6] = ACTIONS(1659), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), + [anon_sym_CARET] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(105), }, [673] = { [sym_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_LT2] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_not_DASHin] = ACTIONS(1676), - [anon_sym_starts_DASHwith] = ACTIONS(1676), - [anon_sym_ends_DASHwith] = ACTIONS(1676), - [anon_sym_EQ_TILDE] = ACTIONS(1684), - [anon_sym_BANG_TILDE] = ACTIONS(1684), - [anon_sym_bit_DASHand] = ACTIONS(1686), - [anon_sym_bit_DASHxor] = ACTIONS(1688), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [674] = { [sym_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_where] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1441), + [anon_sym_BANG_TILDE] = ACTIONS(1441), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(105), }, [675] = { [sym_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_LT2] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_not_DASHin] = ACTIONS(1676), - [anon_sym_starts_DASHwith] = ACTIONS(1676), - [anon_sym_ends_DASHwith] = ACTIONS(1676), - [anon_sym_EQ_TILDE] = ACTIONS(1684), - [anon_sym_BANG_TILDE] = ACTIONS(1684), - [anon_sym_bit_DASHand] = ACTIONS(1686), - [anon_sym_bit_DASHxor] = ACTIONS(1688), - [anon_sym_bit_DASHor] = ACTIONS(1690), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [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), + [anon_sym_SEMI] = ACTIONS(1445), + [sym_cmd_identifier] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [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(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_in] = 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(1445), + [anon_sym_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_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1445), + [anon_sym_BANG_TILDE] = ACTIONS(1445), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [anon_sym_not] = ACTIONS(1445), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(105), }, [676] = { [sym_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(1602), - [anon_sym_export] = ACTIONS(1600), - [anon_sym_alias] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_let_DASHenv] = ACTIONS(1600), - [anon_sym_mut] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1600), - [sym_cmd_identifier] = ACTIONS(1600), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_def] = ACTIONS(1600), - [anon_sym_export_DASHenv] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_module] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_error] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_try] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_source] = ACTIONS(1600), - [anon_sym_source_DASHenv] = ACTIONS(1600), - [anon_sym_register] = ACTIONS(1600), - [anon_sym_hide] = ACTIONS(1600), - [anon_sym_hide_DASHenv] = ACTIONS(1600), - [anon_sym_overlay] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_where] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1600), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1600), - [anon_sym_BANG_TILDE] = ACTIONS(1600), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [anon_sym_not] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1600), - [aux_sym__val_number_token2] = ACTIONS(1600), - [aux_sym__val_number_token3] = ACTIONS(1600), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1600), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_0b] = ACTIONS(1600), - [anon_sym_0o] = ACTIONS(1600), - [anon_sym_0x] = ACTIONS(1600), - [sym_val_date] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym__str_single_quotes] = ACTIONS(1600), - [sym__str_back_ticks] = ACTIONS(1600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1600), - [anon_sym_CARET] = ACTIONS(1600), + [ts_builtin_sym_end] = ACTIONS(1693), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_alias] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_let_DASHenv] = ACTIONS(1691), + [anon_sym_mut] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [sym_cmd_identifier] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_export_DASHenv] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_DOT] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_source] = ACTIONS(1691), + [anon_sym_source_DASHenv] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_hide] = ACTIONS(1691), + [anon_sym_hide_DASHenv] = ACTIONS(1691), + [anon_sym_overlay] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_where] = ACTIONS(1691), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT2] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT_EQ] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_not] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1691), + [anon_sym_0x] = ACTIONS(1691), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), [anon_sym_POUND] = ACTIONS(105), }, [677] = { [sym_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(1630), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_alias] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_let_DASHenv] = ACTIONS(1628), - [anon_sym_mut] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1628), - [sym_cmd_identifier] = ACTIONS(1628), - [anon_sym_LF] = ACTIONS(1630), - [anon_sym_def] = ACTIONS(1628), - [anon_sym_export_DASHenv] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_error] = ACTIONS(1628), - [anon_sym_GT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1628), - [anon_sym_try] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_source] = ACTIONS(1628), - [anon_sym_source_DASHenv] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_hide] = ACTIONS(1628), - [anon_sym_hide_DASHenv] = ACTIONS(1628), - [anon_sym_overlay] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_where] = ACTIONS(1628), - [anon_sym_STAR_STAR] = ACTIONS(1628), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_SLASH] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_SLASH_SLASH] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_bit_DASHshl] = ACTIONS(1628), - [anon_sym_bit_DASHshr] = ACTIONS(1628), - [anon_sym_EQ_EQ] = ACTIONS(1628), - [anon_sym_BANG_EQ] = ACTIONS(1628), - [anon_sym_LT2] = ACTIONS(1628), - [anon_sym_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_EQ] = ACTIONS(1628), - [anon_sym_not_DASHin] = ACTIONS(1628), - [anon_sym_starts_DASHwith] = ACTIONS(1628), - [anon_sym_ends_DASHwith] = ACTIONS(1628), - [anon_sym_EQ_TILDE] = ACTIONS(1628), - [anon_sym_BANG_TILDE] = ACTIONS(1628), - [anon_sym_bit_DASHand] = ACTIONS(1628), - [anon_sym_bit_DASHxor] = ACTIONS(1628), - [anon_sym_bit_DASHor] = ACTIONS(1628), - [anon_sym_and] = ACTIONS(1628), - [anon_sym_xor] = ACTIONS(1628), - [anon_sym_or] = ACTIONS(1628), - [anon_sym_not] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1628), - [aux_sym__val_number_token2] = ACTIONS(1628), - [aux_sym__val_number_token3] = ACTIONS(1628), - [aux_sym__val_number_token4] = ACTIONS(1628), - [aux_sym__val_number_token5] = ACTIONS(1628), - [aux_sym__val_number_token6] = ACTIONS(1628), - [anon_sym_0b] = ACTIONS(1628), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1628), - [sym__str_single_quotes] = ACTIONS(1628), - [sym__str_back_ticks] = ACTIONS(1628), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), - [anon_sym_CARET] = ACTIONS(1628), + [ts_builtin_sym_end] = ACTIONS(1613), + [anon_sym_export] = ACTIONS(1611), + [anon_sym_alias] = ACTIONS(1611), + [anon_sym_let] = ACTIONS(1611), + [anon_sym_let_DASHenv] = ACTIONS(1611), + [anon_sym_mut] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1611), + [anon_sym_SEMI] = ACTIONS(1611), + [sym_cmd_identifier] = ACTIONS(1611), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_def] = ACTIONS(1611), + [anon_sym_export_DASHenv] = ACTIONS(1611), + [anon_sym_extern] = ACTIONS(1611), + [anon_sym_module] = ACTIONS(1611), + [anon_sym_use] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1611), + [anon_sym_error] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_break] = ACTIONS(1611), + [anon_sym_continue] = ACTIONS(1611), + [anon_sym_for] = ACTIONS(1611), + [anon_sym_in] = ACTIONS(1611), + [anon_sym_loop] = ACTIONS(1611), + [anon_sym_while] = ACTIONS(1611), + [anon_sym_do] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_match] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_DOT] = ACTIONS(1611), + [anon_sym_try] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1611), + [anon_sym_source] = ACTIONS(1611), + [anon_sym_source_DASHenv] = ACTIONS(1611), + [anon_sym_register] = ACTIONS(1611), + [anon_sym_hide] = ACTIONS(1611), + [anon_sym_hide_DASHenv] = ACTIONS(1611), + [anon_sym_overlay] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_where] = ACTIONS(1611), + [anon_sym_STAR_STAR] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_mod] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_bit_DASHshl] = ACTIONS(1611), + [anon_sym_bit_DASHshr] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1611), + [anon_sym_BANG_EQ] = ACTIONS(1611), + [anon_sym_LT2] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1611), + [anon_sym_GT_EQ] = ACTIONS(1611), + [anon_sym_not_DASHin] = ACTIONS(1611), + [anon_sym_starts_DASHwith] = ACTIONS(1611), + [anon_sym_ends_DASHwith] = ACTIONS(1611), + [anon_sym_EQ_TILDE] = ACTIONS(1611), + [anon_sym_BANG_TILDE] = ACTIONS(1611), + [anon_sym_bit_DASHand] = ACTIONS(1611), + [anon_sym_bit_DASHxor] = ACTIONS(1611), + [anon_sym_bit_DASHor] = ACTIONS(1611), + [anon_sym_and] = ACTIONS(1611), + [anon_sym_xor] = ACTIONS(1611), + [anon_sym_or] = ACTIONS(1611), + [anon_sym_not] = ACTIONS(1611), + [anon_sym_null] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1611), + [anon_sym_false] = ACTIONS(1611), + [aux_sym__val_number_decimal_token1] = ACTIONS(1611), + [aux_sym__val_number_token1] = ACTIONS(1611), + [aux_sym__val_number_token2] = ACTIONS(1611), + [aux_sym__val_number_token3] = ACTIONS(1611), + [aux_sym__val_number_token4] = ACTIONS(1611), + [aux_sym__val_number_token5] = ACTIONS(1611), + [aux_sym__val_number_token6] = ACTIONS(1611), + [anon_sym_0b] = ACTIONS(1611), + [anon_sym_0o] = ACTIONS(1611), + [anon_sym_0x] = ACTIONS(1611), + [sym_val_date] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym__str_single_quotes] = ACTIONS(1611), + [sym__str_back_ticks] = ACTIONS(1611), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), [anon_sym_POUND] = ACTIONS(105), }, [678] = { [sym_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(1570), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_alias] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_let_DASHenv] = ACTIONS(1568), - [anon_sym_mut] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1568), - [sym_cmd_identifier] = ACTIONS(1568), - [anon_sym_LF] = ACTIONS(1570), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_export_DASHenv] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_use] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_DOLLAR] = ACTIONS(1568), - [anon_sym_error] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_in] = ACTIONS(1568), - [anon_sym_loop] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_source] = ACTIONS(1568), - [anon_sym_source_DASHenv] = ACTIONS(1568), - [anon_sym_register] = ACTIONS(1568), - [anon_sym_hide] = ACTIONS(1568), - [anon_sym_hide_DASHenv] = ACTIONS(1568), - [anon_sym_overlay] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_where] = ACTIONS(1568), - [anon_sym_STAR_STAR] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1568), - [anon_sym_mod] = ACTIONS(1568), - [anon_sym_SLASH_SLASH] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_bit_DASHshl] = ACTIONS(1568), - [anon_sym_bit_DASHshr] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1568), - [anon_sym_BANG_EQ] = ACTIONS(1568), - [anon_sym_LT2] = ACTIONS(1568), - [anon_sym_LT_EQ] = ACTIONS(1568), - [anon_sym_GT_EQ] = ACTIONS(1568), - [anon_sym_not_DASHin] = ACTIONS(1568), - [anon_sym_starts_DASHwith] = ACTIONS(1568), - [anon_sym_ends_DASHwith] = ACTIONS(1568), - [anon_sym_EQ_TILDE] = ACTIONS(1568), - [anon_sym_BANG_TILDE] = ACTIONS(1568), - [anon_sym_bit_DASHand] = ACTIONS(1568), - [anon_sym_bit_DASHxor] = ACTIONS(1568), - [anon_sym_bit_DASHor] = ACTIONS(1568), - [anon_sym_and] = ACTIONS(1568), - [anon_sym_xor] = ACTIONS(1568), - [anon_sym_or] = ACTIONS(1568), - [anon_sym_not] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [aux_sym__val_number_decimal_token1] = ACTIONS(1568), - [aux_sym__val_number_token1] = ACTIONS(1568), - [aux_sym__val_number_token2] = ACTIONS(1568), - [aux_sym__val_number_token3] = ACTIONS(1568), - [aux_sym__val_number_token4] = ACTIONS(1568), - [aux_sym__val_number_token5] = ACTIONS(1568), - [aux_sym__val_number_token6] = ACTIONS(1568), - [anon_sym_0b] = ACTIONS(1568), - [anon_sym_0o] = ACTIONS(1568), - [anon_sym_0x] = ACTIONS(1568), - [sym_val_date] = ACTIONS(1568), - [anon_sym_DQUOTE] = ACTIONS(1568), - [sym__str_single_quotes] = ACTIONS(1568), - [sym__str_back_ticks] = ACTIONS(1568), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1669), + [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), + [anon_sym_SEMI] = ACTIONS(1667), + [sym_cmd_identifier] = ACTIONS(1667), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1667), + [anon_sym_try] = 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_STAR] = ACTIONS(1667), + [anon_sym_where] = ACTIONS(1667), + [anon_sym_STAR_STAR] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_SLASH_SLASH] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_bit_DASHshl] = ACTIONS(1667), + [anon_sym_bit_DASHshr] = ACTIONS(1667), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1667), + [anon_sym_GT_EQ] = ACTIONS(1667), + [anon_sym_not_DASHin] = ACTIONS(1667), + [anon_sym_starts_DASHwith] = ACTIONS(1667), + [anon_sym_ends_DASHwith] = ACTIONS(1667), + [anon_sym_EQ_TILDE] = ACTIONS(1667), + [anon_sym_BANG_TILDE] = ACTIONS(1667), + [anon_sym_bit_DASHand] = ACTIONS(1667), + [anon_sym_bit_DASHxor] = ACTIONS(1667), + [anon_sym_bit_DASHor] = ACTIONS(1667), + [anon_sym_and] = ACTIONS(1667), + [anon_sym_xor] = ACTIONS(1667), + [anon_sym_or] = ACTIONS(1667), + [anon_sym_not] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = 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), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(105), }, [679] = { [sym_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [680] = { [sym_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_LT2] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_not_DASHin] = ACTIONS(1676), - [anon_sym_starts_DASHwith] = ACTIONS(1676), - [anon_sym_ends_DASHwith] = ACTIONS(1676), - [anon_sym_EQ_TILDE] = ACTIONS(1684), - [anon_sym_BANG_TILDE] = ACTIONS(1684), - [anon_sym_bit_DASHand] = ACTIONS(1686), - [anon_sym_bit_DASHxor] = ACTIONS(1688), - [anon_sym_bit_DASHor] = ACTIONS(1690), - [anon_sym_and] = ACTIONS(1692), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [681] = { [sym_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(1477), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_alias] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_let_DASHenv] = ACTIONS(1475), - [anon_sym_mut] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [sym_cmd_identifier] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_def] = ACTIONS(1475), - [anon_sym_export_DASHenv] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_source] = ACTIONS(1475), - [anon_sym_source_DASHenv] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_hide_DASHenv] = ACTIONS(1475), - [anon_sym_overlay] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_where] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1475), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_not_DASHin] = ACTIONS(1709), + [anon_sym_starts_DASHwith] = ACTIONS(1709), + [anon_sym_ends_DASHwith] = ACTIONS(1709), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1715), + [anon_sym_bit_DASHor] = ACTIONS(1717), + [anon_sym_and] = ACTIONS(1719), + [anon_sym_xor] = ACTIONS(1721), + [anon_sym_or] = ACTIONS(1723), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [682] = { [sym_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1643), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_alias] = ACTIONS(1641), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_let_DASHenv] = ACTIONS(1641), + [anon_sym_mut] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [sym_cmd_identifier] = ACTIONS(1641), + [anon_sym_LF] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_export_DASHenv] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_use] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1641), + [anon_sym_error] = ACTIONS(1641), + [anon_sym_GT] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1641), + [anon_sym_loop] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_source] = ACTIONS(1641), + [anon_sym_source_DASHenv] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_hide] = ACTIONS(1641), + [anon_sym_hide_DASHenv] = ACTIONS(1641), + [anon_sym_overlay] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_where] = ACTIONS(1641), + [anon_sym_STAR_STAR] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1641), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_mod] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_bit_DASHshl] = ACTIONS(1641), + [anon_sym_bit_DASHshr] = ACTIONS(1641), + [anon_sym_EQ_EQ] = ACTIONS(1641), + [anon_sym_BANG_EQ] = ACTIONS(1641), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ] = ACTIONS(1641), + [anon_sym_GT_EQ] = ACTIONS(1641), + [anon_sym_not_DASHin] = ACTIONS(1641), + [anon_sym_starts_DASHwith] = ACTIONS(1641), + [anon_sym_ends_DASHwith] = ACTIONS(1641), + [anon_sym_EQ_TILDE] = ACTIONS(1641), + [anon_sym_BANG_TILDE] = ACTIONS(1641), + [anon_sym_bit_DASHand] = ACTIONS(1641), + [anon_sym_bit_DASHxor] = ACTIONS(1641), + [anon_sym_bit_DASHor] = ACTIONS(1641), + [anon_sym_and] = ACTIONS(1641), + [anon_sym_xor] = ACTIONS(1641), + [anon_sym_or] = ACTIONS(1641), + [anon_sym_not] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [aux_sym__val_number_token4] = ACTIONS(1641), + [aux_sym__val_number_token5] = ACTIONS(1641), + [aux_sym__val_number_token6] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1641), + [anon_sym_0x] = ACTIONS(1641), + [sym_val_date] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), + [anon_sym_CARET] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(105), }, [683] = { [sym_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1668), - [anon_sym_alias] = ACTIONS(1668), - [anon_sym_let] = ACTIONS(1668), - [anon_sym_let_DASHenv] = ACTIONS(1668), - [anon_sym_mut] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [sym_cmd_identifier] = ACTIONS(1668), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_def] = ACTIONS(1668), - [anon_sym_export_DASHenv] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_module] = ACTIONS(1668), - [anon_sym_use] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_error] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_in] = ACTIONS(1668), - [anon_sym_loop] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1668), - [anon_sym_do] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_source] = ACTIONS(1668), - [anon_sym_source_DASHenv] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1668), - [anon_sym_hide] = ACTIONS(1668), - [anon_sym_hide_DASHenv] = ACTIONS(1668), - [anon_sym_overlay] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_where] = ACTIONS(1668), - [anon_sym_STAR_STAR] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_SLASH] = ACTIONS(1668), - [anon_sym_mod] = ACTIONS(1668), - [anon_sym_SLASH_SLASH] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_bit_DASHshl] = ACTIONS(1668), - [anon_sym_bit_DASHshr] = ACTIONS(1668), - [anon_sym_EQ_EQ] = ACTIONS(1668), - [anon_sym_BANG_EQ] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1668), - [anon_sym_LT_EQ] = ACTIONS(1668), - [anon_sym_GT_EQ] = ACTIONS(1668), - [anon_sym_not_DASHin] = ACTIONS(1668), - [anon_sym_starts_DASHwith] = ACTIONS(1668), - [anon_sym_ends_DASHwith] = ACTIONS(1668), - [anon_sym_EQ_TILDE] = ACTIONS(1668), - [anon_sym_BANG_TILDE] = ACTIONS(1668), - [anon_sym_bit_DASHand] = ACTIONS(1668), - [anon_sym_bit_DASHxor] = ACTIONS(1668), - [anon_sym_bit_DASHor] = ACTIONS(1668), - [anon_sym_and] = ACTIONS(1668), - [anon_sym_xor] = ACTIONS(1668), - [anon_sym_or] = ACTIONS(1668), - [anon_sym_not] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1668), - [anon_sym_0o] = ACTIONS(1668), - [anon_sym_0x] = ACTIONS(1668), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_CARET] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1603), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_let_DASHenv] = ACTIONS(1603), + [anon_sym_mut] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [sym_cmd_identifier] = ACTIONS(1603), + [anon_sym_LF] = ACTIONS(1605), + [anon_sym_def] = ACTIONS(1603), + [anon_sym_export_DASHenv] = ACTIONS(1603), + [anon_sym_extern] = ACTIONS(1603), + [anon_sym_module] = ACTIONS(1603), + [anon_sym_use] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(1603), + [anon_sym_error] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_in] = ACTIONS(1603), + [anon_sym_loop] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1603), + [anon_sym_do] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1603), + [anon_sym_try] = ACTIONS(1603), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_source] = ACTIONS(1603), + [anon_sym_source_DASHenv] = ACTIONS(1603), + [anon_sym_register] = ACTIONS(1603), + [anon_sym_hide] = ACTIONS(1603), + [anon_sym_hide_DASHenv] = ACTIONS(1603), + [anon_sym_overlay] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_STAR_STAR] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1603), + [anon_sym_mod] = ACTIONS(1603), + [anon_sym_SLASH_SLASH] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_bit_DASHshl] = ACTIONS(1603), + [anon_sym_bit_DASHshr] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1603), + [anon_sym_BANG_EQ] = ACTIONS(1603), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(1603), + [anon_sym_not_DASHin] = ACTIONS(1603), + [anon_sym_starts_DASHwith] = ACTIONS(1603), + [anon_sym_ends_DASHwith] = ACTIONS(1603), + [anon_sym_EQ_TILDE] = ACTIONS(1603), + [anon_sym_BANG_TILDE] = ACTIONS(1603), + [anon_sym_bit_DASHand] = ACTIONS(1603), + [anon_sym_bit_DASHxor] = ACTIONS(1603), + [anon_sym_bit_DASHor] = ACTIONS(1603), + [anon_sym_and] = ACTIONS(1603), + [anon_sym_xor] = ACTIONS(1603), + [anon_sym_or] = ACTIONS(1603), + [anon_sym_not] = ACTIONS(1603), + [anon_sym_null] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1603), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1603), + [aux_sym__val_number_token5] = ACTIONS(1603), + [aux_sym__val_number_token6] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1603), + [anon_sym_0o] = ACTIONS(1603), + [anon_sym_0x] = ACTIONS(1603), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_CARET] = ACTIONS(1603), [anon_sym_POUND] = ACTIONS(105), }, [684] = { [sym_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(1517), - [anon_sym_export] = ACTIONS(1515), - [anon_sym_alias] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_let_DASHenv] = ACTIONS(1515), - [anon_sym_mut] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [sym_cmd_identifier] = ACTIONS(1515), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_def] = ACTIONS(1515), - [anon_sym_export_DASHenv] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_module] = ACTIONS(1515), - [anon_sym_use] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_error] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_source] = ACTIONS(1515), - [anon_sym_source_DASHenv] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_hide] = ACTIONS(1515), - [anon_sym_hide_DASHenv] = ACTIONS(1515), - [anon_sym_overlay] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_where] = ACTIONS(1515), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_not] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1515), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1515), - [anon_sym_0o] = ACTIONS(1515), - [anon_sym_0x] = ACTIONS(1515), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [685] = { [sym_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(1616), - [anon_sym_alias] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_let_DASHenv] = ACTIONS(1616), - [anon_sym_mut] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1616), - [sym_cmd_identifier] = ACTIONS(1616), - [anon_sym_LF] = ACTIONS(1618), - [anon_sym_def] = ACTIONS(1616), - [anon_sym_export_DASHenv] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_module] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_DOLLAR] = ACTIONS(1616), - [anon_sym_error] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_in] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_DOT] = ACTIONS(1616), - [anon_sym_try] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_source] = ACTIONS(1616), - [anon_sym_source_DASHenv] = ACTIONS(1616), - [anon_sym_register] = ACTIONS(1616), - [anon_sym_hide] = ACTIONS(1616), - [anon_sym_hide_DASHenv] = ACTIONS(1616), - [anon_sym_overlay] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_where] = ACTIONS(1616), - [anon_sym_STAR_STAR] = ACTIONS(1616), - [anon_sym_PLUS_PLUS] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_SLASH_SLASH] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_bit_DASHshl] = ACTIONS(1616), - [anon_sym_bit_DASHshr] = ACTIONS(1616), - [anon_sym_EQ_EQ] = ACTIONS(1616), - [anon_sym_BANG_EQ] = ACTIONS(1616), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ] = ACTIONS(1616), - [anon_sym_GT_EQ] = ACTIONS(1616), - [anon_sym_not_DASHin] = ACTIONS(1616), - [anon_sym_starts_DASHwith] = ACTIONS(1616), - [anon_sym_ends_DASHwith] = ACTIONS(1616), - [anon_sym_EQ_TILDE] = ACTIONS(1616), - [anon_sym_BANG_TILDE] = ACTIONS(1616), - [anon_sym_bit_DASHand] = ACTIONS(1616), - [anon_sym_bit_DASHxor] = ACTIONS(1616), - [anon_sym_bit_DASHor] = ACTIONS(1616), - [anon_sym_and] = ACTIONS(1616), - [anon_sym_xor] = ACTIONS(1616), - [anon_sym_or] = ACTIONS(1616), - [anon_sym_not] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1616), - [aux_sym__val_number_token1] = ACTIONS(1616), - [aux_sym__val_number_token2] = ACTIONS(1616), - [aux_sym__val_number_token3] = ACTIONS(1616), - [aux_sym__val_number_token4] = ACTIONS(1616), - [aux_sym__val_number_token5] = ACTIONS(1616), - [aux_sym__val_number_token6] = ACTIONS(1616), - [anon_sym_0b] = ACTIONS(1616), - [anon_sym_0o] = ACTIONS(1616), - [anon_sym_0x] = ACTIONS(1616), - [sym_val_date] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1616), - [sym__str_single_quotes] = ACTIONS(1616), - [sym__str_back_ticks] = ACTIONS(1616), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1616), - [anon_sym_CARET] = ACTIONS(1616), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_not_DASHin] = ACTIONS(1709), + [anon_sym_starts_DASHwith] = ACTIONS(1709), + [anon_sym_ends_DASHwith] = ACTIONS(1709), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1715), + [anon_sym_bit_DASHor] = ACTIONS(1717), + [anon_sym_and] = ACTIONS(1719), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [686] = { [sym_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_alias] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_let_DASHenv] = ACTIONS(1596), - [anon_sym_mut] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [sym_cmd_identifier] = ACTIONS(1596), - [anon_sym_LF] = ACTIONS(1598), - [anon_sym_def] = ACTIONS(1596), - [anon_sym_export_DASHenv] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_error] = ACTIONS(1596), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_try] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_source] = ACTIONS(1596), - [anon_sym_source_DASHenv] = ACTIONS(1596), - [anon_sym_register] = ACTIONS(1596), - [anon_sym_hide] = ACTIONS(1596), - [anon_sym_hide_DASHenv] = ACTIONS(1596), - [anon_sym_overlay] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_where] = ACTIONS(1596), - [anon_sym_STAR_STAR] = ACTIONS(1596), - [anon_sym_PLUS_PLUS] = ACTIONS(1596), - [anon_sym_SLASH] = ACTIONS(1596), - [anon_sym_mod] = ACTIONS(1596), - [anon_sym_SLASH_SLASH] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_bit_DASHshl] = ACTIONS(1596), - [anon_sym_bit_DASHshr] = ACTIONS(1596), - [anon_sym_EQ_EQ] = ACTIONS(1596), - [anon_sym_BANG_EQ] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1596), - [anon_sym_GT_EQ] = ACTIONS(1596), - [anon_sym_not_DASHin] = ACTIONS(1596), - [anon_sym_starts_DASHwith] = ACTIONS(1596), - [anon_sym_ends_DASHwith] = ACTIONS(1596), - [anon_sym_EQ_TILDE] = ACTIONS(1596), - [anon_sym_BANG_TILDE] = ACTIONS(1596), - [anon_sym_bit_DASHand] = ACTIONS(1596), - [anon_sym_bit_DASHxor] = ACTIONS(1596), - [anon_sym_bit_DASHor] = ACTIONS(1596), - [anon_sym_and] = ACTIONS(1596), - [anon_sym_xor] = ACTIONS(1596), - [anon_sym_or] = ACTIONS(1596), - [anon_sym_not] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_token1] = ACTIONS(1596), - [aux_sym__val_number_token2] = ACTIONS(1596), - [aux_sym__val_number_token3] = ACTIONS(1596), - [aux_sym__val_number_token4] = ACTIONS(1596), - [aux_sym__val_number_token5] = ACTIONS(1596), - [aux_sym__val_number_token6] = ACTIONS(1596), - [anon_sym_0b] = ACTIONS(1596), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(1596), - [sym__str_single_quotes] = ACTIONS(1596), - [sym__str_back_ticks] = ACTIONS(1596), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1596), - [anon_sym_CARET] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1601), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [sym_cmd_identifier] = ACTIONS(1599), + [anon_sym_LF] = ACTIONS(1601), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_where] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = 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_not] = ACTIONS(1599), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = 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(1599), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [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_CARET] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(105), }, [687] = { [sym_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_not_DASHin] = ACTIONS(1709), + [anon_sym_starts_DASHwith] = ACTIONS(1709), + [anon_sym_ends_DASHwith] = ACTIONS(1709), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [688] = { [sym_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_where] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_SLASH_SLASH] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_LT2] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_not_DASHin] = ACTIONS(1676), - [anon_sym_starts_DASHwith] = ACTIONS(1676), - [anon_sym_ends_DASHwith] = ACTIONS(1676), - [anon_sym_EQ_TILDE] = ACTIONS(1684), - [anon_sym_BANG_TILDE] = ACTIONS(1684), - [anon_sym_bit_DASHand] = ACTIONS(1686), - [anon_sym_bit_DASHxor] = ACTIONS(1688), - [anon_sym_bit_DASHor] = ACTIONS(1690), - [anon_sym_and] = ACTIONS(1692), - [anon_sym_xor] = ACTIONS(1694), - [anon_sym_or] = ACTIONS(1696), - [anon_sym_not] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1665), + [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), + [anon_sym_SEMI] = ACTIONS(1663), + [sym_cmd_identifier] = ACTIONS(1663), + [anon_sym_LF] = ACTIONS(1665), + [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_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_try] = 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_STAR] = ACTIONS(1663), + [anon_sym_where] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_not] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1663), + [aux_sym__val_number_token2] = ACTIONS(1663), + [aux_sym__val_number_token3] = ACTIONS(1663), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_0b] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(105), }, [689] = { [sym_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_where] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1657), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_alias] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_let_DASHenv] = ACTIONS(1655), + [anon_sym_mut] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [sym_cmd_identifier] = ACTIONS(1655), + [anon_sym_LF] = ACTIONS(1657), + [anon_sym_def] = ACTIONS(1655), + [anon_sym_export_DASHenv] = ACTIONS(1655), + [anon_sym_extern] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_use] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_error] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_loop] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_match] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_source] = ACTIONS(1655), + [anon_sym_source_DASHenv] = ACTIONS(1655), + [anon_sym_register] = ACTIONS(1655), + [anon_sym_hide] = ACTIONS(1655), + [anon_sym_hide_DASHenv] = ACTIONS(1655), + [anon_sym_overlay] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_where] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_mod] = ACTIONS(1655), + [anon_sym_SLASH_SLASH] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_bit_DASHshl] = ACTIONS(1655), + [anon_sym_bit_DASHshr] = ACTIONS(1655), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_LT2] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1655), + [anon_sym_GT_EQ] = ACTIONS(1655), + [anon_sym_not_DASHin] = ACTIONS(1655), + [anon_sym_starts_DASHwith] = ACTIONS(1655), + [anon_sym_ends_DASHwith] = ACTIONS(1655), + [anon_sym_EQ_TILDE] = ACTIONS(1655), + [anon_sym_BANG_TILDE] = ACTIONS(1655), + [anon_sym_bit_DASHand] = ACTIONS(1655), + [anon_sym_bit_DASHxor] = ACTIONS(1655), + [anon_sym_bit_DASHor] = ACTIONS(1655), + [anon_sym_and] = ACTIONS(1655), + [anon_sym_xor] = ACTIONS(1655), + [anon_sym_or] = ACTIONS(1655), + [anon_sym_not] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1655), + [aux_sym__val_number_token1] = ACTIONS(1655), + [aux_sym__val_number_token2] = ACTIONS(1655), + [aux_sym__val_number_token3] = ACTIONS(1655), + [aux_sym__val_number_token4] = ACTIONS(1655), + [aux_sym__val_number_token5] = ACTIONS(1655), + [aux_sym__val_number_token6] = ACTIONS(1655), + [anon_sym_0b] = ACTIONS(1655), + [anon_sym_0o] = ACTIONS(1655), + [anon_sym_0x] = ACTIONS(1655), + [sym_val_date] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym__str_single_quotes] = ACTIONS(1655), + [sym__str_back_ticks] = ACTIONS(1655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_POUND] = ACTIONS(105), }, [690] = { [sym_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(1664), - [anon_sym_alias] = ACTIONS(1664), - [anon_sym_let] = ACTIONS(1664), - [anon_sym_let_DASHenv] = ACTIONS(1664), - [anon_sym_mut] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [sym_cmd_identifier] = ACTIONS(1664), - [anon_sym_LF] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1664), - [anon_sym_export_DASHenv] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_module] = ACTIONS(1664), - [anon_sym_use] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_error] = ACTIONS(1664), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_in] = ACTIONS(1664), - [anon_sym_loop] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_match] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_try] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_source] = ACTIONS(1664), - [anon_sym_source_DASHenv] = ACTIONS(1664), - [anon_sym_register] = ACTIONS(1664), - [anon_sym_hide] = ACTIONS(1664), - [anon_sym_hide_DASHenv] = ACTIONS(1664), - [anon_sym_overlay] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_where] = ACTIONS(1664), - [anon_sym_STAR_STAR] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_mod] = ACTIONS(1664), - [anon_sym_SLASH_SLASH] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_bit_DASHshl] = ACTIONS(1664), - [anon_sym_bit_DASHshr] = ACTIONS(1664), - [anon_sym_EQ_EQ] = ACTIONS(1664), - [anon_sym_BANG_EQ] = ACTIONS(1664), - [anon_sym_LT2] = ACTIONS(1664), - [anon_sym_LT_EQ] = ACTIONS(1664), - [anon_sym_GT_EQ] = ACTIONS(1664), - [anon_sym_not_DASHin] = ACTIONS(1664), - [anon_sym_starts_DASHwith] = ACTIONS(1664), - [anon_sym_ends_DASHwith] = ACTIONS(1664), - [anon_sym_EQ_TILDE] = ACTIONS(1664), - [anon_sym_BANG_TILDE] = ACTIONS(1664), - [anon_sym_bit_DASHand] = ACTIONS(1664), - [anon_sym_bit_DASHxor] = ACTIONS(1664), - [anon_sym_bit_DASHor] = ACTIONS(1664), - [anon_sym_and] = ACTIONS(1664), - [anon_sym_xor] = ACTIONS(1664), - [anon_sym_or] = ACTIONS(1664), - [anon_sym_not] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [aux_sym__val_number_decimal_token1] = ACTIONS(1664), - [aux_sym__val_number_token1] = ACTIONS(1664), - [aux_sym__val_number_token2] = ACTIONS(1664), - [aux_sym__val_number_token3] = ACTIONS(1664), - [aux_sym__val_number_token4] = ACTIONS(1664), - [aux_sym__val_number_token5] = ACTIONS(1664), - [aux_sym__val_number_token6] = ACTIONS(1664), - [anon_sym_0b] = ACTIONS(1664), - [anon_sym_0o] = ACTIONS(1664), - [anon_sym_0x] = ACTIONS(1664), - [sym_val_date] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1664), - [sym__str_single_quotes] = ACTIONS(1664), - [sym__str_back_ticks] = ACTIONS(1664), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1664), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1664), - [anon_sym_CARET] = ACTIONS(1664), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [sym_cmd_identifier] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_where] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1513), + [anon_sym_BANG_TILDE] = ACTIONS(1513), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(105), }, [691] = { [sym_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(1626), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_alias] = ACTIONS(1624), - [anon_sym_let] = ACTIONS(1624), - [anon_sym_let_DASHenv] = ACTIONS(1624), - [anon_sym_mut] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1624), - [sym_cmd_identifier] = ACTIONS(1624), - [anon_sym_LF] = ACTIONS(1626), - [anon_sym_def] = ACTIONS(1624), - [anon_sym_export_DASHenv] = ACTIONS(1624), - [anon_sym_extern] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_use] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1624), - [anon_sym_error] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_in] = ACTIONS(1624), - [anon_sym_loop] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_DOT] = ACTIONS(1624), - [anon_sym_try] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_source] = ACTIONS(1624), - [anon_sym_source_DASHenv] = ACTIONS(1624), - [anon_sym_register] = ACTIONS(1624), - [anon_sym_hide] = ACTIONS(1624), - [anon_sym_hide_DASHenv] = ACTIONS(1624), - [anon_sym_overlay] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_where] = ACTIONS(1624), - [anon_sym_STAR_STAR] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_SLASH_SLASH] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_bit_DASHshl] = ACTIONS(1624), - [anon_sym_bit_DASHshr] = ACTIONS(1624), - [anon_sym_EQ_EQ] = ACTIONS(1624), - [anon_sym_BANG_EQ] = ACTIONS(1624), - [anon_sym_LT2] = ACTIONS(1624), - [anon_sym_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_EQ] = ACTIONS(1624), - [anon_sym_not_DASHin] = ACTIONS(1624), - [anon_sym_starts_DASHwith] = ACTIONS(1624), - [anon_sym_ends_DASHwith] = ACTIONS(1624), - [anon_sym_EQ_TILDE] = ACTIONS(1624), - [anon_sym_BANG_TILDE] = ACTIONS(1624), - [anon_sym_bit_DASHand] = ACTIONS(1624), - [anon_sym_bit_DASHxor] = ACTIONS(1624), - [anon_sym_bit_DASHor] = ACTIONS(1624), - [anon_sym_and] = ACTIONS(1624), - [anon_sym_xor] = ACTIONS(1624), - [anon_sym_or] = ACTIONS(1624), - [anon_sym_not] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [aux_sym__val_number_decimal_token1] = ACTIONS(1624), - [aux_sym__val_number_token1] = ACTIONS(1624), - [aux_sym__val_number_token2] = ACTIONS(1624), - [aux_sym__val_number_token3] = ACTIONS(1624), - [aux_sym__val_number_token4] = ACTIONS(1624), - [aux_sym__val_number_token5] = ACTIONS(1624), - [aux_sym__val_number_token6] = ACTIONS(1624), - [anon_sym_0b] = ACTIONS(1624), - [anon_sym_0o] = ACTIONS(1624), - [anon_sym_0x] = ACTIONS(1624), - [sym_val_date] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1624), - [sym__str_single_quotes] = ACTIONS(1624), - [sym__str_back_ticks] = ACTIONS(1624), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1624), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1624), - [anon_sym_CARET] = ACTIONS(1624), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_not_DASHin] = ACTIONS(1709), + [anon_sym_starts_DASHwith] = ACTIONS(1709), + [anon_sym_ends_DASHwith] = ACTIONS(1709), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1715), + [anon_sym_bit_DASHor] = ACTIONS(1717), + [anon_sym_and] = ACTIONS(1719), + [anon_sym_xor] = ACTIONS(1721), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [692] = { [sym_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(1493), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_alias] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_let_DASHenv] = ACTIONS(1491), - [anon_sym_mut] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [sym_cmd_identifier] = ACTIONS(1491), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_def] = ACTIONS(1491), - [anon_sym_export_DASHenv] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_error] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_source] = ACTIONS(1491), - [anon_sym_source_DASHenv] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_hide] = ACTIONS(1491), - [anon_sym_hide_DASHenv] = ACTIONS(1491), - [anon_sym_overlay] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_where] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_BANG_TILDE] = ACTIONS(1491), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [anon_sym_not] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1491), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_0b] = ACTIONS(1491), - [anon_sym_0o] = ACTIONS(1491), - [anon_sym_0x] = ACTIONS(1491), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_alias] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_let_DASHenv] = ACTIONS(1687), + [anon_sym_mut] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [sym_cmd_identifier] = ACTIONS(1687), + [anon_sym_LF] = ACTIONS(1689), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_export_DASHenv] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_error] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_DOT] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_source] = ACTIONS(1687), + [anon_sym_source_DASHenv] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_hide] = ACTIONS(1687), + [anon_sym_hide_DASHenv] = ACTIONS(1687), + [anon_sym_overlay] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_where] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = 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_not] = ACTIONS(1687), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = 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(1687), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [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_CARET] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(105), }, [693] = { [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1586), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_alias] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_let_DASHenv] = ACTIONS(1584), - [anon_sym_mut] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1584), - [sym_cmd_identifier] = ACTIONS(1584), - [anon_sym_LF] = ACTIONS(1586), - [anon_sym_def] = ACTIONS(1584), - [anon_sym_export_DASHenv] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_module] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_error] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_in] = ACTIONS(1584), - [anon_sym_loop] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_try] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_source] = ACTIONS(1584), - [anon_sym_source_DASHenv] = ACTIONS(1584), - [anon_sym_register] = ACTIONS(1584), - [anon_sym_hide] = ACTIONS(1584), - [anon_sym_hide_DASHenv] = ACTIONS(1584), - [anon_sym_overlay] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_where] = ACTIONS(1584), - [anon_sym_STAR_STAR] = ACTIONS(1584), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_mod] = ACTIONS(1584), - [anon_sym_SLASH_SLASH] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_bit_DASHshl] = ACTIONS(1584), - [anon_sym_bit_DASHshr] = ACTIONS(1584), - [anon_sym_EQ_EQ] = ACTIONS(1584), - [anon_sym_BANG_EQ] = ACTIONS(1584), - [anon_sym_LT2] = ACTIONS(1584), - [anon_sym_LT_EQ] = ACTIONS(1584), - [anon_sym_GT_EQ] = ACTIONS(1584), - [anon_sym_not_DASHin] = ACTIONS(1584), - [anon_sym_starts_DASHwith] = ACTIONS(1584), - [anon_sym_ends_DASHwith] = ACTIONS(1584), - [anon_sym_EQ_TILDE] = ACTIONS(1584), - [anon_sym_BANG_TILDE] = ACTIONS(1584), - [anon_sym_bit_DASHand] = ACTIONS(1584), - [anon_sym_bit_DASHxor] = ACTIONS(1584), - [anon_sym_bit_DASHor] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_xor] = ACTIONS(1584), - [anon_sym_or] = ACTIONS(1584), - [anon_sym_not] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [aux_sym__val_number_decimal_token1] = ACTIONS(1584), - [aux_sym__val_number_token1] = ACTIONS(1584), - [aux_sym__val_number_token2] = ACTIONS(1584), - [aux_sym__val_number_token3] = ACTIONS(1584), - [aux_sym__val_number_token4] = ACTIONS(1584), - [aux_sym__val_number_token5] = ACTIONS(1584), - [aux_sym__val_number_token6] = ACTIONS(1584), - [anon_sym_0b] = ACTIONS(1584), - [anon_sym_0o] = ACTIONS(1584), - [anon_sym_0x] = ACTIONS(1584), - [sym_val_date] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1584), - [sym__str_single_quotes] = ACTIONS(1584), - [sym__str_back_ticks] = ACTIONS(1584), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), - [anon_sym_CARET] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_export] = ACTIONS(1540), + [anon_sym_alias] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_let_DASHenv] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [sym_cmd_identifier] = ACTIONS(1540), + [anon_sym_LF] = ACTIONS(1623), + [anon_sym_def] = ACTIONS(1540), + [anon_sym_export_DASHenv] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_module] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_error] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_source] = ACTIONS(1540), + [anon_sym_source_DASHenv] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_hide] = ACTIONS(1540), + [anon_sym_hide_DASHenv] = ACTIONS(1540), + [anon_sym_overlay] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_where] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_not] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [aux_sym__val_number_token4] = ACTIONS(1540), + [aux_sym__val_number_token5] = ACTIONS(1540), + [aux_sym__val_number_token6] = ACTIONS(1540), + [anon_sym_0b] = ACTIONS(1540), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(105), }, [694] = { [sym_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(1652), - [anon_sym_export] = ACTIONS(1650), - [anon_sym_alias] = ACTIONS(1650), - [anon_sym_let] = ACTIONS(1650), - [anon_sym_let_DASHenv] = ACTIONS(1650), - [anon_sym_mut] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [sym_cmd_identifier] = ACTIONS(1650), - [anon_sym_LF] = ACTIONS(1652), - [anon_sym_def] = ACTIONS(1650), - [anon_sym_export_DASHenv] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_module] = ACTIONS(1650), - [anon_sym_use] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_in] = ACTIONS(1650), - [anon_sym_loop] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_match] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_source] = ACTIONS(1650), - [anon_sym_source_DASHenv] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1650), - [anon_sym_hide] = ACTIONS(1650), - [anon_sym_hide_DASHenv] = ACTIONS(1650), - [anon_sym_overlay] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_where] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_SLASH] = ACTIONS(1650), - [anon_sym_mod] = ACTIONS(1650), - [anon_sym_SLASH_SLASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_bit_DASHshl] = ACTIONS(1650), - [anon_sym_bit_DASHshr] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1650), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_not_DASHin] = ACTIONS(1650), - [anon_sym_starts_DASHwith] = ACTIONS(1650), - [anon_sym_ends_DASHwith] = ACTIONS(1650), - [anon_sym_EQ_TILDE] = ACTIONS(1650), - [anon_sym_BANG_TILDE] = ACTIONS(1650), - [anon_sym_bit_DASHand] = ACTIONS(1650), - [anon_sym_bit_DASHxor] = ACTIONS(1650), - [anon_sym_bit_DASHor] = ACTIONS(1650), - [anon_sym_and] = ACTIONS(1650), - [anon_sym_xor] = ACTIONS(1650), - [anon_sym_or] = ACTIONS(1650), - [anon_sym_not] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1650), - [anon_sym_0o] = ACTIONS(1650), - [anon_sym_0x] = ACTIONS(1650), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_CARET] = ACTIONS(1650), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [695] = { [sym_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_where] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1495), - [anon_sym_BANG_TILDE] = ACTIONS(1495), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [anon_sym_not] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_not_DASHin] = ACTIONS(1709), + [anon_sym_starts_DASHwith] = ACTIONS(1709), + [anon_sym_ends_DASHwith] = ACTIONS(1709), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1715), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [696] = { [sym_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1426), - [anon_sym_BANG_TILDE] = ACTIONS(1426), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [anon_sym_not] = ACTIONS(1426), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [697] = { [sym_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1524), - [anon_sym_alias] = ACTIONS(1524), - [anon_sym_let] = ACTIONS(1524), - [anon_sym_let_DASHenv] = ACTIONS(1524), - [anon_sym_mut] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [sym_cmd_identifier] = ACTIONS(1524), - [anon_sym_LF] = ACTIONS(1526), - [anon_sym_def] = ACTIONS(1524), - [anon_sym_export_DASHenv] = ACTIONS(1524), - [anon_sym_extern] = ACTIONS(1524), - [anon_sym_module] = ACTIONS(1524), - [anon_sym_use] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_DOLLAR] = ACTIONS(1524), - [anon_sym_error] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_in] = ACTIONS(1524), - [anon_sym_loop] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_match] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_DOT] = ACTIONS(1524), - [anon_sym_try] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_source] = ACTIONS(1524), - [anon_sym_source_DASHenv] = ACTIONS(1524), - [anon_sym_register] = ACTIONS(1524), - [anon_sym_hide] = ACTIONS(1524), - [anon_sym_hide_DASHenv] = ACTIONS(1524), - [anon_sym_overlay] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_where] = ACTIONS(1524), - [anon_sym_STAR_STAR] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1524), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_mod] = ACTIONS(1524), - [anon_sym_SLASH_SLASH] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_bit_DASHshl] = ACTIONS(1524), - [anon_sym_bit_DASHshr] = ACTIONS(1524), - [anon_sym_EQ_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ] = ACTIONS(1524), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1524), - [anon_sym_GT_EQ] = ACTIONS(1524), - [anon_sym_not_DASHin] = ACTIONS(1524), - [anon_sym_starts_DASHwith] = ACTIONS(1524), - [anon_sym_ends_DASHwith] = ACTIONS(1524), - [anon_sym_EQ_TILDE] = ACTIONS(1524), - [anon_sym_BANG_TILDE] = ACTIONS(1524), - [anon_sym_bit_DASHand] = ACTIONS(1524), - [anon_sym_bit_DASHxor] = ACTIONS(1524), - [anon_sym_bit_DASHor] = ACTIONS(1524), - [anon_sym_and] = ACTIONS(1524), - [anon_sym_xor] = ACTIONS(1524), - [anon_sym_or] = ACTIONS(1524), - [anon_sym_not] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_token1] = ACTIONS(1524), - [aux_sym__val_number_token2] = ACTIONS(1524), - [aux_sym__val_number_token3] = ACTIONS(1524), - [aux_sym__val_number_token4] = ACTIONS(1524), - [aux_sym__val_number_token5] = ACTIONS(1524), - [aux_sym__val_number_token6] = ACTIONS(1524), - [anon_sym_0b] = ACTIONS(1524), - [anon_sym_0o] = ACTIONS(1524), - [anon_sym_0x] = ACTIONS(1524), - [sym_val_date] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym__str_single_quotes] = ACTIONS(1524), - [sym__str_back_ticks] = ACTIONS(1524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(1681), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_alias] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_let_DASHenv] = ACTIONS(1679), + [anon_sym_mut] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1679), + [sym_cmd_identifier] = ACTIONS(1679), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_def] = ACTIONS(1679), + [anon_sym_export_DASHenv] = ACTIONS(1679), + [anon_sym_extern] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1679), + [anon_sym_error] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1679), + [anon_sym_continue] = ACTIONS(1679), + [anon_sym_for] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_loop] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1679), + [anon_sym_do] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_try] = ACTIONS(1679), + [anon_sym_return] = ACTIONS(1679), + [anon_sym_source] = ACTIONS(1679), + [anon_sym_source_DASHenv] = ACTIONS(1679), + [anon_sym_register] = ACTIONS(1679), + [anon_sym_hide] = ACTIONS(1679), + [anon_sym_hide_DASHenv] = ACTIONS(1679), + [anon_sym_overlay] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_where] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1679), + [anon_sym_mod] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_bit_DASHshl] = ACTIONS(1679), + [anon_sym_bit_DASHshr] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_not_DASHin] = ACTIONS(1679), + [anon_sym_starts_DASHwith] = ACTIONS(1679), + [anon_sym_ends_DASHwith] = ACTIONS(1679), + [anon_sym_EQ_TILDE] = ACTIONS(1679), + [anon_sym_BANG_TILDE] = ACTIONS(1679), + [anon_sym_bit_DASHand] = ACTIONS(1679), + [anon_sym_bit_DASHxor] = ACTIONS(1679), + [anon_sym_bit_DASHor] = ACTIONS(1679), + [anon_sym_and] = ACTIONS(1679), + [anon_sym_xor] = ACTIONS(1679), + [anon_sym_or] = ACTIONS(1679), + [anon_sym_not] = ACTIONS(1679), + [anon_sym_null] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [aux_sym__val_number_decimal_token1] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(1679), + [aux_sym__val_number_token2] = ACTIONS(1679), + [aux_sym__val_number_token3] = ACTIONS(1679), + [aux_sym__val_number_token4] = ACTIONS(1679), + [aux_sym__val_number_token5] = ACTIONS(1679), + [aux_sym__val_number_token6] = ACTIONS(1679), + [anon_sym_0b] = ACTIONS(1679), + [anon_sym_0o] = ACTIONS(1679), + [anon_sym_0x] = ACTIONS(1679), + [sym_val_date] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [sym__str_single_quotes] = ACTIONS(1679), + [sym__str_back_ticks] = ACTIONS(1679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1679), + [anon_sym_CARET] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(105), }, [698] = { [sym_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(1638), - [anon_sym_export] = ACTIONS(1636), - [anon_sym_alias] = ACTIONS(1636), - [anon_sym_let] = ACTIONS(1636), - [anon_sym_let_DASHenv] = ACTIONS(1636), - [anon_sym_mut] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1636), - [sym_cmd_identifier] = ACTIONS(1636), - [anon_sym_LF] = ACTIONS(1638), - [anon_sym_def] = ACTIONS(1636), - [anon_sym_export_DASHenv] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1636), - [anon_sym_module] = ACTIONS(1636), - [anon_sym_use] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_DOLLAR] = ACTIONS(1636), - [anon_sym_error] = ACTIONS(1636), - [anon_sym_GT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1636), - [anon_sym_loop] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_do] = ACTIONS(1636), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_match] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_try] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_source] = ACTIONS(1636), - [anon_sym_source_DASHenv] = ACTIONS(1636), - [anon_sym_register] = ACTIONS(1636), - [anon_sym_hide] = ACTIONS(1636), - [anon_sym_hide_DASHenv] = ACTIONS(1636), - [anon_sym_overlay] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_where] = ACTIONS(1636), - [anon_sym_STAR_STAR] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_SLASH] = ACTIONS(1636), - [anon_sym_mod] = ACTIONS(1636), - [anon_sym_SLASH_SLASH] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_bit_DASHshl] = ACTIONS(1636), - [anon_sym_bit_DASHshr] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT2] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_not_DASHin] = ACTIONS(1636), - [anon_sym_starts_DASHwith] = ACTIONS(1636), - [anon_sym_ends_DASHwith] = ACTIONS(1636), - [anon_sym_EQ_TILDE] = ACTIONS(1636), - [anon_sym_BANG_TILDE] = ACTIONS(1636), - [anon_sym_bit_DASHand] = ACTIONS(1636), - [anon_sym_bit_DASHxor] = ACTIONS(1636), - [anon_sym_bit_DASHor] = ACTIONS(1636), - [anon_sym_and] = ACTIONS(1636), - [anon_sym_xor] = ACTIONS(1636), - [anon_sym_or] = ACTIONS(1636), - [anon_sym_not] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [aux_sym__val_number_decimal_token1] = ACTIONS(1636), - [aux_sym__val_number_token1] = ACTIONS(1636), - [aux_sym__val_number_token2] = ACTIONS(1636), - [aux_sym__val_number_token3] = ACTIONS(1636), - [aux_sym__val_number_token4] = ACTIONS(1636), - [aux_sym__val_number_token5] = ACTIONS(1636), - [aux_sym__val_number_token6] = ACTIONS(1636), - [anon_sym_0b] = ACTIONS(1636), - [anon_sym_0o] = ACTIONS(1636), - [anon_sym_0x] = ACTIONS(1636), - [sym_val_date] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1636), - [sym__str_single_quotes] = ACTIONS(1636), - [sym__str_back_ticks] = ACTIONS(1636), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1636), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [699] = { [sym_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_alias] = ACTIONS(1580), - [anon_sym_let] = ACTIONS(1580), - [anon_sym_let_DASHenv] = ACTIONS(1580), - [anon_sym_mut] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [sym_cmd_identifier] = ACTIONS(1580), - [anon_sym_LF] = ACTIONS(1582), - [anon_sym_def] = ACTIONS(1580), - [anon_sym_export_DASHenv] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_use] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_DOLLAR] = ACTIONS(1580), - [anon_sym_error] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1580), - [anon_sym_loop] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_match] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_DOT] = ACTIONS(1580), - [anon_sym_try] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_source] = ACTIONS(1580), - [anon_sym_source_DASHenv] = ACTIONS(1580), - [anon_sym_register] = ACTIONS(1580), - [anon_sym_hide] = ACTIONS(1580), - [anon_sym_hide_DASHenv] = ACTIONS(1580), - [anon_sym_overlay] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_where] = ACTIONS(1580), - [anon_sym_STAR_STAR] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [anon_sym_SLASH] = ACTIONS(1580), - [anon_sym_mod] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_bit_DASHshl] = ACTIONS(1580), - [anon_sym_bit_DASHshr] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1580), - [anon_sym_LT2] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_not_DASHin] = ACTIONS(1580), - [anon_sym_starts_DASHwith] = ACTIONS(1580), - [anon_sym_ends_DASHwith] = ACTIONS(1580), - [anon_sym_EQ_TILDE] = ACTIONS(1580), - [anon_sym_BANG_TILDE] = ACTIONS(1580), - [anon_sym_bit_DASHand] = ACTIONS(1580), - [anon_sym_bit_DASHxor] = ACTIONS(1580), - [anon_sym_bit_DASHor] = ACTIONS(1580), - [anon_sym_and] = ACTIONS(1580), - [anon_sym_xor] = ACTIONS(1580), - [anon_sym_or] = ACTIONS(1580), - [anon_sym_not] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [aux_sym__val_number_decimal_token1] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [aux_sym__val_number_token4] = ACTIONS(1580), - [aux_sym__val_number_token5] = ACTIONS(1580), - [aux_sym__val_number_token6] = ACTIONS(1580), - [anon_sym_0b] = ACTIONS(1580), - [anon_sym_0o] = ACTIONS(1580), - [anon_sym_0x] = ACTIONS(1580), - [sym_val_date] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1580), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1580), - [anon_sym_CARET] = ACTIONS(1580), + [ts_builtin_sym_end] = ACTIONS(1639), + [anon_sym_export] = ACTIONS(1637), + [anon_sym_alias] = ACTIONS(1637), + [anon_sym_let] = ACTIONS(1637), + [anon_sym_let_DASHenv] = ACTIONS(1637), + [anon_sym_mut] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [sym_cmd_identifier] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1639), + [anon_sym_def] = ACTIONS(1637), + [anon_sym_export_DASHenv] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_module] = ACTIONS(1637), + [anon_sym_use] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_error] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_in] = ACTIONS(1637), + [anon_sym_loop] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_match] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_try] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_source] = ACTIONS(1637), + [anon_sym_source_DASHenv] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_hide] = ACTIONS(1637), + [anon_sym_hide_DASHenv] = ACTIONS(1637), + [anon_sym_overlay] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_where] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1637), + [anon_sym_mod] = ACTIONS(1637), + [anon_sym_SLASH_SLASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_bit_DASHshl] = ACTIONS(1637), + [anon_sym_bit_DASHshr] = ACTIONS(1637), + [anon_sym_EQ_EQ] = ACTIONS(1637), + [anon_sym_BANG_EQ] = ACTIONS(1637), + [anon_sym_LT2] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1637), + [anon_sym_not_DASHin] = ACTIONS(1637), + [anon_sym_starts_DASHwith] = ACTIONS(1637), + [anon_sym_ends_DASHwith] = ACTIONS(1637), + [anon_sym_EQ_TILDE] = ACTIONS(1637), + [anon_sym_BANG_TILDE] = ACTIONS(1637), + [anon_sym_bit_DASHand] = ACTIONS(1637), + [anon_sym_bit_DASHxor] = ACTIONS(1637), + [anon_sym_bit_DASHor] = ACTIONS(1637), + [anon_sym_and] = ACTIONS(1637), + [anon_sym_xor] = ACTIONS(1637), + [anon_sym_or] = ACTIONS(1637), + [anon_sym_not] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [aux_sym__val_number_decimal_token1] = ACTIONS(1637), + [aux_sym__val_number_token1] = ACTIONS(1637), + [aux_sym__val_number_token2] = ACTIONS(1637), + [aux_sym__val_number_token3] = ACTIONS(1637), + [aux_sym__val_number_token4] = ACTIONS(1637), + [aux_sym__val_number_token5] = ACTIONS(1637), + [aux_sym__val_number_token6] = ACTIONS(1637), + [anon_sym_0b] = ACTIONS(1637), + [anon_sym_0o] = ACTIONS(1637), + [anon_sym_0x] = ACTIONS(1637), + [sym_val_date] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym__str_single_quotes] = ACTIONS(1637), + [sym__str_back_ticks] = ACTIONS(1637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1637), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), [anon_sym_POUND] = ACTIONS(105), }, [700] = { [sym_comment] = STATE(700), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_COMMA] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_DOLLAR] = ACTIONS(1371), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_list] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_make] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT2] = ACTIONS(1700), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_new] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1371), - [anon_sym_BANG_EQ] = ACTIONS(1371), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1371), - [anon_sym_GT_EQ] = ACTIONS(1371), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1371), - [anon_sym_BANG_TILDE] = ACTIONS(1371), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_EQ2] = ACTIONS(1698), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1371), - [aux_sym__val_number_token2] = ACTIONS(1371), - [aux_sym__val_number_token3] = ACTIONS(1371), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1371), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1371), - [sym__str_single_quotes] = ACTIONS(1371), - [sym__str_back_ticks] = ACTIONS(1371), - [aux_sym__record_key_token2] = ACTIONS(1369), - [aux_sym_unquoted_token4] = ACTIONS(1702), - [aux_sym_unquoted_token6] = ACTIONS(1704), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), }, [701] = { [sym_comment] = STATE(701), - [anon_sym_PIPE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(117), - [anon_sym_DOT2] = ACTIONS(117), - [aux_sym__immediate_decimal_token1] = ACTIONS(1706), - [aux_sym__immediate_decimal_token2] = ACTIONS(1708), - [anon_sym_ns] = ACTIONS(117), - [anon_sym_s] = ACTIONS(117), - [anon_sym_us] = ACTIONS(117), - [anon_sym_ms] = ACTIONS(117), - [anon_sym_sec] = ACTIONS(117), - [anon_sym_min] = ACTIONS(117), - [anon_sym_hr] = ACTIONS(117), - [anon_sym_day] = ACTIONS(117), - [anon_sym_wk] = ACTIONS(117), - [anon_sym_b] = ACTIONS(117), - [anon_sym_B] = ACTIONS(117), - [anon_sym_kb] = ACTIONS(117), - [anon_sym_kB] = ACTIONS(117), - [anon_sym_Kb] = ACTIONS(117), - [anon_sym_KB] = ACTIONS(117), - [anon_sym_mb] = ACTIONS(117), - [anon_sym_mB] = ACTIONS(117), - [anon_sym_Mb] = ACTIONS(117), - [anon_sym_MB] = ACTIONS(117), - [anon_sym_gb] = ACTIONS(117), - [anon_sym_gB] = ACTIONS(117), - [anon_sym_Gb] = ACTIONS(117), - [anon_sym_GB] = ACTIONS(117), - [anon_sym_tb] = ACTIONS(117), - [anon_sym_tB] = ACTIONS(117), - [anon_sym_Tb] = ACTIONS(117), - [anon_sym_TB] = ACTIONS(117), - [anon_sym_pb] = ACTIONS(117), - [anon_sym_pB] = ACTIONS(117), - [anon_sym_Pb] = ACTIONS(117), - [anon_sym_PB] = ACTIONS(117), - [anon_sym_eb] = ACTIONS(117), - [anon_sym_eB] = ACTIONS(117), - [anon_sym_Eb] = ACTIONS(117), - [anon_sym_EB] = ACTIONS(117), - [anon_sym_kib] = ACTIONS(117), - [anon_sym_kiB] = ACTIONS(117), - [anon_sym_kIB] = ACTIONS(117), - [anon_sym_kIb] = ACTIONS(117), - [anon_sym_Kib] = ACTIONS(117), - [anon_sym_KIb] = ACTIONS(117), - [anon_sym_KIB] = ACTIONS(117), - [anon_sym_mib] = ACTIONS(117), - [anon_sym_miB] = ACTIONS(117), - [anon_sym_mIB] = ACTIONS(117), - [anon_sym_mIb] = ACTIONS(117), - [anon_sym_Mib] = ACTIONS(117), - [anon_sym_MIb] = ACTIONS(117), - [anon_sym_MIB] = ACTIONS(117), - [anon_sym_gib] = ACTIONS(117), - [anon_sym_giB] = ACTIONS(117), - [anon_sym_gIB] = ACTIONS(117), - [anon_sym_gIb] = ACTIONS(117), - [anon_sym_Gib] = ACTIONS(117), - [anon_sym_GIb] = ACTIONS(117), - [anon_sym_GIB] = ACTIONS(117), - [anon_sym_tib] = ACTIONS(117), - [anon_sym_tiB] = ACTIONS(117), - [anon_sym_tIB] = ACTIONS(117), - [anon_sym_tIb] = ACTIONS(117), - [anon_sym_Tib] = ACTIONS(117), - [anon_sym_TIb] = ACTIONS(117), - [anon_sym_TIB] = ACTIONS(117), - [anon_sym_pib] = ACTIONS(117), - [anon_sym_piB] = ACTIONS(117), - [anon_sym_pIB] = ACTIONS(117), - [anon_sym_pIb] = ACTIONS(117), - [anon_sym_Pib] = ACTIONS(117), - [anon_sym_PIb] = ACTIONS(117), - [anon_sym_PIB] = ACTIONS(117), - [anon_sym_eib] = ACTIONS(117), - [anon_sym_eiB] = ACTIONS(117), - [anon_sym_eIB] = ACTIONS(117), - [anon_sym_eIb] = ACTIONS(117), - [anon_sym_Eib] = ACTIONS(117), - [anon_sym_EIb] = ACTIONS(117), - [anon_sym_EIB] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_alias] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_let_DASHenv] = ACTIONS(1607), + [anon_sym_mut] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [sym_cmd_identifier] = ACTIONS(1607), + [anon_sym_LF] = ACTIONS(1609), + [anon_sym_def] = ACTIONS(1607), + [anon_sym_export_DASHenv] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_source] = ACTIONS(1607), + [anon_sym_source_DASHenv] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_hide] = ACTIONS(1607), + [anon_sym_hide_DASHenv] = ACTIONS(1607), + [anon_sym_overlay] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_where] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = 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_not] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_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(1607), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [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_CARET] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(105), }, [702] = { [sym_comment] = STATE(702), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(109), - [anon_sym_EQ_GT] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(109), - [aux_sym__immediate_decimal_token1] = ACTIONS(1710), - [aux_sym__immediate_decimal_token2] = ACTIONS(1712), - [anon_sym_ns] = ACTIONS(109), - [anon_sym_s] = ACTIONS(109), - [anon_sym_us] = ACTIONS(109), - [anon_sym_ms] = ACTIONS(109), - [anon_sym_sec] = ACTIONS(109), - [anon_sym_min] = ACTIONS(109), - [anon_sym_hr] = ACTIONS(109), - [anon_sym_day] = ACTIONS(109), - [anon_sym_wk] = ACTIONS(109), - [anon_sym_b] = ACTIONS(109), - [anon_sym_B] = ACTIONS(109), - [anon_sym_kb] = ACTIONS(109), - [anon_sym_kB] = ACTIONS(109), - [anon_sym_Kb] = ACTIONS(109), - [anon_sym_KB] = ACTIONS(109), - [anon_sym_mb] = ACTIONS(109), - [anon_sym_mB] = ACTIONS(109), - [anon_sym_Mb] = ACTIONS(109), - [anon_sym_MB] = ACTIONS(109), - [anon_sym_gb] = ACTIONS(109), - [anon_sym_gB] = ACTIONS(109), - [anon_sym_Gb] = ACTIONS(109), - [anon_sym_GB] = ACTIONS(109), - [anon_sym_tb] = ACTIONS(109), - [anon_sym_tB] = ACTIONS(109), - [anon_sym_Tb] = ACTIONS(109), - [anon_sym_TB] = ACTIONS(109), - [anon_sym_pb] = ACTIONS(109), - [anon_sym_pB] = ACTIONS(109), - [anon_sym_Pb] = ACTIONS(109), - [anon_sym_PB] = ACTIONS(109), - [anon_sym_eb] = ACTIONS(109), - [anon_sym_eB] = ACTIONS(109), - [anon_sym_Eb] = ACTIONS(109), - [anon_sym_EB] = ACTIONS(109), - [anon_sym_kib] = ACTIONS(109), - [anon_sym_kiB] = ACTIONS(109), - [anon_sym_kIB] = ACTIONS(109), - [anon_sym_kIb] = ACTIONS(109), - [anon_sym_Kib] = ACTIONS(109), - [anon_sym_KIb] = ACTIONS(109), - [anon_sym_KIB] = ACTIONS(109), - [anon_sym_mib] = ACTIONS(109), - [anon_sym_miB] = ACTIONS(109), - [anon_sym_mIB] = ACTIONS(109), - [anon_sym_mIb] = ACTIONS(109), - [anon_sym_Mib] = ACTIONS(109), - [anon_sym_MIb] = ACTIONS(109), - [anon_sym_MIB] = ACTIONS(109), - [anon_sym_gib] = ACTIONS(109), - [anon_sym_giB] = ACTIONS(109), - [anon_sym_gIB] = ACTIONS(109), - [anon_sym_gIb] = ACTIONS(109), - [anon_sym_Gib] = ACTIONS(109), - [anon_sym_GIb] = ACTIONS(109), - [anon_sym_GIB] = ACTIONS(109), - [anon_sym_tib] = ACTIONS(109), - [anon_sym_tiB] = ACTIONS(109), - [anon_sym_tIB] = ACTIONS(109), - [anon_sym_tIb] = ACTIONS(109), - [anon_sym_Tib] = ACTIONS(109), - [anon_sym_TIb] = ACTIONS(109), - [anon_sym_TIB] = ACTIONS(109), - [anon_sym_pib] = ACTIONS(109), - [anon_sym_piB] = ACTIONS(109), - [anon_sym_pIB] = ACTIONS(109), - [anon_sym_pIb] = ACTIONS(109), - [anon_sym_Pib] = ACTIONS(109), - [anon_sym_PIb] = ACTIONS(109), - [anon_sym_PIB] = ACTIONS(109), - [anon_sym_eib] = ACTIONS(109), - [anon_sym_eiB] = ACTIONS(109), - [anon_sym_eIB] = ACTIONS(109), - [anon_sym_eIb] = ACTIONS(109), - [anon_sym_Eib] = ACTIONS(109), - [anon_sym_EIb] = ACTIONS(109), - [anon_sym_EIB] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), }, [703] = { - [sym_cell_path] = STATE(808), - [sym_path] = STATE(709), [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_DOLLAR] = ACTIONS(1391), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_list] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_make] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_catch] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1391), - [anon_sym_BANG_TILDE] = ACTIONS(1391), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1391), - [aux_sym__val_number_token2] = ACTIONS(1391), - [aux_sym__val_number_token3] = ACTIONS(1391), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1391), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1391), - [sym__str_single_quotes] = ACTIONS(1391), - [sym__str_back_ticks] = ACTIONS(1391), - [aux_sym__record_key_token2] = ACTIONS(1389), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_not_DASHin] = ACTIONS(1709), + [anon_sym_starts_DASHwith] = ACTIONS(1709), + [anon_sym_ends_DASHwith] = ACTIONS(1709), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), }, [704] = { [sym_comment] = STATE(704), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_list] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_make] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_else] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT2] = ACTIONS(1716), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_catch] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1428), - [anon_sym_BANG_TILDE] = ACTIONS(1428), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [aux_sym__immediate_decimal_token1] = ACTIONS(1718), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1428), - [aux_sym__val_number_token2] = ACTIONS(1428), - [aux_sym__val_number_token3] = ACTIONS(1428), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1428), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym__str_single_quotes] = ACTIONS(1428), - [sym__str_back_ticks] = ACTIONS(1428), - [aux_sym__record_key_token2] = ACTIONS(1426), - [aux_sym_unquoted_token2] = ACTIONS(1720), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1677), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_alias] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_let_DASHenv] = ACTIONS(1675), + [anon_sym_mut] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [sym_cmd_identifier] = ACTIONS(1675), + [anon_sym_LF] = ACTIONS(1677), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_export_DASHenv] = ACTIONS(1675), + [anon_sym_extern] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_use] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_error] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_loop] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_source] = ACTIONS(1675), + [anon_sym_source_DASHenv] = ACTIONS(1675), + [anon_sym_register] = ACTIONS(1675), + [anon_sym_hide] = ACTIONS(1675), + [anon_sym_hide_DASHenv] = ACTIONS(1675), + [anon_sym_overlay] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_where] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1675), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT_EQ] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_not] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = 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(1675), + [anon_sym_0o] = ACTIONS(1675), + [anon_sym_0x] = ACTIONS(1675), + [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_CARET] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(105), }, [705] = { - [sym_cell_path] = STATE(804), - [sym_path] = STATE(709), [sym_comment] = STATE(705), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_alias] = ACTIONS(1407), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_let_DASHenv] = ACTIONS(1407), - [anon_sym_mut] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [sym_cmd_identifier] = ACTIONS(1407), - [anon_sym_def] = ACTIONS(1407), - [anon_sym_export_DASHenv] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_use] = ACTIONS(1407), - [anon_sym_COMMA] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_DOLLAR] = ACTIONS(1409), - [anon_sym_error] = ACTIONS(1407), - [anon_sym_list] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_in] = ACTIONS(1407), - [anon_sym_loop] = ACTIONS(1407), - [anon_sym_make] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_else] = ACTIONS(1407), - [anon_sym_match] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1407), - [anon_sym_catch] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_source] = ACTIONS(1407), - [anon_sym_source_DASHenv] = ACTIONS(1407), - [anon_sym_register] = ACTIONS(1407), - [anon_sym_hide] = ACTIONS(1407), - [anon_sym_hide_DASHenv] = ACTIONS(1407), - [anon_sym_overlay] = ACTIONS(1407), - [anon_sym_new] = ACTIONS(1407), - [anon_sym_as] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_STAR_STAR] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_mod] = ACTIONS(1407), - [anon_sym_SLASH_SLASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_bit_DASHshl] = ACTIONS(1407), - [anon_sym_bit_DASHshr] = ACTIONS(1407), - [anon_sym_EQ_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ] = ACTIONS(1409), - [anon_sym_LT2] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1409), - [anon_sym_not_DASHin] = ACTIONS(1407), - [anon_sym_starts_DASHwith] = ACTIONS(1407), - [anon_sym_ends_DASHwith] = ACTIONS(1407), - [anon_sym_EQ_TILDE] = ACTIONS(1409), - [anon_sym_BANG_TILDE] = ACTIONS(1409), - [anon_sym_bit_DASHand] = ACTIONS(1407), - [anon_sym_bit_DASHxor] = ACTIONS(1407), - [anon_sym_bit_DASHor] = ACTIONS(1407), - [anon_sym_and] = ACTIONS(1407), - [anon_sym_xor] = ACTIONS(1407), - [anon_sym_or] = ACTIONS(1407), - [aux_sym__val_number_decimal_token1] = ACTIONS(1407), - [aux_sym__val_number_token1] = ACTIONS(1409), - [aux_sym__val_number_token2] = ACTIONS(1409), - [aux_sym__val_number_token3] = ACTIONS(1409), - [aux_sym__val_number_token4] = ACTIONS(1407), - [aux_sym__val_number_token5] = ACTIONS(1409), - [aux_sym__val_number_token6] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym__str_single_quotes] = ACTIONS(1409), - [sym__str_back_ticks] = ACTIONS(1409), - [aux_sym__record_key_token2] = ACTIONS(1407), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), }, [706] = { - [sym_cell_path] = STATE(738), - [sym_path] = STATE(716), [sym_comment] = STATE(706), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_list] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_make] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_catch] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_new] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1401), - [anon_sym_BANG_TILDE] = ACTIONS(1401), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1401), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym__str_single_quotes] = ACTIONS(1401), - [sym__str_back_ticks] = ACTIONS(1401), - [aux_sym__record_key_token2] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), }, [707] = { - [sym_cell_path] = STATE(788), - [sym_path] = STATE(709), [sym_comment] = STATE(707), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_alias] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_let_DASHenv] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [sym_cmd_identifier] = ACTIONS(1422), - [anon_sym_def] = ACTIONS(1422), - [anon_sym_export_DASHenv] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(1424), - [anon_sym_error] = ACTIONS(1422), - [anon_sym_list] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_in] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_make] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1422), - [anon_sym_catch] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_source] = ACTIONS(1422), - [anon_sym_source_DASHenv] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_hide] = ACTIONS(1422), - [anon_sym_hide_DASHenv] = ACTIONS(1422), - [anon_sym_overlay] = ACTIONS(1422), - [anon_sym_new] = ACTIONS(1422), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_STAR_STAR] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_bit_DASHshl] = ACTIONS(1422), - [anon_sym_bit_DASHshr] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_LT2] = ACTIONS(1422), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_not_DASHin] = ACTIONS(1422), - [anon_sym_starts_DASHwith] = ACTIONS(1422), - [anon_sym_ends_DASHwith] = ACTIONS(1422), - [anon_sym_EQ_TILDE] = ACTIONS(1424), - [anon_sym_BANG_TILDE] = ACTIONS(1424), - [anon_sym_bit_DASHand] = ACTIONS(1422), - [anon_sym_bit_DASHxor] = ACTIONS(1422), - [anon_sym_bit_DASHor] = ACTIONS(1422), - [anon_sym_and] = ACTIONS(1422), - [anon_sym_xor] = ACTIONS(1422), - [anon_sym_or] = ACTIONS(1422), - [aux_sym__val_number_decimal_token1] = ACTIONS(1422), - [aux_sym__val_number_token1] = ACTIONS(1424), - [aux_sym__val_number_token2] = ACTIONS(1424), - [aux_sym__val_number_token3] = ACTIONS(1424), - [aux_sym__val_number_token4] = ACTIONS(1422), - [aux_sym__val_number_token5] = ACTIONS(1424), - [aux_sym__val_number_token6] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym__str_single_quotes] = ACTIONS(1424), - [sym__str_back_ticks] = ACTIONS(1424), - [aux_sym__record_key_token2] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), }, [708] = { - [sym_path] = STATE(745), [sym_comment] = STATE(708), - [aux_sym_cell_path_repeat1] = STATE(714), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_COMMA] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1438), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_list] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_make] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_else] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_catch] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_as] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1438), - [anon_sym_BANG_EQ] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1438), - [anon_sym_GT_EQ] = ACTIONS(1438), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1438), - [anon_sym_BANG_TILDE] = ACTIONS(1438), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1438), - [aux_sym__val_number_token2] = ACTIONS(1438), - [aux_sym__val_number_token3] = ACTIONS(1438), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1438), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym__str_single_quotes] = ACTIONS(1438), - [sym__str_back_ticks] = ACTIONS(1438), - [aux_sym__record_key_token2] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), }, [709] = { - [sym_path] = STATE(745), [sym_comment] = STATE(709), - [aux_sym_cell_path_repeat1] = STATE(718), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_list] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_make] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_catch] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_new] = ACTIONS(1440), - [anon_sym_as] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1442), - [anon_sym_BANG_EQ] = ACTIONS(1442), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_EQ] = ACTIONS(1442), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1442), - [anon_sym_BANG_TILDE] = ACTIONS(1442), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1442), - [aux_sym__val_number_token2] = ACTIONS(1442), - [aux_sym__val_number_token3] = ACTIONS(1442), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1442), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym__str_single_quotes] = ACTIONS(1442), - [sym__str_back_ticks] = ACTIONS(1442), - [aux_sym__record_key_token2] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1534), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1532), + [anon_sym_BANG_EQ] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1532), + [anon_sym_GT_EQ] = ACTIONS(1532), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1532), + [anon_sym_BANG_TILDE] = ACTIONS(1532), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [anon_sym_not] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(105), }, [710] = { [sym_comment] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_bit_DASHshl] = ACTIONS(1705), + [anon_sym_bit_DASHshr] = ACTIONS(1705), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_not_DASHin] = ACTIONS(1709), + [anon_sym_starts_DASHwith] = ACTIONS(1709), + [anon_sym_ends_DASHwith] = ACTIONS(1709), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), + }, + [711] = { + [sym_comment] = STATE(711), + [ts_builtin_sym_end] = ACTIONS(1627), + [anon_sym_export] = ACTIONS(1625), + [anon_sym_alias] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_let_DASHenv] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [sym_cmd_identifier] = ACTIONS(1625), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_export_DASHenv] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_module] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_error] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_source] = ACTIONS(1625), + [anon_sym_source_DASHenv] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_hide] = ACTIONS(1625), + [anon_sym_hide_DASHenv] = ACTIONS(1625), + [anon_sym_overlay] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_where] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_SLASH] = ACTIONS(1625), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT_EQ] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_not] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1625), + [anon_sym_0x] = ACTIONS(1625), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(105), + }, + [712] = { + [sym_comment] = STATE(712), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_where] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), + }, + [713] = { + [sym_comment] = STATE(713), [anon_sym_PIPE] = ACTIONS(109), [anon_sym_if] = ACTIONS(109), [anon_sym_EQ_GT] = ACTIONS(109), [anon_sym_DOT2] = ACTIONS(109), - [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token1] = ACTIONS(1725), + [aux_sym__immediate_decimal_token2] = ACTIONS(1727), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -158107,187 +160039,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(109), [anon_sym_EIb] = ACTIONS(109), [anon_sym_EIB] = ACTIONS(109), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [711] = { - [sym_cell_path] = STATE(748), - [sym_path] = STATE(709), - [sym_comment] = STATE(711), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_list] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_make] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_else] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_catch] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_new] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1420), - [anon_sym_BANG_TILDE] = ACTIONS(1420), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1420), - [aux_sym__val_number_token2] = ACTIONS(1420), - [aux_sym__val_number_token3] = ACTIONS(1420), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1420), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym__str_single_quotes] = ACTIONS(1420), - [sym__str_back_ticks] = ACTIONS(1420), - [aux_sym__record_key_token2] = ACTIONS(1418), + [714] = { + [sym_comment] = STATE(714), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_if] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [aux_sym__immediate_decimal_token1] = ACTIONS(1729), + [aux_sym__immediate_decimal_token2] = ACTIONS(1731), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(117), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [712] = { - [sym_comment] = STATE(712), - [anon_sym_PIPE] = ACTIONS(150), - [anon_sym_if] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [aux_sym__immediate_decimal_token2] = ACTIONS(1725), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(150), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), + [715] = { + [sym_comment] = STATE(715), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_DOLLAR] = ACTIONS(1377), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_list] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_make] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT2] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_as] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1377), + [anon_sym_BANG_TILDE] = ACTIONS(1377), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_EQ2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1377), + [aux_sym__val_number_token2] = ACTIONS(1377), + [aux_sym__val_number_token3] = ACTIONS(1377), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1377), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1377), + [sym__str_single_quotes] = ACTIONS(1377), + [sym__str_back_ticks] = ACTIONS(1377), + [aux_sym__record_key_token2] = ACTIONS(1375), + [aux_sym_unquoted_token4] = ACTIONS(1737), + [aux_sym_unquoted_token6] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(3), }, - [713] = { - [sym_comment] = STATE(713), + [716] = { + [sym_comment] = STATE(716), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [aux_sym__immediate_decimal_token1] = ACTIONS(1741), + [aux_sym__immediate_decimal_token2] = ACTIONS(1743), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(117), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [717] = { + [sym_comment] = STATE(717), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(109), [anon_sym_EQ_GT] = ACTIONS(109), - [anon_sym_DOT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [anon_sym_DOT2] = ACTIONS(109), + [aux_sym__immediate_decimal_token1] = ACTIONS(1745), + [aux_sym__immediate_decimal_token2] = ACTIONS(1747), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -158365,789 +160389,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(109), [anon_sym_EIb] = ACTIONS(109), [anon_sym_EIB] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(3), - }, - [714] = { - [sym_path] = STATE(745), - [sym_comment] = STATE(714), - [aux_sym_cell_path_repeat1] = STATE(714), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_COMMA] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_DOT2] = ACTIONS(1730), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1413), - [anon_sym_BANG_TILDE] = ACTIONS(1413), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(3), - }, - [715] = { - [sym_cell_path] = STATE(741), - [sym_path] = STATE(716), - [sym_comment] = STATE(715), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_list] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_make] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_catch] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_new] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1397), - [anon_sym_BANG_TILDE] = ACTIONS(1397), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [aux_sym__record_key_token2] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(3), - }, - [716] = { - [sym_path] = STATE(745), - [sym_comment] = STATE(716), - [aux_sym_cell_path_repeat1] = STATE(708), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_list] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_make] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_catch] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_new] = ACTIONS(1440), - [anon_sym_as] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1442), - [anon_sym_BANG_EQ] = ACTIONS(1442), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_EQ] = ACTIONS(1442), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1442), - [anon_sym_BANG_TILDE] = ACTIONS(1442), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1442), - [aux_sym__val_number_token2] = ACTIONS(1442), - [aux_sym__val_number_token3] = ACTIONS(1442), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1442), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym__str_single_quotes] = ACTIONS(1442), - [sym__str_back_ticks] = ACTIONS(1442), - [aux_sym__record_key_token2] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [717] = { - [sym_comment] = STATE(717), - [anon_sym_PIPE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(129), - [anon_sym_DOT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token2] = ACTIONS(1739), - [anon_sym_ns] = ACTIONS(129), - [anon_sym_s] = ACTIONS(129), - [anon_sym_us] = ACTIONS(129), - [anon_sym_ms] = ACTIONS(129), - [anon_sym_sec] = ACTIONS(129), - [anon_sym_min] = ACTIONS(129), - [anon_sym_hr] = ACTIONS(129), - [anon_sym_day] = ACTIONS(129), - [anon_sym_wk] = ACTIONS(129), - [anon_sym_b] = ACTIONS(129), - [anon_sym_B] = ACTIONS(129), - [anon_sym_kb] = ACTIONS(129), - [anon_sym_kB] = ACTIONS(129), - [anon_sym_Kb] = ACTIONS(129), - [anon_sym_KB] = ACTIONS(129), - [anon_sym_mb] = ACTIONS(129), - [anon_sym_mB] = ACTIONS(129), - [anon_sym_Mb] = ACTIONS(129), - [anon_sym_MB] = ACTIONS(129), - [anon_sym_gb] = ACTIONS(129), - [anon_sym_gB] = ACTIONS(129), - [anon_sym_Gb] = ACTIONS(129), - [anon_sym_GB] = ACTIONS(129), - [anon_sym_tb] = ACTIONS(129), - [anon_sym_tB] = ACTIONS(129), - [anon_sym_Tb] = ACTIONS(129), - [anon_sym_TB] = ACTIONS(129), - [anon_sym_pb] = ACTIONS(129), - [anon_sym_pB] = ACTIONS(129), - [anon_sym_Pb] = ACTIONS(129), - [anon_sym_PB] = ACTIONS(129), - [anon_sym_eb] = ACTIONS(129), - [anon_sym_eB] = ACTIONS(129), - [anon_sym_Eb] = ACTIONS(129), - [anon_sym_EB] = ACTIONS(129), - [anon_sym_kib] = ACTIONS(129), - [anon_sym_kiB] = ACTIONS(129), - [anon_sym_kIB] = ACTIONS(129), - [anon_sym_kIb] = ACTIONS(129), - [anon_sym_Kib] = ACTIONS(129), - [anon_sym_KIb] = ACTIONS(129), - [anon_sym_KIB] = ACTIONS(129), - [anon_sym_mib] = ACTIONS(129), - [anon_sym_miB] = ACTIONS(129), - [anon_sym_mIB] = ACTIONS(129), - [anon_sym_mIb] = ACTIONS(129), - [anon_sym_Mib] = ACTIONS(129), - [anon_sym_MIb] = ACTIONS(129), - [anon_sym_MIB] = ACTIONS(129), - [anon_sym_gib] = ACTIONS(129), - [anon_sym_giB] = ACTIONS(129), - [anon_sym_gIB] = ACTIONS(129), - [anon_sym_gIb] = ACTIONS(129), - [anon_sym_Gib] = ACTIONS(129), - [anon_sym_GIb] = ACTIONS(129), - [anon_sym_GIB] = ACTIONS(129), - [anon_sym_tib] = ACTIONS(129), - [anon_sym_tiB] = ACTIONS(129), - [anon_sym_tIB] = ACTIONS(129), - [anon_sym_tIb] = ACTIONS(129), - [anon_sym_Tib] = ACTIONS(129), - [anon_sym_TIb] = ACTIONS(129), - [anon_sym_TIB] = ACTIONS(129), - [anon_sym_pib] = ACTIONS(129), - [anon_sym_piB] = ACTIONS(129), - [anon_sym_pIB] = ACTIONS(129), - [anon_sym_pIb] = ACTIONS(129), - [anon_sym_Pib] = ACTIONS(129), - [anon_sym_PIb] = ACTIONS(129), - [anon_sym_PIB] = ACTIONS(129), - [anon_sym_eib] = ACTIONS(129), - [anon_sym_eiB] = ACTIONS(129), - [anon_sym_eIB] = ACTIONS(129), - [anon_sym_eIb] = ACTIONS(129), - [anon_sym_Eib] = ACTIONS(129), - [anon_sym_EIb] = ACTIONS(129), - [anon_sym_EIB] = ACTIONS(129), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, [718] = { - [sym_path] = STATE(745), [sym_comment] = STATE(718), - [aux_sym_cell_path_repeat1] = STATE(714), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_COMMA] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1438), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_list] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_make] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_else] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_catch] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_as] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1438), - [anon_sym_BANG_EQ] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1438), - [anon_sym_GT_EQ] = ACTIONS(1438), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1438), - [anon_sym_BANG_TILDE] = ACTIONS(1438), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1438), - [aux_sym__val_number_token2] = ACTIONS(1438), - [aux_sym__val_number_token3] = ACTIONS(1438), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1438), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym__str_single_quotes] = ACTIONS(1438), - [sym__str_back_ticks] = ACTIONS(1438), - [aux_sym__record_key_token2] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(3), - }, - [719] = { - [sym_cell_path] = STATE(800), - [sym_path] = STATE(709), - [sym_comment] = STATE(719), - [anon_sym_export] = ACTIONS(1447), - [anon_sym_alias] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_let_DASHenv] = ACTIONS(1447), - [anon_sym_mut] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [sym_cmd_identifier] = ACTIONS(1447), - [anon_sym_def] = ACTIONS(1447), - [anon_sym_export_DASHenv] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_use] = ACTIONS(1447), - [anon_sym_COMMA] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_DOLLAR] = ACTIONS(1449), - [anon_sym_error] = ACTIONS(1447), - [anon_sym_list] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_loop] = ACTIONS(1447), - [anon_sym_make] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_match] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1447), - [anon_sym_catch] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_source] = ACTIONS(1447), - [anon_sym_source_DASHenv] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_hide] = ACTIONS(1447), - [anon_sym_hide_DASHenv] = ACTIONS(1447), - [anon_sym_overlay] = ACTIONS(1447), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_as] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_bit_DASHshl] = ACTIONS(1447), - [anon_sym_bit_DASHshr] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_LT2] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1449), - [anon_sym_not_DASHin] = ACTIONS(1447), - [anon_sym_starts_DASHwith] = ACTIONS(1447), - [anon_sym_ends_DASHwith] = ACTIONS(1447), - [anon_sym_EQ_TILDE] = ACTIONS(1449), - [anon_sym_BANG_TILDE] = ACTIONS(1449), - [anon_sym_bit_DASHand] = ACTIONS(1447), - [anon_sym_bit_DASHxor] = ACTIONS(1447), - [anon_sym_bit_DASHor] = ACTIONS(1447), - [anon_sym_and] = ACTIONS(1447), - [anon_sym_xor] = ACTIONS(1447), - [anon_sym_or] = ACTIONS(1447), - [aux_sym__val_number_decimal_token1] = ACTIONS(1447), - [aux_sym__val_number_token1] = ACTIONS(1449), - [aux_sym__val_number_token2] = ACTIONS(1449), - [aux_sym__val_number_token3] = ACTIONS(1449), - [aux_sym__val_number_token4] = ACTIONS(1447), - [aux_sym__val_number_token5] = ACTIONS(1449), - [aux_sym__val_number_token6] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1449), - [sym__str_single_quotes] = ACTIONS(1449), - [sym__str_back_ticks] = ACTIONS(1449), - [aux_sym__record_key_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(3), - }, - [720] = { - [sym_cell_path] = STATE(775), - [sym_path] = STATE(709), - [sym_comment] = STATE(720), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_let] = ACTIONS(1403), - [anon_sym_let_DASHenv] = ACTIONS(1403), - [anon_sym_mut] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [sym_cmd_identifier] = ACTIONS(1403), - [anon_sym_def] = ACTIONS(1403), - [anon_sym_export_DASHenv] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_use] = ACTIONS(1403), - [anon_sym_COMMA] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_error] = ACTIONS(1403), - [anon_sym_list] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_in] = ACTIONS(1403), - [anon_sym_loop] = ACTIONS(1403), - [anon_sym_make] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_else] = ACTIONS(1403), - [anon_sym_match] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1403), - [anon_sym_catch] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_source] = ACTIONS(1403), - [anon_sym_source_DASHenv] = ACTIONS(1403), - [anon_sym_register] = ACTIONS(1403), - [anon_sym_hide] = ACTIONS(1403), - [anon_sym_hide_DASHenv] = ACTIONS(1403), - [anon_sym_overlay] = ACTIONS(1403), - [anon_sym_new] = ACTIONS(1403), - [anon_sym_as] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_mod] = ACTIONS(1403), - [anon_sym_SLASH_SLASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_bit_DASHshl] = ACTIONS(1403), - [anon_sym_bit_DASHshr] = ACTIONS(1403), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_LT2] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_not_DASHin] = ACTIONS(1403), - [anon_sym_starts_DASHwith] = ACTIONS(1403), - [anon_sym_ends_DASHwith] = ACTIONS(1403), - [anon_sym_EQ_TILDE] = ACTIONS(1405), - [anon_sym_BANG_TILDE] = ACTIONS(1405), - [anon_sym_bit_DASHand] = ACTIONS(1403), - [anon_sym_bit_DASHxor] = ACTIONS(1403), - [anon_sym_bit_DASHor] = ACTIONS(1403), - [anon_sym_and] = ACTIONS(1403), - [anon_sym_xor] = ACTIONS(1403), - [anon_sym_or] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1403), - [aux_sym__val_number_token1] = ACTIONS(1405), - [aux_sym__val_number_token2] = ACTIONS(1405), - [aux_sym__val_number_token3] = ACTIONS(1405), - [aux_sym__val_number_token4] = ACTIONS(1403), - [aux_sym__val_number_token5] = ACTIONS(1405), - [aux_sym__val_number_token6] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1405), - [sym__str_single_quotes] = ACTIONS(1405), - [sym__str_back_ticks] = ACTIONS(1405), - [aux_sym__record_key_token2] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(3), - }, - [721] = { - [sym_cell_path] = STATE(769), - [sym_path] = STATE(709), - [sym_comment] = STATE(721), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_list] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_make] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_catch] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_new] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1401), - [anon_sym_BANG_TILDE] = ACTIONS(1401), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1401), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym__str_single_quotes] = ACTIONS(1401), - [sym__str_back_ticks] = ACTIONS(1401), - [aux_sym__record_key_token2] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(3), - }, - [722] = { - [sym_cell_path] = STATE(763), - [sym_path] = STATE(709), - [sym_comment] = STATE(722), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_list] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_make] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_catch] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_new] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1397), - [anon_sym_BANG_TILDE] = ACTIONS(1397), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [aux_sym__record_key_token2] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(3), - }, - [723] = { - [sym_comment] = STATE(723), [anon_sym_PIPE] = ACTIONS(117), [anon_sym_if] = ACTIONS(117), [anon_sym_EQ_GT] = ACTIONS(117), - [anon_sym_DOT2] = ACTIONS(117), - [aux_sym__immediate_decimal_token2] = ACTIONS(1708), + [anon_sym_DOT2] = ACTIONS(1749), + [aux_sym__immediate_decimal_token2] = ACTIONS(1731), [anon_sym_ns] = ACTIONS(117), [anon_sym_s] = ACTIONS(117), [anon_sym_us] = ACTIONS(117), @@ -159225,439 +160476,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(117), [anon_sym_EIb] = ACTIONS(117), [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [724] = { - [sym_comment] = STATE(724), - [anon_sym_PIPE] = ACTIONS(150), - [anon_sym_if] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(150), - [anon_sym_DOT2] = ACTIONS(150), - [anon_sym_ns] = ACTIONS(150), - [anon_sym_s] = ACTIONS(150), - [anon_sym_us] = ACTIONS(150), - [anon_sym_ms] = ACTIONS(150), - [anon_sym_sec] = ACTIONS(150), - [anon_sym_min] = ACTIONS(150), - [anon_sym_hr] = ACTIONS(150), - [anon_sym_day] = ACTIONS(150), - [anon_sym_wk] = ACTIONS(150), - [anon_sym_b] = ACTIONS(150), - [anon_sym_B] = ACTIONS(150), - [anon_sym_kb] = ACTIONS(150), - [anon_sym_kB] = ACTIONS(150), - [anon_sym_Kb] = ACTIONS(150), - [anon_sym_KB] = ACTIONS(150), - [anon_sym_mb] = ACTIONS(150), - [anon_sym_mB] = ACTIONS(150), - [anon_sym_Mb] = ACTIONS(150), - [anon_sym_MB] = ACTIONS(150), - [anon_sym_gb] = ACTIONS(150), - [anon_sym_gB] = ACTIONS(150), - [anon_sym_Gb] = ACTIONS(150), - [anon_sym_GB] = ACTIONS(150), - [anon_sym_tb] = ACTIONS(150), - [anon_sym_tB] = ACTIONS(150), - [anon_sym_Tb] = ACTIONS(150), - [anon_sym_TB] = ACTIONS(150), - [anon_sym_pb] = ACTIONS(150), - [anon_sym_pB] = ACTIONS(150), - [anon_sym_Pb] = ACTIONS(150), - [anon_sym_PB] = ACTIONS(150), - [anon_sym_eb] = ACTIONS(150), - [anon_sym_eB] = ACTIONS(150), - [anon_sym_Eb] = ACTIONS(150), - [anon_sym_EB] = ACTIONS(150), - [anon_sym_kib] = ACTIONS(150), - [anon_sym_kiB] = ACTIONS(150), - [anon_sym_kIB] = ACTIONS(150), - [anon_sym_kIb] = ACTIONS(150), - [anon_sym_Kib] = ACTIONS(150), - [anon_sym_KIb] = ACTIONS(150), - [anon_sym_KIB] = ACTIONS(150), - [anon_sym_mib] = ACTIONS(150), - [anon_sym_miB] = ACTIONS(150), - [anon_sym_mIB] = ACTIONS(150), - [anon_sym_mIb] = ACTIONS(150), - [anon_sym_Mib] = ACTIONS(150), - [anon_sym_MIb] = ACTIONS(150), - [anon_sym_MIB] = ACTIONS(150), - [anon_sym_gib] = ACTIONS(150), - [anon_sym_giB] = ACTIONS(150), - [anon_sym_gIB] = ACTIONS(150), - [anon_sym_gIb] = ACTIONS(150), - [anon_sym_Gib] = ACTIONS(150), - [anon_sym_GIb] = ACTIONS(150), - [anon_sym_GIB] = ACTIONS(150), - [anon_sym_tib] = ACTIONS(150), - [anon_sym_tiB] = ACTIONS(150), - [anon_sym_tIB] = ACTIONS(150), - [anon_sym_tIb] = ACTIONS(150), - [anon_sym_Tib] = ACTIONS(150), - [anon_sym_TIb] = ACTIONS(150), - [anon_sym_TIB] = ACTIONS(150), - [anon_sym_pib] = ACTIONS(150), - [anon_sym_piB] = ACTIONS(150), - [anon_sym_pIB] = ACTIONS(150), - [anon_sym_pIb] = ACTIONS(150), - [anon_sym_Pib] = ACTIONS(150), - [anon_sym_PIb] = ACTIONS(150), - [anon_sym_PIB] = ACTIONS(150), - [anon_sym_eib] = ACTIONS(150), - [anon_sym_eiB] = ACTIONS(150), - [anon_sym_eIB] = ACTIONS(150), - [anon_sym_eIb] = ACTIONS(150), - [anon_sym_Eib] = ACTIONS(150), - [anon_sym_EIb] = ACTIONS(150), - [anon_sym_EIB] = ACTIONS(150), - [anon_sym_POUND] = ACTIONS(3), - }, - [725] = { - [sym_comment] = STATE(725), - [anon_sym_PIPE] = ACTIONS(167), - [anon_sym_if] = ACTIONS(167), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_DOT2] = ACTIONS(167), - [anon_sym_ns] = ACTIONS(167), - [anon_sym_s] = ACTIONS(167), - [anon_sym_us] = ACTIONS(167), - [anon_sym_ms] = ACTIONS(167), - [anon_sym_sec] = ACTIONS(167), - [anon_sym_min] = ACTIONS(167), - [anon_sym_hr] = ACTIONS(167), - [anon_sym_day] = ACTIONS(167), - [anon_sym_wk] = ACTIONS(167), - [anon_sym_b] = ACTIONS(167), - [anon_sym_B] = ACTIONS(167), - [anon_sym_kb] = ACTIONS(167), - [anon_sym_kB] = ACTIONS(167), - [anon_sym_Kb] = ACTIONS(167), - [anon_sym_KB] = ACTIONS(167), - [anon_sym_mb] = ACTIONS(167), - [anon_sym_mB] = ACTIONS(167), - [anon_sym_Mb] = ACTIONS(167), - [anon_sym_MB] = ACTIONS(167), - [anon_sym_gb] = ACTIONS(167), - [anon_sym_gB] = ACTIONS(167), - [anon_sym_Gb] = ACTIONS(167), - [anon_sym_GB] = ACTIONS(167), - [anon_sym_tb] = ACTIONS(167), - [anon_sym_tB] = ACTIONS(167), - [anon_sym_Tb] = ACTIONS(167), - [anon_sym_TB] = ACTIONS(167), - [anon_sym_pb] = ACTIONS(167), - [anon_sym_pB] = ACTIONS(167), - [anon_sym_Pb] = ACTIONS(167), - [anon_sym_PB] = ACTIONS(167), - [anon_sym_eb] = ACTIONS(167), - [anon_sym_eB] = ACTIONS(167), - [anon_sym_Eb] = ACTIONS(167), - [anon_sym_EB] = ACTIONS(167), - [anon_sym_kib] = ACTIONS(167), - [anon_sym_kiB] = ACTIONS(167), - [anon_sym_kIB] = ACTIONS(167), - [anon_sym_kIb] = ACTIONS(167), - [anon_sym_Kib] = ACTIONS(167), - [anon_sym_KIb] = ACTIONS(167), - [anon_sym_KIB] = ACTIONS(167), - [anon_sym_mib] = ACTIONS(167), - [anon_sym_miB] = ACTIONS(167), - [anon_sym_mIB] = ACTIONS(167), - [anon_sym_mIb] = ACTIONS(167), - [anon_sym_Mib] = ACTIONS(167), - [anon_sym_MIb] = ACTIONS(167), - [anon_sym_MIB] = ACTIONS(167), - [anon_sym_gib] = ACTIONS(167), - [anon_sym_giB] = ACTIONS(167), - [anon_sym_gIB] = ACTIONS(167), - [anon_sym_gIb] = ACTIONS(167), - [anon_sym_Gib] = ACTIONS(167), - [anon_sym_GIb] = ACTIONS(167), - [anon_sym_GIB] = ACTIONS(167), - [anon_sym_tib] = ACTIONS(167), - [anon_sym_tiB] = ACTIONS(167), - [anon_sym_tIB] = ACTIONS(167), - [anon_sym_tIb] = ACTIONS(167), - [anon_sym_Tib] = ACTIONS(167), - [anon_sym_TIb] = ACTIONS(167), - [anon_sym_TIB] = ACTIONS(167), - [anon_sym_pib] = ACTIONS(167), - [anon_sym_piB] = ACTIONS(167), - [anon_sym_pIB] = ACTIONS(167), - [anon_sym_pIb] = ACTIONS(167), - [anon_sym_Pib] = ACTIONS(167), - [anon_sym_PIb] = ACTIONS(167), - [anon_sym_PIB] = ACTIONS(167), - [anon_sym_eib] = ACTIONS(167), - [anon_sym_eiB] = ACTIONS(167), - [anon_sym_eIB] = ACTIONS(167), - [anon_sym_eIb] = ACTIONS(167), - [anon_sym_Eib] = ACTIONS(167), - [anon_sym_EIb] = ACTIONS(167), - [anon_sym_EIB] = ACTIONS(167), - [anon_sym_POUND] = ACTIONS(3), - }, - [726] = { - [sym_comment] = STATE(726), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_list] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_make] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_else] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_catch] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_as] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(1741), - [anon_sym_STAR_STAR] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_BANG_EQ] = ACTIONS(1466), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1466), - [anon_sym_BANG_TILDE] = ACTIONS(1466), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1466), - [aux_sym__val_number_token2] = ACTIONS(1466), - [aux_sym__val_number_token3] = ACTIONS(1466), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1466), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym__str_single_quotes] = ACTIONS(1466), - [sym__str_back_ticks] = ACTIONS(1466), - [aux_sym__record_key_token2] = ACTIONS(1464), + [719] = { + [sym_comment] = STATE(719), + [anon_sym_PIPE] = ACTIONS(132), + [anon_sym_if] = ACTIONS(132), + [anon_sym_EQ_GT] = ACTIONS(132), + [anon_sym_DOT2] = ACTIONS(1752), + [aux_sym__immediate_decimal_token2] = ACTIONS(1755), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(132), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [aux_sym_unquoted_token6] = ACTIONS(130), [anon_sym_POUND] = ACTIONS(3), }, - [727] = { - [sym_comment] = STATE(727), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_if] = ACTIONS(173), - [anon_sym_EQ_GT] = ACTIONS(173), - [anon_sym_DOT2] = ACTIONS(1743), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(173), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), + [720] = { + [sym_comment] = STATE(720), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(1757), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(149), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, - [728] = { - [sym_comment] = STATE(728), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_list] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_make] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_else] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_catch] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_as] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(1741), - [anon_sym_STAR_STAR] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_BANG_EQ] = ACTIONS(1466), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1466), - [anon_sym_BANG_TILDE] = ACTIONS(1466), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1466), - [aux_sym__val_number_token2] = ACTIONS(1466), - [aux_sym__val_number_token3] = ACTIONS(1466), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1466), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym__str_single_quotes] = ACTIONS(1466), - [sym__str_back_ticks] = ACTIONS(1466), - [aux_sym__record_key_token2] = ACTIONS(1464), + [721] = { + [sym_comment] = STATE(721), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(109), + [anon_sym_EQ_GT] = ACTIONS(109), + [anon_sym_DOT2] = ACTIONS(109), + [aux_sym__immediate_decimal_token2] = ACTIONS(1727), + [anon_sym_ns] = ACTIONS(109), + [anon_sym_s] = ACTIONS(109), + [anon_sym_us] = ACTIONS(109), + [anon_sym_ms] = ACTIONS(109), + [anon_sym_sec] = ACTIONS(109), + [anon_sym_min] = ACTIONS(109), + [anon_sym_hr] = ACTIONS(109), + [anon_sym_day] = ACTIONS(109), + [anon_sym_wk] = ACTIONS(109), + [anon_sym_b] = ACTIONS(109), + [anon_sym_B] = ACTIONS(109), + [anon_sym_kb] = ACTIONS(109), + [anon_sym_kB] = ACTIONS(109), + [anon_sym_Kb] = ACTIONS(109), + [anon_sym_KB] = ACTIONS(109), + [anon_sym_mb] = ACTIONS(109), + [anon_sym_mB] = ACTIONS(109), + [anon_sym_Mb] = ACTIONS(109), + [anon_sym_MB] = ACTIONS(109), + [anon_sym_gb] = ACTIONS(109), + [anon_sym_gB] = ACTIONS(109), + [anon_sym_Gb] = ACTIONS(109), + [anon_sym_GB] = ACTIONS(109), + [anon_sym_tb] = ACTIONS(109), + [anon_sym_tB] = ACTIONS(109), + [anon_sym_Tb] = ACTIONS(109), + [anon_sym_TB] = ACTIONS(109), + [anon_sym_pb] = ACTIONS(109), + [anon_sym_pB] = ACTIONS(109), + [anon_sym_Pb] = ACTIONS(109), + [anon_sym_PB] = ACTIONS(109), + [anon_sym_eb] = ACTIONS(109), + [anon_sym_eB] = ACTIONS(109), + [anon_sym_Eb] = ACTIONS(109), + [anon_sym_EB] = ACTIONS(109), + [anon_sym_kib] = ACTIONS(109), + [anon_sym_kiB] = ACTIONS(109), + [anon_sym_kIB] = ACTIONS(109), + [anon_sym_kIb] = ACTIONS(109), + [anon_sym_Kib] = ACTIONS(109), + [anon_sym_KIb] = ACTIONS(109), + [anon_sym_KIB] = ACTIONS(109), + [anon_sym_mib] = ACTIONS(109), + [anon_sym_miB] = ACTIONS(109), + [anon_sym_mIB] = ACTIONS(109), + [anon_sym_mIb] = ACTIONS(109), + [anon_sym_Mib] = ACTIONS(109), + [anon_sym_MIb] = ACTIONS(109), + [anon_sym_MIB] = ACTIONS(109), + [anon_sym_gib] = ACTIONS(109), + [anon_sym_giB] = ACTIONS(109), + [anon_sym_gIB] = ACTIONS(109), + [anon_sym_gIb] = ACTIONS(109), + [anon_sym_Gib] = ACTIONS(109), + [anon_sym_GIb] = ACTIONS(109), + [anon_sym_GIB] = ACTIONS(109), + [anon_sym_tib] = ACTIONS(109), + [anon_sym_tiB] = ACTIONS(109), + [anon_sym_tIB] = ACTIONS(109), + [anon_sym_tIb] = ACTIONS(109), + [anon_sym_Tib] = ACTIONS(109), + [anon_sym_TIb] = ACTIONS(109), + [anon_sym_TIB] = ACTIONS(109), + [anon_sym_pib] = ACTIONS(109), + [anon_sym_piB] = ACTIONS(109), + [anon_sym_pIB] = ACTIONS(109), + [anon_sym_pIb] = ACTIONS(109), + [anon_sym_Pib] = ACTIONS(109), + [anon_sym_PIb] = ACTIONS(109), + [anon_sym_PIB] = ACTIONS(109), + [anon_sym_eib] = ACTIONS(109), + [anon_sym_eiB] = ACTIONS(109), + [anon_sym_eIB] = ACTIONS(109), + [anon_sym_eIb] = ACTIONS(109), + [anon_sym_Eib] = ACTIONS(109), + [anon_sym_EIb] = ACTIONS(109), + [anon_sym_EIB] = ACTIONS(109), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [729] = { - [sym_comment] = STATE(729), + [722] = { + [sym_comment] = STATE(722), [anon_sym_PIPE] = ACTIONS(117), [anon_sym_if] = ACTIONS(117), [anon_sym_EQ_GT] = ACTIONS(117), [anon_sym_DOT2] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1731), [anon_sym_ns] = ACTIONS(117), [anon_sym_s] = ACTIONS(117), [anon_sym_us] = ACTIONS(117), @@ -159735,14 +160824,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(117), [anon_sym_EIb] = ACTIONS(117), [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, - [730] = { - [sym_comment] = STATE(730), + [723] = { + [sym_comment] = STATE(723), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(149), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [724] = { + [sym_comment] = STATE(724), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(109), [anon_sym_EQ_GT] = ACTIONS(109), [anon_sym_DOT2] = ACTIONS(109), + [aux_sym__immediate_decimal_token2] = ACTIONS(1747), [anon_sym_ns] = ACTIONS(109), [anon_sym_s] = ACTIONS(109), [anon_sym_us] = ACTIONS(109), @@ -159820,2351 +160996,3009 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Eib] = ACTIONS(109), [anon_sym_EIb] = ACTIONS(109), [anon_sym_EIB] = ACTIONS(109), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, - [731] = { - [sym_comment] = STATE(731), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_alias] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_let_DASHenv] = ACTIONS(1454), - [anon_sym_mut] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [sym_cmd_identifier] = ACTIONS(1454), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_export_DASHenv] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_error] = ACTIONS(1454), - [anon_sym_list] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_make] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_catch] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_source] = ACTIONS(1454), - [anon_sym_source_DASHenv] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_hide_DASHenv] = ACTIONS(1454), - [anon_sym_overlay] = ACTIONS(1454), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_QMARK2] = ACTIONS(1456), - [anon_sym_STAR_STAR] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1456), - [anon_sym_BANG_EQ] = ACTIONS(1456), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1456), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1456), - [anon_sym_BANG_TILDE] = ACTIONS(1456), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1456), - [aux_sym__val_number_token2] = ACTIONS(1456), - [aux_sym__val_number_token3] = ACTIONS(1456), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1456), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym__str_single_quotes] = ACTIONS(1456), - [sym__str_back_ticks] = ACTIONS(1456), - [aux_sym__record_key_token2] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(3), - }, - [732] = { - [sym_comment] = STATE(732), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_alias] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_let_DASHenv] = ACTIONS(1475), - [anon_sym_mut] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [sym_cmd_identifier] = ACTIONS(1475), - [anon_sym_def] = ACTIONS(1475), - [anon_sym_export_DASHenv] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_error] = ACTIONS(1475), - [anon_sym_list] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_make] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_else] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT2] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1475), - [anon_sym_catch] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_source] = ACTIONS(1475), - [anon_sym_source_DASHenv] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_hide_DASHenv] = ACTIONS(1475), - [anon_sym_overlay] = ACTIONS(1475), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_as] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_QMARK2] = ACTIONS(1477), - [anon_sym_STAR_STAR] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1477), - [anon_sym_BANG_TILDE] = ACTIONS(1477), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1477), - [aux_sym__val_number_token2] = ACTIONS(1477), - [aux_sym__val_number_token3] = ACTIONS(1477), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1477), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [sym__str_single_quotes] = ACTIONS(1477), - [sym__str_back_ticks] = ACTIONS(1477), - [aux_sym__record_key_token2] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(3), - }, - [733] = { - [sym_comment] = STATE(733), - [anon_sym_export] = ACTIONS(1515), - [anon_sym_alias] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_let_DASHenv] = ACTIONS(1515), - [anon_sym_mut] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [sym_cmd_identifier] = ACTIONS(1515), - [anon_sym_def] = ACTIONS(1515), - [anon_sym_export_DASHenv] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_module] = ACTIONS(1515), - [anon_sym_use] = ACTIONS(1515), - [anon_sym_COMMA] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_error] = ACTIONS(1515), - [anon_sym_list] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1515), - [anon_sym_make] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_else] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_DOT2] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_catch] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_source] = ACTIONS(1515), - [anon_sym_source_DASHenv] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_hide] = ACTIONS(1515), - [anon_sym_hide_DASHenv] = ACTIONS(1515), - [anon_sym_overlay] = ACTIONS(1515), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_as] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1644), - [anon_sym_PLUS_PLUS] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1644), - [anon_sym_BANG_EQ] = ACTIONS(1644), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1644), - [anon_sym_BANG_TILDE] = ACTIONS(1644), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1517), - [aux_sym__val_number_token2] = ACTIONS(1517), - [aux_sym__val_number_token3] = ACTIONS(1517), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1517), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym__str_single_quotes] = ACTIONS(1517), - [sym__str_back_ticks] = ACTIONS(1517), - [aux_sym__record_key_token2] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(3), - }, - [734] = { - [sym_comment] = STATE(734), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_list] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_make] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_else] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_catch] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_new] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1497), - [anon_sym_BANG_TILDE] = ACTIONS(1497), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1497), - [aux_sym__val_number_token2] = ACTIONS(1497), - [aux_sym__val_number_token3] = ACTIONS(1497), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1497), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [aux_sym__record_key_token2] = ACTIONS(1495), - [aux_sym_unquoted_token5] = ACTIONS(1747), + [725] = { + [sym_cell_path] = STATE(790), + [sym_path] = STATE(740), + [sym_comment] = STATE(725), + [anon_sym_export] = ACTIONS(1459), + [anon_sym_alias] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(1459), + [anon_sym_let_DASHenv] = ACTIONS(1459), + [anon_sym_mut] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [sym_cmd_identifier] = ACTIONS(1459), + [anon_sym_def] = ACTIONS(1459), + [anon_sym_export_DASHenv] = ACTIONS(1459), + [anon_sym_extern] = ACTIONS(1459), + [anon_sym_module] = ACTIONS(1459), + [anon_sym_use] = ACTIONS(1459), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_DOLLAR] = ACTIONS(1461), + [anon_sym_error] = ACTIONS(1459), + [anon_sym_list] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_in] = ACTIONS(1459), + [anon_sym_loop] = ACTIONS(1459), + [anon_sym_make] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_else] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1459), + [anon_sym_catch] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_source] = ACTIONS(1459), + [anon_sym_source_DASHenv] = ACTIONS(1459), + [anon_sym_register] = ACTIONS(1459), + [anon_sym_hide] = ACTIONS(1459), + [anon_sym_hide_DASHenv] = ACTIONS(1459), + [anon_sym_overlay] = ACTIONS(1459), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_STAR_STAR] = ACTIONS(1461), + [anon_sym_PLUS_PLUS] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_bit_DASHshl] = ACTIONS(1459), + [anon_sym_bit_DASHshr] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1461), + [anon_sym_BANG_EQ] = ACTIONS(1461), + [anon_sym_LT2] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_not_DASHin] = ACTIONS(1459), + [anon_sym_starts_DASHwith] = ACTIONS(1459), + [anon_sym_ends_DASHwith] = ACTIONS(1459), + [anon_sym_EQ_TILDE] = ACTIONS(1461), + [anon_sym_BANG_TILDE] = ACTIONS(1461), + [anon_sym_bit_DASHand] = ACTIONS(1459), + [anon_sym_bit_DASHxor] = ACTIONS(1459), + [anon_sym_bit_DASHor] = ACTIONS(1459), + [anon_sym_and] = ACTIONS(1459), + [anon_sym_xor] = ACTIONS(1459), + [anon_sym_or] = ACTIONS(1459), + [aux_sym__val_number_decimal_token1] = ACTIONS(1459), + [aux_sym__val_number_token1] = ACTIONS(1461), + [aux_sym__val_number_token2] = ACTIONS(1461), + [aux_sym__val_number_token3] = ACTIONS(1461), + [aux_sym__val_number_token4] = ACTIONS(1459), + [aux_sym__val_number_token5] = ACTIONS(1461), + [aux_sym__val_number_token6] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1461), + [sym__str_single_quotes] = ACTIONS(1461), + [sym__str_back_ticks] = ACTIONS(1461), + [aux_sym__record_key_token2] = ACTIONS(1459), [anon_sym_POUND] = ACTIONS(3), }, - [735] = { - [sym_comment] = STATE(735), - [anon_sym_export] = ACTIONS(213), - [anon_sym_alias] = ACTIONS(213), - [anon_sym_let] = ACTIONS(213), - [anon_sym_let_DASHenv] = ACTIONS(213), - [anon_sym_mut] = ACTIONS(213), - [anon_sym_const] = ACTIONS(213), - [sym_cmd_identifier] = ACTIONS(213), - [anon_sym_def] = ACTIONS(213), - [anon_sym_export_DASHenv] = ACTIONS(213), - [anon_sym_extern] = ACTIONS(213), - [anon_sym_module] = ACTIONS(213), - [anon_sym_use] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(215), - [anon_sym_error] = ACTIONS(213), - [anon_sym_list] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_break] = ACTIONS(213), - [anon_sym_continue] = ACTIONS(213), - [anon_sym_for] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_loop] = ACTIONS(213), - [anon_sym_make] = ACTIONS(213), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(213), - [anon_sym_if] = ACTIONS(213), - [anon_sym_else] = ACTIONS(213), - [anon_sym_match] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_DOT2] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(213), - [anon_sym_catch] = ACTIONS(213), - [anon_sym_return] = ACTIONS(213), - [anon_sym_source] = ACTIONS(213), - [anon_sym_source_DASHenv] = ACTIONS(213), - [anon_sym_register] = ACTIONS(213), - [anon_sym_hide] = ACTIONS(213), - [anon_sym_hide_DASHenv] = ACTIONS(213), - [anon_sym_overlay] = ACTIONS(213), - [anon_sym_new] = ACTIONS(213), - [anon_sym_as] = ACTIONS(213), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(213), - [anon_sym_SLASH_SLASH] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(213), - [anon_sym_bit_DASHshr] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(215), - [anon_sym_BANG_EQ] = ACTIONS(215), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(215), - [anon_sym_GT_EQ] = ACTIONS(215), - [anon_sym_not_DASHin] = ACTIONS(213), - [anon_sym_starts_DASHwith] = ACTIONS(213), - [anon_sym_ends_DASHwith] = ACTIONS(213), - [anon_sym_EQ_TILDE] = ACTIONS(215), - [anon_sym_BANG_TILDE] = ACTIONS(215), - [anon_sym_bit_DASHand] = ACTIONS(213), - [anon_sym_bit_DASHxor] = ACTIONS(213), - [anon_sym_bit_DASHor] = ACTIONS(213), - [anon_sym_and] = ACTIONS(213), - [anon_sym_xor] = ACTIONS(213), - [anon_sym_or] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(215), - [aux_sym__val_number_token2] = ACTIONS(215), - [aux_sym__val_number_token3] = ACTIONS(215), - [aux_sym__val_number_token4] = ACTIONS(213), - [aux_sym__val_number_token5] = ACTIONS(215), - [aux_sym__val_number_token6] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym__str_single_quotes] = ACTIONS(215), - [sym__str_back_ticks] = ACTIONS(215), - [aux_sym__record_key_token2] = ACTIONS(213), + [726] = { + [sym_comment] = STATE(726), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_if] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(117), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), + }, + [727] = { + [sym_cell_path] = STATE(780), + [sym_path] = STATE(740), + [sym_comment] = STATE(727), + [anon_sym_export] = ACTIONS(1455), + [anon_sym_alias] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_let_DASHenv] = ACTIONS(1455), + [anon_sym_mut] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [sym_cmd_identifier] = ACTIONS(1455), + [anon_sym_def] = ACTIONS(1455), + [anon_sym_export_DASHenv] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_module] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_DOLLAR] = ACTIONS(1457), + [anon_sym_error] = ACTIONS(1455), + [anon_sym_list] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_make] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_else] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1455), + [anon_sym_catch] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_source] = ACTIONS(1455), + [anon_sym_source_DASHenv] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_hide] = ACTIONS(1455), + [anon_sym_hide_DASHenv] = ACTIONS(1455), + [anon_sym_overlay] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_STAR_STAR] = ACTIONS(1457), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_bit_DASHshl] = ACTIONS(1455), + [anon_sym_bit_DASHshr] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_LT2] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_not_DASHin] = ACTIONS(1455), + [anon_sym_starts_DASHwith] = ACTIONS(1455), + [anon_sym_ends_DASHwith] = ACTIONS(1455), + [anon_sym_EQ_TILDE] = ACTIONS(1457), + [anon_sym_BANG_TILDE] = ACTIONS(1457), + [anon_sym_bit_DASHand] = ACTIONS(1455), + [anon_sym_bit_DASHxor] = ACTIONS(1455), + [anon_sym_bit_DASHor] = ACTIONS(1455), + [anon_sym_and] = ACTIONS(1455), + [anon_sym_xor] = ACTIONS(1455), + [anon_sym_or] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1457), + [aux_sym__val_number_token2] = ACTIONS(1457), + [aux_sym__val_number_token3] = ACTIONS(1457), + [aux_sym__val_number_token4] = ACTIONS(1455), + [aux_sym__val_number_token5] = ACTIONS(1457), + [aux_sym__val_number_token6] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1457), + [sym__str_single_quotes] = ACTIONS(1457), + [sym__str_back_ticks] = ACTIONS(1457), + [aux_sym__record_key_token2] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(3), + }, + [728] = { + [sym_comment] = STATE(728), + [anon_sym_PIPE] = ACTIONS(132), + [anon_sym_EQ_GT] = ACTIONS(132), + [anon_sym_DOT2] = ACTIONS(1761), + [aux_sym__immediate_decimal_token2] = ACTIONS(1764), + [anon_sym_ns] = ACTIONS(132), + [anon_sym_s] = ACTIONS(132), + [anon_sym_us] = ACTIONS(132), + [anon_sym_ms] = ACTIONS(132), + [anon_sym_sec] = ACTIONS(132), + [anon_sym_min] = ACTIONS(132), + [anon_sym_hr] = ACTIONS(132), + [anon_sym_day] = ACTIONS(132), + [anon_sym_wk] = ACTIONS(132), + [anon_sym_b] = ACTIONS(132), + [anon_sym_B] = ACTIONS(132), + [anon_sym_kb] = ACTIONS(132), + [anon_sym_kB] = ACTIONS(132), + [anon_sym_Kb] = ACTIONS(132), + [anon_sym_KB] = ACTIONS(132), + [anon_sym_mb] = ACTIONS(132), + [anon_sym_mB] = ACTIONS(132), + [anon_sym_Mb] = ACTIONS(132), + [anon_sym_MB] = ACTIONS(132), + [anon_sym_gb] = ACTIONS(132), + [anon_sym_gB] = ACTIONS(132), + [anon_sym_Gb] = ACTIONS(132), + [anon_sym_GB] = ACTIONS(132), + [anon_sym_tb] = ACTIONS(132), + [anon_sym_tB] = ACTIONS(132), + [anon_sym_Tb] = ACTIONS(132), + [anon_sym_TB] = ACTIONS(132), + [anon_sym_pb] = ACTIONS(132), + [anon_sym_pB] = ACTIONS(132), + [anon_sym_Pb] = ACTIONS(132), + [anon_sym_PB] = ACTIONS(132), + [anon_sym_eb] = ACTIONS(132), + [anon_sym_eB] = ACTIONS(132), + [anon_sym_Eb] = ACTIONS(132), + [anon_sym_EB] = ACTIONS(132), + [anon_sym_kib] = ACTIONS(132), + [anon_sym_kiB] = ACTIONS(132), + [anon_sym_kIB] = ACTIONS(132), + [anon_sym_kIb] = ACTIONS(132), + [anon_sym_Kib] = ACTIONS(132), + [anon_sym_KIb] = ACTIONS(132), + [anon_sym_KIB] = ACTIONS(132), + [anon_sym_mib] = ACTIONS(132), + [anon_sym_miB] = ACTIONS(132), + [anon_sym_mIB] = ACTIONS(132), + [anon_sym_mIb] = ACTIONS(132), + [anon_sym_Mib] = ACTIONS(132), + [anon_sym_MIb] = ACTIONS(132), + [anon_sym_MIB] = ACTIONS(132), + [anon_sym_gib] = ACTIONS(132), + [anon_sym_giB] = ACTIONS(132), + [anon_sym_gIB] = ACTIONS(132), + [anon_sym_gIb] = ACTIONS(132), + [anon_sym_Gib] = ACTIONS(132), + [anon_sym_GIb] = ACTIONS(132), + [anon_sym_GIB] = ACTIONS(132), + [anon_sym_tib] = ACTIONS(132), + [anon_sym_tiB] = ACTIONS(132), + [anon_sym_tIB] = ACTIONS(132), + [anon_sym_tIb] = ACTIONS(132), + [anon_sym_Tib] = ACTIONS(132), + [anon_sym_TIb] = ACTIONS(132), + [anon_sym_TIB] = ACTIONS(132), + [anon_sym_pib] = ACTIONS(132), + [anon_sym_piB] = ACTIONS(132), + [anon_sym_pIB] = ACTIONS(132), + [anon_sym_pIb] = ACTIONS(132), + [anon_sym_Pib] = ACTIONS(132), + [anon_sym_PIb] = ACTIONS(132), + [anon_sym_PIB] = ACTIONS(132), + [anon_sym_eib] = ACTIONS(132), + [anon_sym_eiB] = ACTIONS(132), + [anon_sym_eIB] = ACTIONS(132), + [anon_sym_eIb] = ACTIONS(132), + [anon_sym_Eib] = ACTIONS(132), + [anon_sym_EIb] = ACTIONS(132), + [anon_sym_EIB] = ACTIONS(132), + [aux_sym_unquoted_token6] = ACTIONS(130), + [anon_sym_POUND] = ACTIONS(3), + }, + [729] = { + [sym_path] = STATE(759), + [sym_comment] = STATE(729), + [aux_sym_cell_path_repeat1] = STATE(729), + [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), + [sym_cmd_identifier] = ACTIONS(1387), + [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_COMMA] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT2] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = 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_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [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(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(3), + }, + [730] = { + [sym_comment] = STATE(730), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(109), + [anon_sym_EQ_GT] = ACTIONS(109), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_ns] = ACTIONS(109), + [anon_sym_s] = ACTIONS(109), + [anon_sym_us] = ACTIONS(109), + [anon_sym_ms] = ACTIONS(109), + [anon_sym_sec] = ACTIONS(109), + [anon_sym_min] = ACTIONS(109), + [anon_sym_hr] = ACTIONS(109), + [anon_sym_day] = ACTIONS(109), + [anon_sym_wk] = ACTIONS(109), + [anon_sym_b] = ACTIONS(109), + [anon_sym_B] = ACTIONS(109), + [anon_sym_kb] = ACTIONS(109), + [anon_sym_kB] = ACTIONS(109), + [anon_sym_Kb] = ACTIONS(109), + [anon_sym_KB] = ACTIONS(109), + [anon_sym_mb] = ACTIONS(109), + [anon_sym_mB] = ACTIONS(109), + [anon_sym_Mb] = ACTIONS(109), + [anon_sym_MB] = ACTIONS(109), + [anon_sym_gb] = ACTIONS(109), + [anon_sym_gB] = ACTIONS(109), + [anon_sym_Gb] = ACTIONS(109), + [anon_sym_GB] = ACTIONS(109), + [anon_sym_tb] = ACTIONS(109), + [anon_sym_tB] = ACTIONS(109), + [anon_sym_Tb] = ACTIONS(109), + [anon_sym_TB] = ACTIONS(109), + [anon_sym_pb] = ACTIONS(109), + [anon_sym_pB] = ACTIONS(109), + [anon_sym_Pb] = ACTIONS(109), + [anon_sym_PB] = ACTIONS(109), + [anon_sym_eb] = ACTIONS(109), + [anon_sym_eB] = ACTIONS(109), + [anon_sym_Eb] = ACTIONS(109), + [anon_sym_EB] = ACTIONS(109), + [anon_sym_kib] = ACTIONS(109), + [anon_sym_kiB] = ACTIONS(109), + [anon_sym_kIB] = ACTIONS(109), + [anon_sym_kIb] = ACTIONS(109), + [anon_sym_Kib] = ACTIONS(109), + [anon_sym_KIb] = ACTIONS(109), + [anon_sym_KIB] = ACTIONS(109), + [anon_sym_mib] = ACTIONS(109), + [anon_sym_miB] = ACTIONS(109), + [anon_sym_mIB] = ACTIONS(109), + [anon_sym_mIb] = ACTIONS(109), + [anon_sym_Mib] = ACTIONS(109), + [anon_sym_MIb] = ACTIONS(109), + [anon_sym_MIB] = ACTIONS(109), + [anon_sym_gib] = ACTIONS(109), + [anon_sym_giB] = ACTIONS(109), + [anon_sym_gIB] = ACTIONS(109), + [anon_sym_gIb] = ACTIONS(109), + [anon_sym_Gib] = ACTIONS(109), + [anon_sym_GIb] = ACTIONS(109), + [anon_sym_GIB] = ACTIONS(109), + [anon_sym_tib] = ACTIONS(109), + [anon_sym_tiB] = ACTIONS(109), + [anon_sym_tIB] = ACTIONS(109), + [anon_sym_tIb] = ACTIONS(109), + [anon_sym_Tib] = ACTIONS(109), + [anon_sym_TIb] = ACTIONS(109), + [anon_sym_TIB] = ACTIONS(109), + [anon_sym_pib] = ACTIONS(109), + [anon_sym_piB] = ACTIONS(109), + [anon_sym_pIB] = ACTIONS(109), + [anon_sym_pIb] = ACTIONS(109), + [anon_sym_Pib] = ACTIONS(109), + [anon_sym_PIb] = ACTIONS(109), + [anon_sym_PIB] = ACTIONS(109), + [anon_sym_eib] = ACTIONS(109), + [anon_sym_eiB] = ACTIONS(109), + [anon_sym_eIB] = ACTIONS(109), + [anon_sym_eIb] = ACTIONS(109), + [anon_sym_Eib] = ACTIONS(109), + [anon_sym_EIb] = ACTIONS(109), + [anon_sym_EIB] = ACTIONS(109), + [aux_sym_unquoted_token6] = ACTIONS(107), + [anon_sym_POUND] = ACTIONS(3), + }, + [731] = { + [sym_comment] = STATE(731), + [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), + [sym_cmd_identifier] = ACTIONS(1445), + [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_COMMA] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_DOLLAR] = ACTIONS(1447), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_list] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_loop] = ACTIONS(1445), + [anon_sym_make] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT2] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_catch] = 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_new] = ACTIONS(1445), + [anon_sym_as] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1447), + [anon_sym_BANG_TILDE] = ACTIONS(1447), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1445), + [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(1447), + [aux_sym__val_number_token6] = ACTIONS(1445), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym__str_single_quotes] = ACTIONS(1447), + [sym__str_back_ticks] = ACTIONS(1447), + [aux_sym__record_key_token2] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(3), + }, + [732] = { + [sym_path] = STATE(759), + [sym_comment] = STATE(732), + [aux_sym_cell_path_repeat1] = STATE(729), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_alias] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_let_DASHenv] = ACTIONS(1407), + [anon_sym_mut] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [sym_cmd_identifier] = ACTIONS(1407), + [anon_sym_def] = ACTIONS(1407), + [anon_sym_export_DASHenv] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_DOLLAR] = ACTIONS(1409), + [anon_sym_error] = ACTIONS(1407), + [anon_sym_list] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_make] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(1409), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_catch] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_source] = ACTIONS(1407), + [anon_sym_source_DASHenv] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), + [anon_sym_hide_DASHenv] = ACTIONS(1407), + [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_new] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_STAR_STAR] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_bit_DASHshl] = ACTIONS(1407), + [anon_sym_bit_DASHshr] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1409), + [anon_sym_BANG_EQ] = ACTIONS(1409), + [anon_sym_LT2] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1409), + [anon_sym_GT_EQ] = ACTIONS(1409), + [anon_sym_not_DASHin] = ACTIONS(1407), + [anon_sym_starts_DASHwith] = ACTIONS(1407), + [anon_sym_ends_DASHwith] = ACTIONS(1407), + [anon_sym_EQ_TILDE] = ACTIONS(1409), + [anon_sym_BANG_TILDE] = ACTIONS(1409), + [anon_sym_bit_DASHand] = ACTIONS(1407), + [anon_sym_bit_DASHxor] = ACTIONS(1407), + [anon_sym_bit_DASHor] = ACTIONS(1407), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_xor] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1409), + [aux_sym__val_number_token2] = ACTIONS(1409), + [aux_sym__val_number_token3] = ACTIONS(1409), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1409), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym__str_single_quotes] = ACTIONS(1409), + [sym__str_back_ticks] = ACTIONS(1409), + [aux_sym__record_key_token2] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(3), + }, + [733] = { + [sym_cell_path] = STATE(766), + [sym_path] = STATE(738), + [sym_comment] = STATE(733), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_DOLLAR] = ACTIONS(1469), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_list] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_make] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_else] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(1775), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_catch] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1467), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1469), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1469), + [anon_sym_BANG_TILDE] = ACTIONS(1469), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1469), + [aux_sym__val_number_token2] = ACTIONS(1469), + [aux_sym__val_number_token3] = ACTIONS(1469), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1469), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym__str_single_quotes] = ACTIONS(1469), + [sym__str_back_ticks] = ACTIONS(1469), + [aux_sym__record_key_token2] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(3), + }, + [734] = { + [sym_comment] = STATE(734), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [aux_sym__immediate_decimal_token2] = ACTIONS(1778), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(149), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(3), + }, + [735] = { + [sym_comment] = STATE(735), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(189), + [anon_sym_EQ_GT] = ACTIONS(189), + [anon_sym_DOT2] = ACTIONS(1780), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(3), }, [736] = { + [sym_cell_path] = STATE(808), + [sym_path] = STATE(740), [sym_comment] = STATE(736), - [anon_sym_export] = ACTIONS(1511), - [anon_sym_alias] = ACTIONS(1511), - [anon_sym_let] = ACTIONS(1511), - [anon_sym_let_DASHenv] = ACTIONS(1511), - [anon_sym_mut] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [sym_cmd_identifier] = ACTIONS(1511), - [anon_sym_def] = ACTIONS(1511), - [anon_sym_export_DASHenv] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym_module] = ACTIONS(1511), - [anon_sym_use] = ACTIONS(1511), - [anon_sym_COMMA] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_DOLLAR] = ACTIONS(1513), - [anon_sym_error] = ACTIONS(1511), - [anon_sym_list] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1511), - [anon_sym_make] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_else] = ACTIONS(1511), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1511), - [anon_sym_catch] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_source] = ACTIONS(1511), - [anon_sym_source_DASHenv] = ACTIONS(1511), - [anon_sym_register] = ACTIONS(1511), - [anon_sym_hide] = ACTIONS(1511), - [anon_sym_hide_DASHenv] = ACTIONS(1511), - [anon_sym_overlay] = ACTIONS(1511), - [anon_sym_new] = ACTIONS(1511), - [anon_sym_as] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_STAR_STAR] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_mod] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_bit_DASHshl] = ACTIONS(1511), - [anon_sym_bit_DASHshr] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1513), - [anon_sym_BANG_EQ] = ACTIONS(1513), - [anon_sym_LT2] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1513), - [anon_sym_BANG_TILDE] = ACTIONS(1513), - [anon_sym_bit_DASHand] = ACTIONS(1511), - [anon_sym_bit_DASHxor] = ACTIONS(1511), - [anon_sym_bit_DASHor] = ACTIONS(1511), - [anon_sym_and] = ACTIONS(1511), - [anon_sym_xor] = ACTIONS(1511), - [anon_sym_or] = ACTIONS(1511), - [aux_sym__val_number_decimal_token1] = ACTIONS(1511), - [aux_sym__val_number_token1] = ACTIONS(1513), - [aux_sym__val_number_token2] = ACTIONS(1513), - [aux_sym__val_number_token3] = ACTIONS(1513), - [aux_sym__val_number_token4] = ACTIONS(1511), - [aux_sym__val_number_token5] = ACTIONS(1513), - [aux_sym__val_number_token6] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym__str_single_quotes] = ACTIONS(1513), - [sym__str_back_ticks] = ACTIONS(1513), - [aux_sym__record_key_token2] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1463), + [anon_sym_alias] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_let_DASHenv] = ACTIONS(1463), + [anon_sym_mut] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [sym_cmd_identifier] = ACTIONS(1463), + [anon_sym_def] = ACTIONS(1463), + [anon_sym_export_DASHenv] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_module] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_DOLLAR] = ACTIONS(1465), + [anon_sym_error] = ACTIONS(1463), + [anon_sym_list] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_in] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_make] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1463), + [anon_sym_catch] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_source] = ACTIONS(1463), + [anon_sym_source_DASHenv] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_hide] = ACTIONS(1463), + [anon_sym_hide_DASHenv] = ACTIONS(1463), + [anon_sym_overlay] = ACTIONS(1463), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_bit_DASHshl] = ACTIONS(1463), + [anon_sym_bit_DASHshr] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1465), + [anon_sym_BANG_EQ] = ACTIONS(1465), + [anon_sym_LT2] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_not_DASHin] = ACTIONS(1463), + [anon_sym_starts_DASHwith] = ACTIONS(1463), + [anon_sym_ends_DASHwith] = ACTIONS(1463), + [anon_sym_EQ_TILDE] = ACTIONS(1465), + [anon_sym_BANG_TILDE] = ACTIONS(1465), + [anon_sym_bit_DASHand] = ACTIONS(1463), + [anon_sym_bit_DASHxor] = ACTIONS(1463), + [anon_sym_bit_DASHor] = ACTIONS(1463), + [anon_sym_and] = ACTIONS(1463), + [anon_sym_xor] = ACTIONS(1463), + [anon_sym_or] = ACTIONS(1463), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1465), + [aux_sym__val_number_token2] = ACTIONS(1465), + [aux_sym__val_number_token3] = ACTIONS(1465), + [aux_sym__val_number_token4] = ACTIONS(1463), + [aux_sym__val_number_token5] = ACTIONS(1465), + [aux_sym__val_number_token6] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1465), + [sym__str_single_quotes] = ACTIONS(1465), + [sym__str_back_ticks] = ACTIONS(1465), + [aux_sym__record_key_token2] = ACTIONS(1463), [anon_sym_POUND] = ACTIONS(3), }, [737] = { [sym_comment] = STATE(737), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_COMMA] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_list] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_make] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_new] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1369), - [anon_sym_BANG_TILDE] = ACTIONS(1369), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1371), - [sym__str_single_quotes] = ACTIONS(1371), - [sym__str_back_ticks] = ACTIONS(1371), - [aux_sym__record_key_token2] = ACTIONS(1369), - [aux_sym_unquoted_token3] = ACTIONS(1704), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(1782), + [aux_sym__immediate_decimal_token2] = ACTIONS(1743), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(117), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(3), }, [738] = { + [sym_path] = STATE(759), [sym_comment] = STATE(738), - [anon_sym_export] = ACTIONS(1507), - [anon_sym_alias] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_let_DASHenv] = ACTIONS(1507), - [anon_sym_mut] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [sym_cmd_identifier] = ACTIONS(1507), - [anon_sym_def] = ACTIONS(1507), - [anon_sym_export_DASHenv] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_module] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1509), - [anon_sym_error] = ACTIONS(1507), - [anon_sym_list] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_make] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_else] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT2] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1507), - [anon_sym_catch] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_source] = ACTIONS(1507), - [anon_sym_source_DASHenv] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_hide] = ACTIONS(1507), - [anon_sym_hide_DASHenv] = ACTIONS(1507), - [anon_sym_overlay] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_as] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1509), - [anon_sym_BANG_TILDE] = ACTIONS(1509), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1509), - [aux_sym__val_number_token2] = ACTIONS(1509), - [aux_sym__val_number_token3] = ACTIONS(1509), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1509), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym__str_single_quotes] = ACTIONS(1509), - [sym__str_back_ticks] = ACTIONS(1509), - [aux_sym__record_key_token2] = ACTIONS(1507), + [aux_sym_cell_path_repeat1] = STATE(732), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_COMMA] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_list] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_make] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_catch] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_as] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1396), + [anon_sym_BANG_EQ] = ACTIONS(1396), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1396), + [anon_sym_GT_EQ] = ACTIONS(1396), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1396), + [anon_sym_BANG_TILDE] = ACTIONS(1396), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1396), + [aux_sym__val_number_token2] = ACTIONS(1396), + [aux_sym__val_number_token3] = ACTIONS(1396), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1396), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym__str_single_quotes] = ACTIONS(1396), + [sym__str_back_ticks] = ACTIONS(1396), + [aux_sym__record_key_token2] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(3), }, [739] = { + [sym_path] = STATE(759), [sym_comment] = STATE(739), - [anon_sym_export] = ACTIONS(1501), - [anon_sym_alias] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_let_DASHenv] = ACTIONS(1501), - [anon_sym_mut] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [sym_cmd_identifier] = ACTIONS(1501), - [anon_sym_def] = ACTIONS(1501), - [anon_sym_export_DASHenv] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_module] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_DOLLAR] = ACTIONS(1503), - [anon_sym_error] = ACTIONS(1501), - [anon_sym_list] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_make] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_else] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT2] = ACTIONS(1503), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_source] = ACTIONS(1501), - [anon_sym_source_DASHenv] = ACTIONS(1501), - [anon_sym_register] = ACTIONS(1501), - [anon_sym_hide] = ACTIONS(1501), - [anon_sym_hide_DASHenv] = ACTIONS(1501), - [anon_sym_overlay] = ACTIONS(1501), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_STAR_STAR] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_bit_DASHshl] = ACTIONS(1501), - [anon_sym_bit_DASHshr] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1503), - [anon_sym_LT2] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_not_DASHin] = ACTIONS(1501), - [anon_sym_starts_DASHwith] = ACTIONS(1501), - [anon_sym_ends_DASHwith] = ACTIONS(1501), - [anon_sym_EQ_TILDE] = ACTIONS(1503), - [anon_sym_BANG_TILDE] = ACTIONS(1503), - [anon_sym_bit_DASHand] = ACTIONS(1501), - [anon_sym_bit_DASHxor] = ACTIONS(1501), - [anon_sym_bit_DASHor] = ACTIONS(1501), - [anon_sym_and] = ACTIONS(1501), - [anon_sym_xor] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1501), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1503), - [aux_sym__val_number_token2] = ACTIONS(1503), - [aux_sym__val_number_token3] = ACTIONS(1503), - [aux_sym__val_number_token4] = ACTIONS(1501), - [aux_sym__val_number_token5] = ACTIONS(1503), - [aux_sym__val_number_token6] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1503), - [sym__str_single_quotes] = ACTIONS(1503), - [sym__str_back_ticks] = ACTIONS(1503), - [aux_sym__record_key_token2] = ACTIONS(1501), + [aux_sym_cell_path_repeat1] = STATE(729), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_alias] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_let_DASHenv] = ACTIONS(1407), + [anon_sym_mut] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [sym_cmd_identifier] = ACTIONS(1407), + [anon_sym_def] = ACTIONS(1407), + [anon_sym_export_DASHenv] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_DOLLAR] = ACTIONS(1409), + [anon_sym_error] = ACTIONS(1407), + [anon_sym_list] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_make] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_catch] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_source] = ACTIONS(1407), + [anon_sym_source_DASHenv] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), + [anon_sym_hide_DASHenv] = ACTIONS(1407), + [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_new] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_STAR_STAR] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_bit_DASHshl] = ACTIONS(1407), + [anon_sym_bit_DASHshr] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1409), + [anon_sym_BANG_EQ] = ACTIONS(1409), + [anon_sym_LT2] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1409), + [anon_sym_GT_EQ] = ACTIONS(1409), + [anon_sym_not_DASHin] = ACTIONS(1407), + [anon_sym_starts_DASHwith] = ACTIONS(1407), + [anon_sym_ends_DASHwith] = ACTIONS(1407), + [anon_sym_EQ_TILDE] = ACTIONS(1409), + [anon_sym_BANG_TILDE] = ACTIONS(1409), + [anon_sym_bit_DASHand] = ACTIONS(1407), + [anon_sym_bit_DASHxor] = ACTIONS(1407), + [anon_sym_bit_DASHor] = ACTIONS(1407), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_xor] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1409), + [aux_sym__val_number_token2] = ACTIONS(1409), + [aux_sym__val_number_token3] = ACTIONS(1409), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1409), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym__str_single_quotes] = ACTIONS(1409), + [sym__str_back_ticks] = ACTIONS(1409), + [aux_sym__record_key_token2] = ACTIONS(1407), [anon_sym_POUND] = ACTIONS(3), }, [740] = { + [sym_path] = STATE(759), [sym_comment] = STATE(740), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_EQ_GT] = ACTIONS(1365), - [anon_sym_ns] = ACTIONS(1316), - [anon_sym_s] = ACTIONS(1316), - [anon_sym_us] = ACTIONS(1316), - [anon_sym_ms] = ACTIONS(1316), - [anon_sym_sec] = ACTIONS(1316), - [anon_sym_min] = ACTIONS(1316), - [anon_sym_hr] = ACTIONS(1316), - [anon_sym_day] = ACTIONS(1316), - [anon_sym_wk] = ACTIONS(1316), - [anon_sym_b] = ACTIONS(1320), - [anon_sym_B] = ACTIONS(1320), - [anon_sym_kb] = ACTIONS(1320), - [anon_sym_kB] = ACTIONS(1320), - [anon_sym_Kb] = ACTIONS(1320), - [anon_sym_KB] = ACTIONS(1320), - [anon_sym_mb] = ACTIONS(1320), - [anon_sym_mB] = ACTIONS(1320), - [anon_sym_Mb] = ACTIONS(1320), - [anon_sym_MB] = ACTIONS(1320), - [anon_sym_gb] = ACTIONS(1320), - [anon_sym_gB] = ACTIONS(1320), - [anon_sym_Gb] = ACTIONS(1320), - [anon_sym_GB] = ACTIONS(1320), - [anon_sym_tb] = ACTIONS(1320), - [anon_sym_tB] = ACTIONS(1320), - [anon_sym_Tb] = ACTIONS(1320), - [anon_sym_TB] = ACTIONS(1320), - [anon_sym_pb] = ACTIONS(1320), - [anon_sym_pB] = ACTIONS(1320), - [anon_sym_Pb] = ACTIONS(1320), - [anon_sym_PB] = ACTIONS(1320), - [anon_sym_eb] = ACTIONS(1320), - [anon_sym_eB] = ACTIONS(1320), - [anon_sym_Eb] = ACTIONS(1320), - [anon_sym_EB] = ACTIONS(1320), - [anon_sym_kib] = ACTIONS(1320), - [anon_sym_kiB] = ACTIONS(1320), - [anon_sym_kIB] = ACTIONS(1320), - [anon_sym_kIb] = ACTIONS(1320), - [anon_sym_Kib] = ACTIONS(1320), - [anon_sym_KIb] = ACTIONS(1320), - [anon_sym_KIB] = ACTIONS(1320), - [anon_sym_mib] = ACTIONS(1320), - [anon_sym_miB] = ACTIONS(1320), - [anon_sym_mIB] = ACTIONS(1320), - [anon_sym_mIb] = ACTIONS(1320), - [anon_sym_Mib] = ACTIONS(1320), - [anon_sym_MIb] = ACTIONS(1320), - [anon_sym_MIB] = ACTIONS(1320), - [anon_sym_gib] = ACTIONS(1320), - [anon_sym_giB] = ACTIONS(1320), - [anon_sym_gIB] = ACTIONS(1320), - [anon_sym_gIb] = ACTIONS(1320), - [anon_sym_Gib] = ACTIONS(1320), - [anon_sym_GIb] = ACTIONS(1320), - [anon_sym_GIB] = ACTIONS(1320), - [anon_sym_tib] = ACTIONS(1320), - [anon_sym_tiB] = ACTIONS(1320), - [anon_sym_tIB] = ACTIONS(1320), - [anon_sym_tIb] = ACTIONS(1320), - [anon_sym_Tib] = ACTIONS(1320), - [anon_sym_TIb] = ACTIONS(1320), - [anon_sym_TIB] = ACTIONS(1320), - [anon_sym_pib] = ACTIONS(1320), - [anon_sym_piB] = ACTIONS(1320), - [anon_sym_pIB] = ACTIONS(1320), - [anon_sym_pIb] = ACTIONS(1320), - [anon_sym_Pib] = ACTIONS(1320), - [anon_sym_PIb] = ACTIONS(1320), - [anon_sym_PIB] = ACTIONS(1320), - [anon_sym_eib] = ACTIONS(1320), - [anon_sym_eiB] = ACTIONS(1320), - [anon_sym_eIB] = ACTIONS(1320), - [anon_sym_eIb] = ACTIONS(1320), - [anon_sym_Eib] = ACTIONS(1320), - [anon_sym_EIb] = ACTIONS(1320), - [anon_sym_EIB] = ACTIONS(1320), + [aux_sym_cell_path_repeat1] = STATE(739), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_COMMA] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_list] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_make] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_catch] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_as] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1396), + [anon_sym_BANG_EQ] = ACTIONS(1396), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1396), + [anon_sym_GT_EQ] = ACTIONS(1396), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1396), + [anon_sym_BANG_TILDE] = ACTIONS(1396), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1396), + [aux_sym__val_number_token2] = ACTIONS(1396), + [aux_sym__val_number_token3] = ACTIONS(1396), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1396), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym__str_single_quotes] = ACTIONS(1396), + [sym__str_back_ticks] = ACTIONS(1396), + [aux_sym__record_key_token2] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(3), }, [741] = { + [sym_cell_path] = STATE(816), + [sym_path] = STATE(740), [sym_comment] = STATE(741), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_alias] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_let_DASHenv] = ACTIONS(1491), - [anon_sym_mut] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [sym_cmd_identifier] = ACTIONS(1491), - [anon_sym_def] = ACTIONS(1491), - [anon_sym_export_DASHenv] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1491), - [anon_sym_list] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_make] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT2] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_catch] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_source] = ACTIONS(1491), - [anon_sym_source_DASHenv] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_hide] = ACTIONS(1491), - [anon_sym_hide_DASHenv] = ACTIONS(1491), - [anon_sym_overlay] = ACTIONS(1491), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1493), - [anon_sym_BANG_TILDE] = ACTIONS(1493), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1493), - [aux_sym__val_number_token2] = ACTIONS(1493), - [aux_sym__val_number_token3] = ACTIONS(1493), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1493), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym__str_single_quotes] = ACTIONS(1493), - [sym__str_back_ticks] = ACTIONS(1493), - [aux_sym__record_key_token2] = ACTIONS(1491), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_DOLLAR] = ACTIONS(1402), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_list] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_make] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_catch] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_new] = ACTIONS(1400), + [anon_sym_as] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1402), + [anon_sym_BANG_TILDE] = ACTIONS(1402), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1402), + [aux_sym__val_number_token2] = ACTIONS(1402), + [aux_sym__val_number_token3] = ACTIONS(1402), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1402), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym__str_single_quotes] = ACTIONS(1402), + [sym__str_back_ticks] = ACTIONS(1402), + [aux_sym__record_key_token2] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(3), }, [742] = { + [sym_cell_path] = STATE(775), + [sym_path] = STATE(740), [sym_comment] = STATE(742), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_EQ_GT] = ACTIONS(173), - [anon_sym_DOT2] = ACTIONS(1341), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(173), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [sym_cmd_identifier] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_list] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_make] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_register] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_STAR_STAR] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_mod] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_bit_DASHshl] = ACTIONS(1431), + [anon_sym_bit_DASHshr] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_not_DASHin] = ACTIONS(1431), + [anon_sym_starts_DASHwith] = ACTIONS(1431), + [anon_sym_ends_DASHwith] = ACTIONS(1431), + [anon_sym_EQ_TILDE] = ACTIONS(1433), + [anon_sym_BANG_TILDE] = ACTIONS(1433), + [anon_sym_bit_DASHand] = ACTIONS(1431), + [anon_sym_bit_DASHxor] = ACTIONS(1431), + [anon_sym_bit_DASHor] = ACTIONS(1431), + [anon_sym_and] = ACTIONS(1431), + [anon_sym_xor] = ACTIONS(1431), + [anon_sym_or] = ACTIONS(1431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1431), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [aux_sym__record_key_token2] = ACTIONS(1431), [anon_sym_POUND] = ACTIONS(3), }, [743] = { + [sym_cell_path] = STATE(825), + [sym_path] = STATE(740), [sym_comment] = STATE(743), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_if] = ACTIONS(223), - [anon_sym_EQ_GT] = ACTIONS(223), - [anon_sym_ns] = ACTIONS(223), - [anon_sym_s] = ACTIONS(223), - [anon_sym_us] = ACTIONS(223), - [anon_sym_ms] = ACTIONS(223), - [anon_sym_sec] = ACTIONS(223), - [anon_sym_min] = ACTIONS(223), - [anon_sym_hr] = ACTIONS(223), - [anon_sym_day] = ACTIONS(223), - [anon_sym_wk] = ACTIONS(223), - [anon_sym_b] = ACTIONS(223), - [anon_sym_B] = ACTIONS(223), - [anon_sym_kb] = ACTIONS(223), - [anon_sym_kB] = ACTIONS(223), - [anon_sym_Kb] = ACTIONS(223), - [anon_sym_KB] = ACTIONS(223), - [anon_sym_mb] = ACTIONS(223), - [anon_sym_mB] = ACTIONS(223), - [anon_sym_Mb] = ACTIONS(223), - [anon_sym_MB] = ACTIONS(223), - [anon_sym_gb] = ACTIONS(223), - [anon_sym_gB] = ACTIONS(223), - [anon_sym_Gb] = ACTIONS(223), - [anon_sym_GB] = ACTIONS(223), - [anon_sym_tb] = ACTIONS(223), - [anon_sym_tB] = ACTIONS(223), - [anon_sym_Tb] = ACTIONS(223), - [anon_sym_TB] = ACTIONS(223), - [anon_sym_pb] = ACTIONS(223), - [anon_sym_pB] = ACTIONS(223), - [anon_sym_Pb] = ACTIONS(223), - [anon_sym_PB] = ACTIONS(223), - [anon_sym_eb] = ACTIONS(223), - [anon_sym_eB] = ACTIONS(223), - [anon_sym_Eb] = ACTIONS(223), - [anon_sym_EB] = ACTIONS(223), - [anon_sym_kib] = ACTIONS(223), - [anon_sym_kiB] = ACTIONS(223), - [anon_sym_kIB] = ACTIONS(223), - [anon_sym_kIb] = ACTIONS(223), - [anon_sym_Kib] = ACTIONS(223), - [anon_sym_KIb] = ACTIONS(223), - [anon_sym_KIB] = ACTIONS(223), - [anon_sym_mib] = ACTIONS(223), - [anon_sym_miB] = ACTIONS(223), - [anon_sym_mIB] = ACTIONS(223), - [anon_sym_mIb] = ACTIONS(223), - [anon_sym_Mib] = ACTIONS(223), - [anon_sym_MIb] = ACTIONS(223), - [anon_sym_MIB] = ACTIONS(223), - [anon_sym_gib] = ACTIONS(223), - [anon_sym_giB] = ACTIONS(223), - [anon_sym_gIB] = ACTIONS(223), - [anon_sym_gIb] = ACTIONS(223), - [anon_sym_Gib] = ACTIONS(223), - [anon_sym_GIb] = ACTIONS(223), - [anon_sym_GIB] = ACTIONS(223), - [anon_sym_tib] = ACTIONS(223), - [anon_sym_tiB] = ACTIONS(223), - [anon_sym_tIB] = ACTIONS(223), - [anon_sym_tIb] = ACTIONS(223), - [anon_sym_Tib] = ACTIONS(223), - [anon_sym_TIb] = ACTIONS(223), - [anon_sym_TIB] = ACTIONS(223), - [anon_sym_pib] = ACTIONS(223), - [anon_sym_piB] = ACTIONS(223), - [anon_sym_pIB] = ACTIONS(223), - [anon_sym_pIb] = ACTIONS(223), - [anon_sym_Pib] = ACTIONS(223), - [anon_sym_PIb] = ACTIONS(223), - [anon_sym_PIB] = ACTIONS(223), - [anon_sym_eib] = ACTIONS(223), - [anon_sym_eiB] = ACTIONS(223), - [anon_sym_eIB] = ACTIONS(223), - [anon_sym_eIb] = ACTIONS(223), - [anon_sym_Eib] = ACTIONS(223), - [anon_sym_EIb] = ACTIONS(223), - [anon_sym_EIB] = ACTIONS(223), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_DOLLAR] = ACTIONS(1469), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_list] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_make] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_else] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_catch] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1467), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1469), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1469), + [anon_sym_BANG_TILDE] = ACTIONS(1469), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1469), + [aux_sym__val_number_token2] = ACTIONS(1469), + [aux_sym__val_number_token3] = ACTIONS(1469), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1469), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym__str_single_quotes] = ACTIONS(1469), + [sym__str_back_ticks] = ACTIONS(1469), + [aux_sym__record_key_token2] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(3), }, [744] = { + [sym_cell_path] = STATE(795), + [sym_path] = STATE(740), [sym_comment] = STATE(744), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_if] = ACTIONS(173), - [anon_sym_EQ_GT] = ACTIONS(173), - [anon_sym_ns] = ACTIONS(173), - [anon_sym_s] = ACTIONS(173), - [anon_sym_us] = ACTIONS(173), - [anon_sym_ms] = ACTIONS(173), - [anon_sym_sec] = ACTIONS(173), - [anon_sym_min] = ACTIONS(173), - [anon_sym_hr] = ACTIONS(173), - [anon_sym_day] = ACTIONS(173), - [anon_sym_wk] = ACTIONS(173), - [anon_sym_b] = ACTIONS(173), - [anon_sym_B] = ACTIONS(173), - [anon_sym_kb] = ACTIONS(173), - [anon_sym_kB] = ACTIONS(173), - [anon_sym_Kb] = ACTIONS(173), - [anon_sym_KB] = ACTIONS(173), - [anon_sym_mb] = ACTIONS(173), - [anon_sym_mB] = ACTIONS(173), - [anon_sym_Mb] = ACTIONS(173), - [anon_sym_MB] = ACTIONS(173), - [anon_sym_gb] = ACTIONS(173), - [anon_sym_gB] = ACTIONS(173), - [anon_sym_Gb] = ACTIONS(173), - [anon_sym_GB] = ACTIONS(173), - [anon_sym_tb] = ACTIONS(173), - [anon_sym_tB] = ACTIONS(173), - [anon_sym_Tb] = ACTIONS(173), - [anon_sym_TB] = ACTIONS(173), - [anon_sym_pb] = ACTIONS(173), - [anon_sym_pB] = ACTIONS(173), - [anon_sym_Pb] = ACTIONS(173), - [anon_sym_PB] = ACTIONS(173), - [anon_sym_eb] = ACTIONS(173), - [anon_sym_eB] = ACTIONS(173), - [anon_sym_Eb] = ACTIONS(173), - [anon_sym_EB] = ACTIONS(173), - [anon_sym_kib] = ACTIONS(173), - [anon_sym_kiB] = ACTIONS(173), - [anon_sym_kIB] = ACTIONS(173), - [anon_sym_kIb] = ACTIONS(173), - [anon_sym_Kib] = ACTIONS(173), - [anon_sym_KIb] = ACTIONS(173), - [anon_sym_KIB] = ACTIONS(173), - [anon_sym_mib] = ACTIONS(173), - [anon_sym_miB] = ACTIONS(173), - [anon_sym_mIB] = ACTIONS(173), - [anon_sym_mIb] = ACTIONS(173), - [anon_sym_Mib] = ACTIONS(173), - [anon_sym_MIb] = ACTIONS(173), - [anon_sym_MIB] = ACTIONS(173), - [anon_sym_gib] = ACTIONS(173), - [anon_sym_giB] = ACTIONS(173), - [anon_sym_gIB] = ACTIONS(173), - [anon_sym_gIb] = ACTIONS(173), - [anon_sym_Gib] = ACTIONS(173), - [anon_sym_GIb] = ACTIONS(173), - [anon_sym_GIB] = ACTIONS(173), - [anon_sym_tib] = ACTIONS(173), - [anon_sym_tiB] = ACTIONS(173), - [anon_sym_tIB] = ACTIONS(173), - [anon_sym_tIb] = ACTIONS(173), - [anon_sym_Tib] = ACTIONS(173), - [anon_sym_TIb] = ACTIONS(173), - [anon_sym_TIB] = ACTIONS(173), - [anon_sym_pib] = ACTIONS(173), - [anon_sym_piB] = ACTIONS(173), - [anon_sym_pIB] = ACTIONS(173), - [anon_sym_pIb] = ACTIONS(173), - [anon_sym_Pib] = ACTIONS(173), - [anon_sym_PIb] = ACTIONS(173), - [anon_sym_PIB] = ACTIONS(173), - [anon_sym_eib] = ACTIONS(173), - [anon_sym_eiB] = ACTIONS(173), - [anon_sym_eIB] = ACTIONS(173), - [anon_sym_eIb] = ACTIONS(173), - [anon_sym_Eib] = ACTIONS(173), - [anon_sym_EIb] = ACTIONS(173), - [anon_sym_EIB] = ACTIONS(173), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_alias] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_let_DASHenv] = ACTIONS(1478), + [anon_sym_mut] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [sym_cmd_identifier] = ACTIONS(1478), + [anon_sym_def] = ACTIONS(1478), + [anon_sym_export_DASHenv] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_error] = ACTIONS(1478), + [anon_sym_list] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_make] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1478), + [anon_sym_catch] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_source] = ACTIONS(1478), + [anon_sym_source_DASHenv] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_hide] = ACTIONS(1478), + [anon_sym_hide_DASHenv] = ACTIONS(1478), + [anon_sym_overlay] = ACTIONS(1478), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_as] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_STAR_STAR] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_SLASH_SLASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_bit_DASHshl] = ACTIONS(1478), + [anon_sym_bit_DASHshr] = ACTIONS(1478), + [anon_sym_EQ_EQ] = ACTIONS(1480), + [anon_sym_BANG_EQ] = ACTIONS(1480), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1480), + [anon_sym_GT_EQ] = ACTIONS(1480), + [anon_sym_not_DASHin] = ACTIONS(1478), + [anon_sym_starts_DASHwith] = ACTIONS(1478), + [anon_sym_ends_DASHwith] = ACTIONS(1478), + [anon_sym_EQ_TILDE] = ACTIONS(1480), + [anon_sym_BANG_TILDE] = ACTIONS(1480), + [anon_sym_bit_DASHand] = ACTIONS(1478), + [anon_sym_bit_DASHxor] = ACTIONS(1478), + [anon_sym_bit_DASHor] = ACTIONS(1478), + [anon_sym_and] = ACTIONS(1478), + [anon_sym_xor] = ACTIONS(1478), + [anon_sym_or] = ACTIONS(1478), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1480), + [aux_sym__val_number_token2] = ACTIONS(1480), + [aux_sym__val_number_token3] = ACTIONS(1480), + [aux_sym__val_number_token4] = ACTIONS(1478), + [aux_sym__val_number_token5] = ACTIONS(1480), + [aux_sym__val_number_token6] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym__str_single_quotes] = ACTIONS(1480), + [sym__str_back_ticks] = ACTIONS(1480), + [aux_sym__record_key_token2] = ACTIONS(1478), [anon_sym_POUND] = ACTIONS(3), }, [745] = { [sym_comment] = STATE(745), - [anon_sym_export] = ACTIONS(1485), - [anon_sym_alias] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_let_DASHenv] = ACTIONS(1485), - [anon_sym_mut] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [sym_cmd_identifier] = ACTIONS(1485), - [anon_sym_def] = ACTIONS(1485), - [anon_sym_export_DASHenv] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_module] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_COMMA] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_DOLLAR] = ACTIONS(1487), - [anon_sym_error] = ACTIONS(1485), - [anon_sym_list] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_in] = ACTIONS(1485), - [anon_sym_loop] = ACTIONS(1485), - [anon_sym_make] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_else] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_DOT2] = ACTIONS(1487), - [anon_sym_try] = ACTIONS(1485), - [anon_sym_catch] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_source] = ACTIONS(1485), - [anon_sym_source_DASHenv] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_hide] = ACTIONS(1485), - [anon_sym_hide_DASHenv] = ACTIONS(1485), - [anon_sym_overlay] = ACTIONS(1485), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_STAR_STAR] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_SLASH_SLASH] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_bit_DASHshl] = ACTIONS(1485), - [anon_sym_bit_DASHshr] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1487), - [anon_sym_BANG_EQ] = ACTIONS(1487), - [anon_sym_LT2] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1487), - [anon_sym_not_DASHin] = ACTIONS(1485), - [anon_sym_starts_DASHwith] = ACTIONS(1485), - [anon_sym_ends_DASHwith] = ACTIONS(1485), - [anon_sym_EQ_TILDE] = ACTIONS(1487), - [anon_sym_BANG_TILDE] = ACTIONS(1487), - [anon_sym_bit_DASHand] = ACTIONS(1485), - [anon_sym_bit_DASHxor] = ACTIONS(1485), - [anon_sym_bit_DASHor] = ACTIONS(1485), - [anon_sym_and] = ACTIONS(1485), - [anon_sym_xor] = ACTIONS(1485), - [anon_sym_or] = ACTIONS(1485), - [aux_sym__val_number_decimal_token1] = ACTIONS(1485), - [aux_sym__val_number_token1] = ACTIONS(1487), - [aux_sym__val_number_token2] = ACTIONS(1487), - [aux_sym__val_number_token3] = ACTIONS(1487), - [aux_sym__val_number_token4] = ACTIONS(1485), - [aux_sym__val_number_token5] = ACTIONS(1487), - [aux_sym__val_number_token6] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1487), - [sym__str_single_quotes] = ACTIONS(1487), - [sym__str_back_ticks] = ACTIONS(1487), - [aux_sym__record_key_token2] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [aux_sym__immediate_decimal_token2] = ACTIONS(1743), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(117), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [746] = { + [sym_cell_path] = STATE(770), + [sym_path] = STATE(738), [sym_comment] = STATE(746), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1753), - [anon_sym_starts_DASHwith] = ACTIONS(1753), - [anon_sym_ends_DASHwith] = ACTIONS(1753), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1767), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_DOLLAR] = ACTIONS(1402), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_list] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_make] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_catch] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_new] = ACTIONS(1400), + [anon_sym_as] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1402), + [anon_sym_BANG_TILDE] = ACTIONS(1402), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1402), + [aux_sym__val_number_token2] = ACTIONS(1402), + [aux_sym__val_number_token3] = ACTIONS(1402), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1402), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym__str_single_quotes] = ACTIONS(1402), + [sym__str_back_ticks] = ACTIONS(1402), + [aux_sym__record_key_token2] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(3), }, [747] = { + [sym_cell_path] = STATE(799), + [sym_path] = STATE(740), [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_alias] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_let_DASHenv] = ACTIONS(1628), - [anon_sym_mut] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [sym_cmd_identifier] = ACTIONS(1628), - [anon_sym_def] = ACTIONS(1628), - [anon_sym_export_DASHenv] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_COMMA] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_DOLLAR] = ACTIONS(1630), - [anon_sym_error] = ACTIONS(1628), - [anon_sym_list] = ACTIONS(1628), - [anon_sym_GT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_make] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_else] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1630), - [anon_sym_DOT] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1628), - [anon_sym_catch] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_source] = ACTIONS(1628), - [anon_sym_source_DASHenv] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_hide] = ACTIONS(1628), - [anon_sym_hide_DASHenv] = ACTIONS(1628), - [anon_sym_overlay] = ACTIONS(1628), - [anon_sym_new] = ACTIONS(1628), - [anon_sym_as] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_STAR_STAR] = ACTIONS(1630), - [anon_sym_PLUS_PLUS] = ACTIONS(1630), - [anon_sym_SLASH] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_SLASH_SLASH] = ACTIONS(1630), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_bit_DASHshl] = ACTIONS(1628), - [anon_sym_bit_DASHshr] = ACTIONS(1628), - [anon_sym_EQ_EQ] = ACTIONS(1630), - [anon_sym_BANG_EQ] = ACTIONS(1630), - [anon_sym_LT2] = ACTIONS(1628), - [anon_sym_LT_EQ] = ACTIONS(1630), - [anon_sym_GT_EQ] = ACTIONS(1630), - [anon_sym_not_DASHin] = ACTIONS(1628), - [anon_sym_starts_DASHwith] = ACTIONS(1628), - [anon_sym_ends_DASHwith] = ACTIONS(1628), - [anon_sym_EQ_TILDE] = ACTIONS(1630), - [anon_sym_BANG_TILDE] = ACTIONS(1630), - [anon_sym_bit_DASHand] = ACTIONS(1628), - [anon_sym_bit_DASHxor] = ACTIONS(1628), - [anon_sym_bit_DASHor] = ACTIONS(1628), - [anon_sym_and] = ACTIONS(1628), - [anon_sym_xor] = ACTIONS(1628), - [anon_sym_or] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1630), - [aux_sym__val_number_token2] = ACTIONS(1630), - [aux_sym__val_number_token3] = ACTIONS(1630), - [aux_sym__val_number_token4] = ACTIONS(1628), - [aux_sym__val_number_token5] = ACTIONS(1630), - [aux_sym__val_number_token6] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1630), - [sym__str_single_quotes] = ACTIONS(1630), - [sym__str_back_ticks] = ACTIONS(1630), - [aux_sym__record_key_token2] = ACTIONS(1628), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [sym_cmd_identifier] = ACTIONS(1474), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_list] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_make] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_else] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_DOT2] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_catch] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_as] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_STAR_STAR] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_SLASH_SLASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_bit_DASHshl] = ACTIONS(1474), + [anon_sym_bit_DASHshr] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_LT2] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_not_DASHin] = ACTIONS(1474), + [anon_sym_starts_DASHwith] = ACTIONS(1474), + [anon_sym_ends_DASHwith] = ACTIONS(1474), + [anon_sym_EQ_TILDE] = ACTIONS(1476), + [anon_sym_BANG_TILDE] = ACTIONS(1476), + [anon_sym_bit_DASHand] = ACTIONS(1474), + [anon_sym_bit_DASHxor] = ACTIONS(1474), + [anon_sym_bit_DASHor] = ACTIONS(1474), + [anon_sym_and] = ACTIONS(1474), + [anon_sym_xor] = ACTIONS(1474), + [anon_sym_or] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_token1] = ACTIONS(1476), + [aux_sym__val_number_token2] = ACTIONS(1476), + [aux_sym__val_number_token3] = ACTIONS(1476), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1476), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__str_single_quotes] = ACTIONS(1476), + [sym__str_back_ticks] = ACTIONS(1476), + [aux_sym__record_key_token2] = ACTIONS(1474), [anon_sym_POUND] = ACTIONS(3), }, [748] = { [sym_comment] = STATE(748), - [anon_sym_export] = ACTIONS(1640), - [anon_sym_alias] = ACTIONS(1640), - [anon_sym_let] = ACTIONS(1640), - [anon_sym_let_DASHenv] = ACTIONS(1640), - [anon_sym_mut] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [sym_cmd_identifier] = ACTIONS(1640), - [anon_sym_def] = ACTIONS(1640), - [anon_sym_export_DASHenv] = ACTIONS(1640), - [anon_sym_extern] = ACTIONS(1640), - [anon_sym_module] = ACTIONS(1640), - [anon_sym_use] = ACTIONS(1640), - [anon_sym_COMMA] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1642), - [anon_sym_error] = ACTIONS(1640), - [anon_sym_list] = ACTIONS(1640), - [anon_sym_GT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_in] = ACTIONS(1640), - [anon_sym_loop] = ACTIONS(1640), - [anon_sym_make] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_else] = ACTIONS(1640), - [anon_sym_match] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_DOT] = ACTIONS(1642), - [anon_sym_try] = ACTIONS(1640), - [anon_sym_catch] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_source] = ACTIONS(1640), - [anon_sym_source_DASHenv] = ACTIONS(1640), - [anon_sym_register] = ACTIONS(1640), - [anon_sym_hide] = ACTIONS(1640), - [anon_sym_hide_DASHenv] = ACTIONS(1640), - [anon_sym_overlay] = ACTIONS(1640), - [anon_sym_new] = ACTIONS(1640), - [anon_sym_as] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_STAR_STAR] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_SLASH] = ACTIONS(1640), - [anon_sym_mod] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_bit_DASHshl] = ACTIONS(1640), - [anon_sym_bit_DASHshr] = ACTIONS(1640), - [anon_sym_EQ_EQ] = ACTIONS(1642), - [anon_sym_BANG_EQ] = ACTIONS(1642), - [anon_sym_LT2] = ACTIONS(1640), - [anon_sym_LT_EQ] = ACTIONS(1642), - [anon_sym_GT_EQ] = ACTIONS(1642), - [anon_sym_not_DASHin] = ACTIONS(1640), - [anon_sym_starts_DASHwith] = ACTIONS(1640), - [anon_sym_ends_DASHwith] = ACTIONS(1640), - [anon_sym_EQ_TILDE] = ACTIONS(1642), - [anon_sym_BANG_TILDE] = ACTIONS(1642), - [anon_sym_bit_DASHand] = ACTIONS(1640), - [anon_sym_bit_DASHxor] = ACTIONS(1640), - [anon_sym_bit_DASHor] = ACTIONS(1640), - [anon_sym_and] = ACTIONS(1640), - [anon_sym_xor] = ACTIONS(1640), - [anon_sym_or] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1642), - [aux_sym__val_number_token2] = ACTIONS(1642), - [aux_sym__val_number_token3] = ACTIONS(1642), - [aux_sym__val_number_token4] = ACTIONS(1640), - [aux_sym__val_number_token5] = ACTIONS(1642), - [aux_sym__val_number_token6] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1642), - [sym__str_single_quotes] = ACTIONS(1642), - [sym__str_back_ticks] = ACTIONS(1642), - [aux_sym__record_key_token2] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_if] = ACTIONS(159), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(159), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(3), }, [749] = { [sym_comment] = STATE(749), - [anon_sym_export] = ACTIONS(1658), - [anon_sym_alias] = ACTIONS(1658), - [anon_sym_let] = ACTIONS(1658), - [anon_sym_let_DASHenv] = ACTIONS(1658), - [anon_sym_mut] = ACTIONS(1658), - [anon_sym_const] = ACTIONS(1658), - [sym_cmd_identifier] = ACTIONS(1658), - [anon_sym_def] = ACTIONS(1658), - [anon_sym_export_DASHenv] = ACTIONS(1658), - [anon_sym_extern] = ACTIONS(1658), - [anon_sym_module] = ACTIONS(1658), - [anon_sym_use] = ACTIONS(1658), - [anon_sym_COMMA] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_error] = ACTIONS(1658), - [anon_sym_list] = ACTIONS(1658), - [anon_sym_GT] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_continue] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_in] = ACTIONS(1658), - [anon_sym_loop] = ACTIONS(1658), - [anon_sym_make] = ACTIONS(1658), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_do] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_match] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_DOT] = ACTIONS(1660), - [anon_sym_try] = ACTIONS(1658), - [anon_sym_catch] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_source] = ACTIONS(1658), - [anon_sym_source_DASHenv] = ACTIONS(1658), - [anon_sym_register] = ACTIONS(1658), - [anon_sym_hide] = ACTIONS(1658), - [anon_sym_hide_DASHenv] = ACTIONS(1658), - [anon_sym_overlay] = ACTIONS(1658), - [anon_sym_new] = ACTIONS(1658), - [anon_sym_as] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_STAR_STAR] = ACTIONS(1660), - [anon_sym_PLUS_PLUS] = ACTIONS(1660), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_mod] = ACTIONS(1658), - [anon_sym_SLASH_SLASH] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_bit_DASHshl] = ACTIONS(1658), - [anon_sym_bit_DASHshr] = ACTIONS(1658), - [anon_sym_EQ_EQ] = ACTIONS(1660), - [anon_sym_BANG_EQ] = ACTIONS(1660), - [anon_sym_LT2] = ACTIONS(1658), - [anon_sym_LT_EQ] = ACTIONS(1660), - [anon_sym_GT_EQ] = ACTIONS(1660), - [anon_sym_not_DASHin] = ACTIONS(1658), - [anon_sym_starts_DASHwith] = ACTIONS(1658), - [anon_sym_ends_DASHwith] = ACTIONS(1658), - [anon_sym_EQ_TILDE] = ACTIONS(1660), - [anon_sym_BANG_TILDE] = ACTIONS(1660), - [anon_sym_bit_DASHand] = ACTIONS(1658), - [anon_sym_bit_DASHxor] = ACTIONS(1658), - [anon_sym_bit_DASHor] = ACTIONS(1658), - [anon_sym_and] = ACTIONS(1658), - [anon_sym_xor] = ACTIONS(1658), - [anon_sym_or] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1660), - [aux_sym__val_number_token2] = ACTIONS(1660), - [aux_sym__val_number_token3] = ACTIONS(1660), - [aux_sym__val_number_token4] = ACTIONS(1658), - [aux_sym__val_number_token5] = ACTIONS(1660), - [aux_sym__val_number_token6] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1660), - [sym__str_single_quotes] = ACTIONS(1660), - [sym__str_back_ticks] = ACTIONS(1660), - [aux_sym__record_key_token2] = ACTIONS(1658), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_list] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_make] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_else] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_catch] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_new] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(1788), + [anon_sym_STAR_STAR] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1421), + [anon_sym_BANG_TILDE] = ACTIONS(1421), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1421), + [aux_sym__val_number_token2] = ACTIONS(1421), + [aux_sym__val_number_token3] = ACTIONS(1421), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__str_single_quotes] = ACTIONS(1421), + [sym__str_back_ticks] = ACTIONS(1421), + [aux_sym__record_key_token2] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(3), }, [750] = { [sym_comment] = STATE(750), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_EQ_GT] = ACTIONS(189), + [anon_sym_DOT2] = ACTIONS(1790), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(3), }, [751] = { [sym_comment] = STATE(751), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_list] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_make] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_else] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_catch] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_new] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(1788), + [anon_sym_STAR_STAR] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1421), + [anon_sym_BANG_TILDE] = ACTIONS(1421), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1421), + [aux_sym__val_number_token2] = ACTIONS(1421), + [aux_sym__val_number_token3] = ACTIONS(1421), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__str_single_quotes] = ACTIONS(1421), + [sym__str_back_ticks] = ACTIONS(1421), + [aux_sym__record_key_token2] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(3), }, [752] = { [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_DOLLAR] = ACTIONS(1439), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_list] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_make] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT2] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_catch] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_QMARK2] = ACTIONS(1439), + [anon_sym_STAR_STAR] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1439), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1439), + [anon_sym_BANG_TILDE] = ACTIONS(1439), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1439), + [aux_sym__val_number_token2] = ACTIONS(1439), + [aux_sym__val_number_token3] = ACTIONS(1439), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1439), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1439), + [sym__str_single_quotes] = ACTIONS(1439), + [sym__str_back_ticks] = ACTIONS(1439), + [aux_sym__record_key_token2] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(3), }, [753] = { [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1530), - [anon_sym_BANG_TILDE] = ACTIONS(1530), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_EQ_GT] = ACTIONS(117), + [anon_sym_DOT2] = ACTIONS(117), + [anon_sym_ns] = ACTIONS(117), + [anon_sym_s] = ACTIONS(117), + [anon_sym_us] = ACTIONS(117), + [anon_sym_ms] = ACTIONS(117), + [anon_sym_sec] = ACTIONS(117), + [anon_sym_min] = ACTIONS(117), + [anon_sym_hr] = ACTIONS(117), + [anon_sym_day] = ACTIONS(117), + [anon_sym_wk] = ACTIONS(117), + [anon_sym_b] = ACTIONS(117), + [anon_sym_B] = ACTIONS(117), + [anon_sym_kb] = ACTIONS(117), + [anon_sym_kB] = ACTIONS(117), + [anon_sym_Kb] = ACTIONS(117), + [anon_sym_KB] = ACTIONS(117), + [anon_sym_mb] = ACTIONS(117), + [anon_sym_mB] = ACTIONS(117), + [anon_sym_Mb] = ACTIONS(117), + [anon_sym_MB] = ACTIONS(117), + [anon_sym_gb] = ACTIONS(117), + [anon_sym_gB] = ACTIONS(117), + [anon_sym_Gb] = ACTIONS(117), + [anon_sym_GB] = ACTIONS(117), + [anon_sym_tb] = ACTIONS(117), + [anon_sym_tB] = ACTIONS(117), + [anon_sym_Tb] = ACTIONS(117), + [anon_sym_TB] = ACTIONS(117), + [anon_sym_pb] = ACTIONS(117), + [anon_sym_pB] = ACTIONS(117), + [anon_sym_Pb] = ACTIONS(117), + [anon_sym_PB] = ACTIONS(117), + [anon_sym_eb] = ACTIONS(117), + [anon_sym_eB] = ACTIONS(117), + [anon_sym_Eb] = ACTIONS(117), + [anon_sym_EB] = ACTIONS(117), + [anon_sym_kib] = ACTIONS(117), + [anon_sym_kiB] = ACTIONS(117), + [anon_sym_kIB] = ACTIONS(117), + [anon_sym_kIb] = ACTIONS(117), + [anon_sym_Kib] = ACTIONS(117), + [anon_sym_KIb] = ACTIONS(117), + [anon_sym_KIB] = ACTIONS(117), + [anon_sym_mib] = ACTIONS(117), + [anon_sym_miB] = ACTIONS(117), + [anon_sym_mIB] = ACTIONS(117), + [anon_sym_mIb] = ACTIONS(117), + [anon_sym_Mib] = ACTIONS(117), + [anon_sym_MIb] = ACTIONS(117), + [anon_sym_MIB] = ACTIONS(117), + [anon_sym_gib] = ACTIONS(117), + [anon_sym_giB] = ACTIONS(117), + [anon_sym_gIB] = ACTIONS(117), + [anon_sym_gIb] = ACTIONS(117), + [anon_sym_Gib] = ACTIONS(117), + [anon_sym_GIb] = ACTIONS(117), + [anon_sym_GIB] = ACTIONS(117), + [anon_sym_tib] = ACTIONS(117), + [anon_sym_tiB] = ACTIONS(117), + [anon_sym_tIB] = ACTIONS(117), + [anon_sym_tIb] = ACTIONS(117), + [anon_sym_Tib] = ACTIONS(117), + [anon_sym_TIb] = ACTIONS(117), + [anon_sym_TIB] = ACTIONS(117), + [anon_sym_pib] = ACTIONS(117), + [anon_sym_piB] = ACTIONS(117), + [anon_sym_pIB] = ACTIONS(117), + [anon_sym_pIb] = ACTIONS(117), + [anon_sym_Pib] = ACTIONS(117), + [anon_sym_PIb] = ACTIONS(117), + [anon_sym_PIB] = ACTIONS(117), + [anon_sym_eib] = ACTIONS(117), + [anon_sym_eiB] = ACTIONS(117), + [anon_sym_eIB] = ACTIONS(117), + [anon_sym_eIb] = ACTIONS(117), + [anon_sym_Eib] = ACTIONS(117), + [anon_sym_EIb] = ACTIONS(117), + [anon_sym_EIB] = ACTIONS(117), + [aux_sym_unquoted_token6] = ACTIONS(115), [anon_sym_POUND] = ACTIONS(3), }, [754] = { [sym_comment] = STATE(754), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_EQ_GT] = ACTIONS(109), + [anon_sym_DOT2] = ACTIONS(109), + [anon_sym_ns] = ACTIONS(109), + [anon_sym_s] = ACTIONS(109), + [anon_sym_us] = ACTIONS(109), + [anon_sym_ms] = ACTIONS(109), + [anon_sym_sec] = ACTIONS(109), + [anon_sym_min] = ACTIONS(109), + [anon_sym_hr] = ACTIONS(109), + [anon_sym_day] = ACTIONS(109), + [anon_sym_wk] = ACTIONS(109), + [anon_sym_b] = ACTIONS(109), + [anon_sym_B] = ACTIONS(109), + [anon_sym_kb] = ACTIONS(109), + [anon_sym_kB] = ACTIONS(109), + [anon_sym_Kb] = ACTIONS(109), + [anon_sym_KB] = ACTIONS(109), + [anon_sym_mb] = ACTIONS(109), + [anon_sym_mB] = ACTIONS(109), + [anon_sym_Mb] = ACTIONS(109), + [anon_sym_MB] = ACTIONS(109), + [anon_sym_gb] = ACTIONS(109), + [anon_sym_gB] = ACTIONS(109), + [anon_sym_Gb] = ACTIONS(109), + [anon_sym_GB] = ACTIONS(109), + [anon_sym_tb] = ACTIONS(109), + [anon_sym_tB] = ACTIONS(109), + [anon_sym_Tb] = ACTIONS(109), + [anon_sym_TB] = ACTIONS(109), + [anon_sym_pb] = ACTIONS(109), + [anon_sym_pB] = ACTIONS(109), + [anon_sym_Pb] = ACTIONS(109), + [anon_sym_PB] = ACTIONS(109), + [anon_sym_eb] = ACTIONS(109), + [anon_sym_eB] = ACTIONS(109), + [anon_sym_Eb] = ACTIONS(109), + [anon_sym_EB] = ACTIONS(109), + [anon_sym_kib] = ACTIONS(109), + [anon_sym_kiB] = ACTIONS(109), + [anon_sym_kIB] = ACTIONS(109), + [anon_sym_kIb] = ACTIONS(109), + [anon_sym_Kib] = ACTIONS(109), + [anon_sym_KIb] = ACTIONS(109), + [anon_sym_KIB] = ACTIONS(109), + [anon_sym_mib] = ACTIONS(109), + [anon_sym_miB] = ACTIONS(109), + [anon_sym_mIB] = ACTIONS(109), + [anon_sym_mIb] = ACTIONS(109), + [anon_sym_Mib] = ACTIONS(109), + [anon_sym_MIb] = ACTIONS(109), + [anon_sym_MIB] = ACTIONS(109), + [anon_sym_gib] = ACTIONS(109), + [anon_sym_giB] = ACTIONS(109), + [anon_sym_gIB] = ACTIONS(109), + [anon_sym_gIb] = ACTIONS(109), + [anon_sym_Gib] = ACTIONS(109), + [anon_sym_GIb] = ACTIONS(109), + [anon_sym_GIB] = ACTIONS(109), + [anon_sym_tib] = ACTIONS(109), + [anon_sym_tiB] = ACTIONS(109), + [anon_sym_tIB] = ACTIONS(109), + [anon_sym_tIb] = ACTIONS(109), + [anon_sym_Tib] = ACTIONS(109), + [anon_sym_TIb] = ACTIONS(109), + [anon_sym_TIB] = ACTIONS(109), + [anon_sym_pib] = ACTIONS(109), + [anon_sym_piB] = ACTIONS(109), + [anon_sym_pIB] = ACTIONS(109), + [anon_sym_pIb] = ACTIONS(109), + [anon_sym_Pib] = ACTIONS(109), + [anon_sym_PIb] = ACTIONS(109), + [anon_sym_PIB] = ACTIONS(109), + [anon_sym_eib] = ACTIONS(109), + [anon_sym_eiB] = ACTIONS(109), + [anon_sym_eIB] = ACTIONS(109), + [anon_sym_eIb] = ACTIONS(109), + [anon_sym_Eib] = ACTIONS(109), + [anon_sym_EIb] = ACTIONS(109), + [anon_sym_EIB] = ACTIONS(109), + [aux_sym_unquoted_token6] = ACTIONS(107), [anon_sym_POUND] = ACTIONS(3), }, [755] = { [sym_comment] = STATE(755), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1530), - [anon_sym_BANG_TILDE] = ACTIONS(1530), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_DOT2] = ACTIONS(149), + [anon_sym_ns] = ACTIONS(149), + [anon_sym_s] = ACTIONS(149), + [anon_sym_us] = ACTIONS(149), + [anon_sym_ms] = ACTIONS(149), + [anon_sym_sec] = ACTIONS(149), + [anon_sym_min] = ACTIONS(149), + [anon_sym_hr] = ACTIONS(149), + [anon_sym_day] = ACTIONS(149), + [anon_sym_wk] = ACTIONS(149), + [anon_sym_b] = ACTIONS(149), + [anon_sym_B] = ACTIONS(149), + [anon_sym_kb] = ACTIONS(149), + [anon_sym_kB] = ACTIONS(149), + [anon_sym_Kb] = ACTIONS(149), + [anon_sym_KB] = ACTIONS(149), + [anon_sym_mb] = ACTIONS(149), + [anon_sym_mB] = ACTIONS(149), + [anon_sym_Mb] = ACTIONS(149), + [anon_sym_MB] = ACTIONS(149), + [anon_sym_gb] = ACTIONS(149), + [anon_sym_gB] = ACTIONS(149), + [anon_sym_Gb] = ACTIONS(149), + [anon_sym_GB] = ACTIONS(149), + [anon_sym_tb] = ACTIONS(149), + [anon_sym_tB] = ACTIONS(149), + [anon_sym_Tb] = ACTIONS(149), + [anon_sym_TB] = ACTIONS(149), + [anon_sym_pb] = ACTIONS(149), + [anon_sym_pB] = ACTIONS(149), + [anon_sym_Pb] = ACTIONS(149), + [anon_sym_PB] = ACTIONS(149), + [anon_sym_eb] = ACTIONS(149), + [anon_sym_eB] = ACTIONS(149), + [anon_sym_Eb] = ACTIONS(149), + [anon_sym_EB] = ACTIONS(149), + [anon_sym_kib] = ACTIONS(149), + [anon_sym_kiB] = ACTIONS(149), + [anon_sym_kIB] = ACTIONS(149), + [anon_sym_kIb] = ACTIONS(149), + [anon_sym_Kib] = ACTIONS(149), + [anon_sym_KIb] = ACTIONS(149), + [anon_sym_KIB] = ACTIONS(149), + [anon_sym_mib] = ACTIONS(149), + [anon_sym_miB] = ACTIONS(149), + [anon_sym_mIB] = ACTIONS(149), + [anon_sym_mIb] = ACTIONS(149), + [anon_sym_Mib] = ACTIONS(149), + [anon_sym_MIb] = ACTIONS(149), + [anon_sym_MIB] = ACTIONS(149), + [anon_sym_gib] = ACTIONS(149), + [anon_sym_giB] = ACTIONS(149), + [anon_sym_gIB] = ACTIONS(149), + [anon_sym_gIb] = ACTIONS(149), + [anon_sym_Gib] = ACTIONS(149), + [anon_sym_GIb] = ACTIONS(149), + [anon_sym_GIB] = ACTIONS(149), + [anon_sym_tib] = ACTIONS(149), + [anon_sym_tiB] = ACTIONS(149), + [anon_sym_tIB] = ACTIONS(149), + [anon_sym_tIb] = ACTIONS(149), + [anon_sym_Tib] = ACTIONS(149), + [anon_sym_TIb] = ACTIONS(149), + [anon_sym_TIB] = ACTIONS(149), + [anon_sym_pib] = ACTIONS(149), + [anon_sym_piB] = ACTIONS(149), + [anon_sym_pIB] = ACTIONS(149), + [anon_sym_pIb] = ACTIONS(149), + [anon_sym_Pib] = ACTIONS(149), + [anon_sym_PIb] = ACTIONS(149), + [anon_sym_PIB] = ACTIONS(149), + [anon_sym_eib] = ACTIONS(149), + [anon_sym_eiB] = ACTIONS(149), + [anon_sym_eIB] = ACTIONS(149), + [anon_sym_eIb] = ACTIONS(149), + [anon_sym_Eib] = ACTIONS(149), + [anon_sym_EIb] = ACTIONS(149), + [anon_sym_EIB] = ACTIONS(149), + [aux_sym_unquoted_token6] = ACTIONS(147), [anon_sym_POUND] = ACTIONS(3), }, [756] = { [sym_comment] = STATE(756), - [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), - [sym_cmd_identifier] = ACTIONS(1519), - [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_COMMA] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_DOLLAR] = ACTIONS(1644), - [anon_sym_error] = ACTIONS(1519), - [anon_sym_list] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_make] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1644), - [anon_sym_DOT] = ACTIONS(1644), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_catch] = 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_new] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1644), - [anon_sym_PLUS_PLUS] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1644), - [anon_sym_BANG_EQ] = ACTIONS(1644), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1644), - [anon_sym_BANG_TILDE] = ACTIONS(1644), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1644), - [aux_sym__val_number_token2] = ACTIONS(1644), - [aux_sym__val_number_token3] = ACTIONS(1644), - [aux_sym__val_number_token4] = ACTIONS(1519), - [aux_sym__val_number_token5] = ACTIONS(1644), - [aux_sym__val_number_token6] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1644), - [sym__str_single_quotes] = ACTIONS(1644), - [sym__str_back_ticks] = ACTIONS(1644), - [aux_sym__record_key_token2] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_list] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_make] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT2] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_catch] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_new] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_QMARK2] = ACTIONS(1443), + [anon_sym_STAR_STAR] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1443), + [anon_sym_BANG_EQ] = ACTIONS(1443), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1443), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1443), + [anon_sym_BANG_TILDE] = ACTIONS(1443), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1443), + [aux_sym__val_number_token2] = ACTIONS(1443), + [aux_sym__val_number_token3] = ACTIONS(1443), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1443), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1443), + [sym__str_single_quotes] = ACTIONS(1443), + [sym__str_back_ticks] = ACTIONS(1443), + [aux_sym__record_key_token2] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(3), }, [757] = { [sym_comment] = STATE(757), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1528), - [anon_sym_mod] = ACTIONS(1528), - [anon_sym_SLASH_SLASH] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1530), - [anon_sym_BANG_TILDE] = ACTIONS(1530), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_DOT2] = ACTIONS(159), + [anon_sym_ns] = ACTIONS(159), + [anon_sym_s] = ACTIONS(159), + [anon_sym_us] = ACTIONS(159), + [anon_sym_ms] = ACTIONS(159), + [anon_sym_sec] = ACTIONS(159), + [anon_sym_min] = ACTIONS(159), + [anon_sym_hr] = ACTIONS(159), + [anon_sym_day] = ACTIONS(159), + [anon_sym_wk] = ACTIONS(159), + [anon_sym_b] = ACTIONS(159), + [anon_sym_B] = ACTIONS(159), + [anon_sym_kb] = ACTIONS(159), + [anon_sym_kB] = ACTIONS(159), + [anon_sym_Kb] = ACTIONS(159), + [anon_sym_KB] = ACTIONS(159), + [anon_sym_mb] = ACTIONS(159), + [anon_sym_mB] = ACTIONS(159), + [anon_sym_Mb] = ACTIONS(159), + [anon_sym_MB] = ACTIONS(159), + [anon_sym_gb] = ACTIONS(159), + [anon_sym_gB] = ACTIONS(159), + [anon_sym_Gb] = ACTIONS(159), + [anon_sym_GB] = ACTIONS(159), + [anon_sym_tb] = ACTIONS(159), + [anon_sym_tB] = ACTIONS(159), + [anon_sym_Tb] = ACTIONS(159), + [anon_sym_TB] = ACTIONS(159), + [anon_sym_pb] = ACTIONS(159), + [anon_sym_pB] = ACTIONS(159), + [anon_sym_Pb] = ACTIONS(159), + [anon_sym_PB] = ACTIONS(159), + [anon_sym_eb] = ACTIONS(159), + [anon_sym_eB] = ACTIONS(159), + [anon_sym_Eb] = ACTIONS(159), + [anon_sym_EB] = ACTIONS(159), + [anon_sym_kib] = ACTIONS(159), + [anon_sym_kiB] = ACTIONS(159), + [anon_sym_kIB] = ACTIONS(159), + [anon_sym_kIb] = ACTIONS(159), + [anon_sym_Kib] = ACTIONS(159), + [anon_sym_KIb] = ACTIONS(159), + [anon_sym_KIB] = ACTIONS(159), + [anon_sym_mib] = ACTIONS(159), + [anon_sym_miB] = ACTIONS(159), + [anon_sym_mIB] = ACTIONS(159), + [anon_sym_mIb] = ACTIONS(159), + [anon_sym_Mib] = ACTIONS(159), + [anon_sym_MIb] = ACTIONS(159), + [anon_sym_MIB] = ACTIONS(159), + [anon_sym_gib] = ACTIONS(159), + [anon_sym_giB] = ACTIONS(159), + [anon_sym_gIB] = ACTIONS(159), + [anon_sym_gIb] = ACTIONS(159), + [anon_sym_Gib] = ACTIONS(159), + [anon_sym_GIb] = ACTIONS(159), + [anon_sym_GIB] = ACTIONS(159), + [anon_sym_tib] = ACTIONS(159), + [anon_sym_tiB] = ACTIONS(159), + [anon_sym_tIB] = ACTIONS(159), + [anon_sym_tIb] = ACTIONS(159), + [anon_sym_Tib] = ACTIONS(159), + [anon_sym_TIb] = ACTIONS(159), + [anon_sym_TIB] = ACTIONS(159), + [anon_sym_pib] = ACTIONS(159), + [anon_sym_piB] = ACTIONS(159), + [anon_sym_pIB] = ACTIONS(159), + [anon_sym_pIb] = ACTIONS(159), + [anon_sym_Pib] = ACTIONS(159), + [anon_sym_PIb] = ACTIONS(159), + [anon_sym_PIB] = ACTIONS(159), + [anon_sym_eib] = ACTIONS(159), + [anon_sym_eiB] = ACTIONS(159), + [anon_sym_eIB] = ACTIONS(159), + [anon_sym_eIb] = ACTIONS(159), + [anon_sym_Eib] = ACTIONS(159), + [anon_sym_EIb] = ACTIONS(159), + [anon_sym_EIB] = ACTIONS(159), + [aux_sym_unquoted_token6] = ACTIONS(157), [anon_sym_POUND] = ACTIONS(3), }, [758] = { [sym_comment] = STATE(758), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_alias] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_let_DASHenv] = ACTIONS(1584), - [anon_sym_mut] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [sym_cmd_identifier] = ACTIONS(1584), - [anon_sym_def] = ACTIONS(1584), - [anon_sym_export_DASHenv] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_module] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1584), - [anon_sym_COMMA] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_DOLLAR] = ACTIONS(1586), - [anon_sym_error] = ACTIONS(1584), - [anon_sym_list] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_in] = ACTIONS(1584), - [anon_sym_loop] = ACTIONS(1584), - [anon_sym_make] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_try] = ACTIONS(1584), - [anon_sym_catch] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_source] = ACTIONS(1584), - [anon_sym_source_DASHenv] = ACTIONS(1584), - [anon_sym_register] = ACTIONS(1584), - [anon_sym_hide] = ACTIONS(1584), - [anon_sym_hide_DASHenv] = ACTIONS(1584), - [anon_sym_overlay] = ACTIONS(1584), - [anon_sym_new] = ACTIONS(1584), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_STAR_STAR] = ACTIONS(1586), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_mod] = ACTIONS(1584), - [anon_sym_SLASH_SLASH] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_bit_DASHshl] = ACTIONS(1584), - [anon_sym_bit_DASHshr] = ACTIONS(1584), - [anon_sym_EQ_EQ] = ACTIONS(1586), - [anon_sym_BANG_EQ] = ACTIONS(1586), - [anon_sym_LT2] = ACTIONS(1584), - [anon_sym_LT_EQ] = ACTIONS(1586), - [anon_sym_GT_EQ] = ACTIONS(1586), - [anon_sym_not_DASHin] = ACTIONS(1584), - [anon_sym_starts_DASHwith] = ACTIONS(1584), - [anon_sym_ends_DASHwith] = ACTIONS(1584), - [anon_sym_EQ_TILDE] = ACTIONS(1586), - [anon_sym_BANG_TILDE] = ACTIONS(1586), - [anon_sym_bit_DASHand] = ACTIONS(1584), - [anon_sym_bit_DASHxor] = ACTIONS(1584), - [anon_sym_bit_DASHor] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_xor] = ACTIONS(1584), - [anon_sym_or] = ACTIONS(1584), - [aux_sym__val_number_decimal_token1] = ACTIONS(1584), - [aux_sym__val_number_token1] = ACTIONS(1586), - [aux_sym__val_number_token2] = ACTIONS(1586), - [aux_sym__val_number_token3] = ACTIONS(1586), - [aux_sym__val_number_token4] = ACTIONS(1584), - [aux_sym__val_number_token5] = ACTIONS(1586), - [aux_sym__val_number_token6] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1586), - [sym__str_single_quotes] = ACTIONS(1586), - [sym__str_back_ticks] = ACTIONS(1586), - [aux_sym__record_key_token2] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(189), + [anon_sym_EQ_GT] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(3), }, [759] = { [sym_comment] = STATE(759), + [anon_sym_export] = ACTIONS(1524), + [anon_sym_alias] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_let_DASHenv] = ACTIONS(1524), + [anon_sym_mut] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [sym_cmd_identifier] = ACTIONS(1524), + [anon_sym_def] = ACTIONS(1524), + [anon_sym_export_DASHenv] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_module] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_error] = ACTIONS(1524), + [anon_sym_list] = ACTIONS(1524), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_in] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_make] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1524), + [anon_sym_catch] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_source] = ACTIONS(1524), + [anon_sym_source_DASHenv] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_hide] = ACTIONS(1524), + [anon_sym_hide_DASHenv] = ACTIONS(1524), + [anon_sym_overlay] = ACTIONS(1524), + [anon_sym_new] = ACTIONS(1524), + [anon_sym_as] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_STAR_STAR] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_SLASH_SLASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_bit_DASHshl] = ACTIONS(1524), + [anon_sym_bit_DASHshr] = ACTIONS(1524), + [anon_sym_EQ_EQ] = ACTIONS(1526), + [anon_sym_BANG_EQ] = ACTIONS(1526), + [anon_sym_LT2] = ACTIONS(1524), + [anon_sym_LT_EQ] = ACTIONS(1526), + [anon_sym_GT_EQ] = ACTIONS(1526), + [anon_sym_not_DASHin] = ACTIONS(1524), + [anon_sym_starts_DASHwith] = ACTIONS(1524), + [anon_sym_ends_DASHwith] = ACTIONS(1524), + [anon_sym_EQ_TILDE] = ACTIONS(1526), + [anon_sym_BANG_TILDE] = ACTIONS(1526), + [anon_sym_bit_DASHand] = ACTIONS(1524), + [anon_sym_bit_DASHxor] = ACTIONS(1524), + [anon_sym_bit_DASHor] = ACTIONS(1524), + [anon_sym_and] = ACTIONS(1524), + [anon_sym_xor] = ACTIONS(1524), + [anon_sym_or] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1526), + [aux_sym__val_number_token2] = ACTIONS(1526), + [aux_sym__val_number_token3] = ACTIONS(1526), + [aux_sym__val_number_token4] = ACTIONS(1524), + [aux_sym__val_number_token5] = ACTIONS(1526), + [aux_sym__val_number_token6] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym__str_single_quotes] = ACTIONS(1526), + [sym__str_back_ticks] = ACTIONS(1526), + [aux_sym__record_key_token2] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(3), + }, + [760] = { + [sym_comment] = STATE(760), [anon_sym_export] = ACTIONS(213), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(213), @@ -162196,7 +164030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(213), [anon_sym_match] = ACTIONS(213), [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_DOT2] = ACTIONS(1792), [anon_sym_try] = ACTIONS(213), [anon_sym_catch] = ACTIONS(213), [anon_sym_return] = ACTIONS(213), @@ -162246,4524 +164081,6205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), }, - [760] = { - [sym_comment] = STATE(760), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(3), - }, [761] = { [sym_comment] = STATE(761), - [anon_sym_export] = ACTIONS(1654), - [anon_sym_alias] = ACTIONS(1654), - [anon_sym_let] = ACTIONS(1654), - [anon_sym_let_DASHenv] = ACTIONS(1654), - [anon_sym_mut] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [sym_cmd_identifier] = ACTIONS(1654), - [anon_sym_def] = ACTIONS(1654), - [anon_sym_export_DASHenv] = ACTIONS(1654), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_use] = ACTIONS(1654), - [anon_sym_COMMA] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_error] = ACTIONS(1654), - [anon_sym_list] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_in] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_make] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_else] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_try] = ACTIONS(1654), - [anon_sym_catch] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_source] = ACTIONS(1654), - [anon_sym_source_DASHenv] = ACTIONS(1654), - [anon_sym_register] = ACTIONS(1654), - [anon_sym_hide] = ACTIONS(1654), - [anon_sym_hide_DASHenv] = ACTIONS(1654), - [anon_sym_overlay] = ACTIONS(1654), - [anon_sym_new] = ACTIONS(1654), - [anon_sym_as] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_STAR_STAR] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(1654), - [anon_sym_mod] = ACTIONS(1654), - [anon_sym_SLASH_SLASH] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_bit_DASHshl] = ACTIONS(1654), - [anon_sym_bit_DASHshr] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1656), - [anon_sym_BANG_EQ] = ACTIONS(1656), - [anon_sym_LT2] = ACTIONS(1654), - [anon_sym_LT_EQ] = ACTIONS(1656), - [anon_sym_GT_EQ] = ACTIONS(1656), - [anon_sym_not_DASHin] = ACTIONS(1654), - [anon_sym_starts_DASHwith] = ACTIONS(1654), - [anon_sym_ends_DASHwith] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1656), - [anon_sym_BANG_TILDE] = ACTIONS(1656), - [anon_sym_bit_DASHand] = ACTIONS(1654), - [anon_sym_bit_DASHxor] = ACTIONS(1654), - [anon_sym_bit_DASHor] = ACTIONS(1654), - [anon_sym_and] = ACTIONS(1654), - [anon_sym_xor] = ACTIONS(1654), - [anon_sym_or] = ACTIONS(1654), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_token1] = ACTIONS(1656), - [aux_sym__val_number_token2] = ACTIONS(1656), - [aux_sym__val_number_token3] = ACTIONS(1656), - [aux_sym__val_number_token4] = ACTIONS(1654), - [aux_sym__val_number_token5] = ACTIONS(1656), - [aux_sym__val_number_token6] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1656), - [sym__str_single_quotes] = ACTIONS(1656), - [sym__str_back_ticks] = ACTIONS(1656), - [aux_sym__record_key_token2] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(3), - }, - [762] = { - [sym_comment] = STATE(762), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1530), - [anon_sym_BANG_TILDE] = ACTIONS(1530), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(3), - }, - [763] = { - [sym_comment] = STATE(763), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_alias] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_let_DASHenv] = ACTIONS(1491), - [anon_sym_mut] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [sym_cmd_identifier] = ACTIONS(1491), - [anon_sym_def] = ACTIONS(1491), - [anon_sym_export_DASHenv] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1491), - [anon_sym_list] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_make] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_catch] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_source] = ACTIONS(1491), - [anon_sym_source_DASHenv] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_hide] = ACTIONS(1491), - [anon_sym_hide_DASHenv] = ACTIONS(1491), - [anon_sym_overlay] = ACTIONS(1491), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1493), - [anon_sym_BANG_TILDE] = ACTIONS(1493), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1493), - [aux_sym__val_number_token2] = ACTIONS(1493), - [aux_sym__val_number_token3] = ACTIONS(1493), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1493), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym__str_single_quotes] = ACTIONS(1493), - [sym__str_back_ticks] = ACTIONS(1493), - [aux_sym__record_key_token2] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(3), - }, - [764] = { - [sym_comment] = STATE(764), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_alias] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_let_DASHenv] = ACTIONS(1509), + [anon_sym_mut] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [sym_cmd_identifier] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1509), + [anon_sym_export_DASHenv] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_DOLLAR] = ACTIONS(1511), + [anon_sym_error] = ACTIONS(1509), + [anon_sym_list] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_make] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1511), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_catch] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_source] = ACTIONS(1509), + [anon_sym_source_DASHenv] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_hide] = ACTIONS(1509), + [anon_sym_hide_DASHenv] = ACTIONS(1509), + [anon_sym_overlay] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_bit_DASHshl] = ACTIONS(1509), + [anon_sym_bit_DASHshr] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1511), + [anon_sym_BANG_EQ] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1511), + [anon_sym_not_DASHin] = ACTIONS(1509), + [anon_sym_starts_DASHwith] = ACTIONS(1509), + [anon_sym_ends_DASHwith] = ACTIONS(1509), + [anon_sym_EQ_TILDE] = ACTIONS(1511), + [anon_sym_BANG_TILDE] = ACTIONS(1511), + [anon_sym_bit_DASHand] = ACTIONS(1509), + [anon_sym_bit_DASHxor] = ACTIONS(1509), + [anon_sym_bit_DASHor] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1509), + [anon_sym_xor] = ACTIONS(1509), + [anon_sym_or] = ACTIONS(1509), + [aux_sym__val_number_decimal_token1] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1511), + [aux_sym__val_number_token2] = ACTIONS(1511), + [aux_sym__val_number_token3] = ACTIONS(1511), + [aux_sym__val_number_token4] = ACTIONS(1509), + [aux_sym__val_number_token5] = ACTIONS(1511), + [aux_sym__val_number_token6] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1511), + [sym__str_single_quotes] = ACTIONS(1511), + [sym__str_back_ticks] = ACTIONS(1511), + [aux_sym__record_key_token2] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(3), + }, + [762] = { + [sym_comment] = STATE(762), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_EQ_GT] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), + [aux_sym_unquoted_token6] = ACTIONS(1315), + [anon_sym_POUND] = ACTIONS(3), + }, + [763] = { + [sym_comment] = STATE(763), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_if] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_ns] = ACTIONS(223), + [anon_sym_s] = ACTIONS(223), + [anon_sym_us] = ACTIONS(223), + [anon_sym_ms] = ACTIONS(223), + [anon_sym_sec] = ACTIONS(223), + [anon_sym_min] = ACTIONS(223), + [anon_sym_hr] = ACTIONS(223), + [anon_sym_day] = ACTIONS(223), + [anon_sym_wk] = ACTIONS(223), + [anon_sym_b] = ACTIONS(223), + [anon_sym_B] = ACTIONS(223), + [anon_sym_kb] = ACTIONS(223), + [anon_sym_kB] = ACTIONS(223), + [anon_sym_Kb] = ACTIONS(223), + [anon_sym_KB] = ACTIONS(223), + [anon_sym_mb] = ACTIONS(223), + [anon_sym_mB] = ACTIONS(223), + [anon_sym_Mb] = ACTIONS(223), + [anon_sym_MB] = ACTIONS(223), + [anon_sym_gb] = ACTIONS(223), + [anon_sym_gB] = ACTIONS(223), + [anon_sym_Gb] = ACTIONS(223), + [anon_sym_GB] = ACTIONS(223), + [anon_sym_tb] = ACTIONS(223), + [anon_sym_tB] = ACTIONS(223), + [anon_sym_Tb] = ACTIONS(223), + [anon_sym_TB] = ACTIONS(223), + [anon_sym_pb] = ACTIONS(223), + [anon_sym_pB] = ACTIONS(223), + [anon_sym_Pb] = ACTIONS(223), + [anon_sym_PB] = ACTIONS(223), + [anon_sym_eb] = ACTIONS(223), + [anon_sym_eB] = ACTIONS(223), + [anon_sym_Eb] = ACTIONS(223), + [anon_sym_EB] = ACTIONS(223), + [anon_sym_kib] = ACTIONS(223), + [anon_sym_kiB] = ACTIONS(223), + [anon_sym_kIB] = ACTIONS(223), + [anon_sym_kIb] = ACTIONS(223), + [anon_sym_Kib] = ACTIONS(223), + [anon_sym_KIb] = ACTIONS(223), + [anon_sym_KIB] = ACTIONS(223), + [anon_sym_mib] = ACTIONS(223), + [anon_sym_miB] = ACTIONS(223), + [anon_sym_mIB] = ACTIONS(223), + [anon_sym_mIb] = ACTIONS(223), + [anon_sym_Mib] = ACTIONS(223), + [anon_sym_MIb] = ACTIONS(223), + [anon_sym_MIB] = ACTIONS(223), + [anon_sym_gib] = ACTIONS(223), + [anon_sym_giB] = ACTIONS(223), + [anon_sym_gIB] = ACTIONS(223), + [anon_sym_gIb] = ACTIONS(223), + [anon_sym_Gib] = ACTIONS(223), + [anon_sym_GIb] = ACTIONS(223), + [anon_sym_GIB] = ACTIONS(223), + [anon_sym_tib] = ACTIONS(223), + [anon_sym_tiB] = ACTIONS(223), + [anon_sym_tIB] = ACTIONS(223), + [anon_sym_tIb] = ACTIONS(223), + [anon_sym_Tib] = ACTIONS(223), + [anon_sym_TIb] = ACTIONS(223), + [anon_sym_TIB] = ACTIONS(223), + [anon_sym_pib] = ACTIONS(223), + [anon_sym_piB] = ACTIONS(223), + [anon_sym_pIB] = ACTIONS(223), + [anon_sym_pIb] = ACTIONS(223), + [anon_sym_Pib] = ACTIONS(223), + [anon_sym_PIb] = ACTIONS(223), + [anon_sym_PIB] = ACTIONS(223), + [anon_sym_eib] = ACTIONS(223), + [anon_sym_eiB] = ACTIONS(223), + [anon_sym_eIB] = ACTIONS(223), + [anon_sym_eIb] = ACTIONS(223), + [anon_sym_Eib] = ACTIONS(223), + [anon_sym_EIb] = ACTIONS(223), + [anon_sym_EIB] = ACTIONS(223), [anon_sym_POUND] = ACTIONS(3), }, + [764] = { + [sym_comment] = STATE(764), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_list] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_make] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_as] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1375), + [anon_sym_BANG_TILDE] = ACTIONS(1375), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1377), + [sym__str_single_quotes] = ACTIONS(1377), + [sym__str_back_ticks] = ACTIONS(1377), + [aux_sym__record_key_token2] = ACTIONS(1375), + [aux_sym_unquoted_token3] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(105), + }, [765] = { [sym_comment] = STATE(765), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_ns] = ACTIONS(1325), + [anon_sym_s] = ACTIONS(1325), + [anon_sym_us] = ACTIONS(1325), + [anon_sym_ms] = ACTIONS(1325), + [anon_sym_sec] = ACTIONS(1325), + [anon_sym_min] = ACTIONS(1325), + [anon_sym_hr] = ACTIONS(1325), + [anon_sym_day] = ACTIONS(1325), + [anon_sym_wk] = ACTIONS(1325), + [anon_sym_b] = ACTIONS(1329), + [anon_sym_B] = ACTIONS(1329), + [anon_sym_kb] = ACTIONS(1329), + [anon_sym_kB] = ACTIONS(1329), + [anon_sym_Kb] = ACTIONS(1329), + [anon_sym_KB] = ACTIONS(1329), + [anon_sym_mb] = ACTIONS(1329), + [anon_sym_mB] = ACTIONS(1329), + [anon_sym_Mb] = ACTIONS(1329), + [anon_sym_MB] = ACTIONS(1329), + [anon_sym_gb] = ACTIONS(1329), + [anon_sym_gB] = ACTIONS(1329), + [anon_sym_Gb] = ACTIONS(1329), + [anon_sym_GB] = ACTIONS(1329), + [anon_sym_tb] = ACTIONS(1329), + [anon_sym_tB] = ACTIONS(1329), + [anon_sym_Tb] = ACTIONS(1329), + [anon_sym_TB] = ACTIONS(1329), + [anon_sym_pb] = ACTIONS(1329), + [anon_sym_pB] = ACTIONS(1329), + [anon_sym_Pb] = ACTIONS(1329), + [anon_sym_PB] = ACTIONS(1329), + [anon_sym_eb] = ACTIONS(1329), + [anon_sym_eB] = ACTIONS(1329), + [anon_sym_Eb] = ACTIONS(1329), + [anon_sym_EB] = ACTIONS(1329), + [anon_sym_kib] = ACTIONS(1329), + [anon_sym_kiB] = ACTIONS(1329), + [anon_sym_kIB] = ACTIONS(1329), + [anon_sym_kIb] = ACTIONS(1329), + [anon_sym_Kib] = ACTIONS(1329), + [anon_sym_KIb] = ACTIONS(1329), + [anon_sym_KIB] = ACTIONS(1329), + [anon_sym_mib] = ACTIONS(1329), + [anon_sym_miB] = ACTIONS(1329), + [anon_sym_mIB] = ACTIONS(1329), + [anon_sym_mIb] = ACTIONS(1329), + [anon_sym_Mib] = ACTIONS(1329), + [anon_sym_MIb] = ACTIONS(1329), + [anon_sym_MIB] = ACTIONS(1329), + [anon_sym_gib] = ACTIONS(1329), + [anon_sym_giB] = ACTIONS(1329), + [anon_sym_gIB] = ACTIONS(1329), + [anon_sym_gIb] = ACTIONS(1329), + [anon_sym_Gib] = ACTIONS(1329), + [anon_sym_GIb] = ACTIONS(1329), + [anon_sym_GIB] = ACTIONS(1329), + [anon_sym_tib] = ACTIONS(1329), + [anon_sym_tiB] = ACTIONS(1329), + [anon_sym_tIB] = ACTIONS(1329), + [anon_sym_tIb] = ACTIONS(1329), + [anon_sym_Tib] = ACTIONS(1329), + [anon_sym_TIb] = ACTIONS(1329), + [anon_sym_TIB] = ACTIONS(1329), + [anon_sym_pib] = ACTIONS(1329), + [anon_sym_piB] = ACTIONS(1329), + [anon_sym_pIB] = ACTIONS(1329), + [anon_sym_pIb] = ACTIONS(1329), + [anon_sym_Pib] = ACTIONS(1329), + [anon_sym_PIb] = ACTIONS(1329), + [anon_sym_PIB] = ACTIONS(1329), + [anon_sym_eib] = ACTIONS(1329), + [anon_sym_eiB] = ACTIONS(1329), + [anon_sym_eIB] = ACTIONS(1329), + [anon_sym_eIb] = ACTIONS(1329), + [anon_sym_Eib] = ACTIONS(1329), + [anon_sym_EIb] = ACTIONS(1329), + [anon_sym_EIB] = ACTIONS(1329), [anon_sym_POUND] = ACTIONS(3), }, [766] = { [sym_comment] = STATE(766), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1530), - [anon_sym_BANG_TILDE] = ACTIONS(1530), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_list] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_make] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_else] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_catch] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_new] = ACTIONS(1532), + [anon_sym_as] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1534), + [anon_sym_BANG_EQ] = ACTIONS(1534), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1534), + [anon_sym_GT_EQ] = ACTIONS(1534), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1534), + [anon_sym_BANG_TILDE] = ACTIONS(1534), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1534), + [aux_sym__val_number_token2] = ACTIONS(1534), + [aux_sym__val_number_token3] = ACTIONS(1534), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1534), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym__str_single_quotes] = ACTIONS(1534), + [sym__str_back_ticks] = ACTIONS(1534), + [aux_sym__record_key_token2] = ACTIONS(1532), [anon_sym_POUND] = ACTIONS(3), }, [767] = { [sym_comment] = STATE(767), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1753), - [anon_sym_starts_DASHwith] = ACTIONS(1753), - [anon_sym_ends_DASHwith] = ACTIONS(1753), - [anon_sym_EQ_TILDE] = ACTIONS(1530), - [anon_sym_BANG_TILDE] = ACTIONS(1530), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [sym_cmd_identifier] = ACTIONS(1536), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_list] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_make] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(1792), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_catch] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [aux_sym__record_key_token2] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(3), }, [768] = { [sym_comment] = STATE(768), - [anon_sym_export] = ACTIONS(1515), - [anon_sym_alias] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_let_DASHenv] = ACTIONS(1515), - [anon_sym_mut] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [sym_cmd_identifier] = ACTIONS(1515), - [anon_sym_def] = ACTIONS(1515), - [anon_sym_export_DASHenv] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_module] = ACTIONS(1515), - [anon_sym_use] = ACTIONS(1515), - [anon_sym_COMMA] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_error] = ACTIONS(1515), - [anon_sym_list] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1515), - [anon_sym_make] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_else] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1515), - [anon_sym_catch] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_source] = ACTIONS(1515), - [anon_sym_source_DASHenv] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_hide] = ACTIONS(1515), - [anon_sym_hide_DASHenv] = ACTIONS(1515), - [anon_sym_overlay] = ACTIONS(1515), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_as] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1644), - [anon_sym_PLUS_PLUS] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1644), - [anon_sym_BANG_EQ] = ACTIONS(1644), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1644), - [anon_sym_BANG_TILDE] = ACTIONS(1644), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1517), - [aux_sym__val_number_token2] = ACTIONS(1517), - [aux_sym__val_number_token3] = ACTIONS(1517), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1517), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym__str_single_quotes] = ACTIONS(1517), - [sym__str_back_ticks] = ACTIONS(1517), - [aux_sym__record_key_token2] = ACTIONS(1515), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_DOLLAR] = ACTIONS(1547), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_list] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_make] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_DOT] = ACTIONS(1547), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_catch] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_new] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1547), + [anon_sym_BANG_TILDE] = ACTIONS(1547), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [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(1545), + [aux_sym__val_number_token5] = ACTIONS(1547), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1547), + [sym__str_single_quotes] = ACTIONS(1547), + [sym__str_back_ticks] = ACTIONS(1547), + [aux_sym__record_key_token2] = ACTIONS(1545), + [aux_sym_unquoted_token5] = ACTIONS(1794), [anon_sym_POUND] = ACTIONS(3), }, [769] = { [sym_comment] = STATE(769), - [anon_sym_export] = ACTIONS(1507), - [anon_sym_alias] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_let_DASHenv] = ACTIONS(1507), - [anon_sym_mut] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [sym_cmd_identifier] = ACTIONS(1507), - [anon_sym_def] = ACTIONS(1507), - [anon_sym_export_DASHenv] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_module] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1509), - [anon_sym_error] = ACTIONS(1507), - [anon_sym_list] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_make] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_else] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1507), - [anon_sym_catch] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_source] = ACTIONS(1507), - [anon_sym_source_DASHenv] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_hide] = ACTIONS(1507), - [anon_sym_hide_DASHenv] = ACTIONS(1507), - [anon_sym_overlay] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_as] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1509), - [anon_sym_BANG_TILDE] = ACTIONS(1509), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1509), - [aux_sym__val_number_token2] = ACTIONS(1509), - [aux_sym__val_number_token3] = ACTIONS(1509), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1509), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym__str_single_quotes] = ACTIONS(1509), - [sym__str_back_ticks] = ACTIONS(1509), - [aux_sym__record_key_token2] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(189), + [anon_sym_EQ_GT] = ACTIONS(189), + [anon_sym_ns] = ACTIONS(189), + [anon_sym_s] = ACTIONS(189), + [anon_sym_us] = ACTIONS(189), + [anon_sym_ms] = ACTIONS(189), + [anon_sym_sec] = ACTIONS(189), + [anon_sym_min] = ACTIONS(189), + [anon_sym_hr] = ACTIONS(189), + [anon_sym_day] = ACTIONS(189), + [anon_sym_wk] = ACTIONS(189), + [anon_sym_b] = ACTIONS(189), + [anon_sym_B] = ACTIONS(189), + [anon_sym_kb] = ACTIONS(189), + [anon_sym_kB] = ACTIONS(189), + [anon_sym_Kb] = ACTIONS(189), + [anon_sym_KB] = ACTIONS(189), + [anon_sym_mb] = ACTIONS(189), + [anon_sym_mB] = ACTIONS(189), + [anon_sym_Mb] = ACTIONS(189), + [anon_sym_MB] = ACTIONS(189), + [anon_sym_gb] = ACTIONS(189), + [anon_sym_gB] = ACTIONS(189), + [anon_sym_Gb] = ACTIONS(189), + [anon_sym_GB] = ACTIONS(189), + [anon_sym_tb] = ACTIONS(189), + [anon_sym_tB] = ACTIONS(189), + [anon_sym_Tb] = ACTIONS(189), + [anon_sym_TB] = ACTIONS(189), + [anon_sym_pb] = ACTIONS(189), + [anon_sym_pB] = ACTIONS(189), + [anon_sym_Pb] = ACTIONS(189), + [anon_sym_PB] = ACTIONS(189), + [anon_sym_eb] = ACTIONS(189), + [anon_sym_eB] = ACTIONS(189), + [anon_sym_Eb] = ACTIONS(189), + [anon_sym_EB] = ACTIONS(189), + [anon_sym_kib] = ACTIONS(189), + [anon_sym_kiB] = ACTIONS(189), + [anon_sym_kIB] = ACTIONS(189), + [anon_sym_kIb] = ACTIONS(189), + [anon_sym_Kib] = ACTIONS(189), + [anon_sym_KIb] = ACTIONS(189), + [anon_sym_KIB] = ACTIONS(189), + [anon_sym_mib] = ACTIONS(189), + [anon_sym_miB] = ACTIONS(189), + [anon_sym_mIB] = ACTIONS(189), + [anon_sym_mIb] = ACTIONS(189), + [anon_sym_Mib] = ACTIONS(189), + [anon_sym_MIb] = ACTIONS(189), + [anon_sym_MIB] = ACTIONS(189), + [anon_sym_gib] = ACTIONS(189), + [anon_sym_giB] = ACTIONS(189), + [anon_sym_gIB] = ACTIONS(189), + [anon_sym_gIb] = ACTIONS(189), + [anon_sym_Gib] = ACTIONS(189), + [anon_sym_GIb] = ACTIONS(189), + [anon_sym_GIB] = ACTIONS(189), + [anon_sym_tib] = ACTIONS(189), + [anon_sym_tiB] = ACTIONS(189), + [anon_sym_tIB] = ACTIONS(189), + [anon_sym_tIb] = ACTIONS(189), + [anon_sym_Tib] = ACTIONS(189), + [anon_sym_TIb] = ACTIONS(189), + [anon_sym_TIB] = ACTIONS(189), + [anon_sym_pib] = ACTIONS(189), + [anon_sym_piB] = ACTIONS(189), + [anon_sym_pIB] = ACTIONS(189), + [anon_sym_pIb] = ACTIONS(189), + [anon_sym_Pib] = ACTIONS(189), + [anon_sym_PIb] = ACTIONS(189), + [anon_sym_PIB] = ACTIONS(189), + [anon_sym_eib] = ACTIONS(189), + [anon_sym_eiB] = ACTIONS(189), + [anon_sym_eIB] = ACTIONS(189), + [anon_sym_eIb] = ACTIONS(189), + [anon_sym_Eib] = ACTIONS(189), + [anon_sym_EIb] = ACTIONS(189), + [anon_sym_EIB] = ACTIONS(189), [anon_sym_POUND] = ACTIONS(3), }, [770] = { [sym_comment] = STATE(770), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1753), - [anon_sym_starts_DASHwith] = ACTIONS(1753), - [anon_sym_ends_DASHwith] = ACTIONS(1753), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1767), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [sym_cmd_identifier] = ACTIONS(1513), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_list] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_make] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_else] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_catch] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1515), + [anon_sym_BANG_EQ] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1515), + [anon_sym_BANG_TILDE] = ACTIONS(1515), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1515), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [aux_sym__record_key_token2] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(3), }, [771] = { [sym_comment] = STATE(771), - [anon_sym_export] = ACTIONS(1668), - [anon_sym_alias] = ACTIONS(1668), - [anon_sym_let] = ACTIONS(1668), - [anon_sym_let_DASHenv] = ACTIONS(1668), - [anon_sym_mut] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1668), - [sym_cmd_identifier] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1668), - [anon_sym_export_DASHenv] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_module] = ACTIONS(1668), - [anon_sym_use] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_error] = ACTIONS(1668), - [anon_sym_list] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_in] = ACTIONS(1668), - [anon_sym_loop] = ACTIONS(1668), - [anon_sym_make] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1668), - [anon_sym_do] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1668), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_try] = ACTIONS(1668), - [anon_sym_catch] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_source] = ACTIONS(1668), - [anon_sym_source_DASHenv] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1668), - [anon_sym_hide] = ACTIONS(1668), - [anon_sym_hide_DASHenv] = ACTIONS(1668), - [anon_sym_overlay] = ACTIONS(1668), - [anon_sym_new] = ACTIONS(1668), - [anon_sym_as] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_SLASH] = ACTIONS(1668), - [anon_sym_mod] = ACTIONS(1668), - [anon_sym_SLASH_SLASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_bit_DASHshl] = ACTIONS(1668), - [anon_sym_bit_DASHshr] = ACTIONS(1668), - [anon_sym_EQ_EQ] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1670), - [anon_sym_LT2] = ACTIONS(1668), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_not_DASHin] = ACTIONS(1668), - [anon_sym_starts_DASHwith] = ACTIONS(1668), - [anon_sym_ends_DASHwith] = ACTIONS(1668), - [anon_sym_EQ_TILDE] = ACTIONS(1670), - [anon_sym_BANG_TILDE] = ACTIONS(1670), - [anon_sym_bit_DASHand] = ACTIONS(1668), - [anon_sym_bit_DASHxor] = ACTIONS(1668), - [anon_sym_bit_DASHor] = ACTIONS(1668), - [anon_sym_and] = ACTIONS(1668), - [anon_sym_xor] = ACTIONS(1668), - [anon_sym_or] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1670), - [aux_sym__val_number_token2] = ACTIONS(1670), - [aux_sym__val_number_token3] = ACTIONS(1670), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1670), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym__str_single_quotes] = ACTIONS(1670), - [sym__str_back_ticks] = ACTIONS(1670), - [aux_sym__record_key_token2] = ACTIONS(1668), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_alias] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_let_DASHenv] = ACTIONS(1520), + [anon_sym_mut] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [sym_cmd_identifier] = ACTIONS(1520), + [anon_sym_def] = ACTIONS(1520), + [anon_sym_export_DASHenv] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_module] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_error] = ACTIONS(1520), + [anon_sym_list] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_in] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_make] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_else] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1520), + [anon_sym_catch] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_source] = ACTIONS(1520), + [anon_sym_source_DASHenv] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_hide] = ACTIONS(1520), + [anon_sym_hide_DASHenv] = ACTIONS(1520), + [anon_sym_overlay] = ACTIONS(1520), + [anon_sym_new] = ACTIONS(1520), + [anon_sym_as] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_STAR_STAR] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_bit_DASHshl] = ACTIONS(1520), + [anon_sym_bit_DASHshr] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_LT2] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_not_DASHin] = ACTIONS(1520), + [anon_sym_starts_DASHwith] = ACTIONS(1520), + [anon_sym_ends_DASHwith] = ACTIONS(1520), + [anon_sym_EQ_TILDE] = ACTIONS(1522), + [anon_sym_BANG_TILDE] = ACTIONS(1522), + [anon_sym_bit_DASHand] = ACTIONS(1520), + [anon_sym_bit_DASHxor] = ACTIONS(1520), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1520), + [anon_sym_xor] = ACTIONS(1520), + [anon_sym_or] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1522), + [aux_sym__val_number_token2] = ACTIONS(1522), + [aux_sym__val_number_token3] = ACTIONS(1522), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym__str_single_quotes] = ACTIONS(1522), + [sym__str_back_ticks] = ACTIONS(1522), + [aux_sym__record_key_token2] = ACTIONS(1520), [anon_sym_POUND] = ACTIONS(3), }, [772] = { [sym_comment] = STATE(772), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, [773] = { [sym_comment] = STATE(773), - [anon_sym_export] = ACTIONS(1636), - [anon_sym_alias] = ACTIONS(1636), - [anon_sym_let] = ACTIONS(1636), - [anon_sym_let_DASHenv] = ACTIONS(1636), - [anon_sym_mut] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [sym_cmd_identifier] = ACTIONS(1636), - [anon_sym_def] = ACTIONS(1636), - [anon_sym_export_DASHenv] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1636), - [anon_sym_module] = ACTIONS(1636), - [anon_sym_use] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_error] = ACTIONS(1636), - [anon_sym_list] = ACTIONS(1636), - [anon_sym_GT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1636), - [anon_sym_loop] = ACTIONS(1636), - [anon_sym_make] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_do] = ACTIONS(1636), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_else] = ACTIONS(1636), - [anon_sym_match] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_DOT] = ACTIONS(1638), - [anon_sym_try] = ACTIONS(1636), - [anon_sym_catch] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_source] = ACTIONS(1636), - [anon_sym_source_DASHenv] = ACTIONS(1636), - [anon_sym_register] = ACTIONS(1636), - [anon_sym_hide] = ACTIONS(1636), - [anon_sym_hide_DASHenv] = ACTIONS(1636), - [anon_sym_overlay] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(1636), - [anon_sym_as] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_STAR_STAR] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1636), - [anon_sym_mod] = ACTIONS(1636), - [anon_sym_SLASH_SLASH] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_bit_DASHshl] = ACTIONS(1636), - [anon_sym_bit_DASHshr] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1638), - [anon_sym_BANG_EQ] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1638), - [anon_sym_GT_EQ] = ACTIONS(1638), - [anon_sym_not_DASHin] = ACTIONS(1636), - [anon_sym_starts_DASHwith] = ACTIONS(1636), - [anon_sym_ends_DASHwith] = ACTIONS(1636), - [anon_sym_EQ_TILDE] = ACTIONS(1638), - [anon_sym_BANG_TILDE] = ACTIONS(1638), - [anon_sym_bit_DASHand] = ACTIONS(1636), - [anon_sym_bit_DASHxor] = ACTIONS(1636), - [anon_sym_bit_DASHor] = ACTIONS(1636), - [anon_sym_and] = ACTIONS(1636), - [anon_sym_xor] = ACTIONS(1636), - [anon_sym_or] = ACTIONS(1636), - [aux_sym__val_number_decimal_token1] = ACTIONS(1636), - [aux_sym__val_number_token1] = ACTIONS(1638), - [aux_sym__val_number_token2] = ACTIONS(1638), - [aux_sym__val_number_token3] = ACTIONS(1638), - [aux_sym__val_number_token4] = ACTIONS(1636), - [aux_sym__val_number_token5] = ACTIONS(1638), - [aux_sym__val_number_token6] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1638), - [sym__str_single_quotes] = ACTIONS(1638), - [sym__str_back_ticks] = ACTIONS(1638), - [aux_sym__record_key_token2] = ACTIONS(1636), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1796), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_not_DASHin] = ACTIONS(1800), + [anon_sym_starts_DASHwith] = ACTIONS(1800), + [anon_sym_ends_DASHwith] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1812), + [anon_sym_BANG_TILDE] = ACTIONS(1812), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [774] = { [sym_comment] = STATE(774), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_alias] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_let_DASHenv] = ACTIONS(1454), - [anon_sym_mut] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [sym_cmd_identifier] = ACTIONS(1454), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_export_DASHenv] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_error] = ACTIONS(1454), - [anon_sym_list] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_make] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_catch] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_source] = ACTIONS(1454), - [anon_sym_source_DASHenv] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_hide_DASHenv] = ACTIONS(1454), - [anon_sym_overlay] = ACTIONS(1454), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1456), - [anon_sym_BANG_EQ] = ACTIONS(1456), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1456), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1456), - [anon_sym_BANG_TILDE] = ACTIONS(1456), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1456), - [aux_sym__val_number_token2] = ACTIONS(1456), - [aux_sym__val_number_token3] = ACTIONS(1456), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1456), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym__str_single_quotes] = ACTIONS(1456), - [sym__str_back_ticks] = ACTIONS(1456), - [aux_sym__record_key_token2] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [sym_cmd_identifier] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_COMMA] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DOT] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_STAR_STAR] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1659), + [anon_sym_mod] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_bit_DASHshl] = ACTIONS(1659), + [anon_sym_bit_DASHshr] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1659), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1661), + [anon_sym_not_DASHin] = ACTIONS(1659), + [anon_sym_starts_DASHwith] = ACTIONS(1659), + [anon_sym_ends_DASHwith] = ACTIONS(1659), + [anon_sym_EQ_TILDE] = ACTIONS(1661), + [anon_sym_BANG_TILDE] = ACTIONS(1661), + [anon_sym_bit_DASHand] = ACTIONS(1659), + [anon_sym_bit_DASHxor] = ACTIONS(1659), + [anon_sym_bit_DASHor] = ACTIONS(1659), + [anon_sym_and] = ACTIONS(1659), + [anon_sym_xor] = ACTIONS(1659), + [anon_sym_or] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [aux_sym__val_number_token4] = ACTIONS(1659), + [aux_sym__val_number_token5] = ACTIONS(1661), + [aux_sym__val_number_token6] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [aux_sym__record_key_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, [775] = { [sym_comment] = STATE(775), - [anon_sym_export] = ACTIONS(1572), - [anon_sym_alias] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(1572), - [anon_sym_let_DASHenv] = ACTIONS(1572), - [anon_sym_mut] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [sym_cmd_identifier] = ACTIONS(1572), - [anon_sym_def] = ACTIONS(1572), - [anon_sym_export_DASHenv] = ACTIONS(1572), - [anon_sym_extern] = ACTIONS(1572), - [anon_sym_module] = ACTIONS(1572), - [anon_sym_use] = ACTIONS(1572), - [anon_sym_COMMA] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_DOLLAR] = ACTIONS(1574), - [anon_sym_error] = ACTIONS(1572), - [anon_sym_list] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1572), - [anon_sym_loop] = ACTIONS(1572), - [anon_sym_make] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_else] = ACTIONS(1572), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1574), - [anon_sym_try] = ACTIONS(1572), - [anon_sym_catch] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_source] = ACTIONS(1572), - [anon_sym_source_DASHenv] = ACTIONS(1572), - [anon_sym_register] = ACTIONS(1572), - [anon_sym_hide] = ACTIONS(1572), - [anon_sym_hide_DASHenv] = ACTIONS(1572), - [anon_sym_overlay] = ACTIONS(1572), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_as] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_STAR_STAR] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1572), - [anon_sym_mod] = ACTIONS(1572), - [anon_sym_SLASH_SLASH] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_bit_DASHshl] = ACTIONS(1572), - [anon_sym_bit_DASHshr] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1574), - [anon_sym_BANG_EQ] = ACTIONS(1574), - [anon_sym_LT2] = ACTIONS(1572), - [anon_sym_LT_EQ] = ACTIONS(1574), - [anon_sym_GT_EQ] = ACTIONS(1574), - [anon_sym_not_DASHin] = ACTIONS(1572), - [anon_sym_starts_DASHwith] = ACTIONS(1572), - [anon_sym_ends_DASHwith] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1574), - [anon_sym_BANG_TILDE] = ACTIONS(1574), - [anon_sym_bit_DASHand] = ACTIONS(1572), - [anon_sym_bit_DASHxor] = ACTIONS(1572), - [anon_sym_bit_DASHor] = ACTIONS(1572), - [anon_sym_and] = ACTIONS(1572), - [anon_sym_xor] = ACTIONS(1572), - [anon_sym_or] = ACTIONS(1572), - [aux_sym__val_number_decimal_token1] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1574), - [aux_sym__val_number_token2] = ACTIONS(1574), - [aux_sym__val_number_token3] = ACTIONS(1574), - [aux_sym__val_number_token4] = ACTIONS(1572), - [aux_sym__val_number_token5] = ACTIONS(1574), - [aux_sym__val_number_token6] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1574), - [sym__str_single_quotes] = ACTIONS(1574), - [sym__str_back_ticks] = ACTIONS(1574), - [aux_sym__record_key_token2] = ACTIONS(1572), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_alias] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_let_DASHenv] = ACTIONS(1655), + [anon_sym_mut] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [sym_cmd_identifier] = ACTIONS(1655), + [anon_sym_def] = ACTIONS(1655), + [anon_sym_export_DASHenv] = ACTIONS(1655), + [anon_sym_extern] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_use] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_error] = ACTIONS(1655), + [anon_sym_list] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_loop] = ACTIONS(1655), + [anon_sym_make] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_match] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_DOT] = ACTIONS(1657), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_catch] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_source] = ACTIONS(1655), + [anon_sym_source_DASHenv] = ACTIONS(1655), + [anon_sym_register] = ACTIONS(1655), + [anon_sym_hide] = ACTIONS(1655), + [anon_sym_hide_DASHenv] = ACTIONS(1655), + [anon_sym_overlay] = ACTIONS(1655), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_mod] = ACTIONS(1655), + [anon_sym_SLASH_SLASH] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_bit_DASHshl] = ACTIONS(1655), + [anon_sym_bit_DASHshr] = ACTIONS(1655), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_LT2] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_not_DASHin] = ACTIONS(1655), + [anon_sym_starts_DASHwith] = ACTIONS(1655), + [anon_sym_ends_DASHwith] = ACTIONS(1655), + [anon_sym_EQ_TILDE] = ACTIONS(1657), + [anon_sym_BANG_TILDE] = ACTIONS(1657), + [anon_sym_bit_DASHand] = ACTIONS(1655), + [anon_sym_bit_DASHxor] = ACTIONS(1655), + [anon_sym_bit_DASHor] = ACTIONS(1655), + [anon_sym_and] = ACTIONS(1655), + [anon_sym_xor] = ACTIONS(1655), + [anon_sym_or] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1655), + [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(1655), + [aux_sym__val_number_token5] = ACTIONS(1657), + [aux_sym__val_number_token6] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1657), + [sym__str_single_quotes] = ACTIONS(1657), + [sym__str_back_ticks] = ACTIONS(1657), + [aux_sym__record_key_token2] = ACTIONS(1655), [anon_sym_POUND] = ACTIONS(3), }, [776] = { [sym_comment] = STATE(776), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_alias] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_let_DASHenv] = ACTIONS(1568), - [anon_sym_mut] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [sym_cmd_identifier] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_export_DASHenv] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_use] = ACTIONS(1568), - [anon_sym_COMMA] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_error] = ACTIONS(1568), - [anon_sym_list] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_in] = ACTIONS(1568), - [anon_sym_loop] = ACTIONS(1568), - [anon_sym_make] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_else] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_DOT] = ACTIONS(1570), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_catch] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_source] = ACTIONS(1568), - [anon_sym_source_DASHenv] = ACTIONS(1568), - [anon_sym_register] = ACTIONS(1568), - [anon_sym_hide] = ACTIONS(1568), - [anon_sym_hide_DASHenv] = ACTIONS(1568), - [anon_sym_overlay] = ACTIONS(1568), - [anon_sym_new] = ACTIONS(1568), - [anon_sym_as] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_STAR_STAR] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1568), - [anon_sym_mod] = ACTIONS(1568), - [anon_sym_SLASH_SLASH] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_bit_DASHshl] = ACTIONS(1568), - [anon_sym_bit_DASHshr] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1570), - [anon_sym_BANG_EQ] = ACTIONS(1570), - [anon_sym_LT2] = ACTIONS(1568), - [anon_sym_LT_EQ] = ACTIONS(1570), - [anon_sym_GT_EQ] = ACTIONS(1570), - [anon_sym_not_DASHin] = ACTIONS(1568), - [anon_sym_starts_DASHwith] = ACTIONS(1568), - [anon_sym_ends_DASHwith] = ACTIONS(1568), - [anon_sym_EQ_TILDE] = ACTIONS(1570), - [anon_sym_BANG_TILDE] = ACTIONS(1570), - [anon_sym_bit_DASHand] = ACTIONS(1568), - [anon_sym_bit_DASHxor] = ACTIONS(1568), - [anon_sym_bit_DASHor] = ACTIONS(1568), - [anon_sym_and] = ACTIONS(1568), - [anon_sym_xor] = ACTIONS(1568), - [anon_sym_or] = ACTIONS(1568), - [aux_sym__val_number_decimal_token1] = ACTIONS(1568), - [aux_sym__val_number_token1] = ACTIONS(1570), - [aux_sym__val_number_token2] = ACTIONS(1570), - [aux_sym__val_number_token3] = ACTIONS(1570), - [aux_sym__val_number_token4] = ACTIONS(1568), - [aux_sym__val_number_token5] = ACTIONS(1570), - [aux_sym__val_number_token6] = ACTIONS(1568), - [anon_sym_DQUOTE] = ACTIONS(1570), - [sym__str_single_quotes] = ACTIONS(1570), - [sym__str_back_ticks] = ACTIONS(1570), - [aux_sym__record_key_token2] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1796), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_not_DASHin] = ACTIONS(1800), + [anon_sym_starts_DASHwith] = ACTIONS(1800), + [anon_sym_ends_DASHwith] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1812), + [anon_sym_BANG_TILDE] = ACTIONS(1812), + [anon_sym_bit_DASHand] = ACTIONS(1814), + [anon_sym_bit_DASHxor] = ACTIONS(1816), + [anon_sym_bit_DASHor] = ACTIONS(1818), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [777] = { [sym_comment] = STATE(777), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_alias] = ACTIONS(1624), - [anon_sym_let] = ACTIONS(1624), - [anon_sym_let_DASHenv] = ACTIONS(1624), - [anon_sym_mut] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [sym_cmd_identifier] = ACTIONS(1624), - [anon_sym_def] = ACTIONS(1624), - [anon_sym_export_DASHenv] = ACTIONS(1624), - [anon_sym_extern] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_use] = ACTIONS(1624), - [anon_sym_COMMA] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_DOLLAR] = ACTIONS(1626), - [anon_sym_error] = ACTIONS(1624), - [anon_sym_list] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_in] = ACTIONS(1624), - [anon_sym_loop] = ACTIONS(1624), - [anon_sym_make] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_else] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_try] = ACTIONS(1624), - [anon_sym_catch] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_source] = ACTIONS(1624), - [anon_sym_source_DASHenv] = ACTIONS(1624), - [anon_sym_register] = ACTIONS(1624), - [anon_sym_hide] = ACTIONS(1624), - [anon_sym_hide_DASHenv] = ACTIONS(1624), - [anon_sym_overlay] = ACTIONS(1624), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_as] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_STAR_STAR] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1626), - [anon_sym_SLASH] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_SLASH_SLASH] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_bit_DASHshl] = ACTIONS(1624), - [anon_sym_bit_DASHshr] = ACTIONS(1624), - [anon_sym_EQ_EQ] = ACTIONS(1626), - [anon_sym_BANG_EQ] = ACTIONS(1626), - [anon_sym_LT2] = ACTIONS(1624), - [anon_sym_LT_EQ] = ACTIONS(1626), - [anon_sym_GT_EQ] = ACTIONS(1626), - [anon_sym_not_DASHin] = ACTIONS(1624), - [anon_sym_starts_DASHwith] = ACTIONS(1624), - [anon_sym_ends_DASHwith] = ACTIONS(1624), - [anon_sym_EQ_TILDE] = ACTIONS(1626), - [anon_sym_BANG_TILDE] = ACTIONS(1626), - [anon_sym_bit_DASHand] = ACTIONS(1624), - [anon_sym_bit_DASHxor] = ACTIONS(1624), - [anon_sym_bit_DASHor] = ACTIONS(1624), - [anon_sym_and] = ACTIONS(1624), - [anon_sym_xor] = ACTIONS(1624), - [anon_sym_or] = ACTIONS(1624), - [aux_sym__val_number_decimal_token1] = ACTIONS(1624), - [aux_sym__val_number_token1] = ACTIONS(1626), - [aux_sym__val_number_token2] = ACTIONS(1626), - [aux_sym__val_number_token3] = ACTIONS(1626), - [aux_sym__val_number_token4] = ACTIONS(1624), - [aux_sym__val_number_token5] = ACTIONS(1626), - [aux_sym__val_number_token6] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1626), - [sym__str_single_quotes] = ACTIONS(1626), - [sym__str_back_ticks] = ACTIONS(1626), - [aux_sym__record_key_token2] = ACTIONS(1624), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1796), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_not_DASHin] = ACTIONS(1800), + [anon_sym_starts_DASHwith] = ACTIONS(1800), + [anon_sym_ends_DASHwith] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1812), + [anon_sym_BANG_TILDE] = ACTIONS(1812), + [anon_sym_bit_DASHand] = ACTIONS(1814), + [anon_sym_bit_DASHxor] = ACTIONS(1816), + [anon_sym_bit_DASHor] = ACTIONS(1818), + [anon_sym_and] = ACTIONS(1820), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [778] = { [sym_comment] = STATE(778), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, [779] = { [sym_comment] = STATE(779), - [anon_sym_export] = ACTIONS(1524), - [anon_sym_alias] = ACTIONS(1524), - [anon_sym_let] = ACTIONS(1524), - [anon_sym_let_DASHenv] = ACTIONS(1524), - [anon_sym_mut] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [sym_cmd_identifier] = ACTIONS(1524), - [anon_sym_def] = ACTIONS(1524), - [anon_sym_export_DASHenv] = ACTIONS(1524), - [anon_sym_extern] = ACTIONS(1524), - [anon_sym_module] = ACTIONS(1524), - [anon_sym_use] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_DOLLAR] = ACTIONS(1526), - [anon_sym_error] = ACTIONS(1524), - [anon_sym_list] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_in] = ACTIONS(1524), - [anon_sym_loop] = ACTIONS(1524), - [anon_sym_make] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_else] = ACTIONS(1524), - [anon_sym_match] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_DOT] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1524), - [anon_sym_catch] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_source] = ACTIONS(1524), - [anon_sym_source_DASHenv] = ACTIONS(1524), - [anon_sym_register] = ACTIONS(1524), - [anon_sym_hide] = ACTIONS(1524), - [anon_sym_hide_DASHenv] = ACTIONS(1524), - [anon_sym_overlay] = ACTIONS(1524), - [anon_sym_new] = ACTIONS(1524), - [anon_sym_as] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_STAR_STAR] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_mod] = ACTIONS(1524), - [anon_sym_SLASH_SLASH] = ACTIONS(1526), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_bit_DASHshl] = ACTIONS(1524), - [anon_sym_bit_DASHshr] = ACTIONS(1524), - [anon_sym_EQ_EQ] = ACTIONS(1526), - [anon_sym_BANG_EQ] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1526), - [anon_sym_GT_EQ] = ACTIONS(1526), - [anon_sym_not_DASHin] = ACTIONS(1524), - [anon_sym_starts_DASHwith] = ACTIONS(1524), - [anon_sym_ends_DASHwith] = ACTIONS(1524), - [anon_sym_EQ_TILDE] = ACTIONS(1526), - [anon_sym_BANG_TILDE] = ACTIONS(1526), - [anon_sym_bit_DASHand] = ACTIONS(1524), - [anon_sym_bit_DASHxor] = ACTIONS(1524), - [anon_sym_bit_DASHor] = ACTIONS(1524), - [anon_sym_and] = ACTIONS(1524), - [anon_sym_xor] = ACTIONS(1524), - [anon_sym_or] = ACTIONS(1524), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_token1] = ACTIONS(1526), - [aux_sym__val_number_token2] = ACTIONS(1526), - [aux_sym__val_number_token3] = ACTIONS(1526), - [aux_sym__val_number_token4] = ACTIONS(1524), - [aux_sym__val_number_token5] = ACTIONS(1526), - [aux_sym__val_number_token6] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1526), - [sym__str_single_quotes] = ACTIONS(1526), - [sym__str_back_ticks] = ACTIONS(1526), - [aux_sym__record_key_token2] = ACTIONS(1524), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1796), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_not_DASHin] = ACTIONS(1800), + [anon_sym_starts_DASHwith] = ACTIONS(1800), + [anon_sym_ends_DASHwith] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1812), + [anon_sym_BANG_TILDE] = ACTIONS(1812), + [anon_sym_bit_DASHand] = ACTIONS(1814), + [anon_sym_bit_DASHxor] = ACTIONS(1816), + [anon_sym_bit_DASHor] = ACTIONS(1818), + [anon_sym_and] = ACTIONS(1820), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1824), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [780] = { [sym_comment] = STATE(780), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1753), - [anon_sym_starts_DASHwith] = ACTIONS(1753), - [anon_sym_ends_DASHwith] = ACTIONS(1753), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1767), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1771), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [sym_cmd_identifier] = ACTIONS(1647), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1649), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_list] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_make] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_else] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1649), + [anon_sym_DOT] = ACTIONS(1649), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_catch] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1647), + [anon_sym_as] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_mod] = ACTIONS(1647), + [anon_sym_SLASH_SLASH] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_bit_DASHshl] = ACTIONS(1647), + [anon_sym_bit_DASHshr] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1649), + [anon_sym_BANG_EQ] = ACTIONS(1649), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ] = ACTIONS(1649), + [anon_sym_GT_EQ] = ACTIONS(1649), + [anon_sym_not_DASHin] = ACTIONS(1647), + [anon_sym_starts_DASHwith] = ACTIONS(1647), + [anon_sym_ends_DASHwith] = ACTIONS(1647), + [anon_sym_EQ_TILDE] = ACTIONS(1649), + [anon_sym_BANG_TILDE] = ACTIONS(1649), + [anon_sym_bit_DASHand] = ACTIONS(1647), + [anon_sym_bit_DASHxor] = ACTIONS(1647), + [anon_sym_bit_DASHor] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_xor] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_token1] = ACTIONS(1649), + [aux_sym__val_number_token2] = ACTIONS(1649), + [aux_sym__val_number_token3] = ACTIONS(1649), + [aux_sym__val_number_token4] = ACTIONS(1647), + [aux_sym__val_number_token5] = ACTIONS(1649), + [aux_sym__val_number_token6] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym__str_single_quotes] = ACTIONS(1649), + [sym__str_back_ticks] = ACTIONS(1649), + [aux_sym__record_key_token2] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(3), }, [781] = { [sym_comment] = STATE(781), - [anon_sym_export] = ACTIONS(1576), - [anon_sym_alias] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_let_DASHenv] = ACTIONS(1576), - [anon_sym_mut] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [sym_cmd_identifier] = ACTIONS(1576), - [anon_sym_def] = ACTIONS(1576), - [anon_sym_export_DASHenv] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_COMMA] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_DOLLAR] = ACTIONS(1578), - [anon_sym_error] = ACTIONS(1576), - [anon_sym_list] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_in] = ACTIONS(1576), - [anon_sym_loop] = ACTIONS(1576), - [anon_sym_make] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_else] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_DOT] = ACTIONS(1578), - [anon_sym_try] = ACTIONS(1576), - [anon_sym_catch] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_source] = ACTIONS(1576), - [anon_sym_source_DASHenv] = ACTIONS(1576), - [anon_sym_register] = ACTIONS(1576), - [anon_sym_hide] = ACTIONS(1576), - [anon_sym_hide_DASHenv] = ACTIONS(1576), - [anon_sym_overlay] = ACTIONS(1576), - [anon_sym_new] = ACTIONS(1576), - [anon_sym_as] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_STAR_STAR] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_SLASH] = ACTIONS(1576), - [anon_sym_mod] = ACTIONS(1576), - [anon_sym_SLASH_SLASH] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_bit_DASHshl] = ACTIONS(1576), - [anon_sym_bit_DASHshr] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT2] = ACTIONS(1576), - [anon_sym_LT_EQ] = ACTIONS(1578), - [anon_sym_GT_EQ] = ACTIONS(1578), - [anon_sym_not_DASHin] = ACTIONS(1576), - [anon_sym_starts_DASHwith] = ACTIONS(1576), - [anon_sym_ends_DASHwith] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1578), - [anon_sym_BANG_TILDE] = ACTIONS(1578), - [anon_sym_bit_DASHand] = ACTIONS(1576), - [anon_sym_bit_DASHxor] = ACTIONS(1576), - [anon_sym_bit_DASHor] = ACTIONS(1576), - [anon_sym_and] = ACTIONS(1576), - [anon_sym_xor] = ACTIONS(1576), - [anon_sym_or] = ACTIONS(1576), - [aux_sym__val_number_decimal_token1] = ACTIONS(1576), - [aux_sym__val_number_token1] = ACTIONS(1578), - [aux_sym__val_number_token2] = ACTIONS(1578), - [aux_sym__val_number_token3] = ACTIONS(1578), - [aux_sym__val_number_token4] = ACTIONS(1576), - [aux_sym__val_number_token5] = ACTIONS(1578), - [aux_sym__val_number_token6] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1578), - [sym__str_single_quotes] = ACTIONS(1578), - [sym__str_back_ticks] = ACTIONS(1578), - [aux_sym__record_key_token2] = ACTIONS(1576), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, [782] = { [sym_comment] = STATE(782), - [anon_sym_export] = ACTIONS(1600), - [anon_sym_alias] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_let_DASHenv] = ACTIONS(1600), - [anon_sym_mut] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [sym_cmd_identifier] = ACTIONS(1600), - [anon_sym_def] = ACTIONS(1600), - [anon_sym_export_DASHenv] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_module] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_error] = ACTIONS(1600), - [anon_sym_list] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_make] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_else] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_DOT] = ACTIONS(1602), - [anon_sym_try] = ACTIONS(1600), - [anon_sym_catch] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_source] = ACTIONS(1600), - [anon_sym_source_DASHenv] = ACTIONS(1600), - [anon_sym_register] = ACTIONS(1600), - [anon_sym_hide] = ACTIONS(1600), - [anon_sym_hide_DASHenv] = ACTIONS(1600), - [anon_sym_overlay] = ACTIONS(1600), - [anon_sym_new] = ACTIONS(1600), - [anon_sym_as] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1602), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1602), - [anon_sym_BANG_EQ] = ACTIONS(1602), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1602), - [anon_sym_GT_EQ] = ACTIONS(1602), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1602), - [anon_sym_BANG_TILDE] = ACTIONS(1602), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1602), - [aux_sym__val_number_token2] = ACTIONS(1602), - [aux_sym__val_number_token3] = ACTIONS(1602), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1602), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1602), - [sym__str_single_quotes] = ACTIONS(1602), - [sym__str_back_ticks] = ACTIONS(1602), - [aux_sym__record_key_token2] = ACTIONS(1600), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, [783] = { [sym_comment] = STATE(783), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1796), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_not_DASHin] = ACTIONS(1800), + [anon_sym_starts_DASHwith] = ACTIONS(1800), + [anon_sym_ends_DASHwith] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1812), + [anon_sym_BANG_TILDE] = ACTIONS(1812), + [anon_sym_bit_DASHand] = ACTIONS(1814), + [anon_sym_bit_DASHxor] = ACTIONS(1816), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [784] = { [sym_comment] = STATE(784), - [anon_sym_export] = ACTIONS(1600), - [anon_sym_alias] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_let_DASHenv] = ACTIONS(1600), - [anon_sym_mut] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [sym_cmd_identifier] = ACTIONS(1600), - [anon_sym_def] = ACTIONS(1600), - [anon_sym_export_DASHenv] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_module] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_error] = ACTIONS(1600), - [anon_sym_list] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_make] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_else] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_DOT] = ACTIONS(1602), - [anon_sym_try] = ACTIONS(1600), - [anon_sym_catch] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_source] = ACTIONS(1600), - [anon_sym_source_DASHenv] = ACTIONS(1600), - [anon_sym_register] = ACTIONS(1600), - [anon_sym_hide] = ACTIONS(1600), - [anon_sym_hide_DASHenv] = ACTIONS(1600), - [anon_sym_overlay] = ACTIONS(1600), - [anon_sym_new] = ACTIONS(1600), - [anon_sym_as] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1602), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1602), - [anon_sym_BANG_EQ] = ACTIONS(1602), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1602), - [anon_sym_GT_EQ] = ACTIONS(1602), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1602), - [anon_sym_BANG_TILDE] = ACTIONS(1602), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1602), - [aux_sym__val_number_token2] = ACTIONS(1602), - [aux_sym__val_number_token3] = ACTIONS(1602), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1602), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1602), - [sym__str_single_quotes] = ACTIONS(1602), - [sym__str_back_ticks] = ACTIONS(1602), - [aux_sym__record_key_token2] = ACTIONS(1600), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [sym_cmd_identifier] = ACTIONS(1599), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_COMMA] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_list] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_make] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_DOT] = ACTIONS(1601), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_new] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [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), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [aux_sym__record_key_token2] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [785] = { [sym_comment] = STATE(785), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1753), - [anon_sym_starts_DASHwith] = ACTIONS(1753), - [anon_sym_ends_DASHwith] = ACTIONS(1753), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1767), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1771), - [anon_sym_and] = ACTIONS(1773), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, [786] = { [sym_comment] = STATE(786), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1796), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_not_DASHin] = ACTIONS(1800), + [anon_sym_starts_DASHwith] = ACTIONS(1800), + [anon_sym_ends_DASHwith] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1812), + [anon_sym_BANG_TILDE] = ACTIONS(1812), + [anon_sym_bit_DASHand] = ACTIONS(1814), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [787] = { [sym_comment] = STATE(787), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_list] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_make] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_else] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_catch] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1428), - [anon_sym_BANG_TILDE] = ACTIONS(1428), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1428), - [aux_sym__val_number_token2] = ACTIONS(1428), - [aux_sym__val_number_token3] = ACTIONS(1428), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1428), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym__str_single_quotes] = ACTIONS(1428), - [sym__str_back_ticks] = ACTIONS(1428), - [aux_sym__record_key_token2] = ACTIONS(1426), + [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), + [sym_cmd_identifier] = ACTIONS(1445), + [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_COMMA] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_DOLLAR] = ACTIONS(1447), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_list] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_loop] = ACTIONS(1445), + [anon_sym_make] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_catch] = 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_new] = ACTIONS(1445), + [anon_sym_as] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1447), + [anon_sym_BANG_TILDE] = ACTIONS(1447), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [aux_sym__val_number_decimal_token1] = ACTIONS(1445), + [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(1447), + [aux_sym__val_number_token6] = ACTIONS(1445), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym__str_single_quotes] = ACTIONS(1447), + [sym__str_back_ticks] = ACTIONS(1447), + [aux_sym__record_key_token2] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(3), }, [788] = { [sym_comment] = STATE(788), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_alias] = ACTIONS(1580), - [anon_sym_let] = ACTIONS(1580), - [anon_sym_let_DASHenv] = ACTIONS(1580), - [anon_sym_mut] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [sym_cmd_identifier] = ACTIONS(1580), - [anon_sym_def] = ACTIONS(1580), - [anon_sym_export_DASHenv] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_use] = ACTIONS(1580), - [anon_sym_COMMA] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1582), - [anon_sym_error] = ACTIONS(1580), - [anon_sym_list] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1580), - [anon_sym_loop] = ACTIONS(1580), - [anon_sym_make] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_else] = ACTIONS(1580), - [anon_sym_match] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1582), - [anon_sym_try] = ACTIONS(1580), - [anon_sym_catch] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_source] = ACTIONS(1580), - [anon_sym_source_DASHenv] = ACTIONS(1580), - [anon_sym_register] = ACTIONS(1580), - [anon_sym_hide] = ACTIONS(1580), - [anon_sym_hide_DASHenv] = ACTIONS(1580), - [anon_sym_overlay] = ACTIONS(1580), - [anon_sym_new] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_STAR_STAR] = ACTIONS(1582), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1580), - [anon_sym_mod] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(1582), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_bit_DASHshl] = ACTIONS(1580), - [anon_sym_bit_DASHshr] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_not_DASHin] = ACTIONS(1580), - [anon_sym_starts_DASHwith] = ACTIONS(1580), - [anon_sym_ends_DASHwith] = ACTIONS(1580), - [anon_sym_EQ_TILDE] = ACTIONS(1582), - [anon_sym_BANG_TILDE] = ACTIONS(1582), - [anon_sym_bit_DASHand] = ACTIONS(1580), - [anon_sym_bit_DASHxor] = ACTIONS(1580), - [anon_sym_bit_DASHor] = ACTIONS(1580), - [anon_sym_and] = ACTIONS(1580), - [anon_sym_xor] = ACTIONS(1580), - [anon_sym_or] = ACTIONS(1580), - [aux_sym__val_number_decimal_token1] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1582), - [aux_sym__val_number_token2] = ACTIONS(1582), - [aux_sym__val_number_token3] = ACTIONS(1582), - [aux_sym__val_number_token4] = ACTIONS(1580), - [aux_sym__val_number_token5] = ACTIONS(1582), - [aux_sym__val_number_token6] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1582), - [sym__str_single_quotes] = ACTIONS(1582), - [sym__str_back_ticks] = ACTIONS(1582), - [aux_sym__record_key_token2] = ACTIONS(1580), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, [789] = { [sym_comment] = STATE(789), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [sym_cmd_identifier] = ACTIONS(1608), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_COMMA] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_STAR_STAR] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_SLASH_SLASH] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_bit_DASHshl] = ACTIONS(1608), - [anon_sym_bit_DASHshr] = ACTIONS(1608), - [anon_sym_EQ_EQ] = ACTIONS(1610), - [anon_sym_BANG_EQ] = ACTIONS(1610), - [anon_sym_LT2] = ACTIONS(1608), - [anon_sym_LT_EQ] = ACTIONS(1610), - [anon_sym_GT_EQ] = ACTIONS(1610), - [anon_sym_not_DASHin] = ACTIONS(1608), - [anon_sym_starts_DASHwith] = ACTIONS(1608), - [anon_sym_ends_DASHwith] = ACTIONS(1608), - [anon_sym_EQ_TILDE] = ACTIONS(1610), - [anon_sym_BANG_TILDE] = ACTIONS(1610), - [anon_sym_bit_DASHand] = ACTIONS(1608), - [anon_sym_bit_DASHxor] = ACTIONS(1608), - [anon_sym_bit_DASHor] = ACTIONS(1608), - [anon_sym_and] = ACTIONS(1608), - [anon_sym_xor] = ACTIONS(1608), - [anon_sym_or] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [aux_sym__val_number_token4] = ACTIONS(1608), - [aux_sym__val_number_token5] = ACTIONS(1610), - [aux_sym__val_number_token6] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [aux_sym__record_key_token2] = ACTIONS(1608), + [anon_sym_export] = ACTIONS(1591), + [anon_sym_alias] = ACTIONS(1591), + [anon_sym_let] = ACTIONS(1591), + [anon_sym_let_DASHenv] = ACTIONS(1591), + [anon_sym_mut] = ACTIONS(1591), + [anon_sym_const] = ACTIONS(1591), + [sym_cmd_identifier] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1591), + [anon_sym_export_DASHenv] = ACTIONS(1591), + [anon_sym_extern] = ACTIONS(1591), + [anon_sym_module] = ACTIONS(1591), + [anon_sym_use] = ACTIONS(1591), + [anon_sym_COMMA] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_DOLLAR] = ACTIONS(1593), + [anon_sym_error] = ACTIONS(1591), + [anon_sym_list] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_break] = ACTIONS(1591), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_for] = ACTIONS(1591), + [anon_sym_in] = ACTIONS(1591), + [anon_sym_loop] = ACTIONS(1591), + [anon_sym_make] = ACTIONS(1591), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_do] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1591), + [anon_sym_else] = ACTIONS(1591), + [anon_sym_match] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1591), + [anon_sym_catch] = ACTIONS(1591), + [anon_sym_return] = ACTIONS(1591), + [anon_sym_source] = ACTIONS(1591), + [anon_sym_source_DASHenv] = ACTIONS(1591), + [anon_sym_register] = ACTIONS(1591), + [anon_sym_hide] = ACTIONS(1591), + [anon_sym_hide_DASHenv] = ACTIONS(1591), + [anon_sym_overlay] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1591), + [anon_sym_as] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_STAR_STAR] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_mod] = ACTIONS(1591), + [anon_sym_SLASH_SLASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_bit_DASHshl] = ACTIONS(1591), + [anon_sym_bit_DASHshr] = ACTIONS(1591), + [anon_sym_EQ_EQ] = ACTIONS(1593), + [anon_sym_BANG_EQ] = ACTIONS(1593), + [anon_sym_LT2] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1593), + [anon_sym_GT_EQ] = ACTIONS(1593), + [anon_sym_not_DASHin] = ACTIONS(1591), + [anon_sym_starts_DASHwith] = ACTIONS(1591), + [anon_sym_ends_DASHwith] = ACTIONS(1591), + [anon_sym_EQ_TILDE] = ACTIONS(1593), + [anon_sym_BANG_TILDE] = ACTIONS(1593), + [anon_sym_bit_DASHand] = ACTIONS(1591), + [anon_sym_bit_DASHxor] = ACTIONS(1591), + [anon_sym_bit_DASHor] = ACTIONS(1591), + [anon_sym_and] = ACTIONS(1591), + [anon_sym_xor] = ACTIONS(1591), + [anon_sym_or] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1593), + [aux_sym__val_number_token2] = ACTIONS(1593), + [aux_sym__val_number_token3] = ACTIONS(1593), + [aux_sym__val_number_token4] = ACTIONS(1591), + [aux_sym__val_number_token5] = ACTIONS(1593), + [aux_sym__val_number_token6] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [sym__str_single_quotes] = ACTIONS(1593), + [sym__str_back_ticks] = ACTIONS(1593), + [aux_sym__record_key_token2] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(3), }, [790] = { [sym_comment] = STATE(790), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_alias] = ACTIONS(1564), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_let_DASHenv] = ACTIONS(1564), - [anon_sym_mut] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [sym_cmd_identifier] = ACTIONS(1564), - [anon_sym_def] = ACTIONS(1564), - [anon_sym_export_DASHenv] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_use] = ACTIONS(1564), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_DOLLAR] = ACTIONS(1566), - [anon_sym_error] = ACTIONS(1564), - [anon_sym_list] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_in] = ACTIONS(1564), - [anon_sym_loop] = ACTIONS(1564), - [anon_sym_make] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_else] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_try] = ACTIONS(1564), - [anon_sym_catch] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_source] = ACTIONS(1564), - [anon_sym_source_DASHenv] = ACTIONS(1564), - [anon_sym_register] = ACTIONS(1564), - [anon_sym_hide] = ACTIONS(1564), - [anon_sym_hide_DASHenv] = ACTIONS(1564), - [anon_sym_overlay] = ACTIONS(1564), - [anon_sym_new] = ACTIONS(1564), - [anon_sym_as] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_STAR_STAR] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_mod] = ACTIONS(1564), - [anon_sym_SLASH_SLASH] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_bit_DASHshl] = ACTIONS(1564), - [anon_sym_bit_DASHshr] = ACTIONS(1564), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT2] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [anon_sym_not_DASHin] = ACTIONS(1564), - [anon_sym_starts_DASHwith] = ACTIONS(1564), - [anon_sym_ends_DASHwith] = ACTIONS(1564), - [anon_sym_EQ_TILDE] = ACTIONS(1566), - [anon_sym_BANG_TILDE] = ACTIONS(1566), - [anon_sym_bit_DASHand] = ACTIONS(1564), - [anon_sym_bit_DASHxor] = ACTIONS(1564), - [anon_sym_bit_DASHor] = ACTIONS(1564), - [anon_sym_and] = ACTIONS(1564), - [anon_sym_xor] = ACTIONS(1564), - [anon_sym_or] = ACTIONS(1564), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_token1] = ACTIONS(1566), - [aux_sym__val_number_token2] = ACTIONS(1566), - [aux_sym__val_number_token3] = ACTIONS(1566), - [aux_sym__val_number_token4] = ACTIONS(1564), - [aux_sym__val_number_token5] = ACTIONS(1566), - [aux_sym__val_number_token6] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1566), - [sym__str_single_quotes] = ACTIONS(1566), - [sym__str_back_ticks] = ACTIONS(1566), - [aux_sym__record_key_token2] = ACTIONS(1564), + [anon_sym_export] = ACTIONS(1695), + [anon_sym_alias] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_let_DASHenv] = ACTIONS(1695), + [anon_sym_mut] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [sym_cmd_identifier] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1695), + [anon_sym_export_DASHenv] = ACTIONS(1695), + [anon_sym_extern] = ACTIONS(1695), + [anon_sym_module] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_error] = ACTIONS(1695), + [anon_sym_list] = ACTIONS(1695), + [anon_sym_GT] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_in] = ACTIONS(1695), + [anon_sym_loop] = ACTIONS(1695), + [anon_sym_make] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_do] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_else] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_DOT] = ACTIONS(1697), + [anon_sym_try] = ACTIONS(1695), + [anon_sym_catch] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_source] = ACTIONS(1695), + [anon_sym_source_DASHenv] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1695), + [anon_sym_hide] = ACTIONS(1695), + [anon_sym_hide_DASHenv] = ACTIONS(1695), + [anon_sym_overlay] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1695), + [anon_sym_as] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_STAR_STAR] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_bit_DASHshl] = ACTIONS(1695), + [anon_sym_bit_DASHshr] = ACTIONS(1695), + [anon_sym_EQ_EQ] = ACTIONS(1697), + [anon_sym_BANG_EQ] = ACTIONS(1697), + [anon_sym_LT2] = ACTIONS(1695), + [anon_sym_LT_EQ] = ACTIONS(1697), + [anon_sym_GT_EQ] = ACTIONS(1697), + [anon_sym_not_DASHin] = ACTIONS(1695), + [anon_sym_starts_DASHwith] = ACTIONS(1695), + [anon_sym_ends_DASHwith] = ACTIONS(1695), + [anon_sym_EQ_TILDE] = ACTIONS(1697), + [anon_sym_BANG_TILDE] = ACTIONS(1697), + [anon_sym_bit_DASHand] = ACTIONS(1695), + [anon_sym_bit_DASHxor] = ACTIONS(1695), + [anon_sym_bit_DASHor] = ACTIONS(1695), + [anon_sym_and] = ACTIONS(1695), + [anon_sym_xor] = ACTIONS(1695), + [anon_sym_or] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1697), + [aux_sym__val_number_token2] = ACTIONS(1697), + [aux_sym__val_number_token3] = ACTIONS(1697), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1697), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1697), + [sym__str_single_quotes] = ACTIONS(1697), + [sym__str_back_ticks] = ACTIONS(1697), + [aux_sym__record_key_token2] = ACTIONS(1695), [anon_sym_POUND] = ACTIONS(3), }, [791] = { [sym_comment] = STATE(791), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_alias] = ACTIONS(1632), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_let_DASHenv] = ACTIONS(1632), - [anon_sym_mut] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [sym_cmd_identifier] = ACTIONS(1632), - [anon_sym_def] = ACTIONS(1632), - [anon_sym_export_DASHenv] = ACTIONS(1632), - [anon_sym_extern] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_use] = ACTIONS(1632), - [anon_sym_COMMA] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_error] = ACTIONS(1632), - [anon_sym_list] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_loop] = ACTIONS(1632), - [anon_sym_make] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_else] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_DOT] = ACTIONS(1634), - [anon_sym_try] = ACTIONS(1632), - [anon_sym_catch] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_source] = ACTIONS(1632), - [anon_sym_source_DASHenv] = ACTIONS(1632), - [anon_sym_register] = ACTIONS(1632), - [anon_sym_hide] = ACTIONS(1632), - [anon_sym_hide_DASHenv] = ACTIONS(1632), - [anon_sym_overlay] = ACTIONS(1632), - [anon_sym_new] = ACTIONS(1632), - [anon_sym_as] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_STAR_STAR] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1632), - [anon_sym_mod] = ACTIONS(1632), - [anon_sym_SLASH_SLASH] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_bit_DASHshl] = ACTIONS(1632), - [anon_sym_bit_DASHshr] = ACTIONS(1632), - [anon_sym_EQ_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_LT2] = ACTIONS(1632), - [anon_sym_LT_EQ] = ACTIONS(1634), - [anon_sym_GT_EQ] = ACTIONS(1634), - [anon_sym_not_DASHin] = ACTIONS(1632), - [anon_sym_starts_DASHwith] = ACTIONS(1632), - [anon_sym_ends_DASHwith] = ACTIONS(1632), - [anon_sym_EQ_TILDE] = ACTIONS(1634), - [anon_sym_BANG_TILDE] = ACTIONS(1634), - [anon_sym_bit_DASHand] = ACTIONS(1632), - [anon_sym_bit_DASHxor] = ACTIONS(1632), - [anon_sym_bit_DASHor] = ACTIONS(1632), - [anon_sym_and] = ACTIONS(1632), - [anon_sym_xor] = ACTIONS(1632), - [anon_sym_or] = ACTIONS(1632), - [aux_sym__val_number_decimal_token1] = ACTIONS(1632), - [aux_sym__val_number_token1] = ACTIONS(1634), - [aux_sym__val_number_token2] = ACTIONS(1634), - [aux_sym__val_number_token3] = ACTIONS(1634), - [aux_sym__val_number_token4] = ACTIONS(1632), - [aux_sym__val_number_token5] = ACTIONS(1634), - [aux_sym__val_number_token6] = ACTIONS(1632), - [anon_sym_DQUOTE] = ACTIONS(1634), - [sym__str_single_quotes] = ACTIONS(1634), - [sym__str_back_ticks] = ACTIONS(1634), - [aux_sym__record_key_token2] = ACTIONS(1632), + [anon_sym_export] = ACTIONS(1540), + [anon_sym_alias] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_let_DASHenv] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [sym_cmd_identifier] = ACTIONS(1540), + [anon_sym_def] = ACTIONS(1540), + [anon_sym_export_DASHenv] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_module] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_error] = ACTIONS(1540), + [anon_sym_list] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_make] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_DOT] = ACTIONS(1623), + [anon_sym_try] = ACTIONS(1540), + [anon_sym_catch] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_source] = ACTIONS(1540), + [anon_sym_source_DASHenv] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_hide] = ACTIONS(1540), + [anon_sym_hide_DASHenv] = ACTIONS(1540), + [anon_sym_overlay] = ACTIONS(1540), + [anon_sym_new] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1540), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym__str_single_quotes] = ACTIONS(1623), + [sym__str_back_ticks] = ACTIONS(1623), + [aux_sym__record_key_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(3), }, [792] = { [sym_comment] = STATE(792), - [anon_sym_export] = ACTIONS(1560), - [anon_sym_alias] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_let_DASHenv] = ACTIONS(1560), - [anon_sym_mut] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [sym_cmd_identifier] = ACTIONS(1560), - [anon_sym_def] = ACTIONS(1560), - [anon_sym_export_DASHenv] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_module] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_COMMA] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_error] = ACTIONS(1560), - [anon_sym_list] = ACTIONS(1560), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_make] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_else] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_DOT] = ACTIONS(1562), - [anon_sym_try] = ACTIONS(1560), - [anon_sym_catch] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_source] = ACTIONS(1560), - [anon_sym_source_DASHenv] = ACTIONS(1560), - [anon_sym_register] = ACTIONS(1560), - [anon_sym_hide] = ACTIONS(1560), - [anon_sym_hide_DASHenv] = ACTIONS(1560), - [anon_sym_overlay] = ACTIONS(1560), - [anon_sym_new] = ACTIONS(1560), - [anon_sym_as] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_STAR_STAR] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_SLASH_SLASH] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_bit_DASHshl] = ACTIONS(1560), - [anon_sym_bit_DASHshr] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_LT2] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(1562), - [anon_sym_GT_EQ] = ACTIONS(1562), - [anon_sym_not_DASHin] = ACTIONS(1560), - [anon_sym_starts_DASHwith] = ACTIONS(1560), - [anon_sym_ends_DASHwith] = ACTIONS(1560), - [anon_sym_EQ_TILDE] = ACTIONS(1562), - [anon_sym_BANG_TILDE] = ACTIONS(1562), - [anon_sym_bit_DASHand] = ACTIONS(1560), - [anon_sym_bit_DASHxor] = ACTIONS(1560), - [anon_sym_bit_DASHor] = ACTIONS(1560), - [anon_sym_and] = ACTIONS(1560), - [anon_sym_xor] = ACTIONS(1560), - [anon_sym_or] = ACTIONS(1560), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_token1] = ACTIONS(1562), - [aux_sym__val_number_token2] = ACTIONS(1562), - [aux_sym__val_number_token3] = ACTIONS(1562), - [aux_sym__val_number_token4] = ACTIONS(1560), - [aux_sym__val_number_token5] = ACTIONS(1562), - [aux_sym__val_number_token6] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1562), - [sym__str_single_quotes] = ACTIONS(1562), - [sym__str_back_ticks] = ACTIONS(1562), - [aux_sym__record_key_token2] = ACTIONS(1560), + [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), + [sym_cmd_identifier] = 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_COMMA] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = 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_DOT] = 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_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_STAR_STAR] = ACTIONS(1669), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_SLASH_SLASH] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_bit_DASHshl] = ACTIONS(1667), + [anon_sym_bit_DASHshr] = ACTIONS(1667), + [anon_sym_EQ_EQ] = ACTIONS(1669), + [anon_sym_BANG_EQ] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1669), + [anon_sym_not_DASHin] = ACTIONS(1667), + [anon_sym_starts_DASHwith] = ACTIONS(1667), + [anon_sym_ends_DASHwith] = ACTIONS(1667), + [anon_sym_EQ_TILDE] = ACTIONS(1669), + [anon_sym_BANG_TILDE] = ACTIONS(1669), + [anon_sym_bit_DASHand] = ACTIONS(1667), + [anon_sym_bit_DASHxor] = ACTIONS(1667), + [anon_sym_bit_DASHor] = ACTIONS(1667), + [anon_sym_and] = ACTIONS(1667), + [anon_sym_xor] = ACTIONS(1667), + [anon_sym_or] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [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(1669), + [aux_sym__val_number_token6] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [aux_sym__record_key_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(3), }, [793] = { [sym_comment] = STATE(793), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1753), - [anon_sym_starts_DASHwith] = ACTIONS(1753), - [anon_sym_ends_DASHwith] = ACTIONS(1753), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1767), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1771), - [anon_sym_and] = ACTIONS(1773), - [anon_sym_xor] = ACTIONS(1775), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, [794] = { [sym_comment] = STATE(794), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_list] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_make] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_else] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_catch] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_new] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1497), - [anon_sym_BANG_TILDE] = ACTIONS(1497), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1497), - [aux_sym__val_number_token2] = ACTIONS(1497), - [aux_sym__val_number_token3] = ACTIONS(1497), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1497), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [aux_sym__record_key_token2] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1553), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1553), + [anon_sym_BANG_TILDE] = ACTIONS(1553), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [795] = { [sym_comment] = STATE(795), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [sym_cmd_identifier] = ACTIONS(1651), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_COMMA] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_list] = ACTIONS(1651), + [anon_sym_GT] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_make] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_else] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_catch] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_new] = ACTIONS(1651), + [anon_sym_as] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_STAR_STAR] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_SLASH] = ACTIONS(1651), + [anon_sym_mod] = ACTIONS(1651), + [anon_sym_SLASH_SLASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_bit_DASHshl] = ACTIONS(1651), + [anon_sym_bit_DASHshr] = ACTIONS(1651), + [anon_sym_EQ_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_not_DASHin] = ACTIONS(1651), + [anon_sym_starts_DASHwith] = ACTIONS(1651), + [anon_sym_ends_DASHwith] = ACTIONS(1651), + [anon_sym_EQ_TILDE] = ACTIONS(1653), + [anon_sym_BANG_TILDE] = ACTIONS(1653), + [anon_sym_bit_DASHand] = ACTIONS(1651), + [anon_sym_bit_DASHxor] = ACTIONS(1651), + [anon_sym_bit_DASHor] = ACTIONS(1651), + [anon_sym_and] = ACTIONS(1651), + [anon_sym_xor] = ACTIONS(1651), + [anon_sym_or] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1653), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [aux_sym__record_key_token2] = ACTIONS(1651), [anon_sym_POUND] = ACTIONS(3), }, [796] = { [sym_comment] = STATE(796), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1753), - [anon_sym_starts_DASHwith] = ACTIONS(1753), - [anon_sym_ends_DASHwith] = ACTIONS(1753), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1767), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1771), - [anon_sym_and] = ACTIONS(1773), - [anon_sym_xor] = ACTIONS(1775), - [anon_sym_or] = ACTIONS(1777), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, [797] = { [sym_comment] = STATE(797), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_alias] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_let_DASHenv] = ACTIONS(1612), - [anon_sym_mut] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [sym_cmd_identifier] = ACTIONS(1612), - [anon_sym_def] = ACTIONS(1612), - [anon_sym_export_DASHenv] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_COMMA] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_error] = ACTIONS(1612), - [anon_sym_list] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_in] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_make] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_else] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_DOT] = ACTIONS(1614), - [anon_sym_try] = ACTIONS(1612), - [anon_sym_catch] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_source] = ACTIONS(1612), - [anon_sym_source_DASHenv] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_hide] = ACTIONS(1612), - [anon_sym_hide_DASHenv] = ACTIONS(1612), - [anon_sym_overlay] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_as] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_STAR_STAR] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1614), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_SLASH_SLASH] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_bit_DASHshl] = ACTIONS(1612), - [anon_sym_bit_DASHshr] = ACTIONS(1612), - [anon_sym_EQ_EQ] = ACTIONS(1614), - [anon_sym_BANG_EQ] = ACTIONS(1614), - [anon_sym_LT2] = ACTIONS(1612), - [anon_sym_LT_EQ] = ACTIONS(1614), - [anon_sym_GT_EQ] = ACTIONS(1614), - [anon_sym_not_DASHin] = ACTIONS(1612), - [anon_sym_starts_DASHwith] = ACTIONS(1612), - [anon_sym_ends_DASHwith] = ACTIONS(1612), - [anon_sym_EQ_TILDE] = ACTIONS(1614), - [anon_sym_BANG_TILDE] = ACTIONS(1614), - [anon_sym_bit_DASHand] = ACTIONS(1612), - [anon_sym_bit_DASHxor] = ACTIONS(1612), - [anon_sym_bit_DASHor] = ACTIONS(1612), - [anon_sym_and] = ACTIONS(1612), - [anon_sym_xor] = ACTIONS(1612), - [anon_sym_or] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1614), - [aux_sym__val_number_token2] = ACTIONS(1614), - [aux_sym__val_number_token3] = ACTIONS(1614), - [aux_sym__val_number_token4] = ACTIONS(1612), - [aux_sym__val_number_token5] = ACTIONS(1614), - [aux_sym__val_number_token6] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1614), - [sym__str_single_quotes] = ACTIONS(1614), - [sym__str_back_ticks] = ACTIONS(1614), - [aux_sym__record_key_token2] = ACTIONS(1612), + [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), + [sym_cmd_identifier] = 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_COMMA] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_error] = ACTIONS(1595), + [anon_sym_list] = ACTIONS(1595), + [anon_sym_GT] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_break] = ACTIONS(1595), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_for] = ACTIONS(1595), + [anon_sym_in] = 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_DOT] = 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_new] = ACTIONS(1595), + [anon_sym_as] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1595), + [anon_sym_mod] = ACTIONS(1595), + [anon_sym_SLASH_SLASH] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_bit_DASHshl] = ACTIONS(1595), + [anon_sym_bit_DASHshr] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1595), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_not_DASHin] = ACTIONS(1595), + [anon_sym_starts_DASHwith] = ACTIONS(1595), + [anon_sym_ends_DASHwith] = ACTIONS(1595), + [anon_sym_EQ_TILDE] = ACTIONS(1597), + [anon_sym_BANG_TILDE] = ACTIONS(1597), + [anon_sym_bit_DASHand] = ACTIONS(1595), + [anon_sym_bit_DASHxor] = ACTIONS(1595), + [anon_sym_bit_DASHor] = ACTIONS(1595), + [anon_sym_and] = ACTIONS(1595), + [anon_sym_xor] = ACTIONS(1595), + [anon_sym_or] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = ACTIONS(1595), + [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(1597), + [aux_sym__val_number_token6] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1597), + [sym__str_back_ticks] = ACTIONS(1597), + [aux_sym__record_key_token2] = ACTIONS(1595), [anon_sym_POUND] = ACTIONS(3), }, [798] = { [sym_comment] = STATE(798), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [sym_cmd_identifier] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_SLASH_SLASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_bit_DASHshl] = ACTIONS(1761), - [anon_sym_bit_DASHshr] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1753), - [anon_sym_starts_DASHwith] = ACTIONS(1753), - [anon_sym_ends_DASHwith] = ACTIONS(1753), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [aux_sym__record_key_token2] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_alias] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_let_DASHenv] = ACTIONS(1607), + [anon_sym_mut] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [sym_cmd_identifier] = ACTIONS(1607), + [anon_sym_def] = ACTIONS(1607), + [anon_sym_export_DASHenv] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_COMMA] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1609), + [anon_sym_error] = ACTIONS(1607), + [anon_sym_list] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_make] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_DOT] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1607), + [anon_sym_catch] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_source] = ACTIONS(1607), + [anon_sym_source_DASHenv] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_hide] = ACTIONS(1607), + [anon_sym_hide_DASHenv] = ACTIONS(1607), + [anon_sym_overlay] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_as] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_EQ] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [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), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [aux_sym__record_key_token2] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), }, [799] = { [sym_comment] = STATE(799), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [sym_cmd_identifier] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_list] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_make] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1558), - [anon_sym_BANG_TILDE] = ACTIONS(1558), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1558), - [aux_sym__val_number_token2] = ACTIONS(1558), - [aux_sym__val_number_token3] = ACTIONS(1558), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [sym__str_single_quotes] = ACTIONS(1558), - [sym__str_back_ticks] = ACTIONS(1558), - [aux_sym__record_key_token2] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1637), + [anon_sym_alias] = ACTIONS(1637), + [anon_sym_let] = ACTIONS(1637), + [anon_sym_let_DASHenv] = ACTIONS(1637), + [anon_sym_mut] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [sym_cmd_identifier] = ACTIONS(1637), + [anon_sym_def] = ACTIONS(1637), + [anon_sym_export_DASHenv] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_module] = ACTIONS(1637), + [anon_sym_use] = ACTIONS(1637), + [anon_sym_COMMA] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_error] = ACTIONS(1637), + [anon_sym_list] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_in] = ACTIONS(1637), + [anon_sym_loop] = ACTIONS(1637), + [anon_sym_make] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_else] = ACTIONS(1637), + [anon_sym_match] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(1639), + [anon_sym_try] = ACTIONS(1637), + [anon_sym_catch] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_source] = ACTIONS(1637), + [anon_sym_source_DASHenv] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_hide] = ACTIONS(1637), + [anon_sym_hide_DASHenv] = ACTIONS(1637), + [anon_sym_overlay] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1637), + [anon_sym_as] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1637), + [anon_sym_mod] = ACTIONS(1637), + [anon_sym_SLASH_SLASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_bit_DASHshl] = ACTIONS(1637), + [anon_sym_bit_DASHshr] = ACTIONS(1637), + [anon_sym_EQ_EQ] = ACTIONS(1639), + [anon_sym_BANG_EQ] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_not_DASHin] = ACTIONS(1637), + [anon_sym_starts_DASHwith] = ACTIONS(1637), + [anon_sym_ends_DASHwith] = ACTIONS(1637), + [anon_sym_EQ_TILDE] = ACTIONS(1639), + [anon_sym_BANG_TILDE] = ACTIONS(1639), + [anon_sym_bit_DASHand] = ACTIONS(1637), + [anon_sym_bit_DASHxor] = ACTIONS(1637), + [anon_sym_bit_DASHor] = ACTIONS(1637), + [anon_sym_and] = ACTIONS(1637), + [anon_sym_xor] = ACTIONS(1637), + [anon_sym_or] = ACTIONS(1637), + [aux_sym__val_number_decimal_token1] = ACTIONS(1637), + [aux_sym__val_number_token1] = ACTIONS(1639), + [aux_sym__val_number_token2] = ACTIONS(1639), + [aux_sym__val_number_token3] = ACTIONS(1639), + [aux_sym__val_number_token4] = ACTIONS(1637), + [aux_sym__val_number_token5] = ACTIONS(1639), + [aux_sym__val_number_token6] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1639), + [sym__str_single_quotes] = ACTIONS(1639), + [sym__str_back_ticks] = ACTIONS(1639), + [aux_sym__record_key_token2] = ACTIONS(1637), [anon_sym_POUND] = ACTIONS(3), }, [800] = { [sym_comment] = STATE(800), - [anon_sym_export] = ACTIONS(1664), - [anon_sym_alias] = ACTIONS(1664), - [anon_sym_let] = ACTIONS(1664), - [anon_sym_let_DASHenv] = ACTIONS(1664), - [anon_sym_mut] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [sym_cmd_identifier] = ACTIONS(1664), - [anon_sym_def] = ACTIONS(1664), - [anon_sym_export_DASHenv] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_module] = ACTIONS(1664), - [anon_sym_use] = ACTIONS(1664), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1664), - [anon_sym_list] = ACTIONS(1664), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_in] = ACTIONS(1664), - [anon_sym_loop] = ACTIONS(1664), - [anon_sym_make] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1664), - [anon_sym_match] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1664), - [anon_sym_catch] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_source] = ACTIONS(1664), - [anon_sym_source_DASHenv] = ACTIONS(1664), - [anon_sym_register] = ACTIONS(1664), - [anon_sym_hide] = ACTIONS(1664), - [anon_sym_hide_DASHenv] = ACTIONS(1664), - [anon_sym_overlay] = ACTIONS(1664), - [anon_sym_new] = ACTIONS(1664), - [anon_sym_as] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_STAR_STAR] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_mod] = ACTIONS(1664), - [anon_sym_SLASH_SLASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_bit_DASHshl] = ACTIONS(1664), - [anon_sym_bit_DASHshr] = ACTIONS(1664), - [anon_sym_EQ_EQ] = ACTIONS(1666), - [anon_sym_BANG_EQ] = ACTIONS(1666), - [anon_sym_LT2] = ACTIONS(1664), - [anon_sym_LT_EQ] = ACTIONS(1666), - [anon_sym_GT_EQ] = ACTIONS(1666), - [anon_sym_not_DASHin] = ACTIONS(1664), - [anon_sym_starts_DASHwith] = ACTIONS(1664), - [anon_sym_ends_DASHwith] = ACTIONS(1664), - [anon_sym_EQ_TILDE] = ACTIONS(1666), - [anon_sym_BANG_TILDE] = ACTIONS(1666), - [anon_sym_bit_DASHand] = ACTIONS(1664), - [anon_sym_bit_DASHxor] = ACTIONS(1664), - [anon_sym_bit_DASHor] = ACTIONS(1664), - [anon_sym_and] = ACTIONS(1664), - [anon_sym_xor] = ACTIONS(1664), - [anon_sym_or] = ACTIONS(1664), - [aux_sym__val_number_decimal_token1] = ACTIONS(1664), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1664), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [aux_sym__record_key_token2] = ACTIONS(1664), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1796), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1553), + [anon_sym_BANG_TILDE] = ACTIONS(1553), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [801] = { [sym_comment] = STATE(801), - [anon_sym_export] = ACTIONS(1616), - [anon_sym_alias] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_let_DASHenv] = ACTIONS(1616), - [anon_sym_mut] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [sym_cmd_identifier] = ACTIONS(1616), - [anon_sym_def] = ACTIONS(1616), - [anon_sym_export_DASHenv] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_module] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_COMMA] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_DOLLAR] = ACTIONS(1618), - [anon_sym_error] = ACTIONS(1616), - [anon_sym_list] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_in] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_make] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_else] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_DOT] = ACTIONS(1618), - [anon_sym_try] = ACTIONS(1616), - [anon_sym_catch] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_source] = ACTIONS(1616), - [anon_sym_source_DASHenv] = ACTIONS(1616), - [anon_sym_register] = ACTIONS(1616), - [anon_sym_hide] = ACTIONS(1616), - [anon_sym_hide_DASHenv] = ACTIONS(1616), - [anon_sym_overlay] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1616), - [anon_sym_as] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_STAR_STAR] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_SLASH_SLASH] = ACTIONS(1618), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_bit_DASHshl] = ACTIONS(1616), - [anon_sym_bit_DASHshr] = ACTIONS(1616), - [anon_sym_EQ_EQ] = ACTIONS(1618), - [anon_sym_BANG_EQ] = ACTIONS(1618), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ] = ACTIONS(1618), - [anon_sym_GT_EQ] = ACTIONS(1618), - [anon_sym_not_DASHin] = ACTIONS(1616), - [anon_sym_starts_DASHwith] = ACTIONS(1616), - [anon_sym_ends_DASHwith] = ACTIONS(1616), - [anon_sym_EQ_TILDE] = ACTIONS(1618), - [anon_sym_BANG_TILDE] = ACTIONS(1618), - [anon_sym_bit_DASHand] = ACTIONS(1616), - [anon_sym_bit_DASHxor] = ACTIONS(1616), - [anon_sym_bit_DASHor] = ACTIONS(1616), - [anon_sym_and] = ACTIONS(1616), - [anon_sym_xor] = ACTIONS(1616), - [anon_sym_or] = ACTIONS(1616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1616), - [aux_sym__val_number_token1] = ACTIONS(1618), - [aux_sym__val_number_token2] = ACTIONS(1618), - [aux_sym__val_number_token3] = ACTIONS(1618), - [aux_sym__val_number_token4] = ACTIONS(1616), - [aux_sym__val_number_token5] = ACTIONS(1618), - [aux_sym__val_number_token6] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1618), - [sym__str_single_quotes] = ACTIONS(1618), - [sym__str_back_ticks] = ACTIONS(1618), - [aux_sym__record_key_token2] = ACTIONS(1616), + [anon_sym_export] = ACTIONS(1611), + [anon_sym_alias] = ACTIONS(1611), + [anon_sym_let] = ACTIONS(1611), + [anon_sym_let_DASHenv] = ACTIONS(1611), + [anon_sym_mut] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1611), + [sym_cmd_identifier] = ACTIONS(1611), + [anon_sym_def] = ACTIONS(1611), + [anon_sym_export_DASHenv] = ACTIONS(1611), + [anon_sym_extern] = ACTIONS(1611), + [anon_sym_module] = ACTIONS(1611), + [anon_sym_use] = ACTIONS(1611), + [anon_sym_COMMA] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_DOLLAR] = ACTIONS(1613), + [anon_sym_error] = ACTIONS(1611), + [anon_sym_list] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_break] = ACTIONS(1611), + [anon_sym_continue] = ACTIONS(1611), + [anon_sym_for] = ACTIONS(1611), + [anon_sym_in] = ACTIONS(1611), + [anon_sym_loop] = ACTIONS(1611), + [anon_sym_make] = ACTIONS(1611), + [anon_sym_while] = ACTIONS(1611), + [anon_sym_do] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_else] = ACTIONS(1611), + [anon_sym_match] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1613), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_try] = ACTIONS(1611), + [anon_sym_catch] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1611), + [anon_sym_source] = ACTIONS(1611), + [anon_sym_source_DASHenv] = ACTIONS(1611), + [anon_sym_register] = ACTIONS(1611), + [anon_sym_hide] = ACTIONS(1611), + [anon_sym_hide_DASHenv] = ACTIONS(1611), + [anon_sym_overlay] = ACTIONS(1611), + [anon_sym_new] = ACTIONS(1611), + [anon_sym_as] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_STAR_STAR] = ACTIONS(1613), + [anon_sym_PLUS_PLUS] = ACTIONS(1613), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_mod] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_bit_DASHshl] = ACTIONS(1611), + [anon_sym_bit_DASHshr] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1613), + [anon_sym_BANG_EQ] = ACTIONS(1613), + [anon_sym_LT2] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1613), + [anon_sym_GT_EQ] = ACTIONS(1613), + [anon_sym_not_DASHin] = ACTIONS(1611), + [anon_sym_starts_DASHwith] = ACTIONS(1611), + [anon_sym_ends_DASHwith] = ACTIONS(1611), + [anon_sym_EQ_TILDE] = ACTIONS(1613), + [anon_sym_BANG_TILDE] = ACTIONS(1613), + [anon_sym_bit_DASHand] = ACTIONS(1611), + [anon_sym_bit_DASHxor] = ACTIONS(1611), + [anon_sym_bit_DASHor] = ACTIONS(1611), + [anon_sym_and] = ACTIONS(1611), + [anon_sym_xor] = ACTIONS(1611), + [anon_sym_or] = ACTIONS(1611), + [aux_sym__val_number_decimal_token1] = ACTIONS(1611), + [aux_sym__val_number_token1] = ACTIONS(1613), + [aux_sym__val_number_token2] = ACTIONS(1613), + [aux_sym__val_number_token3] = ACTIONS(1613), + [aux_sym__val_number_token4] = ACTIONS(1611), + [aux_sym__val_number_token5] = ACTIONS(1613), + [aux_sym__val_number_token6] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym__str_single_quotes] = ACTIONS(1613), + [sym__str_back_ticks] = ACTIONS(1613), + [aux_sym__record_key_token2] = ACTIONS(1611), [anon_sym_POUND] = ACTIONS(3), }, [802] = { [sym_comment] = STATE(802), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_alias] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_let_DASHenv] = ACTIONS(1596), - [anon_sym_mut] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [sym_cmd_identifier] = ACTIONS(1596), - [anon_sym_def] = ACTIONS(1596), - [anon_sym_export_DASHenv] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_COMMA] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1598), - [anon_sym_error] = ACTIONS(1596), - [anon_sym_list] = ACTIONS(1596), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_make] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_else] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(1598), - [anon_sym_try] = ACTIONS(1596), - [anon_sym_catch] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_source] = ACTIONS(1596), - [anon_sym_source_DASHenv] = ACTIONS(1596), - [anon_sym_register] = ACTIONS(1596), - [anon_sym_hide] = ACTIONS(1596), - [anon_sym_hide_DASHenv] = ACTIONS(1596), - [anon_sym_overlay] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_as] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_STAR_STAR] = ACTIONS(1598), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_SLASH] = ACTIONS(1596), - [anon_sym_mod] = ACTIONS(1596), - [anon_sym_SLASH_SLASH] = ACTIONS(1598), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_bit_DASHshl] = ACTIONS(1596), - [anon_sym_bit_DASHshr] = ACTIONS(1596), - [anon_sym_EQ_EQ] = ACTIONS(1598), - [anon_sym_BANG_EQ] = ACTIONS(1598), - [anon_sym_LT2] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1598), - [anon_sym_GT_EQ] = ACTIONS(1598), - [anon_sym_not_DASHin] = ACTIONS(1596), - [anon_sym_starts_DASHwith] = ACTIONS(1596), - [anon_sym_ends_DASHwith] = ACTIONS(1596), - [anon_sym_EQ_TILDE] = ACTIONS(1598), - [anon_sym_BANG_TILDE] = ACTIONS(1598), - [anon_sym_bit_DASHand] = ACTIONS(1596), - [anon_sym_bit_DASHxor] = ACTIONS(1596), - [anon_sym_bit_DASHor] = ACTIONS(1596), - [anon_sym_and] = ACTIONS(1596), - [anon_sym_xor] = ACTIONS(1596), - [anon_sym_or] = ACTIONS(1596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [aux_sym__val_number_token4] = ACTIONS(1596), - [aux_sym__val_number_token5] = ACTIONS(1598), - [aux_sym__val_number_token6] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [aux_sym__record_key_token2] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_alias] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_let_DASHenv] = ACTIONS(1687), + [anon_sym_mut] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [sym_cmd_identifier] = ACTIONS(1687), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_export_DASHenv] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_COMMA] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_error] = ACTIONS(1687), + [anon_sym_list] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_make] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_DOT] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_catch] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_source] = ACTIONS(1687), + [anon_sym_source_DASHenv] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_hide] = ACTIONS(1687), + [anon_sym_hide_DASHenv] = ACTIONS(1687), + [anon_sym_overlay] = ACTIONS(1687), + [anon_sym_new] = ACTIONS(1687), + [anon_sym_as] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1689), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1689), + [anon_sym_BANG_TILDE] = ACTIONS(1689), + [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), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1689), + [aux_sym__val_number_token2] = ACTIONS(1689), + [aux_sym__val_number_token3] = ACTIONS(1689), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1689), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1689), + [sym__str_single_quotes] = ACTIONS(1689), + [sym__str_back_ticks] = ACTIONS(1689), + [aux_sym__record_key_token2] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [803] = { [sym_comment] = STATE(803), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_alias] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_let_DASHenv] = ACTIONS(1475), - [anon_sym_mut] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [sym_cmd_identifier] = ACTIONS(1475), - [anon_sym_def] = ACTIONS(1475), - [anon_sym_export_DASHenv] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_error] = ACTIONS(1475), - [anon_sym_list] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_make] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_else] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1475), - [anon_sym_catch] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_source] = ACTIONS(1475), - [anon_sym_source_DASHenv] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_hide_DASHenv] = ACTIONS(1475), - [anon_sym_overlay] = ACTIONS(1475), - [anon_sym_new] = ACTIONS(1475), - [anon_sym_as] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1477), - [anon_sym_BANG_TILDE] = ACTIONS(1477), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1477), - [aux_sym__val_number_token2] = ACTIONS(1477), - [aux_sym__val_number_token3] = ACTIONS(1477), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1477), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [sym__str_single_quotes] = ACTIONS(1477), - [sym__str_back_ticks] = ACTIONS(1477), - [aux_sym__record_key_token2] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1553), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1553), + [anon_sym_BANG_TILDE] = ACTIONS(1553), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [804] = { [sym_comment] = STATE(804), - [anon_sym_export] = ACTIONS(1650), - [anon_sym_alias] = ACTIONS(1650), - [anon_sym_let] = ACTIONS(1650), - [anon_sym_let_DASHenv] = ACTIONS(1650), - [anon_sym_mut] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [sym_cmd_identifier] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1650), - [anon_sym_export_DASHenv] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_module] = ACTIONS(1650), - [anon_sym_use] = ACTIONS(1650), - [anon_sym_COMMA] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1652), - [anon_sym_DOLLAR] = ACTIONS(1652), - [anon_sym_error] = ACTIONS(1650), - [anon_sym_list] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_in] = ACTIONS(1650), - [anon_sym_loop] = ACTIONS(1650), - [anon_sym_make] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_match] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_DOT] = ACTIONS(1652), - [anon_sym_try] = ACTIONS(1650), - [anon_sym_catch] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_source] = ACTIONS(1650), - [anon_sym_source_DASHenv] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1650), - [anon_sym_hide] = ACTIONS(1650), - [anon_sym_hide_DASHenv] = ACTIONS(1650), - [anon_sym_overlay] = ACTIONS(1650), - [anon_sym_new] = ACTIONS(1650), - [anon_sym_as] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(1652), - [anon_sym_PLUS_PLUS] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1650), - [anon_sym_mod] = ACTIONS(1650), - [anon_sym_SLASH_SLASH] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_bit_DASHshl] = ACTIONS(1650), - [anon_sym_bit_DASHshr] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_LT2] = ACTIONS(1650), - [anon_sym_LT_EQ] = ACTIONS(1652), - [anon_sym_GT_EQ] = ACTIONS(1652), - [anon_sym_not_DASHin] = ACTIONS(1650), - [anon_sym_starts_DASHwith] = ACTIONS(1650), - [anon_sym_ends_DASHwith] = ACTIONS(1650), - [anon_sym_EQ_TILDE] = ACTIONS(1652), - [anon_sym_BANG_TILDE] = ACTIONS(1652), - [anon_sym_bit_DASHand] = ACTIONS(1650), - [anon_sym_bit_DASHxor] = ACTIONS(1650), - [anon_sym_bit_DASHor] = ACTIONS(1650), - [anon_sym_and] = ACTIONS(1650), - [anon_sym_xor] = ACTIONS(1650), - [anon_sym_or] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1652), - [aux_sym__val_number_token2] = ACTIONS(1652), - [aux_sym__val_number_token3] = ACTIONS(1652), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1652), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [sym__str_single_quotes] = ACTIONS(1652), - [sym__str_back_ticks] = ACTIONS(1652), - [aux_sym__record_key_token2] = ACTIONS(1650), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_alias] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_let_DASHenv] = ACTIONS(1675), + [anon_sym_mut] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [sym_cmd_identifier] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_export_DASHenv] = ACTIONS(1675), + [anon_sym_extern] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_use] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1677), + [anon_sym_error] = ACTIONS(1675), + [anon_sym_list] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_loop] = ACTIONS(1675), + [anon_sym_make] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_else] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1677), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_catch] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_source] = ACTIONS(1675), + [anon_sym_source_DASHenv] = ACTIONS(1675), + [anon_sym_register] = ACTIONS(1675), + [anon_sym_hide] = ACTIONS(1675), + [anon_sym_hide_DASHenv] = ACTIONS(1675), + [anon_sym_overlay] = ACTIONS(1675), + [anon_sym_new] = ACTIONS(1675), + [anon_sym_as] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1677), + [anon_sym_PLUS_PLUS] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1675), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1677), + [anon_sym_BANG_EQ] = ACTIONS(1677), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ] = ACTIONS(1677), + [anon_sym_GT_EQ] = ACTIONS(1677), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1677), + [anon_sym_BANG_TILDE] = ACTIONS(1677), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1677), + [aux_sym__val_number_token2] = ACTIONS(1677), + [aux_sym__val_number_token3] = ACTIONS(1677), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1677), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1677), + [sym__str_single_quotes] = ACTIONS(1677), + [sym__str_back_ticks] = ACTIONS(1677), + [aux_sym__record_key_token2] = ACTIONS(1675), [anon_sym_POUND] = ACTIONS(3), }, [805] = { [sym_comment] = STATE(805), - [anon_sym_export] = ACTIONS(1604), - [anon_sym_alias] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_let_DASHenv] = ACTIONS(1604), - [anon_sym_mut] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [sym_cmd_identifier] = ACTIONS(1604), - [anon_sym_def] = ACTIONS(1604), - [anon_sym_export_DASHenv] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1604), - [anon_sym_module] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_COMMA] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_error] = ACTIONS(1604), - [anon_sym_list] = ACTIONS(1604), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_in] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_make] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_else] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_try] = ACTIONS(1604), - [anon_sym_catch] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_source] = ACTIONS(1604), - [anon_sym_source_DASHenv] = ACTIONS(1604), - [anon_sym_register] = ACTIONS(1604), - [anon_sym_hide] = ACTIONS(1604), - [anon_sym_hide_DASHenv] = ACTIONS(1604), - [anon_sym_overlay] = ACTIONS(1604), - [anon_sym_new] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_STAR_STAR] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_SLASH_SLASH] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_bit_DASHshl] = ACTIONS(1604), - [anon_sym_bit_DASHshr] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1606), - [anon_sym_BANG_EQ] = ACTIONS(1606), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_not_DASHin] = ACTIONS(1604), - [anon_sym_starts_DASHwith] = ACTIONS(1604), - [anon_sym_ends_DASHwith] = ACTIONS(1604), - [anon_sym_EQ_TILDE] = ACTIONS(1606), - [anon_sym_BANG_TILDE] = ACTIONS(1606), - [anon_sym_bit_DASHand] = ACTIONS(1604), - [anon_sym_bit_DASHxor] = ACTIONS(1604), - [anon_sym_bit_DASHor] = ACTIONS(1604), - [anon_sym_and] = ACTIONS(1604), - [anon_sym_xor] = ACTIONS(1604), - [anon_sym_or] = ACTIONS(1604), - [aux_sym__val_number_decimal_token1] = ACTIONS(1604), - [aux_sym__val_number_token1] = ACTIONS(1606), - [aux_sym__val_number_token2] = ACTIONS(1606), - [aux_sym__val_number_token3] = ACTIONS(1606), - [aux_sym__val_number_token4] = ACTIONS(1604), - [aux_sym__val_number_token5] = ACTIONS(1606), - [aux_sym__val_number_token6] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1606), - [sym__str_single_quotes] = ACTIONS(1606), - [sym__str_back_ticks] = ACTIONS(1606), - [aux_sym__record_key_token2] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_alias] = ACTIONS(1671), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_let_DASHenv] = ACTIONS(1671), + [anon_sym_mut] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [sym_cmd_identifier] = ACTIONS(1671), + [anon_sym_def] = ACTIONS(1671), + [anon_sym_export_DASHenv] = ACTIONS(1671), + [anon_sym_extern] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_use] = ACTIONS(1671), + [anon_sym_COMMA] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_error] = ACTIONS(1671), + [anon_sym_list] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_loop] = ACTIONS(1671), + [anon_sym_make] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_do] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_else] = ACTIONS(1671), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_DOT] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1671), + [anon_sym_catch] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_source] = ACTIONS(1671), + [anon_sym_source_DASHenv] = ACTIONS(1671), + [anon_sym_register] = ACTIONS(1671), + [anon_sym_hide] = ACTIONS(1671), + [anon_sym_hide_DASHenv] = ACTIONS(1671), + [anon_sym_overlay] = ACTIONS(1671), + [anon_sym_new] = ACTIONS(1671), + [anon_sym_as] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1671), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_BANG_EQ] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1671), + [anon_sym_LT_EQ] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1673), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1673), + [anon_sym_BANG_TILDE] = ACTIONS(1673), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1673), + [aux_sym__val_number_token2] = ACTIONS(1673), + [aux_sym__val_number_token3] = ACTIONS(1673), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1673), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1673), + [sym__str_single_quotes] = ACTIONS(1673), + [sym__str_back_ticks] = ACTIONS(1673), + [aux_sym__record_key_token2] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(3), }, [806] = { [sym_comment] = STATE(806), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_alias] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_let_DASHenv] = ACTIONS(1646), - [anon_sym_mut] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [sym_cmd_identifier] = ACTIONS(1646), - [anon_sym_def] = ACTIONS(1646), - [anon_sym_export_DASHenv] = ACTIONS(1646), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_use] = ACTIONS(1646), - [anon_sym_COMMA] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1646), - [anon_sym_list] = ACTIONS(1646), - [anon_sym_GT] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_in] = ACTIONS(1646), - [anon_sym_loop] = ACTIONS(1646), - [anon_sym_make] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_do] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_else] = ACTIONS(1646), - [anon_sym_match] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_DOT] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1646), - [anon_sym_catch] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_source] = ACTIONS(1646), - [anon_sym_source_DASHenv] = ACTIONS(1646), - [anon_sym_register] = ACTIONS(1646), - [anon_sym_hide] = ACTIONS(1646), - [anon_sym_hide_DASHenv] = ACTIONS(1646), - [anon_sym_overlay] = ACTIONS(1646), - [anon_sym_new] = ACTIONS(1646), - [anon_sym_as] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_STAR_STAR] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_SLASH_SLASH] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_bit_DASHshl] = ACTIONS(1646), - [anon_sym_bit_DASHshr] = ACTIONS(1646), - [anon_sym_EQ_EQ] = ACTIONS(1648), - [anon_sym_BANG_EQ] = ACTIONS(1648), - [anon_sym_LT2] = ACTIONS(1646), - [anon_sym_LT_EQ] = ACTIONS(1648), - [anon_sym_GT_EQ] = ACTIONS(1648), - [anon_sym_not_DASHin] = ACTIONS(1646), - [anon_sym_starts_DASHwith] = ACTIONS(1646), - [anon_sym_ends_DASHwith] = ACTIONS(1646), - [anon_sym_EQ_TILDE] = ACTIONS(1648), - [anon_sym_BANG_TILDE] = ACTIONS(1648), - [anon_sym_bit_DASHand] = ACTIONS(1646), - [anon_sym_bit_DASHxor] = ACTIONS(1646), - [anon_sym_bit_DASHor] = ACTIONS(1646), - [anon_sym_and] = ACTIONS(1646), - [anon_sym_xor] = ACTIONS(1646), - [anon_sym_or] = ACTIONS(1646), - [aux_sym__val_number_decimal_token1] = ACTIONS(1646), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [aux_sym__val_number_token4] = ACTIONS(1646), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [aux_sym__record_key_token2] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_list] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_make] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_catch] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_new] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1443), + [anon_sym_BANG_EQ] = ACTIONS(1443), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1443), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1443), + [anon_sym_BANG_TILDE] = ACTIONS(1443), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1443), + [aux_sym__val_number_token2] = ACTIONS(1443), + [aux_sym__val_number_token3] = ACTIONS(1443), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1443), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1443), + [sym__str_single_quotes] = ACTIONS(1443), + [sym__str_back_ticks] = ACTIONS(1443), + [aux_sym__record_key_token2] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(3), }, [807] = { [sym_comment] = STATE(807), - [anon_sym_export] = ACTIONS(1620), - [anon_sym_alias] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_let_DASHenv] = ACTIONS(1620), - [anon_sym_mut] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [sym_cmd_identifier] = ACTIONS(1620), - [anon_sym_def] = ACTIONS(1620), - [anon_sym_export_DASHenv] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1620), - [anon_sym_module] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_COMMA] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_DOLLAR] = ACTIONS(1622), - [anon_sym_error] = ACTIONS(1620), - [anon_sym_list] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_make] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_else] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(1620), - [anon_sym_catch] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_source] = ACTIONS(1620), - [anon_sym_source_DASHenv] = ACTIONS(1620), - [anon_sym_register] = ACTIONS(1620), - [anon_sym_hide] = ACTIONS(1620), - [anon_sym_hide_DASHenv] = ACTIONS(1620), - [anon_sym_overlay] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_STAR_STAR] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(1622), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_SLASH_SLASH] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_bit_DASHshl] = ACTIONS(1620), - [anon_sym_bit_DASHshr] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_LT2] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1622), - [anon_sym_GT_EQ] = ACTIONS(1622), - [anon_sym_not_DASHin] = ACTIONS(1620), - [anon_sym_starts_DASHwith] = ACTIONS(1620), - [anon_sym_ends_DASHwith] = ACTIONS(1620), - [anon_sym_EQ_TILDE] = ACTIONS(1622), - [anon_sym_BANG_TILDE] = ACTIONS(1622), - [anon_sym_bit_DASHand] = ACTIONS(1620), - [anon_sym_bit_DASHxor] = ACTIONS(1620), - [anon_sym_bit_DASHor] = ACTIONS(1620), - [anon_sym_and] = ACTIONS(1620), - [anon_sym_xor] = ACTIONS(1620), - [anon_sym_or] = ACTIONS(1620), - [aux_sym__val_number_decimal_token1] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1622), - [aux_sym__val_number_token2] = ACTIONS(1622), - [aux_sym__val_number_token3] = ACTIONS(1622), - [aux_sym__val_number_token4] = ACTIONS(1620), - [aux_sym__val_number_token5] = ACTIONS(1622), - [aux_sym__val_number_token6] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1622), - [sym__str_single_quotes] = ACTIONS(1622), - [sym__str_back_ticks] = ACTIONS(1622), - [aux_sym__record_key_token2] = ACTIONS(1620), + [anon_sym_export] = ACTIONS(1683), + [anon_sym_alias] = ACTIONS(1683), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_let_DASHenv] = ACTIONS(1683), + [anon_sym_mut] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [sym_cmd_identifier] = ACTIONS(1683), + [anon_sym_def] = ACTIONS(1683), + [anon_sym_export_DASHenv] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_module] = ACTIONS(1683), + [anon_sym_use] = ACTIONS(1683), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_error] = ACTIONS(1683), + [anon_sym_list] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_loop] = ACTIONS(1683), + [anon_sym_make] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_else] = ACTIONS(1683), + [anon_sym_match] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_DOT] = ACTIONS(1685), + [anon_sym_try] = ACTIONS(1683), + [anon_sym_catch] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_source] = ACTIONS(1683), + [anon_sym_source_DASHenv] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1683), + [anon_sym_hide] = ACTIONS(1683), + [anon_sym_hide_DASHenv] = ACTIONS(1683), + [anon_sym_overlay] = ACTIONS(1683), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_as] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1683), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_BANG_EQ] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1685), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_BANG_TILDE] = ACTIONS(1685), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1683), + [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(1683), + [aux_sym__val_number_token5] = ACTIONS(1685), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1685), + [sym__str_single_quotes] = ACTIONS(1685), + [sym__str_back_ticks] = ACTIONS(1685), + [aux_sym__record_key_token2] = ACTIONS(1683), [anon_sym_POUND] = ACTIONS(3), }, [808] = { [sym_comment] = STATE(808), - [anon_sym_export] = ACTIONS(1588), - [anon_sym_alias] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_let_DASHenv] = ACTIONS(1588), - [anon_sym_mut] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [sym_cmd_identifier] = ACTIONS(1588), - [anon_sym_def] = ACTIONS(1588), - [anon_sym_export_DASHenv] = ACTIONS(1588), - [anon_sym_extern] = ACTIONS(1588), - [anon_sym_module] = ACTIONS(1588), - [anon_sym_use] = ACTIONS(1588), - [anon_sym_COMMA] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_DOLLAR] = ACTIONS(1590), - [anon_sym_error] = ACTIONS(1588), - [anon_sym_list] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1588), - [anon_sym_loop] = ACTIONS(1588), - [anon_sym_make] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_else] = ACTIONS(1588), - [anon_sym_match] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_DOT] = ACTIONS(1590), - [anon_sym_try] = ACTIONS(1588), - [anon_sym_catch] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_source] = ACTIONS(1588), - [anon_sym_source_DASHenv] = ACTIONS(1588), - [anon_sym_register] = ACTIONS(1588), - [anon_sym_hide] = ACTIONS(1588), - [anon_sym_hide_DASHenv] = ACTIONS(1588), - [anon_sym_overlay] = ACTIONS(1588), - [anon_sym_new] = ACTIONS(1588), - [anon_sym_as] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_STAR_STAR] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_SLASH] = ACTIONS(1588), - [anon_sym_mod] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1590), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_bit_DASHshl] = ACTIONS(1588), - [anon_sym_bit_DASHshr] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1590), - [anon_sym_BANG_EQ] = ACTIONS(1590), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ] = ACTIONS(1590), - [anon_sym_GT_EQ] = ACTIONS(1590), - [anon_sym_not_DASHin] = ACTIONS(1588), - [anon_sym_starts_DASHwith] = ACTIONS(1588), - [anon_sym_ends_DASHwith] = ACTIONS(1588), - [anon_sym_EQ_TILDE] = ACTIONS(1590), - [anon_sym_BANG_TILDE] = ACTIONS(1590), - [anon_sym_bit_DASHand] = ACTIONS(1588), - [anon_sym_bit_DASHxor] = ACTIONS(1588), - [anon_sym_bit_DASHor] = ACTIONS(1588), - [anon_sym_and] = ACTIONS(1588), - [anon_sym_xor] = ACTIONS(1588), - [anon_sym_or] = ACTIONS(1588), - [aux_sym__val_number_decimal_token1] = ACTIONS(1588), - [aux_sym__val_number_token1] = ACTIONS(1590), - [aux_sym__val_number_token2] = ACTIONS(1590), - [aux_sym__val_number_token3] = ACTIONS(1590), - [aux_sym__val_number_token4] = ACTIONS(1588), - [aux_sym__val_number_token5] = ACTIONS(1590), - [aux_sym__val_number_token6] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1590), - [sym__str_single_quotes] = ACTIONS(1590), - [sym__str_back_ticks] = ACTIONS(1590), - [aux_sym__record_key_token2] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_alias] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_let_DASHenv] = ACTIONS(1679), + [anon_sym_mut] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1679), + [sym_cmd_identifier] = ACTIONS(1679), + [anon_sym_def] = ACTIONS(1679), + [anon_sym_export_DASHenv] = ACTIONS(1679), + [anon_sym_extern] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_error] = ACTIONS(1679), + [anon_sym_list] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1679), + [anon_sym_continue] = ACTIONS(1679), + [anon_sym_for] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_loop] = ACTIONS(1679), + [anon_sym_make] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1679), + [anon_sym_do] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1679), + [anon_sym_else] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_DOT] = ACTIONS(1681), + [anon_sym_try] = ACTIONS(1679), + [anon_sym_catch] = ACTIONS(1679), + [anon_sym_return] = ACTIONS(1679), + [anon_sym_source] = ACTIONS(1679), + [anon_sym_source_DASHenv] = ACTIONS(1679), + [anon_sym_register] = ACTIONS(1679), + [anon_sym_hide] = ACTIONS(1679), + [anon_sym_hide_DASHenv] = ACTIONS(1679), + [anon_sym_overlay] = ACTIONS(1679), + [anon_sym_new] = ACTIONS(1679), + [anon_sym_as] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1679), + [anon_sym_mod] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_bit_DASHshl] = ACTIONS(1679), + [anon_sym_bit_DASHshr] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1681), + [anon_sym_BANG_EQ] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1681), + [anon_sym_not_DASHin] = ACTIONS(1679), + [anon_sym_starts_DASHwith] = ACTIONS(1679), + [anon_sym_ends_DASHwith] = ACTIONS(1679), + [anon_sym_EQ_TILDE] = ACTIONS(1681), + [anon_sym_BANG_TILDE] = ACTIONS(1681), + [anon_sym_bit_DASHand] = ACTIONS(1679), + [anon_sym_bit_DASHxor] = ACTIONS(1679), + [anon_sym_bit_DASHor] = ACTIONS(1679), + [anon_sym_and] = ACTIONS(1679), + [anon_sym_xor] = ACTIONS(1679), + [anon_sym_or] = ACTIONS(1679), + [aux_sym__val_number_decimal_token1] = ACTIONS(1679), + [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(1679), + [aux_sym__val_number_token5] = ACTIONS(1681), + [aux_sym__val_number_token6] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym__str_single_quotes] = ACTIONS(1681), + [sym__str_back_ticks] = ACTIONS(1681), + [aux_sym__record_key_token2] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(3), }, [809] = { - [sym_pipeline] = STATE(1630), - [sym_pipeline_last] = STATE(4921), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), [sym_comment] = STATE(809), - [aux_sym_pipeline_repeat1] = STATE(830), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_DOLLAR] = ACTIONS(1547), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_list] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_make] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_DOT] = ACTIONS(1547), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_catch] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_new] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1547), + [anon_sym_BANG_TILDE] = ACTIONS(1547), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [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(1545), + [aux_sym__val_number_token5] = ACTIONS(1547), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1547), + [sym__str_single_quotes] = ACTIONS(1547), + [sym__str_back_ticks] = ACTIONS(1547), + [aux_sym__record_key_token2] = ACTIONS(1545), [anon_sym_POUND] = ACTIONS(3), }, [810] = { - [sym_pipeline] = STATE(1648), - [sym_pipeline_last] = STATE(5008), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), [sym_comment] = STATE(810), - [aux_sym_pipeline_repeat1] = STATE(830), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [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), + [sym_cmd_identifier] = 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_COMMA] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(1635), + [anon_sym_error] = ACTIONS(1633), + [anon_sym_list] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_in] = 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(1635), + [anon_sym_DOT] = ACTIONS(1635), + [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_new] = ACTIONS(1633), + [anon_sym_as] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1633), + [anon_sym_STAR_STAR] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(1633), + [anon_sym_mod] = ACTIONS(1633), + [anon_sym_SLASH_SLASH] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_bit_DASHshl] = ACTIONS(1633), + [anon_sym_bit_DASHshr] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ] = ACTIONS(1635), + [anon_sym_GT_EQ] = ACTIONS(1635), + [anon_sym_not_DASHin] = ACTIONS(1633), + [anon_sym_starts_DASHwith] = ACTIONS(1633), + [anon_sym_ends_DASHwith] = ACTIONS(1633), + [anon_sym_EQ_TILDE] = ACTIONS(1635), + [anon_sym_BANG_TILDE] = ACTIONS(1635), + [anon_sym_bit_DASHand] = ACTIONS(1633), + [anon_sym_bit_DASHxor] = ACTIONS(1633), + [anon_sym_bit_DASHor] = ACTIONS(1633), + [anon_sym_and] = ACTIONS(1633), + [anon_sym_xor] = ACTIONS(1633), + [anon_sym_or] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1635), + [aux_sym__val_number_token2] = ACTIONS(1635), + [aux_sym__val_number_token3] = ACTIONS(1635), + [aux_sym__val_number_token4] = ACTIONS(1633), + [aux_sym__val_number_token5] = ACTIONS(1635), + [aux_sym__val_number_token6] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym__str_single_quotes] = ACTIONS(1635), + [sym__str_back_ticks] = ACTIONS(1635), + [aux_sym__record_key_token2] = ACTIONS(1633), [anon_sym_POUND] = ACTIONS(3), }, [811] = { - [sym_pipeline_parenthesized] = STATE(1641), - [sym_pipeline_parenthesized_last] = STATE(5334), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), [sym_comment] = STATE(811), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1553), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1553), + [anon_sym_BANG_TILDE] = ACTIONS(1553), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, [812] = { - [sym_pipeline] = STATE(1627), - [sym_pipeline_last] = STATE(4998), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), [sym_comment] = STATE(812), - [aux_sym_pipeline_repeat1] = STATE(830), - [sym_cmd_identifier] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, [813] = { - [sym_pipeline_parenthesized] = STATE(1643), - [sym_pipeline_parenthesized_last] = STATE(5347), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), [sym_comment] = STATE(813), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [sym_cmd_identifier] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), - [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(361), - [aux_sym__val_number_token2] = ACTIONS(361), - [aux_sym__val_number_token3] = ACTIONS(361), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(361), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym__str_single_quotes] = ACTIONS(371), - [sym__str_back_ticks] = ACTIONS(371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [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), + [sym_cmd_identifier] = 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_COMMA] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1587), + [anon_sym_list] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_in] = 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_DOT] = 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_new] = ACTIONS(1587), + [anon_sym_as] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_SLASH] = ACTIONS(1587), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1589), + [anon_sym_BANG_EQ] = ACTIONS(1589), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_EQ] = ACTIONS(1589), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1589), + [anon_sym_BANG_TILDE] = ACTIONS(1589), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = 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(1589), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [aux_sym__record_key_token2] = ACTIONS(1587), [anon_sym_POUND] = ACTIONS(3), }, [814] = { - [sym_pipeline] = STATE(1636), - [sym_pipeline_last] = STATE(5344), - [sym__ctrl_expression] = STATE(4714), - [sym_ctrl_do] = STATE(4919), - [sym_ctrl_if] = STATE(4919), - [sym_ctrl_match] = STATE(4919), - [sym_ctrl_try] = STATE(4919), - [sym_ctrl_return] = STATE(4919), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4913), - [sym_where_command] = STATE(4798), - [sym__expression] = STATE(4798), - [sym_expr_unary] = STATE(3190), - [sym__expr_unary_minus] = STATE(3186), - [sym_expr_binary] = STATE(3190), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3029), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(3190), - [sym_val_nothing] = STATE(3212), - [sym_val_bool] = STATE(3212), - [sym_val_variable] = STATE(3040), - [sym__var] = STATE(2893), - [sym_val_number] = STATE(464), - [sym__val_number_decimal] = STATE(428), - [sym__val_number] = STATE(426), - [sym_val_duration] = STATE(3212), - [sym_val_filesize] = STATE(3212), - [sym_val_binary] = STATE(3212), - [sym_val_string] = STATE(3212), - [sym__str_double_quotes] = STATE(3222), - [sym_val_interpolated] = STATE(3212), - [sym__inter_single_quotes] = STATE(3185), - [sym__inter_double_quotes] = STATE(3179), - [sym_val_list] = STATE(3212), - [sym_val_record] = STATE(3212), - [sym_val_table] = STATE(3212), - [sym_val_closure] = STATE(3212), - [sym_command] = STATE(4798), [sym_comment] = STATE(814), - [aux_sym_pipeline_repeat1] = STATE(831), + [anon_sym_export] = ACTIONS(1625), + [anon_sym_alias] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_let_DASHenv] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [sym_cmd_identifier] = ACTIONS(1625), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_export_DASHenv] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_module] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_DOLLAR] = ACTIONS(1627), + [anon_sym_error] = ACTIONS(1625), + [anon_sym_list] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_make] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_else] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_DOT] = ACTIONS(1627), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_catch] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_source] = ACTIONS(1625), + [anon_sym_source_DASHenv] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_hide] = ACTIONS(1625), + [anon_sym_hide_DASHenv] = ACTIONS(1625), + [anon_sym_overlay] = ACTIONS(1625), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_as] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_SLASH] = ACTIONS(1625), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1627), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1627), + [anon_sym_BANG_EQ] = ACTIONS(1627), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ] = ACTIONS(1627), + [anon_sym_GT_EQ] = ACTIONS(1627), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1627), + [anon_sym_BANG_TILDE] = ACTIONS(1627), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [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(1625), + [aux_sym__val_number_token5] = ACTIONS(1627), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym__str_single_quotes] = ACTIONS(1627), + [sym__str_back_ticks] = ACTIONS(1627), + [aux_sym__record_key_token2] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), + }, + [815] = { + [sym_comment] = STATE(815), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), + }, + [816] = { + [sym_comment] = STATE(816), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [sym_cmd_identifier] = ACTIONS(1513), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_list] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_make] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_else] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_catch] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1515), + [anon_sym_BANG_EQ] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1515), + [anon_sym_BANG_TILDE] = ACTIONS(1515), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1515), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [aux_sym__record_key_token2] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(3), + }, + [817] = { + [sym_comment] = STATE(817), + [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), + [sym_cmd_identifier] = 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_COMMA] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_list] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in] = 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(1665), + [anon_sym_DOT] = ACTIONS(1665), + [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_new] = ACTIONS(1663), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1665), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_LT2] = ACTIONS(1663), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1665), + [anon_sym_BANG_TILDE] = ACTIONS(1665), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [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(1663), + [aux_sym__val_number_token5] = ACTIONS(1665), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [aux_sym__record_key_token2] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(3), + }, + [818] = { + [sym_comment] = STATE(818), + [anon_sym_export] = ACTIONS(213), + [anon_sym_alias] = ACTIONS(213), + [anon_sym_let] = ACTIONS(213), + [anon_sym_let_DASHenv] = ACTIONS(213), + [anon_sym_mut] = ACTIONS(213), + [anon_sym_const] = ACTIONS(213), + [sym_cmd_identifier] = ACTIONS(213), + [anon_sym_def] = ACTIONS(213), + [anon_sym_export_DASHenv] = ACTIONS(213), + [anon_sym_extern] = ACTIONS(213), + [anon_sym_module] = ACTIONS(213), + [anon_sym_use] = ACTIONS(213), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(215), + [anon_sym_error] = ACTIONS(213), + [anon_sym_list] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_break] = ACTIONS(213), + [anon_sym_continue] = ACTIONS(213), + [anon_sym_for] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_loop] = ACTIONS(213), + [anon_sym_make] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [anon_sym_do] = ACTIONS(213), + [anon_sym_if] = ACTIONS(213), + [anon_sym_else] = ACTIONS(213), + [anon_sym_match] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(215), + [anon_sym_try] = ACTIONS(213), + [anon_sym_catch] = ACTIONS(213), + [anon_sym_return] = ACTIONS(213), + [anon_sym_source] = ACTIONS(213), + [anon_sym_source_DASHenv] = ACTIONS(213), + [anon_sym_register] = ACTIONS(213), + [anon_sym_hide] = ACTIONS(213), + [anon_sym_hide_DASHenv] = ACTIONS(213), + [anon_sym_overlay] = ACTIONS(213), + [anon_sym_new] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(215), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(213), + [anon_sym_bit_DASHshr] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(215), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(215), + [anon_sym_not_DASHin] = ACTIONS(213), + [anon_sym_starts_DASHwith] = ACTIONS(213), + [anon_sym_ends_DASHwith] = ACTIONS(213), + [anon_sym_EQ_TILDE] = ACTIONS(215), + [anon_sym_BANG_TILDE] = ACTIONS(215), + [anon_sym_bit_DASHand] = ACTIONS(213), + [anon_sym_bit_DASHxor] = ACTIONS(213), + [anon_sym_bit_DASHor] = ACTIONS(213), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(215), + [aux_sym__val_number_token2] = ACTIONS(215), + [aux_sym__val_number_token3] = ACTIONS(215), + [aux_sym__val_number_token4] = ACTIONS(213), + [aux_sym__val_number_token5] = ACTIONS(215), + [aux_sym__val_number_token6] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(215), + [sym__str_single_quotes] = ACTIONS(215), + [sym__str_back_ticks] = ACTIONS(215), + [aux_sym__record_key_token2] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + }, + [819] = { + [sym_comment] = STATE(819), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [sym_cmd_identifier] = ACTIONS(1536), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_list] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_make] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_catch] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [aux_sym__record_key_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(3), + }, + [820] = { + [sym_comment] = STATE(820), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_DOLLAR] = ACTIONS(1439), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_list] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_make] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_catch] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1439), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1439), + [anon_sym_BANG_TILDE] = ACTIONS(1439), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1439), + [aux_sym__val_number_token2] = ACTIONS(1439), + [aux_sym__val_number_token3] = ACTIONS(1439), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1439), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1439), + [sym__str_single_quotes] = ACTIONS(1439), + [sym__str_back_ticks] = ACTIONS(1439), + [aux_sym__record_key_token2] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(3), + }, + [821] = { + [sym_comment] = STATE(821), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1796), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_not_DASHin] = ACTIONS(1800), + [anon_sym_starts_DASHwith] = ACTIONS(1800), + [anon_sym_ends_DASHwith] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1553), + [anon_sym_BANG_TILDE] = ACTIONS(1553), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(3), + }, + [822] = { + [sym_comment] = STATE(822), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_alias] = ACTIONS(1629), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_let_DASHenv] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [sym_cmd_identifier] = ACTIONS(1629), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_export_DASHenv] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_use] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1629), + [anon_sym_list] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_loop] = ACTIONS(1629), + [anon_sym_make] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_else] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_DOT] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1629), + [anon_sym_catch] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_source] = ACTIONS(1629), + [anon_sym_source_DASHenv] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_hide] = ACTIONS(1629), + [anon_sym_hide_DASHenv] = ACTIONS(1629), + [anon_sym_overlay] = ACTIONS(1629), + [anon_sym_new] = ACTIONS(1629), + [anon_sym_as] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_STAR_STAR] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_mod] = ACTIONS(1629), + [anon_sym_SLASH_SLASH] = ACTIONS(1631), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_bit_DASHshl] = ACTIONS(1629), + [anon_sym_bit_DASHshr] = ACTIONS(1629), + [anon_sym_EQ_EQ] = ACTIONS(1631), + [anon_sym_BANG_EQ] = ACTIONS(1631), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ] = ACTIONS(1631), + [anon_sym_GT_EQ] = ACTIONS(1631), + [anon_sym_not_DASHin] = ACTIONS(1629), + [anon_sym_starts_DASHwith] = ACTIONS(1629), + [anon_sym_ends_DASHwith] = ACTIONS(1629), + [anon_sym_EQ_TILDE] = ACTIONS(1631), + [anon_sym_BANG_TILDE] = ACTIONS(1631), + [anon_sym_bit_DASHand] = ACTIONS(1629), + [anon_sym_bit_DASHxor] = ACTIONS(1629), + [anon_sym_bit_DASHor] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_xor] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1629), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [aux_sym__val_number_token4] = ACTIONS(1629), + [aux_sym__val_number_token5] = ACTIONS(1631), + [aux_sym__val_number_token6] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [aux_sym__record_key_token2] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3), + }, + [823] = { + [sym_comment] = STATE(823), + [anon_sym_export] = ACTIONS(1583), + [anon_sym_alias] = ACTIONS(1583), + [anon_sym_let] = ACTIONS(1583), + [anon_sym_let_DASHenv] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [sym_cmd_identifier] = ACTIONS(1583), + [anon_sym_def] = ACTIONS(1583), + [anon_sym_export_DASHenv] = ACTIONS(1583), + [anon_sym_extern] = ACTIONS(1583), + [anon_sym_module] = ACTIONS(1583), + [anon_sym_use] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_error] = ACTIONS(1583), + [anon_sym_list] = ACTIONS(1583), + [anon_sym_GT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_in] = ACTIONS(1583), + [anon_sym_loop] = ACTIONS(1583), + [anon_sym_make] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_else] = ACTIONS(1583), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1583), + [anon_sym_catch] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_source] = ACTIONS(1583), + [anon_sym_source_DASHenv] = ACTIONS(1583), + [anon_sym_register] = ACTIONS(1583), + [anon_sym_hide] = ACTIONS(1583), + [anon_sym_hide_DASHenv] = ACTIONS(1583), + [anon_sym_overlay] = ACTIONS(1583), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_as] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_STAR_STAR] = ACTIONS(1585), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_mod] = ACTIONS(1583), + [anon_sym_SLASH_SLASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_bit_DASHshl] = ACTIONS(1583), + [anon_sym_bit_DASHshr] = ACTIONS(1583), + [anon_sym_EQ_EQ] = ACTIONS(1585), + [anon_sym_BANG_EQ] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1585), + [anon_sym_not_DASHin] = ACTIONS(1583), + [anon_sym_starts_DASHwith] = ACTIONS(1583), + [anon_sym_ends_DASHwith] = ACTIONS(1583), + [anon_sym_EQ_TILDE] = ACTIONS(1585), + [anon_sym_BANG_TILDE] = ACTIONS(1585), + [anon_sym_bit_DASHand] = ACTIONS(1583), + [anon_sym_bit_DASHxor] = ACTIONS(1583), + [anon_sym_bit_DASHor] = ACTIONS(1583), + [anon_sym_and] = ACTIONS(1583), + [anon_sym_xor] = ACTIONS(1583), + [anon_sym_or] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1583), + [aux_sym__val_number_token1] = ACTIONS(1585), + [aux_sym__val_number_token2] = ACTIONS(1585), + [aux_sym__val_number_token3] = ACTIONS(1585), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1585), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1585), + [sym__str_single_quotes] = ACTIONS(1585), + [sym__str_back_ticks] = ACTIONS(1585), + [aux_sym__record_key_token2] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(3), + }, + [824] = { + [sym_comment] = STATE(824), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_alias] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_let_DASHenv] = ACTIONS(1691), + [anon_sym_mut] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [sym_cmd_identifier] = ACTIONS(1691), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_export_DASHenv] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1691), + [anon_sym_list] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_make] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_catch] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_source] = ACTIONS(1691), + [anon_sym_source_DASHenv] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_hide] = ACTIONS(1691), + [anon_sym_hide_DASHenv] = ACTIONS(1691), + [anon_sym_overlay] = ACTIONS(1691), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_as] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_STAR_STAR] = ACTIONS(1693), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1693), + [anon_sym_BANG_EQ] = ACTIONS(1693), + [anon_sym_LT2] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1693), + [anon_sym_GT_EQ] = ACTIONS(1693), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1693), + [anon_sym_BANG_TILDE] = ACTIONS(1693), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [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(1691), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [aux_sym__record_key_token2] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(3), + }, + [825] = { + [sym_comment] = STATE(825), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_list] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_make] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_else] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_catch] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_new] = ACTIONS(1532), + [anon_sym_as] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1534), + [anon_sym_BANG_EQ] = ACTIONS(1534), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1534), + [anon_sym_GT_EQ] = ACTIONS(1534), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1534), + [anon_sym_BANG_TILDE] = ACTIONS(1534), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1534), + [aux_sym__val_number_token2] = ACTIONS(1534), + [aux_sym__val_number_token3] = ACTIONS(1534), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1534), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym__str_single_quotes] = ACTIONS(1534), + [sym__str_back_ticks] = ACTIONS(1534), + [aux_sym__record_key_token2] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(3), + }, + [826] = { + [sym_comment] = STATE(826), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), + }, + [827] = { + [sym_comment] = STATE(827), + [anon_sym_export] = ACTIONS(1603), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_let_DASHenv] = ACTIONS(1603), + [anon_sym_mut] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1603), + [sym_cmd_identifier] = ACTIONS(1603), + [anon_sym_def] = ACTIONS(1603), + [anon_sym_export_DASHenv] = ACTIONS(1603), + [anon_sym_extern] = ACTIONS(1603), + [anon_sym_module] = ACTIONS(1603), + [anon_sym_use] = ACTIONS(1603), + [anon_sym_COMMA] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1603), + [anon_sym_list] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_in] = ACTIONS(1603), + [anon_sym_loop] = ACTIONS(1603), + [anon_sym_make] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1603), + [anon_sym_do] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1603), + [anon_sym_else] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1603), + [anon_sym_catch] = ACTIONS(1603), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_source] = ACTIONS(1603), + [anon_sym_source_DASHenv] = ACTIONS(1603), + [anon_sym_register] = ACTIONS(1603), + [anon_sym_hide] = ACTIONS(1603), + [anon_sym_hide_DASHenv] = ACTIONS(1603), + [anon_sym_overlay] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1603), + [anon_sym_as] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_STAR_STAR] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1603), + [anon_sym_mod] = ACTIONS(1603), + [anon_sym_SLASH_SLASH] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_bit_DASHshl] = ACTIONS(1603), + [anon_sym_bit_DASHshr] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1605), + [anon_sym_BANG_EQ] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1605), + [anon_sym_not_DASHin] = ACTIONS(1603), + [anon_sym_starts_DASHwith] = ACTIONS(1603), + [anon_sym_ends_DASHwith] = ACTIONS(1603), + [anon_sym_EQ_TILDE] = ACTIONS(1605), + [anon_sym_BANG_TILDE] = ACTIONS(1605), + [anon_sym_bit_DASHand] = ACTIONS(1603), + [anon_sym_bit_DASHxor] = ACTIONS(1603), + [anon_sym_bit_DASHor] = ACTIONS(1603), + [anon_sym_and] = ACTIONS(1603), + [anon_sym_xor] = ACTIONS(1603), + [anon_sym_or] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1603), + [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(1603), + [aux_sym__val_number_token5] = ACTIONS(1605), + [aux_sym__val_number_token6] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym__str_single_quotes] = ACTIONS(1605), + [sym__str_back_ticks] = ACTIONS(1605), + [aux_sym__record_key_token2] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(3), + }, + [828] = { + [sym_comment] = STATE(828), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), + }, + [829] = { + [sym_comment] = STATE(829), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1553), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1553), + [anon_sym_BANG_TILDE] = ACTIONS(1553), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(3), + }, + [830] = { + [sym_comment] = STATE(830), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [sym_cmd_identifier] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_SLASH_SLASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_bit_DASHshl] = ACTIONS(1808), + [anon_sym_bit_DASHshr] = ACTIONS(1808), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1796), + [anon_sym_LT_EQ] = ACTIONS(1810), + [anon_sym_GT_EQ] = ACTIONS(1810), + [anon_sym_not_DASHin] = ACTIONS(1800), + [anon_sym_starts_DASHwith] = ACTIONS(1800), + [anon_sym_ends_DASHwith] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1812), + [anon_sym_BANG_TILDE] = ACTIONS(1812), + [anon_sym_bit_DASHand] = ACTIONS(1814), + [anon_sym_bit_DASHxor] = ACTIONS(1816), + [anon_sym_bit_DASHor] = ACTIONS(1818), + [anon_sym_and] = ACTIONS(1820), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [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(1551), + [aux_sym__val_number_token5] = ACTIONS(1553), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [aux_sym__record_key_token2] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(3), + }, + [831] = { + [sym_comment] = STATE(831), + [anon_sym_export] = ACTIONS(1619), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_let] = ACTIONS(1619), + [anon_sym_let_DASHenv] = ACTIONS(1619), + [anon_sym_mut] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [sym_cmd_identifier] = ACTIONS(1619), + [anon_sym_def] = ACTIONS(1619), + [anon_sym_export_DASHenv] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_module] = ACTIONS(1619), + [anon_sym_use] = ACTIONS(1619), + [anon_sym_COMMA] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_DOLLAR] = ACTIONS(1621), + [anon_sym_error] = ACTIONS(1619), + [anon_sym_list] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_loop] = ACTIONS(1619), + [anon_sym_make] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_else] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_DOT] = ACTIONS(1621), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_catch] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_source] = ACTIONS(1619), + [anon_sym_source_DASHenv] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_hide] = ACTIONS(1619), + [anon_sym_hide_DASHenv] = ACTIONS(1619), + [anon_sym_overlay] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1621), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1621), + [anon_sym_BANG_EQ] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1621), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1621), + [anon_sym_BANG_TILDE] = ACTIONS(1621), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1621), + [aux_sym__val_number_token2] = ACTIONS(1621), + [aux_sym__val_number_token3] = ACTIONS(1621), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1621), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym__str_single_quotes] = ACTIONS(1621), + [sym__str_back_ticks] = ACTIONS(1621), + [aux_sym__record_key_token2] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3), + }, + [832] = { + [sym_comment] = STATE(832), + [anon_sym_export] = ACTIONS(1619), + [anon_sym_alias] = ACTIONS(1619), + [anon_sym_let] = ACTIONS(1619), + [anon_sym_let_DASHenv] = ACTIONS(1619), + [anon_sym_mut] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [sym_cmd_identifier] = ACTIONS(1619), + [anon_sym_def] = ACTIONS(1619), + [anon_sym_export_DASHenv] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_module] = ACTIONS(1619), + [anon_sym_use] = ACTIONS(1619), + [anon_sym_COMMA] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_DOLLAR] = ACTIONS(1621), + [anon_sym_error] = ACTIONS(1619), + [anon_sym_list] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_loop] = ACTIONS(1619), + [anon_sym_make] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_else] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_DOT] = ACTIONS(1621), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_catch] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_source] = ACTIONS(1619), + [anon_sym_source_DASHenv] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_hide] = ACTIONS(1619), + [anon_sym_hide_DASHenv] = ACTIONS(1619), + [anon_sym_overlay] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1621), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1621), + [anon_sym_BANG_EQ] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1621), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1621), + [anon_sym_BANG_TILDE] = ACTIONS(1621), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1621), + [aux_sym__val_number_token2] = ACTIONS(1621), + [aux_sym__val_number_token3] = ACTIONS(1621), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1621), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym__str_single_quotes] = ACTIONS(1621), + [sym__str_back_ticks] = ACTIONS(1621), + [aux_sym__record_key_token2] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3), + }, + [833] = { + [sym_comment] = STATE(833), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_alias] = ACTIONS(1641), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_let_DASHenv] = ACTIONS(1641), + [anon_sym_mut] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [sym_cmd_identifier] = ACTIONS(1641), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_export_DASHenv] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_use] = ACTIONS(1641), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1641), + [anon_sym_list] = ACTIONS(1641), + [anon_sym_GT] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1641), + [anon_sym_loop] = ACTIONS(1641), + [anon_sym_make] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_else] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_catch] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_source] = ACTIONS(1641), + [anon_sym_source_DASHenv] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_hide] = ACTIONS(1641), + [anon_sym_hide_DASHenv] = ACTIONS(1641), + [anon_sym_overlay] = ACTIONS(1641), + [anon_sym_new] = ACTIONS(1641), + [anon_sym_as] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_STAR_STAR] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_mod] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_bit_DASHshl] = ACTIONS(1641), + [anon_sym_bit_DASHshr] = ACTIONS(1641), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_not_DASHin] = ACTIONS(1641), + [anon_sym_starts_DASHwith] = ACTIONS(1641), + [anon_sym_ends_DASHwith] = ACTIONS(1641), + [anon_sym_EQ_TILDE] = ACTIONS(1643), + [anon_sym_BANG_TILDE] = ACTIONS(1643), + [anon_sym_bit_DASHand] = ACTIONS(1641), + [anon_sym_bit_DASHxor] = ACTIONS(1641), + [anon_sym_bit_DASHor] = ACTIONS(1641), + [anon_sym_and] = ACTIONS(1641), + [anon_sym_xor] = ACTIONS(1641), + [anon_sym_or] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [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(1641), + [aux_sym__val_number_token5] = ACTIONS(1643), + [aux_sym__val_number_token6] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [aux_sym__record_key_token2] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [834] = { + [sym_comment] = STATE(834), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [sym_cmd_identifier] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_list] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_register] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [aux_sym__record_key_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), + }, + [835] = { + [sym_pipeline] = STATE(1672), + [sym_pipeline_last] = STATE(5393), + [sym__ctrl_expression] = STATE(4813), + [sym_ctrl_do] = STATE(5043), + [sym_ctrl_if] = STATE(5043), + [sym_ctrl_match] = STATE(5043), + [sym_ctrl_try] = STATE(5043), + [sym_ctrl_return] = STATE(5043), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5037), + [sym_where_command] = STATE(4875), + [sym__expression] = STATE(4875), + [sym_expr_unary] = STATE(3244), + [sym__expr_unary_minus] = STATE(3248), + [sym_expr_binary] = STATE(3244), + [sym__expr_binary_expression] = STATE(3553), + [sym_expr_parenthesized] = STATE(3074), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(3244), + [sym_val_nothing] = STATE(3230), + [sym_val_bool] = STATE(3230), + [sym_val_variable] = STATE(3053), + [sym__var] = STATE(2955), + [sym_val_number] = STATE(451), + [sym__val_number_decimal] = STATE(408), + [sym__val_number] = STATE(422), + [sym_val_duration] = STATE(3230), + [sym_val_filesize] = STATE(3230), + [sym_val_binary] = STATE(3230), + [sym_val_string] = STATE(3230), + [sym__str_double_quotes] = STATE(3238), + [sym_val_interpolated] = STATE(3230), + [sym__inter_single_quotes] = STATE(3256), + [sym__inter_double_quotes] = STATE(3257), + [sym_val_list] = STATE(3230), + [sym_val_record] = STATE(3230), + [sym_val_table] = STATE(3230), + [sym_val_closure] = STATE(3230), + [sym_command] = STATE(4875), + [sym_comment] = STATE(835), + [aux_sym_pipeline_repeat1] = STATE(855), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), [anon_sym_continue] = ACTIONS(43), @@ -166799,64 +170315,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [815] = { - [sym_pipeline_parenthesized] = STATE(1635), - [sym_pipeline_parenthesized_last] = STATE(5437), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(815), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [sym_cmd_identifier] = ACTIONS(545), + [836] = { + [sym_pipeline] = STATE(1663), + [sym_pipeline_last] = STATE(4918), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(836), + [aux_sym_pipeline_repeat1] = STATE(858), + [sym_cmd_identifier] = ACTIONS(483), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -166877,67 +170393,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [816] = { - [sym_pipeline] = STATE(1636), - [sym_pipeline_last] = STATE(4920), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4479), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(816), - [aux_sym_pipeline_repeat1] = STATE(830), - [sym_cmd_identifier] = ACTIONS(479), + [837] = { + [sym_pipeline] = STATE(1671), + [sym_pipeline_last] = STATE(4996), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(837), + [aux_sym_pipeline_repeat1] = STATE(858), + [sym_cmd_identifier] = ACTIONS(483), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -166961,52 +170477,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [817] = { - [sym_pipeline] = STATE(1648), - [sym_pipeline_last] = STATE(5309), - [sym__ctrl_expression] = STATE(4714), - [sym_ctrl_do] = STATE(4919), - [sym_ctrl_if] = STATE(4919), - [sym_ctrl_match] = STATE(4919), - [sym_ctrl_try] = STATE(4919), - [sym_ctrl_return] = STATE(4919), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4913), - [sym_where_command] = STATE(4798), - [sym__expression] = STATE(4798), - [sym_expr_unary] = STATE(3190), - [sym__expr_unary_minus] = STATE(3186), - [sym_expr_binary] = STATE(3190), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3029), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(3190), - [sym_val_nothing] = STATE(3212), - [sym_val_bool] = STATE(3212), - [sym_val_variable] = STATE(3040), - [sym__var] = STATE(2893), - [sym_val_number] = STATE(464), - [sym__val_number_decimal] = STATE(428), - [sym__val_number] = STATE(426), - [sym_val_duration] = STATE(3212), - [sym_val_filesize] = STATE(3212), - [sym_val_binary] = STATE(3212), - [sym_val_string] = STATE(3212), - [sym__str_double_quotes] = STATE(3222), - [sym_val_interpolated] = STATE(3212), - [sym__inter_single_quotes] = STATE(3185), - [sym__inter_double_quotes] = STATE(3179), - [sym_val_list] = STATE(3212), - [sym_val_record] = STATE(3212), - [sym_val_table] = STATE(3212), - [sym_val_closure] = STATE(3212), - [sym_command] = STATE(4798), - [sym_comment] = STATE(817), - [aux_sym_pipeline_repeat1] = STATE(831), + [838] = { + [sym_pipeline] = STATE(1663), + [sym_pipeline_last] = STATE(5387), + [sym__ctrl_expression] = STATE(4813), + [sym_ctrl_do] = STATE(5043), + [sym_ctrl_if] = STATE(5043), + [sym_ctrl_match] = STATE(5043), + [sym_ctrl_try] = STATE(5043), + [sym_ctrl_return] = STATE(5043), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5037), + [sym_where_command] = STATE(4875), + [sym__expression] = STATE(4875), + [sym_expr_unary] = STATE(3244), + [sym__expr_unary_minus] = STATE(3248), + [sym_expr_binary] = STATE(3244), + [sym__expr_binary_expression] = STATE(3553), + [sym_expr_parenthesized] = STATE(3074), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(3244), + [sym_val_nothing] = STATE(3230), + [sym_val_bool] = STATE(3230), + [sym_val_variable] = STATE(3053), + [sym__var] = STATE(2955), + [sym_val_number] = STATE(451), + [sym__val_number_decimal] = STATE(408), + [sym__val_number] = STATE(422), + [sym_val_duration] = STATE(3230), + [sym_val_filesize] = STATE(3230), + [sym_val_binary] = STATE(3230), + [sym_val_string] = STATE(3230), + [sym__str_double_quotes] = STATE(3238), + [sym_val_interpolated] = STATE(3230), + [sym__inter_single_quotes] = STATE(3256), + [sym__inter_double_quotes] = STATE(3257), + [sym_val_list] = STATE(3230), + [sym_val_record] = STATE(3230), + [sym_val_table] = STATE(3230), + [sym_val_closure] = STATE(3230), + [sym_command] = STATE(4875), + [sym_comment] = STATE(838), + [aux_sym_pipeline_repeat1] = STATE(855), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), [anon_sym_continue] = ACTIONS(43), @@ -167042,52 +170558,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [818] = { - [sym_pipeline] = STATE(1627), - [sym_pipeline_last] = STATE(5305), - [sym__ctrl_expression] = STATE(4714), - [sym_ctrl_do] = STATE(4919), - [sym_ctrl_if] = STATE(4919), - [sym_ctrl_match] = STATE(4919), - [sym_ctrl_try] = STATE(4919), - [sym_ctrl_return] = STATE(4919), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4913), - [sym_where_command] = STATE(4798), - [sym__expression] = STATE(4798), - [sym_expr_unary] = STATE(3190), - [sym__expr_unary_minus] = STATE(3186), - [sym_expr_binary] = STATE(3190), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3029), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(3190), - [sym_val_nothing] = STATE(3212), - [sym_val_bool] = STATE(3212), - [sym_val_variable] = STATE(3040), - [sym__var] = STATE(2893), - [sym_val_number] = STATE(464), - [sym__val_number_decimal] = STATE(428), - [sym__val_number] = STATE(426), - [sym_val_duration] = STATE(3212), - [sym_val_filesize] = STATE(3212), - [sym_val_binary] = STATE(3212), - [sym_val_string] = STATE(3212), - [sym__str_double_quotes] = STATE(3222), - [sym_val_interpolated] = STATE(3212), - [sym__inter_single_quotes] = STATE(3185), - [sym__inter_double_quotes] = STATE(3179), - [sym_val_list] = STATE(3212), - [sym_val_record] = STATE(3212), - [sym_val_table] = STATE(3212), - [sym_val_closure] = STATE(3212), - [sym_command] = STATE(4798), - [sym_comment] = STATE(818), - [aux_sym_pipeline_repeat1] = STATE(831), + [839] = { + [sym_pipeline] = STATE(1655), + [sym_pipeline_last] = STATE(5441), + [sym__ctrl_expression] = STATE(4813), + [sym_ctrl_do] = STATE(5043), + [sym_ctrl_if] = STATE(5043), + [sym_ctrl_match] = STATE(5043), + [sym_ctrl_try] = STATE(5043), + [sym_ctrl_return] = STATE(5043), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5037), + [sym_where_command] = STATE(4875), + [sym__expression] = STATE(4875), + [sym_expr_unary] = STATE(3244), + [sym__expr_unary_minus] = STATE(3248), + [sym_expr_binary] = STATE(3244), + [sym__expr_binary_expression] = STATE(3553), + [sym_expr_parenthesized] = STATE(3074), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(3244), + [sym_val_nothing] = STATE(3230), + [sym_val_bool] = STATE(3230), + [sym_val_variable] = STATE(3053), + [sym__var] = STATE(2955), + [sym_val_number] = STATE(451), + [sym__val_number_decimal] = STATE(408), + [sym__val_number] = STATE(422), + [sym_val_duration] = STATE(3230), + [sym_val_filesize] = STATE(3230), + [sym_val_binary] = STATE(3230), + [sym_val_string] = STATE(3230), + [sym__str_double_quotes] = STATE(3238), + [sym_val_interpolated] = STATE(3230), + [sym__inter_single_quotes] = STATE(3256), + [sym__inter_double_quotes] = STATE(3257), + [sym_val_list] = STATE(3230), + [sym_val_record] = STATE(3230), + [sym_val_table] = STATE(3230), + [sym_val_closure] = STATE(3230), + [sym_command] = STATE(4875), + [sym_comment] = STATE(839), + [aux_sym_pipeline_repeat1] = STATE(855), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), [anon_sym_continue] = ACTIONS(43), @@ -167123,64 +170639,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [819] = { - [sym_pipeline_parenthesized] = STATE(1650), - [sym_pipeline_parenthesized_last] = STATE(5438), - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5387), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(819), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(833), - [sym_cmd_identifier] = ACTIONS(545), + [840] = { + [sym_pipeline] = STATE(1672), + [sym_pipeline_last] = STATE(5129), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(840), + [aux_sym_pipeline_repeat1] = STATE(858), + [sym_cmd_identifier] = ACTIONS(483), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -167201,55 +170717,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [820] = { - [sym_pipeline] = STATE(1630), - [sym_pipeline_last] = STATE(5416), - [sym__ctrl_expression] = STATE(4714), - [sym_ctrl_do] = STATE(4919), - [sym_ctrl_if] = STATE(4919), - [sym_ctrl_match] = STATE(4919), - [sym_ctrl_try] = STATE(4919), - [sym_ctrl_return] = STATE(4919), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4913), - [sym_where_command] = STATE(4798), - [sym__expression] = STATE(4798), - [sym_expr_unary] = STATE(3190), - [sym__expr_unary_minus] = STATE(3186), - [sym_expr_binary] = STATE(3190), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3029), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(3190), - [sym_val_nothing] = STATE(3212), - [sym_val_bool] = STATE(3212), - [sym_val_variable] = STATE(3040), - [sym__var] = STATE(2893), - [sym_val_number] = STATE(464), - [sym__val_number_decimal] = STATE(428), - [sym__val_number] = STATE(426), - [sym_val_duration] = STATE(3212), - [sym_val_filesize] = STATE(3212), - [sym_val_binary] = STATE(3212), - [sym_val_string] = STATE(3212), - [sym__str_double_quotes] = STATE(3222), - [sym_val_interpolated] = STATE(3212), - [sym__inter_single_quotes] = STATE(3185), - [sym__inter_double_quotes] = STATE(3179), - [sym_val_list] = STATE(3212), - [sym_val_record] = STATE(3212), - [sym_val_table] = STATE(3212), - [sym_val_closure] = STATE(3212), - [sym_command] = STATE(4798), - [sym_comment] = STATE(820), - [aux_sym_pipeline_repeat1] = STATE(831), + [841] = { + [sym_pipeline] = STATE(1655), + [sym_pipeline_last] = STATE(4995), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4872), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(841), + [aux_sym_pipeline_repeat1] = STATE(858), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_POUND] = ACTIONS(3), + }, + [842] = { + [sym_pipeline_parenthesized] = STATE(1678), + [sym_pipeline_parenthesized_last] = STATE(5501), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(842), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(3), + }, + [843] = { + [sym_pipeline] = STATE(1671), + [sym_pipeline_last] = STATE(5442), + [sym__ctrl_expression] = STATE(4813), + [sym_ctrl_do] = STATE(5043), + [sym_ctrl_if] = STATE(5043), + [sym_ctrl_match] = STATE(5043), + [sym_ctrl_try] = STATE(5043), + [sym_ctrl_return] = STATE(5043), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5037), + [sym_where_command] = STATE(4875), + [sym__expression] = STATE(4875), + [sym_expr_unary] = STATE(3244), + [sym__expr_unary_minus] = STATE(3248), + [sym_expr_binary] = STATE(3244), + [sym__expr_binary_expression] = STATE(3553), + [sym_expr_parenthesized] = STATE(3074), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(3244), + [sym_val_nothing] = STATE(3230), + [sym_val_bool] = STATE(3230), + [sym_val_variable] = STATE(3053), + [sym__var] = STATE(2955), + [sym_val_number] = STATE(451), + [sym__val_number_decimal] = STATE(408), + [sym__val_number] = STATE(422), + [sym_val_duration] = STATE(3230), + [sym_val_filesize] = STATE(3230), + [sym_val_binary] = STATE(3230), + [sym_val_string] = STATE(3230), + [sym__str_double_quotes] = STATE(3238), + [sym_val_interpolated] = STATE(3230), + [sym__inter_single_quotes] = STATE(3256), + [sym__inter_double_quotes] = STATE(3257), + [sym_val_list] = STATE(3230), + [sym_val_record] = STATE(3230), + [sym_val_table] = STATE(3230), + [sym_val_closure] = STATE(3230), + [sym_command] = STATE(4875), + [sym_comment] = STATE(843), + [aux_sym_pipeline_repeat1] = STATE(855), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), [anon_sym_continue] = ACTIONS(43), @@ -167285,63 +170963,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [821] = { - [sym_pipeline] = STATE(1627), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(5312), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(821), - [aux_sym_pipeline_repeat1] = STATE(832), - [sym_cmd_identifier] = ACTIONS(479), + [844] = { + [sym_pipeline_parenthesized] = STATE(1664), + [sym_pipeline_parenthesized_last] = STATE(5405), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(844), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [sym_cmd_identifier] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -167362,66 +171041,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [822] = { - [sym_pipeline_parenthesized] = STATE(1643), - [sym__ctrl_expression_parenthesized] = STATE(5044), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5958), - [sym_where_command] = STATE(4961), - [sym__expression] = STATE(4961), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(5042), - [sym_comment] = STATE(822), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(829), - [sym_cmd_identifier] = ACTIONS(545), + [845] = { + [sym_pipeline_parenthesized] = STATE(1677), + [sym_pipeline_parenthesized_last] = STATE(5515), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(845), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [sym_cmd_identifier] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -167442,66 +171122,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [823] = { - [sym_pipeline_parenthesized] = STATE(1635), - [sym__ctrl_expression_parenthesized] = STATE(5044), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5958), - [sym_where_command] = STATE(4961), - [sym__expression] = STATE(4961), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(5042), - [sym_comment] = STATE(823), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(829), - [sym_cmd_identifier] = ACTIONS(545), + [846] = { + [sym_pipeline_parenthesized] = STATE(1665), + [sym_pipeline_parenthesized_last] = STATE(5397), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5398), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), + [sym_comment] = STATE(846), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(859), + [sym_cmd_identifier] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -167522,66 +171203,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [824] = { - [sym_pipeline] = STATE(1648), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(5312), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(824), - [aux_sym_pipeline_repeat1] = STATE(832), - [sym_cmd_identifier] = ACTIONS(479), + [847] = { + [sym_pipeline_parenthesized] = STATE(1677), + [sym__ctrl_expression_parenthesized] = STATE(4977), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(6040), + [sym_where_command] = STATE(4984), + [sym__expression] = STATE(4984), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4985), + [sym_comment] = STATE(847), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(856), + [sym_cmd_identifier] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -167602,66 +171283,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [825] = { - [sym_pipeline] = STATE(1636), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(5312), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(825), - [aux_sym_pipeline_repeat1] = STATE(832), - [sym_cmd_identifier] = ACTIONS(479), + [848] = { + [sym_pipeline_parenthesized] = STATE(1665), + [sym__ctrl_expression_parenthesized] = STATE(4977), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(6040), + [sym_where_command] = STATE(4984), + [sym__expression] = STATE(4984), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4985), + [sym_comment] = STATE(848), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(856), + [sym_cmd_identifier] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -167682,66 +171363,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [826] = { - [sym_pipeline] = STATE(1630), - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(5312), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(826), - [aux_sym_pipeline_repeat1] = STATE(832), - [sym_cmd_identifier] = ACTIONS(479), + [849] = { + [sym_pipeline] = STATE(1663), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5439), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(849), + [aux_sym_pipeline_repeat1] = STATE(857), + [sym_cmd_identifier] = ACTIONS(483), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -167765,63 +171446,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [827] = { - [sym_pipeline_parenthesized] = STATE(1641), - [sym__ctrl_expression_parenthesized] = STATE(5044), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5958), - [sym_where_command] = STATE(4961), - [sym__expression] = STATE(4961), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(5042), - [sym_comment] = STATE(827), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(829), - [sym_cmd_identifier] = ACTIONS(545), + [850] = { + [sym_pipeline_parenthesized] = STATE(1664), + [sym__ctrl_expression_parenthesized] = STATE(4977), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(6040), + [sym_where_command] = STATE(4984), + [sym__expression] = STATE(4984), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4985), + [sym_comment] = STATE(850), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(856), + [sym_cmd_identifier] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -167842,66 +171523,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [828] = { - [sym_pipeline_parenthesized] = STATE(1650), - [sym__ctrl_expression_parenthesized] = STATE(5044), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5958), - [sym_where_command] = STATE(4961), - [sym__expression] = STATE(4961), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(5042), - [sym_comment] = STATE(828), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(829), - [sym_cmd_identifier] = ACTIONS(545), + [851] = { + [sym_pipeline] = STATE(1671), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5439), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(851), + [aux_sym_pipeline_repeat1] = STATE(857), + [sym_cmd_identifier] = ACTIONS(483), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -167922,65 +171603,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [829] = { - [sym__ctrl_expression_parenthesized] = STATE(5044), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(6077), - [sym_where_command] = STATE(4961), - [sym__expression] = STATE(4961), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(5042), - [sym_comment] = STATE(829), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(834), - [sym_cmd_identifier] = ACTIONS(545), + [852] = { + [sym_pipeline] = STATE(1655), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5439), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(852), + [aux_sym_pipeline_repeat1] = STATE(857), + [sym_cmd_identifier] = ACTIONS(483), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -168001,65 +171683,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [830] = { - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(4532), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(830), - [aux_sym_pipeline_repeat1] = STATE(835), - [sym_cmd_identifier] = ACTIONS(479), + [853] = { + [sym_pipeline] = STATE(1672), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5439), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(853), + [aux_sym_pipeline_repeat1] = STATE(857), + [sym_cmd_identifier] = ACTIONS(483), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -168083,50 +171766,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [831] = { - [sym__ctrl_expression] = STATE(4714), - [sym_ctrl_do] = STATE(4919), - [sym_ctrl_if] = STATE(4919), - [sym_ctrl_match] = STATE(4919), - [sym_ctrl_try] = STATE(4919), - [sym_ctrl_return] = STATE(4919), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(5205), - [sym_where_command] = STATE(4798), - [sym__expression] = STATE(4798), - [sym_expr_unary] = STATE(3190), - [sym__expr_unary_minus] = STATE(3186), - [sym_expr_binary] = STATE(3190), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3029), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(3190), - [sym_val_nothing] = STATE(3212), - [sym_val_bool] = STATE(3212), - [sym_val_variable] = STATE(3040), - [sym__var] = STATE(2893), - [sym_val_number] = STATE(464), - [sym__val_number_decimal] = STATE(428), - [sym__val_number] = STATE(426), - [sym_val_duration] = STATE(3212), - [sym_val_filesize] = STATE(3212), - [sym_val_binary] = STATE(3212), - [sym_val_string] = STATE(3212), - [sym__str_double_quotes] = STATE(3222), - [sym_val_interpolated] = STATE(3212), - [sym__inter_single_quotes] = STATE(3185), - [sym__inter_double_quotes] = STATE(3179), - [sym_val_list] = STATE(3212), - [sym_val_record] = STATE(3212), - [sym_val_table] = STATE(3212), - [sym_val_closure] = STATE(3212), - [sym_command] = STATE(4798), - [sym_comment] = STATE(831), - [aux_sym_pipeline_repeat1] = STATE(835), + [854] = { + [sym_pipeline_parenthesized] = STATE(1678), + [sym__ctrl_expression_parenthesized] = STATE(4977), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(6040), + [sym_where_command] = STATE(4984), + [sym__expression] = STATE(4984), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4985), + [sym_comment] = STATE(854), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(856), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(3), + }, + [855] = { + [sym__ctrl_expression] = STATE(4813), + [sym_ctrl_do] = STATE(5043), + [sym_ctrl_if] = STATE(5043), + [sym_ctrl_match] = STATE(5043), + [sym_ctrl_try] = STATE(5043), + [sym_ctrl_return] = STATE(5043), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4945), + [sym_where_command] = STATE(4875), + [sym__expression] = STATE(4875), + [sym_expr_unary] = STATE(3244), + [sym__expr_unary_minus] = STATE(3248), + [sym_expr_binary] = STATE(3244), + [sym__expr_binary_expression] = STATE(3553), + [sym_expr_parenthesized] = STATE(3074), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(3244), + [sym_val_nothing] = STATE(3230), + [sym_val_bool] = STATE(3230), + [sym_val_variable] = STATE(3053), + [sym__var] = STATE(2955), + [sym_val_number] = STATE(451), + [sym__val_number_decimal] = STATE(408), + [sym__val_number] = STATE(422), + [sym_val_duration] = STATE(3230), + [sym_val_filesize] = STATE(3230), + [sym_val_binary] = STATE(3230), + [sym_val_string] = STATE(3230), + [sym__str_double_quotes] = STATE(3238), + [sym_val_interpolated] = STATE(3230), + [sym__inter_single_quotes] = STATE(3256), + [sym__inter_double_quotes] = STATE(3257), + [sym_val_list] = STATE(3230), + [sym_val_record] = STATE(3230), + [sym_val_table] = STATE(3230), + [sym_val_closure] = STATE(3230), + [sym_command] = STATE(4875), + [sym_comment] = STATE(855), + [aux_sym_pipeline_repeat1] = STATE(861), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), [anon_sym_continue] = ACTIONS(43), @@ -168162,62 +171925,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [832] = { - [sym__ctrl_expression] = STATE(4443), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_pipe_element_last] = STATE(5352), - [sym_where_command] = STATE(4441), - [sym__expression] = STATE(4441), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(4441), - [sym_comment] = STATE(832), - [aux_sym_pipeline_repeat1] = STATE(835), - [sym_cmd_identifier] = ACTIONS(479), + [856] = { + [sym__ctrl_expression_parenthesized] = STATE(4977), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(6197), + [sym_where_command] = STATE(4984), + [sym__expression] = STATE(4984), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4985), + [sym_comment] = STATE(856), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(860), + [sym_cmd_identifier] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(513), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -168238,65 +172001,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(561), [anon_sym_POUND] = ACTIONS(3), }, - [833] = { - [sym__ctrl_expression_parenthesized] = STATE(4468), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_pipe_element_parenthesized_last] = STATE(5331), - [sym_where_command] = STATE(4466), - [sym__expression] = STATE(4466), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(4463), - [sym_comment] = STATE(833), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(834), - [sym_cmd_identifier] = ACTIONS(545), + [857] = { + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(5364), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), + [sym_comment] = STATE(857), + [aux_sym_pipeline_repeat1] = STATE(861), + [sym_cmd_identifier] = ACTIONS(483), [anon_sym_LBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(549), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(551), - [anon_sym_match] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_DOT] = ACTIONS(333), - [anon_sym_try] = ACTIONS(553), - [anon_sym_return] = ACTIONS(515), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), [anon_sym_where] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(531), [anon_sym_not] = ACTIONS(353), [anon_sym_null] = ACTIONS(355), [anon_sym_true] = ACTIONS(357), @@ -168317,5115 +172080,3452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(371), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(3), - }, - [834] = { - [sym__ctrl_expression_parenthesized] = STATE(5375), - [sym_ctrl_do] = STATE(5091), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_ctrl_match] = STATE(5091), - [sym_ctrl_try_parenthesized] = STATE(5091), - [sym_ctrl_return] = STATE(5091), - [sym_pipe_element_parenthesized] = STATE(2772), - [sym_where_command] = STATE(5346), - [sym__expression] = STATE(5346), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym__command_parenthesized_body] = STATE(5385), - [sym_comment] = STATE(834), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(834), - [sym_cmd_identifier] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_null] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [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(1846), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1846), - [anon_sym_0b] = ACTIONS(1849), - [anon_sym_0o] = ACTIONS(1849), - [anon_sym_0x] = ACTIONS(1849), - [sym_val_date] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym__str_single_quotes] = ACTIONS(1858), - [sym__str_back_ticks] = ACTIONS(1858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_POUND] = ACTIONS(3), - }, - [835] = { - [sym__ctrl_expression] = STATE(5335), - [sym_ctrl_do] = STATE(4478), - [sym_ctrl_if] = STATE(4478), - [sym_ctrl_match] = STATE(4478), - [sym_ctrl_try] = STATE(4478), - [sym_ctrl_return] = STATE(4478), - [sym_pipe_element] = STATE(2804), - [sym_where_command] = STATE(5333), - [sym__expression] = STATE(5333), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), - [sym_command] = STATE(5333), - [sym_comment] = STATE(835), - [aux_sym_pipeline_repeat1] = STATE(835), - [sym_cmd_identifier] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_where] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1930), - [aux_sym__val_number_token2] = ACTIONS(1930), - [aux_sym__val_number_token3] = ACTIONS(1930), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1930), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_0b] = ACTIONS(1936), - [anon_sym_0o] = ACTIONS(1936), - [anon_sym_0x] = ACTIONS(1936), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1942), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1948), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(3), }, - [836] = { - [sym_expr_parenthesized] = STATE(1307), - [sym__immediate_decimal] = STATE(1304), - [sym_val_variable] = STATE(1307), - [sym__var] = STATE(1110), - [sym_comment] = STATE(836), - [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), - [anon_sym_SEMI] = ACTIONS(1957), - [sym_cmd_identifier] = ACTIONS(1957), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = 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_where] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_not] = ACTIONS(1957), - [anon_sym_EQ2] = ACTIONS(1969), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(1957), - [anon_sym_0o] = ACTIONS(1957), - [anon_sym_0x] = ACTIONS(1957), - [sym_val_date] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(105), - }, - [837] = { - [sym_expr_parenthesized] = STATE(1199), - [sym__immediate_decimal] = STATE(1198), - [sym_val_variable] = STATE(1199), - [sym__var] = STATE(1076), - [sym_comment] = STATE(837), - [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), - [anon_sym_SEMI] = ACTIONS(1977), - [sym_cmd_identifier] = ACTIONS(1977), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1977), - [anon_sym_DOT2] = ACTIONS(1985), - [anon_sym_try] = 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_where] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_not] = ACTIONS(1977), - [anon_sym_EQ2] = ACTIONS(1987), - [aux_sym__immediate_decimal_token1] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1991), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1977), - [anon_sym_true] = ACTIONS(1977), - [anon_sym_false] = ACTIONS(1977), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(1977), - [anon_sym_0o] = ACTIONS(1977), - [anon_sym_0x] = ACTIONS(1977), - [sym_val_date] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym__str_single_quotes] = ACTIONS(1977), - [sym__str_back_ticks] = ACTIONS(1977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(105), - }, - [838] = { - [sym_expr_parenthesized] = STATE(1303), - [sym__immediate_decimal] = STATE(1301), - [sym_val_variable] = STATE(1303), - [sym__var] = STATE(1110), - [sym_comment] = STATE(838), - [anon_sym_export] = ACTIONS(1995), - [anon_sym_alias] = ACTIONS(1995), - [anon_sym_let] = ACTIONS(1995), - [anon_sym_let_DASHenv] = ACTIONS(1995), - [anon_sym_mut] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [sym_cmd_identifier] = ACTIONS(1995), - [anon_sym_LF] = ACTIONS(1997), - [anon_sym_def] = ACTIONS(1995), - [anon_sym_export_DASHenv] = ACTIONS(1995), - [anon_sym_extern] = ACTIONS(1995), - [anon_sym_module] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_loop] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_do] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_match] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_DOT] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_source] = ACTIONS(1995), - [anon_sym_source_DASHenv] = ACTIONS(1995), - [anon_sym_register] = ACTIONS(1995), - [anon_sym_hide] = ACTIONS(1995), - [anon_sym_hide_DASHenv] = ACTIONS(1995), - [anon_sym_overlay] = ACTIONS(1995), - [anon_sym_where] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_not] = ACTIONS(1995), - [anon_sym_EQ2] = ACTIONS(2001), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = 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(1995), - [anon_sym_0o] = ACTIONS(1995), - [anon_sym_0x] = ACTIONS(1995), - [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_CARET] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(105), - }, - [839] = { - [sym_expr_parenthesized] = STATE(1201), - [sym__immediate_decimal] = STATE(1200), - [sym_val_variable] = STATE(1201), - [sym__var] = STATE(1076), - [sym_comment] = STATE(839), - [anon_sym_export] = ACTIONS(2003), - [anon_sym_alias] = ACTIONS(2003), - [anon_sym_let] = ACTIONS(2003), - [anon_sym_let_DASHenv] = ACTIONS(2003), - [anon_sym_mut] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [sym_cmd_identifier] = ACTIONS(2003), - [anon_sym_LF] = ACTIONS(2005), - [anon_sym_def] = ACTIONS(2003), - [anon_sym_export_DASHenv] = ACTIONS(2003), - [anon_sym_extern] = ACTIONS(2003), - [anon_sym_module] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_loop] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_match] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_source] = ACTIONS(2003), - [anon_sym_source_DASHenv] = ACTIONS(2003), - [anon_sym_register] = ACTIONS(2003), - [anon_sym_hide] = ACTIONS(2003), - [anon_sym_hide_DASHenv] = ACTIONS(2003), - [anon_sym_overlay] = ACTIONS(2003), - [anon_sym_where] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_not] = ACTIONS(2003), - [anon_sym_EQ2] = ACTIONS(2009), - [aux_sym__immediate_decimal_token1] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1991), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = 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(2003), - [anon_sym_0o] = ACTIONS(2003), - [anon_sym_0x] = ACTIONS(2003), - [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_CARET] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(105), - }, - [840] = { - [sym_expr_parenthesized] = STATE(1309), - [sym__immediate_decimal] = STATE(1308), - [sym_val_variable] = STATE(1309), - [sym__var] = STATE(1110), - [sym_comment] = STATE(840), - [anon_sym_export] = ACTIONS(2011), - [anon_sym_alias] = ACTIONS(2011), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_let_DASHenv] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [sym_cmd_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2013), - [anon_sym_def] = ACTIONS(2011), - [anon_sym_export_DASHenv] = ACTIONS(2011), - [anon_sym_extern] = ACTIONS(2011), - [anon_sym_module] = ACTIONS(2011), - [anon_sym_use] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_loop] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2011), - [anon_sym_do] = ACTIONS(2011), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_source] = ACTIONS(2011), - [anon_sym_source_DASHenv] = ACTIONS(2011), - [anon_sym_register] = ACTIONS(2011), - [anon_sym_hide] = ACTIONS(2011), - [anon_sym_hide_DASHenv] = ACTIONS(2011), - [anon_sym_overlay] = ACTIONS(2011), - [anon_sym_where] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_not] = ACTIONS(2011), - [anon_sym_EQ2] = ACTIONS(2017), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [aux_sym__val_number_decimal_token1] = 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(2011), - [anon_sym_0o] = ACTIONS(2011), - [anon_sym_0x] = ACTIONS(2011), - [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_CARET] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(105), - }, - [841] = { - [sym_expr_parenthesized] = STATE(1313), - [sym__immediate_decimal] = STATE(1310), - [sym_val_variable] = STATE(1313), - [sym__var] = STATE(1110), - [sym_comment] = STATE(841), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [sym_cmd_identifier] = ACTIONS(2019), - [anon_sym_LF] = ACTIONS(2021), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_DOT] = ACTIONS(2019), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_not] = ACTIONS(2019), - [anon_sym_EQ2] = ACTIONS(2025), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [aux_sym__val_number_token4] = ACTIONS(2019), - [aux_sym__val_number_token5] = ACTIONS(2019), - [aux_sym__val_number_token6] = ACTIONS(2019), - [anon_sym_0b] = ACTIONS(2019), - [anon_sym_0o] = ACTIONS(2019), - [anon_sym_0x] = ACTIONS(2019), - [sym_val_date] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), - [anon_sym_CARET] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(105), - }, - [842] = { - [sym_expr_parenthesized] = STATE(1270), - [sym__immediate_decimal] = STATE(1271), - [sym_val_variable] = STATE(1270), - [sym__var] = STATE(1143), - [sym_comment] = STATE(842), - [ts_builtin_sym_end] = ACTIONS(1979), - [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), - [anon_sym_SEMI] = ACTIONS(1977), - [sym_cmd_identifier] = ACTIONS(1977), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1977), - [anon_sym_DOT2] = ACTIONS(2033), - [anon_sym_try] = 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_where] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_not] = ACTIONS(1977), - [anon_sym_EQ2] = ACTIONS(2035), - [aux_sym__immediate_decimal_token1] = ACTIONS(2037), - [anon_sym_DASH2] = ACTIONS(2039), - [anon_sym_PLUS2] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(1977), - [anon_sym_true] = ACTIONS(1977), - [anon_sym_false] = ACTIONS(1977), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(1977), - [anon_sym_0o] = ACTIONS(1977), - [anon_sym_0x] = ACTIONS(1977), - [sym_val_date] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym__str_single_quotes] = ACTIONS(1977), - [sym__str_back_ticks] = ACTIONS(1977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(105), - }, - [843] = { - [sym_comment] = STATE(843), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(2043), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1369), - [anon_sym_BANG_TILDE] = ACTIONS(1369), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_EQ2] = ACTIONS(2043), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_err_GT] = ACTIONS(1369), - [anon_sym_out_GT] = ACTIONS(1369), - [anon_sym_e_GT] = ACTIONS(1369), - [anon_sym_o_GT] = ACTIONS(1369), - [anon_sym_err_PLUSout_GT] = ACTIONS(1369), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1369), - [anon_sym_o_PLUSe_GT] = ACTIONS(1369), - [anon_sym_e_PLUSo_GT] = ACTIONS(1369), - [aux_sym_unquoted_token1] = ACTIONS(1369), - [aux_sym_unquoted_token4] = ACTIONS(2047), - [aux_sym_unquoted_token6] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(105), - }, - [844] = { - [sym_expr_parenthesized] = STATE(1541), - [sym__immediate_decimal] = STATE(1531), - [sym_val_variable] = STATE(1541), - [sym__var] = STATE(1129), - [sym_comment] = STATE(844), - [ts_builtin_sym_end] = ACTIONS(2013), - [anon_sym_export] = ACTIONS(2011), - [anon_sym_alias] = ACTIONS(2011), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_let_DASHenv] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [sym_cmd_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2013), - [anon_sym_def] = ACTIONS(2011), - [anon_sym_export_DASHenv] = ACTIONS(2011), - [anon_sym_extern] = ACTIONS(2011), - [anon_sym_module] = ACTIONS(2011), - [anon_sym_use] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_loop] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2011), - [anon_sym_do] = ACTIONS(2011), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_source] = ACTIONS(2011), - [anon_sym_source_DASHenv] = ACTIONS(2011), - [anon_sym_register] = ACTIONS(2011), - [anon_sym_hide] = ACTIONS(2011), - [anon_sym_hide_DASHenv] = ACTIONS(2011), - [anon_sym_overlay] = ACTIONS(2011), - [anon_sym_where] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_not] = ACTIONS(2011), - [anon_sym_EQ2] = ACTIONS(2057), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [aux_sym__val_number_decimal_token1] = 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(2011), - [anon_sym_0o] = ACTIONS(2011), - [anon_sym_0x] = ACTIONS(2011), - [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_CARET] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(105), - }, - [845] = { - [sym_expr_parenthesized] = STATE(1515), - [sym__immediate_decimal] = STATE(1512), - [sym_val_variable] = STATE(1515), - [sym__var] = STATE(1129), - [sym_comment] = STATE(845), - [ts_builtin_sym_end] = ACTIONS(1959), - [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), - [anon_sym_SEMI] = ACTIONS(1957), - [sym_cmd_identifier] = ACTIONS(1957), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = 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_where] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_not] = ACTIONS(1957), - [anon_sym_EQ2] = ACTIONS(2067), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(1957), - [anon_sym_0o] = ACTIONS(1957), - [anon_sym_0x] = ACTIONS(1957), - [sym_val_date] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(105), - }, - [846] = { - [sym_expr_parenthesized] = STATE(1520), - [sym__immediate_decimal] = STATE(1549), - [sym_val_variable] = STATE(1520), - [sym__var] = STATE(1129), - [sym_comment] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(2021), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [sym_cmd_identifier] = ACTIONS(2019), - [anon_sym_LF] = ACTIONS(2021), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_DOT] = ACTIONS(2019), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_not] = ACTIONS(2019), - [anon_sym_EQ2] = ACTIONS(2071), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [aux_sym__val_number_token4] = ACTIONS(2019), - [aux_sym__val_number_token5] = ACTIONS(2019), - [aux_sym__val_number_token6] = ACTIONS(2019), - [anon_sym_0b] = ACTIONS(2019), - [anon_sym_0o] = ACTIONS(2019), - [anon_sym_0x] = ACTIONS(2019), - [sym_val_date] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), - [anon_sym_CARET] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(105), - }, - [847] = { - [sym_expr_parenthesized] = STATE(1492), - [sym__immediate_decimal] = STATE(1499), - [sym_val_variable] = STATE(1492), - [sym__var] = STATE(1129), - [sym_comment] = STATE(847), - [ts_builtin_sym_end] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1995), - [anon_sym_alias] = ACTIONS(1995), - [anon_sym_let] = ACTIONS(1995), - [anon_sym_let_DASHenv] = ACTIONS(1995), - [anon_sym_mut] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [sym_cmd_identifier] = ACTIONS(1995), - [anon_sym_LF] = ACTIONS(1997), - [anon_sym_def] = ACTIONS(1995), - [anon_sym_export_DASHenv] = ACTIONS(1995), - [anon_sym_extern] = ACTIONS(1995), - [anon_sym_module] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_loop] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_do] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_match] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_DOT] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_source] = ACTIONS(1995), - [anon_sym_source_DASHenv] = ACTIONS(1995), - [anon_sym_register] = ACTIONS(1995), - [anon_sym_hide] = ACTIONS(1995), - [anon_sym_hide_DASHenv] = ACTIONS(1995), - [anon_sym_overlay] = ACTIONS(1995), - [anon_sym_where] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_not] = ACTIONS(1995), - [anon_sym_EQ2] = ACTIONS(2075), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = 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(1995), - [anon_sym_0o] = ACTIONS(1995), - [anon_sym_0x] = ACTIONS(1995), - [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_CARET] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(105), - }, - [848] = { - [sym_expr_parenthesized] = STATE(1252), - [sym__immediate_decimal] = STATE(1259), - [sym_val_variable] = STATE(1252), - [sym__var] = STATE(1143), - [sym_comment] = STATE(848), - [ts_builtin_sym_end] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2003), - [anon_sym_alias] = ACTIONS(2003), - [anon_sym_let] = ACTIONS(2003), - [anon_sym_let_DASHenv] = ACTIONS(2003), - [anon_sym_mut] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [sym_cmd_identifier] = ACTIONS(2003), - [anon_sym_LF] = ACTIONS(2005), - [anon_sym_def] = ACTIONS(2003), - [anon_sym_export_DASHenv] = ACTIONS(2003), - [anon_sym_extern] = ACTIONS(2003), - [anon_sym_module] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_loop] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_match] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_source] = ACTIONS(2003), - [anon_sym_source_DASHenv] = ACTIONS(2003), - [anon_sym_register] = ACTIONS(2003), - [anon_sym_hide] = ACTIONS(2003), - [anon_sym_hide_DASHenv] = ACTIONS(2003), - [anon_sym_overlay] = ACTIONS(2003), - [anon_sym_where] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_not] = ACTIONS(2003), - [anon_sym_EQ2] = ACTIONS(2079), - [aux_sym__immediate_decimal_token1] = ACTIONS(2037), - [anon_sym_DASH2] = ACTIONS(2039), - [anon_sym_PLUS2] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = 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(2003), - [anon_sym_0o] = ACTIONS(2003), - [anon_sym_0x] = ACTIONS(2003), - [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_CARET] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(105), - }, - [849] = { - [sym_expr_parenthesized] = STATE(1283), - [sym__immediate_decimal] = STATE(1282), - [sym_val_variable] = STATE(1283), - [sym__var] = STATE(1110), - [sym_comment] = STATE(849), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_alias] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_let_DASHenv] = ACTIONS(2081), - [anon_sym_mut] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [sym_cmd_identifier] = ACTIONS(2081), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_def] = ACTIONS(2081), - [anon_sym_export_DASHenv] = ACTIONS(2081), - [anon_sym_extern] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_source] = ACTIONS(2081), - [anon_sym_source_DASHenv] = ACTIONS(2081), - [anon_sym_register] = ACTIONS(2081), - [anon_sym_hide] = ACTIONS(2081), - [anon_sym_hide_DASHenv] = ACTIONS(2081), - [anon_sym_overlay] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_not] = ACTIONS(2081), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [aux_sym__val_number_decimal_token1] = ACTIONS(2081), - [aux_sym__val_number_token1] = ACTIONS(2081), - [aux_sym__val_number_token2] = ACTIONS(2081), - [aux_sym__val_number_token3] = ACTIONS(2081), - [aux_sym__val_number_token4] = ACTIONS(2081), - [aux_sym__val_number_token5] = ACTIONS(2081), - [aux_sym__val_number_token6] = ACTIONS(2081), - [anon_sym_0b] = ACTIONS(2081), - [anon_sym_0o] = ACTIONS(2081), - [anon_sym_0x] = ACTIONS(2081), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2081), - [sym__str_back_ticks] = ACTIONS(2081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2081), - [anon_sym_CARET] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(105), - }, - [850] = { - [sym_expr_parenthesized] = STATE(1399), - [sym__immediate_decimal] = STATE(1397), - [sym_val_variable] = STATE(1399), - [sym__var] = STATE(1110), - [sym_comment] = STATE(850), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_alias] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_let_DASHenv] = ACTIONS(2085), - [anon_sym_mut] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [sym_cmd_identifier] = ACTIONS(2085), - [anon_sym_LF] = ACTIONS(2087), - [anon_sym_def] = ACTIONS(2085), - [anon_sym_export_DASHenv] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_source] = ACTIONS(2085), - [anon_sym_source_DASHenv] = ACTIONS(2085), - [anon_sym_register] = ACTIONS(2085), - [anon_sym_hide] = ACTIONS(2085), - [anon_sym_hide_DASHenv] = ACTIONS(2085), - [anon_sym_overlay] = ACTIONS(2085), - [anon_sym_where] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_not] = ACTIONS(2085), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2085), - [aux_sym__val_number_token1] = ACTIONS(2085), - [aux_sym__val_number_token2] = ACTIONS(2085), - [aux_sym__val_number_token3] = ACTIONS(2085), - [aux_sym__val_number_token4] = ACTIONS(2085), - [aux_sym__val_number_token5] = ACTIONS(2085), - [aux_sym__val_number_token6] = ACTIONS(2085), - [anon_sym_0b] = ACTIONS(2085), - [anon_sym_0o] = ACTIONS(2085), - [anon_sym_0x] = ACTIONS(2085), - [sym_val_date] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [sym__str_single_quotes] = ACTIONS(2085), - [sym__str_back_ticks] = ACTIONS(2085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(105), - }, - [851] = { - [sym_expr_parenthesized] = STATE(1293), - [sym__immediate_decimal] = STATE(1292), - [sym_val_variable] = STATE(1293), - [sym__var] = STATE(1110), - [sym_comment] = STATE(851), - [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), - [anon_sym_SEMI] = ACTIONS(2089), - [sym_cmd_identifier] = ACTIONS(2089), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_DOT] = ACTIONS(2089), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = 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_where] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_not] = ACTIONS(2089), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2089), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(105), - }, - [852] = { - [sym_expr_parenthesized] = STATE(1277), - [sym__immediate_decimal] = STATE(1276), - [sym_val_variable] = STATE(1277), - [sym__var] = STATE(1110), - [sym_comment] = STATE(852), - [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), - [anon_sym_SEMI] = ACTIONS(2093), - [sym_cmd_identifier] = ACTIONS(2093), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = 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_where] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_not] = ACTIONS(2093), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(2093), - [anon_sym_false] = ACTIONS(2093), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2093), - [anon_sym_0o] = ACTIONS(2093), - [anon_sym_0x] = ACTIONS(2093), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(105), - }, - [853] = { - [sym_expr_parenthesized] = STATE(1286), - [sym__immediate_decimal] = STATE(1285), - [sym_val_variable] = STATE(1286), - [sym__var] = STATE(1110), - [sym_comment] = STATE(853), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_alias] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_let_DASHenv] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [sym_cmd_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2099), - [anon_sym_def] = ACTIONS(2097), - [anon_sym_export_DASHenv] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_source] = ACTIONS(2097), - [anon_sym_source_DASHenv] = ACTIONS(2097), - [anon_sym_register] = ACTIONS(2097), - [anon_sym_hide] = ACTIONS(2097), - [anon_sym_hide_DASHenv] = ACTIONS(2097), - [anon_sym_overlay] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_not] = ACTIONS(2097), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [aux_sym__val_number_token4] = ACTIONS(2097), - [aux_sym__val_number_token5] = ACTIONS(2097), - [aux_sym__val_number_token6] = ACTIONS(2097), - [anon_sym_0b] = ACTIONS(2097), - [anon_sym_0o] = ACTIONS(2097), - [anon_sym_0x] = ACTIONS(2097), - [sym_val_date] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [sym__str_single_quotes] = ACTIONS(2097), - [sym__str_back_ticks] = ACTIONS(2097), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(105), - }, - [854] = { - [sym_expr_parenthesized] = STATE(1289), - [sym__immediate_decimal] = STATE(1288), - [sym_val_variable] = STATE(1289), - [sym__var] = STATE(1110), - [sym_comment] = STATE(854), - [anon_sym_export] = ACTIONS(2101), - [anon_sym_alias] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_let_DASHenv] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [sym_cmd_identifier] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2103), - [anon_sym_def] = ACTIONS(2101), - [anon_sym_export_DASHenv] = ACTIONS(2101), - [anon_sym_extern] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_source] = ACTIONS(2101), - [anon_sym_source_DASHenv] = ACTIONS(2101), - [anon_sym_register] = ACTIONS(2101), - [anon_sym_hide] = ACTIONS(2101), - [anon_sym_hide_DASHenv] = ACTIONS(2101), - [anon_sym_overlay] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_not] = ACTIONS(2101), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [aux_sym__val_number_decimal_token1] = ACTIONS(2101), - [aux_sym__val_number_token1] = ACTIONS(2101), - [aux_sym__val_number_token2] = ACTIONS(2101), - [aux_sym__val_number_token3] = ACTIONS(2101), - [aux_sym__val_number_token4] = ACTIONS(2101), - [aux_sym__val_number_token5] = ACTIONS(2101), - [aux_sym__val_number_token6] = ACTIONS(2101), - [anon_sym_0b] = ACTIONS(2101), - [anon_sym_0o] = ACTIONS(2101), - [anon_sym_0x] = ACTIONS(2101), - [sym_val_date] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym__str_single_quotes] = ACTIONS(2101), - [sym__str_back_ticks] = ACTIONS(2101), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2101), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(105), - }, - [855] = { - [sym_expr_parenthesized] = STATE(1295), - [sym__immediate_decimal] = STATE(1294), - [sym_val_variable] = STATE(1295), - [sym__var] = STATE(1110), - [sym_comment] = STATE(855), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_alias] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_DASHenv] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [sym_cmd_identifier] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(2107), - [anon_sym_def] = ACTIONS(2105), - [anon_sym_export_DASHenv] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_source] = ACTIONS(2105), - [anon_sym_source_DASHenv] = ACTIONS(2105), - [anon_sym_register] = ACTIONS(2105), - [anon_sym_hide] = ACTIONS(2105), - [anon_sym_hide_DASHenv] = ACTIONS(2105), - [anon_sym_overlay] = ACTIONS(2105), - [anon_sym_where] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_not] = ACTIONS(2105), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_token1] = ACTIONS(2105), - [aux_sym__val_number_token2] = ACTIONS(2105), - [aux_sym__val_number_token3] = ACTIONS(2105), - [aux_sym__val_number_token4] = ACTIONS(2105), - [aux_sym__val_number_token5] = ACTIONS(2105), - [aux_sym__val_number_token6] = ACTIONS(2105), - [anon_sym_0b] = ACTIONS(2105), - [anon_sym_0o] = ACTIONS(2105), - [anon_sym_0x] = ACTIONS(2105), - [sym_val_date] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [sym__str_single_quotes] = ACTIONS(2105), - [sym__str_back_ticks] = ACTIONS(2105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2105), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(105), - }, - [856] = { - [sym_comment] = STATE(856), - [ts_builtin_sym_end] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT2] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1369), - [anon_sym_BANG_TILDE] = ACTIONS(1369), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_EQ2] = ACTIONS(2109), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_err_GT] = ACTIONS(1369), - [anon_sym_out_GT] = ACTIONS(1369), - [anon_sym_e_GT] = ACTIONS(1369), - [anon_sym_o_GT] = ACTIONS(1369), - [anon_sym_err_PLUSout_GT] = ACTIONS(1369), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1369), - [anon_sym_o_PLUSe_GT] = ACTIONS(1369), - [anon_sym_e_PLUSo_GT] = ACTIONS(1369), - [aux_sym_unquoted_token1] = ACTIONS(1369), - [aux_sym_unquoted_token4] = ACTIONS(2113), - [aux_sym_unquoted_token6] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(105), - }, - [857] = { - [sym_expr_parenthesized] = STATE(1300), - [sym__immediate_decimal] = STATE(1297), - [sym_val_variable] = STATE(1300), - [sym__var] = STATE(1110), - [sym_comment] = STATE(857), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_alias] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_let_DASHenv] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [sym_cmd_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_def] = ACTIONS(2117), - [anon_sym_export_DASHenv] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_source] = ACTIONS(2117), - [anon_sym_source_DASHenv] = ACTIONS(2117), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_hide] = ACTIONS(2117), - [anon_sym_hide_DASHenv] = ACTIONS(2117), - [anon_sym_overlay] = ACTIONS(2117), - [anon_sym_where] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_not] = ACTIONS(2117), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [aux_sym__val_number_decimal_token1] = ACTIONS(2117), - [aux_sym__val_number_token1] = ACTIONS(2117), - [aux_sym__val_number_token2] = ACTIONS(2117), - [aux_sym__val_number_token3] = ACTIONS(2117), - [aux_sym__val_number_token4] = ACTIONS(2117), - [aux_sym__val_number_token5] = ACTIONS(2117), - [aux_sym__val_number_token6] = ACTIONS(2117), - [anon_sym_0b] = ACTIONS(2117), - [anon_sym_0o] = ACTIONS(2117), - [anon_sym_0x] = ACTIONS(2117), - [sym_val_date] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [sym__str_single_quotes] = ACTIONS(2117), - [sym__str_back_ticks] = ACTIONS(2117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(105), - }, [858] = { - [sym_expr_parenthesized] = STATE(1389), - [sym__immediate_decimal] = STATE(1388), - [sym_val_variable] = STATE(1389), - [sym__var] = STATE(1110), + [sym__ctrl_expression] = STATE(4434), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_pipe_element_last] = STATE(4862), + [sym_where_command] = STATE(4439), + [sym__expression] = STATE(4439), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(4439), [sym_comment] = STATE(858), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_alias] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_let_DASHenv] = ACTIONS(2121), - [anon_sym_mut] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2121), - [sym_cmd_identifier] = ACTIONS(2121), - [anon_sym_LF] = ACTIONS(2123), - [anon_sym_def] = ACTIONS(2121), - [anon_sym_export_DASHenv] = ACTIONS(2121), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_loop] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_source] = ACTIONS(2121), - [anon_sym_source_DASHenv] = ACTIONS(2121), - [anon_sym_register] = ACTIONS(2121), - [anon_sym_hide] = ACTIONS(2121), - [anon_sym_hide_DASHenv] = ACTIONS(2121), - [anon_sym_overlay] = ACTIONS(2121), - [anon_sym_where] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_not] = ACTIONS(2121), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [aux_sym__val_number_decimal_token1] = ACTIONS(2121), - [aux_sym__val_number_token1] = ACTIONS(2121), - [aux_sym__val_number_token2] = ACTIONS(2121), - [aux_sym__val_number_token3] = ACTIONS(2121), - [aux_sym__val_number_token4] = ACTIONS(2121), - [aux_sym__val_number_token5] = ACTIONS(2121), - [aux_sym__val_number_token6] = ACTIONS(2121), - [anon_sym_0b] = ACTIONS(2121), - [anon_sym_0o] = ACTIONS(2121), - [anon_sym_0x] = ACTIONS(2121), - [sym_val_date] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [sym__str_single_quotes] = ACTIONS(2121), - [sym__str_back_ticks] = ACTIONS(2121), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_pipeline_repeat1] = STATE(861), + [sym_cmd_identifier] = ACTIONS(483), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_POUND] = ACTIONS(3), }, [859] = { - [sym_expr_parenthesized] = STATE(1395), - [sym__immediate_decimal] = STATE(1394), - [sym_val_variable] = STATE(1395), - [sym__var] = STATE(1110), + [sym__ctrl_expression_parenthesized] = STATE(4707), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_pipe_element_parenthesized_last] = STATE(5343), + [sym_where_command] = STATE(4691), + [sym__expression] = STATE(4691), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(4683), [sym_comment] = STATE(859), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_alias] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_let_DASHenv] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [sym_cmd_identifier] = ACTIONS(2125), - [anon_sym_LF] = ACTIONS(2127), - [anon_sym_def] = ACTIONS(2125), - [anon_sym_export_DASHenv] = ACTIONS(2125), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2125), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_DOT] = ACTIONS(2125), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_source] = ACTIONS(2125), - [anon_sym_source_DASHenv] = ACTIONS(2125), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_hide] = ACTIONS(2125), - [anon_sym_hide_DASHenv] = ACTIONS(2125), - [anon_sym_overlay] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_not] = ACTIONS(2125), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [aux_sym__val_number_decimal_token1] = ACTIONS(2125), - [aux_sym__val_number_token1] = ACTIONS(2125), - [aux_sym__val_number_token2] = ACTIONS(2125), - [aux_sym__val_number_token3] = ACTIONS(2125), - [aux_sym__val_number_token4] = ACTIONS(2125), - [aux_sym__val_number_token5] = ACTIONS(2125), - [aux_sym__val_number_token6] = ACTIONS(2125), - [anon_sym_0b] = ACTIONS(2125), - [anon_sym_0o] = ACTIONS(2125), - [anon_sym_0x] = ACTIONS(2125), - [sym_val_date] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [sym__str_single_quotes] = ACTIONS(2125), - [sym__str_back_ticks] = ACTIONS(2125), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2125), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(860), + [sym_cmd_identifier] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(555), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_try] = ACTIONS(557), + [anon_sym_return] = ACTIONS(519), + [anon_sym_where] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(361), + [aux_sym__val_number_token2] = ACTIONS(361), + [aux_sym__val_number_token3] = ACTIONS(361), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(361), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym__str_single_quotes] = ACTIONS(371), + [sym__str_back_ticks] = ACTIONS(371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(3), }, [860] = { - [sym_expr_parenthesized] = STATE(1405), - [sym__immediate_decimal] = STATE(1401), - [sym_val_variable] = STATE(1405), - [sym__var] = STATE(1110), + [sym__ctrl_expression_parenthesized] = STATE(5474), + [sym_ctrl_do] = STATE(5121), + [sym_ctrl_if_parenthesized] = STATE(5121), + [sym_ctrl_match] = STATE(5121), + [sym_ctrl_try_parenthesized] = STATE(5121), + [sym_ctrl_return] = STATE(5121), + [sym_pipe_element_parenthesized] = STATE(2864), + [sym_where_command] = STATE(5476), + [sym__expression] = STATE(5476), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym__command_parenthesized_body] = STATE(5477), [sym_comment] = STATE(860), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_alias] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_let_DASHenv] = ACTIONS(2129), - [anon_sym_mut] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [sym_cmd_identifier] = ACTIONS(2129), - [anon_sym_LF] = ACTIONS(2131), - [anon_sym_def] = ACTIONS(2129), - [anon_sym_export_DASHenv] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_loop] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_DOT] = ACTIONS(2129), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_source] = ACTIONS(2129), - [anon_sym_source_DASHenv] = ACTIONS(2129), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_hide] = ACTIONS(2129), - [anon_sym_hide_DASHenv] = ACTIONS(2129), - [anon_sym_overlay] = ACTIONS(2129), - [anon_sym_where] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_not] = ACTIONS(2129), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2129), - [anon_sym_false] = ACTIONS(2129), - [aux_sym__val_number_decimal_token1] = ACTIONS(2129), - [aux_sym__val_number_token1] = ACTIONS(2129), - [aux_sym__val_number_token2] = ACTIONS(2129), - [aux_sym__val_number_token3] = ACTIONS(2129), - [aux_sym__val_number_token4] = ACTIONS(2129), - [aux_sym__val_number_token5] = ACTIONS(2129), - [aux_sym__val_number_token6] = ACTIONS(2129), - [anon_sym_0b] = ACTIONS(2129), - [anon_sym_0o] = ACTIONS(2129), - [anon_sym_0x] = ACTIONS(2129), - [sym_val_date] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2129), - [sym__str_single_quotes] = ACTIONS(2129), - [sym__str_back_ticks] = ACTIONS(2129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2129), - [anon_sym_CARET] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(860), + [sym_cmd_identifier] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_where] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1878), + [anon_sym_null] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [aux_sym__val_number_token4] = ACTIONS(1893), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1893), + [anon_sym_0b] = ACTIONS(1896), + [anon_sym_0o] = ACTIONS(1896), + [anon_sym_0x] = ACTIONS(1896), + [sym_val_date] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym__str_single_quotes] = ACTIONS(1905), + [sym__str_back_ticks] = ACTIONS(1905), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), }, [861] = { - [sym_expr_parenthesized] = STATE(1291), - [sym__immediate_decimal] = STATE(1290), - [sym_val_variable] = STATE(1291), - [sym__var] = STATE(1110), + [sym__ctrl_expression] = STATE(5436), + [sym_ctrl_do] = STATE(4873), + [sym_ctrl_if] = STATE(4873), + [sym_ctrl_match] = STATE(4873), + [sym_ctrl_try] = STATE(4873), + [sym_ctrl_return] = STATE(4873), + [sym_pipe_element] = STATE(2810), + [sym_where_command] = STATE(5437), + [sym__expression] = STATE(5437), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_command] = STATE(5437), [sym_comment] = STATE(861), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2133), - [sym_cmd_identifier] = ACTIONS(2133), - [anon_sym_LF] = ACTIONS(2135), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_DOT] = ACTIONS(2133), - [anon_sym_DOT2] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_where] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_not] = ACTIONS(2133), - [aux_sym__immediate_decimal_token1] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_token1] = ACTIONS(2133), - [aux_sym__val_number_token2] = ACTIONS(2133), - [aux_sym__val_number_token3] = ACTIONS(2133), - [aux_sym__val_number_token4] = ACTIONS(2133), - [aux_sym__val_number_token5] = ACTIONS(2133), - [aux_sym__val_number_token6] = ACTIONS(2133), - [anon_sym_0b] = ACTIONS(2133), - [anon_sym_0o] = ACTIONS(2133), - [anon_sym_0x] = ACTIONS(2133), - [sym_val_date] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2133), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_pipeline_repeat1] = STATE(861), + [sym_cmd_identifier] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_where] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1962), + [anon_sym_not] = ACTIONS(1965), + [anon_sym_null] = ACTIONS(1968), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1974), + [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(1980), + [aux_sym__val_number_token5] = ACTIONS(1977), + [aux_sym__val_number_token6] = ACTIONS(1980), + [anon_sym_0b] = ACTIONS(1983), + [anon_sym_0o] = ACTIONS(1983), + [anon_sym_0x] = ACTIONS(1983), + [sym_val_date] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1989), + [sym__str_single_quotes] = ACTIONS(1992), + [sym__str_back_ticks] = ACTIONS(1992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1998), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), }, [862] = { - [sym_expr_parenthesized] = STATE(1597), - [sym__immediate_decimal] = STATE(1608), - [sym_val_variable] = STATE(1597), - [sym__var] = STATE(1129), + [sym_expr_parenthesized] = STATE(1395), + [sym__immediate_decimal] = STATE(1396), + [sym_val_variable] = STATE(1395), + [sym__var] = STATE(1127), [sym_comment] = STATE(862), - [ts_builtin_sym_end] = ACTIONS(2123), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_alias] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_let_DASHenv] = ACTIONS(2121), - [anon_sym_mut] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2121), - [sym_cmd_identifier] = ACTIONS(2121), - [anon_sym_LF] = ACTIONS(2123), - [anon_sym_def] = ACTIONS(2121), - [anon_sym_export_DASHenv] = ACTIONS(2121), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_loop] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_source] = ACTIONS(2121), - [anon_sym_source_DASHenv] = ACTIONS(2121), - [anon_sym_register] = ACTIONS(2121), - [anon_sym_hide] = ACTIONS(2121), - [anon_sym_hide_DASHenv] = ACTIONS(2121), - [anon_sym_overlay] = ACTIONS(2121), - [anon_sym_where] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_not] = ACTIONS(2121), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [aux_sym__val_number_decimal_token1] = ACTIONS(2121), - [aux_sym__val_number_token1] = ACTIONS(2121), - [aux_sym__val_number_token2] = ACTIONS(2121), - [aux_sym__val_number_token3] = ACTIONS(2121), - [aux_sym__val_number_token4] = ACTIONS(2121), - [aux_sym__val_number_token5] = ACTIONS(2121), - [aux_sym__val_number_token6] = ACTIONS(2121), - [anon_sym_0b] = ACTIONS(2121), - [anon_sym_0o] = ACTIONS(2121), - [anon_sym_0x] = ACTIONS(2121), - [sym_val_date] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [sym__str_single_quotes] = ACTIONS(2121), - [sym__str_back_ticks] = ACTIONS(2121), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2121), + [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), + [anon_sym_SEMI] = ACTIONS(2004), + [sym_cmd_identifier] = ACTIONS(2004), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2004), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(2004), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = 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_where] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_EQ2] = ACTIONS(2016), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2004), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2004), + [anon_sym_0o] = ACTIONS(2004), + [anon_sym_0x] = ACTIONS(2004), + [sym_val_date] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2004), + [sym__str_single_quotes] = ACTIONS(2004), + [sym__str_back_ticks] = ACTIONS(2004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2004), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2004), + [anon_sym_CARET] = ACTIONS(2004), [anon_sym_POUND] = ACTIONS(105), }, [863] = { - [sym_expr_parenthesized] = STATE(1602), - [sym__immediate_decimal] = STATE(1605), - [sym_val_variable] = STATE(1602), - [sym__var] = STATE(1129), + [sym_expr_parenthesized] = STATE(1399), + [sym__immediate_decimal] = STATE(1400), + [sym_val_variable] = STATE(1399), + [sym__var] = STATE(1127), [sym_comment] = STATE(863), - [ts_builtin_sym_end] = ACTIONS(2095), - [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), - [anon_sym_SEMI] = ACTIONS(2093), - [sym_cmd_identifier] = ACTIONS(2093), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = 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_where] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_not] = ACTIONS(2093), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(2093), - [anon_sym_false] = ACTIONS(2093), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2093), - [anon_sym_0o] = ACTIONS(2093), - [anon_sym_0x] = ACTIONS(2093), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), + [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), + [anon_sym_SEMI] = ACTIONS(2024), + [sym_cmd_identifier] = ACTIONS(2024), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_loop] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_match] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = 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_where] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_EQ2] = ACTIONS(2030), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2024), + [anon_sym_0o] = ACTIONS(2024), + [anon_sym_0x] = ACTIONS(2024), + [sym_val_date] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), [anon_sym_POUND] = ACTIONS(105), }, [864] = { + [sym_expr_parenthesized] = STATE(1221), + [sym__immediate_decimal] = STATE(1212), + [sym_val_variable] = STATE(1221), + [sym__var] = STATE(1140), [sym_comment] = STATE(864), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT2] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1426), - [anon_sym_BANG_TILDE] = ACTIONS(1426), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [aux_sym__immediate_decimal_token1] = ACTIONS(2139), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_err_GT] = ACTIONS(1426), - [anon_sym_out_GT] = ACTIONS(1426), - [anon_sym_e_GT] = ACTIONS(1426), - [anon_sym_o_GT] = ACTIONS(1426), - [anon_sym_err_PLUSout_GT] = ACTIONS(1426), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1426), - [anon_sym_o_PLUSe_GT] = ACTIONS(1426), - [anon_sym_e_PLUSo_GT] = ACTIONS(1426), - [aux_sym_unquoted_token1] = ACTIONS(1426), - [aux_sym_unquoted_token2] = ACTIONS(2141), + [anon_sym_export] = ACTIONS(2032), + [anon_sym_alias] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_let_DASHenv] = ACTIONS(2032), + [anon_sym_mut] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [sym_cmd_identifier] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2034), + [anon_sym_def] = ACTIONS(2032), + [anon_sym_export_DASHenv] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym_module] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_DOT] = ACTIONS(2032), + [anon_sym_DOT2] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_source] = ACTIONS(2032), + [anon_sym_source_DASHenv] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_hide] = ACTIONS(2032), + [anon_sym_hide_DASHenv] = ACTIONS(2032), + [anon_sym_overlay] = ACTIONS(2032), + [anon_sym_where] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_not] = ACTIONS(2032), + [anon_sym_EQ2] = ACTIONS(2042), + [aux_sym__immediate_decimal_token1] = ACTIONS(2044), + [anon_sym_DASH2] = ACTIONS(2046), + [anon_sym_PLUS2] = ACTIONS(2048), + [anon_sym_null] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2032), + [anon_sym_false] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2032), + [aux_sym__val_number_token1] = ACTIONS(2032), + [aux_sym__val_number_token2] = ACTIONS(2032), + [aux_sym__val_number_token3] = ACTIONS(2032), + [aux_sym__val_number_token4] = ACTIONS(2032), + [aux_sym__val_number_token5] = ACTIONS(2032), + [aux_sym__val_number_token6] = ACTIONS(2032), + [anon_sym_0b] = ACTIONS(2032), + [anon_sym_0o] = ACTIONS(2032), + [anon_sym_0x] = ACTIONS(2032), + [sym_val_date] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [sym__str_single_quotes] = ACTIONS(2032), + [sym__str_back_ticks] = ACTIONS(2032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2032), + [anon_sym_CARET] = ACTIONS(2032), [anon_sym_POUND] = ACTIONS(105), }, [865] = { - [sym_expr_parenthesized] = STATE(1525), - [sym__immediate_decimal] = STATE(1526), - [sym_val_variable] = STATE(1525), - [sym__var] = STATE(1129), + [sym_expr_parenthesized] = STATE(1405), + [sym__immediate_decimal] = STATE(1409), + [sym_val_variable] = STATE(1405), + [sym__var] = STATE(1127), [sym_comment] = STATE(865), - [ts_builtin_sym_end] = ACTIONS(2107), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_alias] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_DASHenv] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [sym_cmd_identifier] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(2107), - [anon_sym_def] = ACTIONS(2105), - [anon_sym_export_DASHenv] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_source] = ACTIONS(2105), - [anon_sym_source_DASHenv] = ACTIONS(2105), - [anon_sym_register] = ACTIONS(2105), - [anon_sym_hide] = ACTIONS(2105), - [anon_sym_hide_DASHenv] = ACTIONS(2105), - [anon_sym_overlay] = ACTIONS(2105), - [anon_sym_where] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_not] = ACTIONS(2105), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_token1] = ACTIONS(2105), - [aux_sym__val_number_token2] = ACTIONS(2105), - [aux_sym__val_number_token3] = ACTIONS(2105), - [aux_sym__val_number_token4] = ACTIONS(2105), - [aux_sym__val_number_token5] = ACTIONS(2105), - [aux_sym__val_number_token6] = ACTIONS(2105), - [anon_sym_0b] = ACTIONS(2105), - [anon_sym_0o] = ACTIONS(2105), - [anon_sym_0x] = ACTIONS(2105), - [sym_val_date] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [sym__str_single_quotes] = ACTIONS(2105), - [sym__str_back_ticks] = ACTIONS(2105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2105), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2050), + [anon_sym_alias] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_let_DASHenv] = ACTIONS(2050), + [anon_sym_mut] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [sym_cmd_identifier] = ACTIONS(2050), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_def] = ACTIONS(2050), + [anon_sym_export_DASHenv] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_module] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2050), + [anon_sym_LT] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_do] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_source] = ACTIONS(2050), + [anon_sym_source_DASHenv] = ACTIONS(2050), + [anon_sym_register] = ACTIONS(2050), + [anon_sym_hide] = ACTIONS(2050), + [anon_sym_hide_DASHenv] = ACTIONS(2050), + [anon_sym_overlay] = ACTIONS(2050), + [anon_sym_where] = ACTIONS(2050), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_EQ2] = ACTIONS(2056), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2050), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [aux_sym__val_number_decimal_token1] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(2050), + [aux_sym__val_number_token2] = ACTIONS(2050), + [aux_sym__val_number_token3] = ACTIONS(2050), + [aux_sym__val_number_token4] = ACTIONS(2050), + [aux_sym__val_number_token5] = ACTIONS(2050), + [aux_sym__val_number_token6] = ACTIONS(2050), + [anon_sym_0b] = ACTIONS(2050), + [anon_sym_0o] = ACTIONS(2050), + [anon_sym_0x] = ACTIONS(2050), + [sym_val_date] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym__str_single_quotes] = ACTIONS(2050), + [sym__str_back_ticks] = ACTIONS(2050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), [anon_sym_POUND] = ACTIONS(105), }, [866] = { - [sym_cell_path] = STATE(1000), - [sym_path] = STATE(879), + [sym_expr_parenthesized] = STATE(1410), + [sym__immediate_decimal] = STATE(1411), + [sym_val_variable] = STATE(1410), + [sym__var] = STATE(1127), [sym_comment] = STATE(866), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_LF] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_RPAREN] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_DOLLAR] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_bit_DASHshl] = ACTIONS(1447), - [anon_sym_bit_DASHshr] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_LT2] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_not_DASHin] = ACTIONS(1447), - [anon_sym_starts_DASHwith] = ACTIONS(1447), - [anon_sym_ends_DASHwith] = ACTIONS(1447), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1447), - [anon_sym_bit_DASHxor] = ACTIONS(1447), - [anon_sym_bit_DASHor] = ACTIONS(1447), - [anon_sym_and] = ACTIONS(1447), - [anon_sym_xor] = ACTIONS(1447), - [anon_sym_or] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [aux_sym__val_number_decimal_token1] = 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(1447), - [aux_sym__val_number_token5] = ACTIONS(1447), - [aux_sym__val_number_token6] = ACTIONS(1447), - [anon_sym_0b] = ACTIONS(1447), - [anon_sym_0o] = ACTIONS(1447), - [anon_sym_0x] = ACTIONS(1447), - [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), - [anon_sym_err_GT] = ACTIONS(1447), - [anon_sym_out_GT] = ACTIONS(1447), - [anon_sym_e_GT] = ACTIONS(1447), - [anon_sym_o_GT] = ACTIONS(1447), - [anon_sym_err_PLUSout_GT] = ACTIONS(1447), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1447), - [anon_sym_o_PLUSe_GT] = ACTIONS(1447), - [anon_sym_e_PLUSo_GT] = ACTIONS(1447), - [aux_sym_unquoted_token1] = ACTIONS(1447), + [anon_sym_export] = ACTIONS(2058), + [anon_sym_alias] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_let_DASHenv] = ACTIONS(2058), + [anon_sym_mut] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2058), + [sym_cmd_identifier] = ACTIONS(2058), + [anon_sym_LF] = ACTIONS(2060), + [anon_sym_def] = ACTIONS(2058), + [anon_sym_export_DASHenv] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_module] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_DOT] = ACTIONS(2058), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_source] = ACTIONS(2058), + [anon_sym_source_DASHenv] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_hide] = ACTIONS(2058), + [anon_sym_hide_DASHenv] = ACTIONS(2058), + [anon_sym_overlay] = ACTIONS(2058), + [anon_sym_where] = ACTIONS(2058), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_not] = ACTIONS(2058), + [anon_sym_EQ2] = ACTIONS(2064), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2058), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [aux_sym__val_number_decimal_token1] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(2058), + [aux_sym__val_number_token2] = ACTIONS(2058), + [aux_sym__val_number_token3] = ACTIONS(2058), + [aux_sym__val_number_token4] = ACTIONS(2058), + [aux_sym__val_number_token5] = ACTIONS(2058), + [aux_sym__val_number_token6] = ACTIONS(2058), + [anon_sym_0b] = ACTIONS(2058), + [anon_sym_0o] = ACTIONS(2058), + [anon_sym_0x] = ACTIONS(2058), + [sym_val_date] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2058), + [sym__str_single_quotes] = ACTIONS(2058), + [sym__str_back_ticks] = ACTIONS(2058), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2058), + [anon_sym_CARET] = ACTIONS(2058), [anon_sym_POUND] = ACTIONS(105), }, [867] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2462), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_expr_parenthesized] = STATE(1225), + [sym__immediate_decimal] = STATE(1224), + [sym_val_variable] = STATE(1225), + [sym__var] = STATE(1140), [sym_comment] = STATE(867), - [aux_sym_command_repeat1] = STATE(872), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_LF] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2066), + [sym_cmd_identifier] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DOT2] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_where] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_not] = ACTIONS(2066), + [anon_sym_EQ2] = ACTIONS(2072), + [aux_sym__immediate_decimal_token1] = ACTIONS(2044), + [anon_sym_DASH2] = ACTIONS(2046), + [anon_sym_PLUS2] = ACTIONS(2048), + [anon_sym_null] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_token1] = ACTIONS(2066), + [aux_sym__val_number_token2] = ACTIONS(2066), + [aux_sym__val_number_token3] = ACTIONS(2066), + [aux_sym__val_number_token4] = ACTIONS(2066), + [aux_sym__val_number_token5] = ACTIONS(2066), + [aux_sym__val_number_token6] = ACTIONS(2066), + [anon_sym_0b] = ACTIONS(2066), + [anon_sym_0o] = ACTIONS(2066), + [anon_sym_0x] = ACTIONS(2066), + [sym_val_date] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [sym__str_single_quotes] = ACTIONS(2066), + [sym__str_back_ticks] = ACTIONS(2066), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2066), + [anon_sym_CARET] = ACTIONS(2066), [anon_sym_POUND] = ACTIONS(105), }, [868] = { - [sym_cell_path] = STATE(976), - [sym_path] = STATE(879), [sym_comment] = STATE(868), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1399), - [anon_sym_BANG_TILDE] = ACTIONS(1399), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_err_GT] = ACTIONS(1399), - [anon_sym_out_GT] = ACTIONS(1399), - [anon_sym_e_GT] = ACTIONS(1399), - [anon_sym_o_GT] = ACTIONS(1399), - [anon_sym_err_PLUSout_GT] = ACTIONS(1399), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1399), - [anon_sym_o_PLUSe_GT] = ACTIONS(1399), - [anon_sym_e_PLUSo_GT] = ACTIONS(1399), - [aux_sym_unquoted_token1] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(2074), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT2] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1375), + [anon_sym_BANG_TILDE] = ACTIONS(1375), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_EQ2] = ACTIONS(2074), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_err_GT] = ACTIONS(1375), + [anon_sym_out_GT] = ACTIONS(1375), + [anon_sym_e_GT] = ACTIONS(1375), + [anon_sym_o_GT] = ACTIONS(1375), + [anon_sym_err_PLUSout_GT] = ACTIONS(1375), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1375), + [anon_sym_o_PLUSe_GT] = ACTIONS(1375), + [anon_sym_e_PLUSo_GT] = ACTIONS(1375), + [aux_sym_unquoted_token1] = ACTIONS(1375), + [aux_sym_unquoted_token4] = ACTIONS(2078), + [aux_sym_unquoted_token6] = ACTIONS(2080), [anon_sym_POUND] = ACTIONS(105), }, [869] = { - [sym_cell_path] = STATE(988), - [sym_path] = STATE(879), + [sym_expr_parenthesized] = STATE(1389), + [sym__immediate_decimal] = STATE(1391), + [sym_val_variable] = STATE(1389), + [sym__var] = STATE(1203), [sym_comment] = STATE(869), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_LF] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_RPAREN] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_DOLLAR] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_in] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_STAR_STAR] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_mod] = ACTIONS(1407), - [anon_sym_SLASH_SLASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_bit_DASHshl] = ACTIONS(1407), - [anon_sym_bit_DASHshr] = ACTIONS(1407), - [anon_sym_EQ_EQ] = ACTIONS(1407), - [anon_sym_BANG_EQ] = ACTIONS(1407), - [anon_sym_LT2] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(1407), - [anon_sym_not_DASHin] = ACTIONS(1407), - [anon_sym_starts_DASHwith] = ACTIONS(1407), - [anon_sym_ends_DASHwith] = ACTIONS(1407), - [anon_sym_EQ_TILDE] = ACTIONS(1407), - [anon_sym_BANG_TILDE] = ACTIONS(1407), - [anon_sym_bit_DASHand] = ACTIONS(1407), - [anon_sym_bit_DASHxor] = ACTIONS(1407), - [anon_sym_bit_DASHor] = ACTIONS(1407), - [anon_sym_and] = ACTIONS(1407), - [anon_sym_xor] = ACTIONS(1407), - [anon_sym_or] = ACTIONS(1407), - [anon_sym_null] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [aux_sym__val_number_decimal_token1] = ACTIONS(1407), - [aux_sym__val_number_token1] = ACTIONS(1407), - [aux_sym__val_number_token2] = ACTIONS(1407), - [aux_sym__val_number_token3] = ACTIONS(1407), - [aux_sym__val_number_token4] = ACTIONS(1407), - [aux_sym__val_number_token5] = ACTIONS(1407), - [aux_sym__val_number_token6] = ACTIONS(1407), - [anon_sym_0b] = ACTIONS(1407), - [anon_sym_0o] = ACTIONS(1407), - [anon_sym_0x] = ACTIONS(1407), - [sym_val_date] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym__str_single_quotes] = ACTIONS(1407), - [sym__str_back_ticks] = ACTIONS(1407), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), - [anon_sym_err_GT] = ACTIONS(1407), - [anon_sym_out_GT] = ACTIONS(1407), - [anon_sym_e_GT] = ACTIONS(1407), - [anon_sym_o_GT] = ACTIONS(1407), - [anon_sym_err_PLUSout_GT] = ACTIONS(1407), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1407), - [anon_sym_o_PLUSe_GT] = ACTIONS(1407), - [anon_sym_e_PLUSo_GT] = ACTIONS(1407), - [aux_sym_unquoted_token1] = ACTIONS(1407), + [ts_builtin_sym_end] = ACTIONS(2034), + [anon_sym_export] = ACTIONS(2032), + [anon_sym_alias] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_let_DASHenv] = ACTIONS(2032), + [anon_sym_mut] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [sym_cmd_identifier] = ACTIONS(2032), + [anon_sym_LF] = ACTIONS(2034), + [anon_sym_def] = ACTIONS(2032), + [anon_sym_export_DASHenv] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym_module] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_DOT] = ACTIONS(2032), + [anon_sym_DOT2] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_source] = ACTIONS(2032), + [anon_sym_source_DASHenv] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_hide] = ACTIONS(2032), + [anon_sym_hide_DASHenv] = ACTIONS(2032), + [anon_sym_overlay] = ACTIONS(2032), + [anon_sym_where] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_not] = ACTIONS(2032), + [anon_sym_EQ2] = ACTIONS(2090), + [aux_sym__immediate_decimal_token1] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_null] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2032), + [anon_sym_false] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2032), + [aux_sym__val_number_token1] = ACTIONS(2032), + [aux_sym__val_number_token2] = ACTIONS(2032), + [aux_sym__val_number_token3] = ACTIONS(2032), + [aux_sym__val_number_token4] = ACTIONS(2032), + [aux_sym__val_number_token5] = ACTIONS(2032), + [aux_sym__val_number_token6] = ACTIONS(2032), + [anon_sym_0b] = ACTIONS(2032), + [anon_sym_0o] = ACTIONS(2032), + [anon_sym_0x] = ACTIONS(2032), + [sym_val_date] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [sym__str_single_quotes] = ACTIONS(2032), + [sym__str_back_ticks] = ACTIONS(2032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2032), + [anon_sym_CARET] = ACTIONS(2032), [anon_sym_POUND] = ACTIONS(105), }, [870] = { - [sym__command_name] = STATE(1446), - [sym_scope_pattern] = STATE(1447), - [sym_wild_card] = STATE(1448), - [sym_command_list] = STATE(1449), - [sym_val_string] = STATE(1230), - [sym__str_double_quotes] = STATE(1233), + [sym_expr_parenthesized] = STATE(1650), + [sym__immediate_decimal] = STATE(1648), + [sym_val_variable] = STATE(1650), + [sym__var] = STATE(1173), [sym_comment] = STATE(870), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_alias] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_let_DASHenv] = ACTIONS(2189), - [anon_sym_mut] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [sym_cmd_identifier] = ACTIONS(2191), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_def] = ACTIONS(2189), - [anon_sym_export_DASHenv] = ACTIONS(2189), - [anon_sym_extern] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_error] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_loop] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_source] = ACTIONS(2189), - [anon_sym_source_DASHenv] = ACTIONS(2189), - [anon_sym_register] = ACTIONS(2189), - [anon_sym_hide] = ACTIONS(2189), - [anon_sym_hide_DASHenv] = ACTIONS(2189), - [anon_sym_overlay] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_where] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_not] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [aux_sym__val_number_decimal_token1] = ACTIONS(2189), - [aux_sym__val_number_token1] = ACTIONS(2189), - [aux_sym__val_number_token2] = ACTIONS(2189), - [aux_sym__val_number_token3] = ACTIONS(2189), - [aux_sym__val_number_token4] = ACTIONS(2189), - [aux_sym__val_number_token5] = ACTIONS(2189), - [aux_sym__val_number_token6] = ACTIONS(2189), - [anon_sym_0b] = ACTIONS(2189), - [anon_sym_0o] = ACTIONS(2189), - [anon_sym_0x] = ACTIONS(2189), - [sym_val_date] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym__str_single_quotes] = ACTIONS(2201), - [sym__str_back_ticks] = ACTIONS(2201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2189), - [anon_sym_CARET] = ACTIONS(2189), + [ts_builtin_sym_end] = ACTIONS(2060), + [anon_sym_export] = ACTIONS(2058), + [anon_sym_alias] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_let_DASHenv] = ACTIONS(2058), + [anon_sym_mut] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2058), + [sym_cmd_identifier] = ACTIONS(2058), + [anon_sym_LF] = ACTIONS(2060), + [anon_sym_def] = ACTIONS(2058), + [anon_sym_export_DASHenv] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_module] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_DASH] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_DOT] = ACTIONS(2058), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_source] = ACTIONS(2058), + [anon_sym_source_DASHenv] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_hide] = ACTIONS(2058), + [anon_sym_hide_DASHenv] = ACTIONS(2058), + [anon_sym_overlay] = ACTIONS(2058), + [anon_sym_where] = ACTIONS(2058), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_not] = ACTIONS(2058), + [anon_sym_EQ2] = ACTIONS(2104), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2058), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [aux_sym__val_number_decimal_token1] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(2058), + [aux_sym__val_number_token2] = ACTIONS(2058), + [aux_sym__val_number_token3] = ACTIONS(2058), + [aux_sym__val_number_token4] = ACTIONS(2058), + [aux_sym__val_number_token5] = ACTIONS(2058), + [aux_sym__val_number_token6] = ACTIONS(2058), + [anon_sym_0b] = ACTIONS(2058), + [anon_sym_0o] = ACTIONS(2058), + [anon_sym_0x] = ACTIONS(2058), + [sym_val_date] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2058), + [sym__str_single_quotes] = ACTIONS(2058), + [sym__str_back_ticks] = ACTIONS(2058), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2058), + [anon_sym_CARET] = ACTIONS(2058), [anon_sym_POUND] = ACTIONS(105), }, [871] = { - [sym_cell_path] = STATE(979), - [sym_path] = STATE(879), + [sym_expr_parenthesized] = STATE(1372), + [sym__immediate_decimal] = STATE(1373), + [sym_val_variable] = STATE(1372), + [sym__var] = STATE(1203), [sym_comment] = STATE(871), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_in] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_STAR_STAR] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_mod] = ACTIONS(1403), - [anon_sym_SLASH_SLASH] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_bit_DASHshl] = ACTIONS(1403), - [anon_sym_bit_DASHshr] = ACTIONS(1403), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT2] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_not_DASHin] = ACTIONS(1403), - [anon_sym_starts_DASHwith] = ACTIONS(1403), - [anon_sym_ends_DASHwith] = ACTIONS(1403), - [anon_sym_EQ_TILDE] = ACTIONS(1403), - [anon_sym_BANG_TILDE] = ACTIONS(1403), - [anon_sym_bit_DASHand] = ACTIONS(1403), - [anon_sym_bit_DASHxor] = ACTIONS(1403), - [anon_sym_bit_DASHor] = ACTIONS(1403), - [anon_sym_and] = ACTIONS(1403), - [anon_sym_xor] = ACTIONS(1403), - [anon_sym_or] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1403), - [aux_sym__val_number_token1] = ACTIONS(1403), - [aux_sym__val_number_token2] = ACTIONS(1403), - [aux_sym__val_number_token3] = ACTIONS(1403), - [aux_sym__val_number_token4] = ACTIONS(1403), - [aux_sym__val_number_token5] = ACTIONS(1403), - [aux_sym__val_number_token6] = ACTIONS(1403), - [anon_sym_0b] = ACTIONS(1403), - [anon_sym_0o] = ACTIONS(1403), - [anon_sym_0x] = ACTIONS(1403), - [sym_val_date] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym__str_single_quotes] = ACTIONS(1403), - [sym__str_back_ticks] = ACTIONS(1403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1403), - [anon_sym_err_GT] = ACTIONS(1403), - [anon_sym_out_GT] = ACTIONS(1403), - [anon_sym_e_GT] = ACTIONS(1403), - [anon_sym_o_GT] = ACTIONS(1403), - [anon_sym_err_PLUSout_GT] = ACTIONS(1403), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1403), - [anon_sym_o_PLUSe_GT] = ACTIONS(1403), - [anon_sym_e_PLUSo_GT] = ACTIONS(1403), - [aux_sym_unquoted_token1] = ACTIONS(1403), + [ts_builtin_sym_end] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2066), + [sym_cmd_identifier] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2068), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(2112), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DOT2] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_where] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_not] = ACTIONS(2066), + [anon_sym_EQ2] = ACTIONS(2114), + [aux_sym__immediate_decimal_token1] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_null] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_token1] = ACTIONS(2066), + [aux_sym__val_number_token2] = ACTIONS(2066), + [aux_sym__val_number_token3] = ACTIONS(2066), + [aux_sym__val_number_token4] = ACTIONS(2066), + [aux_sym__val_number_token5] = ACTIONS(2066), + [aux_sym__val_number_token6] = ACTIONS(2066), + [anon_sym_0b] = ACTIONS(2066), + [anon_sym_0o] = ACTIONS(2066), + [anon_sym_0x] = ACTIONS(2066), + [sym_val_date] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [sym__str_single_quotes] = ACTIONS(2066), + [sym__str_back_ticks] = ACTIONS(2066), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2066), + [anon_sym_CARET] = ACTIONS(2066), [anon_sym_POUND] = ACTIONS(105), }, [872] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2462), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_expr_parenthesized] = STATE(1585), + [sym__immediate_decimal] = STATE(1605), + [sym_val_variable] = STATE(1585), + [sym__var] = STATE(1173), [sym_comment] = STATE(872), - [aux_sym_command_repeat1] = STATE(872), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_LF] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_DOT] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2228), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [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(2240), - [aux_sym__val_number_token5] = ACTIONS(2240), - [aux_sym__val_number_token6] = ACTIONS(2240), - [anon_sym_0b] = ACTIONS(2243), - [anon_sym_0o] = ACTIONS(2243), - [anon_sym_0x] = ACTIONS(2243), - [sym_val_date] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym__str_single_quotes] = ACTIONS(2252), - [sym__str_back_ticks] = ACTIONS(2252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2258), - [anon_sym_err_GT] = ACTIONS(2261), - [anon_sym_out_GT] = ACTIONS(2261), - [anon_sym_e_GT] = ACTIONS(2261), - [anon_sym_o_GT] = ACTIONS(2261), - [anon_sym_err_PLUSout_GT] = ACTIONS(2261), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2261), - [anon_sym_o_PLUSe_GT] = ACTIONS(2261), - [anon_sym_e_PLUSo_GT] = ACTIONS(2261), - [aux_sym_unquoted_token1] = ACTIONS(2264), + [ts_builtin_sym_end] = ACTIONS(2006), + [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), + [anon_sym_SEMI] = ACTIONS(2004), + [sym_cmd_identifier] = ACTIONS(2004), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(2004), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = 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_where] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_EQ2] = ACTIONS(2118), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2004), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2004), + [anon_sym_0o] = ACTIONS(2004), + [anon_sym_0x] = ACTIONS(2004), + [sym_val_date] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2004), + [sym__str_single_quotes] = ACTIONS(2004), + [sym__str_back_ticks] = ACTIONS(2004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2004), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2004), + [anon_sym_CARET] = ACTIONS(2004), [anon_sym_POUND] = ACTIONS(105), }, [873] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2462), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_expr_parenthesized] = STATE(1607), + [sym__immediate_decimal] = STATE(1612), + [sym_val_variable] = STATE(1607), + [sym__var] = STATE(1173), [sym_comment] = STATE(873), - [aux_sym_command_repeat1] = STATE(872), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [ts_builtin_sym_end] = ACTIONS(2026), + [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), + [anon_sym_SEMI] = ACTIONS(2024), + [sym_cmd_identifier] = ACTIONS(2024), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_loop] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_match] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = 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_where] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_EQ2] = ACTIONS(2122), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2024), + [anon_sym_0o] = ACTIONS(2024), + [anon_sym_0x] = ACTIONS(2024), + [sym_val_date] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), [anon_sym_POUND] = ACTIONS(105), }, [874] = { - [sym_expr_parenthesized] = STATE(1580), - [sym__immediate_decimal] = STATE(1618), - [sym_val_variable] = STATE(1580), - [sym__var] = STATE(1129), + [sym_expr_parenthesized] = STATE(1625), + [sym__immediate_decimal] = STATE(1626), + [sym_val_variable] = STATE(1625), + [sym__var] = STATE(1173), [sym_comment] = STATE(874), - [ts_builtin_sym_end] = ACTIONS(2099), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_alias] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_let_DASHenv] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [sym_cmd_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2099), - [anon_sym_def] = ACTIONS(2097), - [anon_sym_export_DASHenv] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_source] = ACTIONS(2097), - [anon_sym_source_DASHenv] = ACTIONS(2097), - [anon_sym_register] = ACTIONS(2097), - [anon_sym_hide] = ACTIONS(2097), - [anon_sym_hide_DASHenv] = ACTIONS(2097), - [anon_sym_overlay] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_not] = ACTIONS(2097), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [aux_sym__val_number_token4] = ACTIONS(2097), - [aux_sym__val_number_token5] = ACTIONS(2097), - [aux_sym__val_number_token6] = ACTIONS(2097), - [anon_sym_0b] = ACTIONS(2097), - [anon_sym_0o] = ACTIONS(2097), - [anon_sym_0x] = ACTIONS(2097), - [sym_val_date] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [sym__str_single_quotes] = ACTIONS(2097), - [sym__str_back_ticks] = ACTIONS(2097), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), + [ts_builtin_sym_end] = ACTIONS(2052), + [anon_sym_export] = ACTIONS(2050), + [anon_sym_alias] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_let_DASHenv] = ACTIONS(2050), + [anon_sym_mut] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [sym_cmd_identifier] = ACTIONS(2050), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_def] = ACTIONS(2050), + [anon_sym_export_DASHenv] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_module] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2050), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_do] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_source] = ACTIONS(2050), + [anon_sym_source_DASHenv] = ACTIONS(2050), + [anon_sym_register] = ACTIONS(2050), + [anon_sym_hide] = ACTIONS(2050), + [anon_sym_hide_DASHenv] = ACTIONS(2050), + [anon_sym_overlay] = ACTIONS(2050), + [anon_sym_where] = ACTIONS(2050), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_EQ2] = ACTIONS(2126), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2050), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [aux_sym__val_number_decimal_token1] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(2050), + [aux_sym__val_number_token2] = ACTIONS(2050), + [aux_sym__val_number_token3] = ACTIONS(2050), + [aux_sym__val_number_token4] = ACTIONS(2050), + [aux_sym__val_number_token5] = ACTIONS(2050), + [aux_sym__val_number_token6] = ACTIONS(2050), + [anon_sym_0b] = ACTIONS(2050), + [anon_sym_0o] = ACTIONS(2050), + [anon_sym_0x] = ACTIONS(2050), + [sym_val_date] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym__str_single_quotes] = ACTIONS(2050), + [sym__str_back_ticks] = ACTIONS(2050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), [anon_sym_POUND] = ACTIONS(105), }, [875] = { - [sym_expr_parenthesized] = STATE(1583), - [sym__immediate_decimal] = STATE(1592), - [sym_val_variable] = STATE(1583), - [sym__var] = STATE(1129), + [sym_expr_parenthesized] = STATE(1325), + [sym__immediate_decimal] = STATE(1326), + [sym_val_variable] = STATE(1325), + [sym__var] = STATE(1127), [sym_comment] = STATE(875), - [ts_builtin_sym_end] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_alias] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_let_DASHenv] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [sym_cmd_identifier] = ACTIONS(2125), - [anon_sym_LF] = ACTIONS(2127), - [anon_sym_def] = ACTIONS(2125), - [anon_sym_export_DASHenv] = ACTIONS(2125), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_DOT] = ACTIONS(2125), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_source] = ACTIONS(2125), - [anon_sym_source_DASHenv] = ACTIONS(2125), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_hide] = ACTIONS(2125), - [anon_sym_hide_DASHenv] = ACTIONS(2125), - [anon_sym_overlay] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_not] = ACTIONS(2125), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [aux_sym__val_number_decimal_token1] = ACTIONS(2125), - [aux_sym__val_number_token1] = ACTIONS(2125), - [aux_sym__val_number_token2] = ACTIONS(2125), - [aux_sym__val_number_token3] = ACTIONS(2125), - [aux_sym__val_number_token4] = ACTIONS(2125), - [aux_sym__val_number_token5] = ACTIONS(2125), - [aux_sym__val_number_token6] = ACTIONS(2125), - [anon_sym_0b] = ACTIONS(2125), - [anon_sym_0o] = ACTIONS(2125), - [anon_sym_0x] = ACTIONS(2125), - [sym_val_date] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [sym__str_single_quotes] = ACTIONS(2125), - [sym__str_back_ticks] = ACTIONS(2125), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2125), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2128), + [anon_sym_alias] = ACTIONS(2128), + [anon_sym_let] = ACTIONS(2128), + [anon_sym_let_DASHenv] = ACTIONS(2128), + [anon_sym_mut] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [anon_sym_SEMI] = ACTIONS(2128), + [sym_cmd_identifier] = ACTIONS(2128), + [anon_sym_LF] = ACTIONS(2130), + [anon_sym_def] = ACTIONS(2128), + [anon_sym_export_DASHenv] = ACTIONS(2128), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym_module] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2128), + [anon_sym_DASH] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_loop] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_do] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_match] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_DOT] = ACTIONS(2128), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_source] = ACTIONS(2128), + [anon_sym_source_DASHenv] = ACTIONS(2128), + [anon_sym_register] = ACTIONS(2128), + [anon_sym_hide] = ACTIONS(2128), + [anon_sym_hide_DASHenv] = ACTIONS(2128), + [anon_sym_overlay] = ACTIONS(2128), + [anon_sym_where] = ACTIONS(2128), + [anon_sym_PLUS] = ACTIONS(2128), + [anon_sym_not] = ACTIONS(2128), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_token1] = ACTIONS(2128), + [aux_sym__val_number_token2] = ACTIONS(2128), + [aux_sym__val_number_token3] = ACTIONS(2128), + [aux_sym__val_number_token4] = ACTIONS(2128), + [aux_sym__val_number_token5] = ACTIONS(2128), + [aux_sym__val_number_token6] = ACTIONS(2128), + [anon_sym_0b] = ACTIONS(2128), + [anon_sym_0o] = ACTIONS(2128), + [anon_sym_0x] = ACTIONS(2128), + [sym_val_date] = ACTIONS(2128), + [anon_sym_DQUOTE] = ACTIONS(2128), + [sym__str_single_quotes] = ACTIONS(2128), + [sym__str_back_ticks] = ACTIONS(2128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2128), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2128), + [anon_sym_CARET] = ACTIONS(2128), [anon_sym_POUND] = ACTIONS(105), }, [876] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2462), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_expr_parenthesized] = STATE(1447), + [sym__immediate_decimal] = STATE(1448), + [sym_val_variable] = STATE(1447), + [sym__var] = STATE(1127), [sym_comment] = STATE(876), - [aux_sym_command_repeat1] = STATE(867), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2271), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2132), + [anon_sym_alias] = ACTIONS(2132), + [anon_sym_let] = ACTIONS(2132), + [anon_sym_let_DASHenv] = ACTIONS(2132), + [anon_sym_mut] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [sym_cmd_identifier] = ACTIONS(2132), + [anon_sym_LF] = ACTIONS(2134), + [anon_sym_def] = ACTIONS(2132), + [anon_sym_export_DASHenv] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_module] = ACTIONS(2132), + [anon_sym_use] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_loop] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_match] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_DOT] = ACTIONS(2132), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_source] = ACTIONS(2132), + [anon_sym_source_DASHenv] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_hide] = ACTIONS(2132), + [anon_sym_hide_DASHenv] = ACTIONS(2132), + [anon_sym_overlay] = ACTIONS(2132), + [anon_sym_where] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_not] = ACTIONS(2132), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2132), + [anon_sym_false] = ACTIONS(2132), + [aux_sym__val_number_decimal_token1] = ACTIONS(2132), + [aux_sym__val_number_token1] = ACTIONS(2132), + [aux_sym__val_number_token2] = ACTIONS(2132), + [aux_sym__val_number_token3] = ACTIONS(2132), + [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(2132), + [anon_sym_0o] = ACTIONS(2132), + [anon_sym_0x] = ACTIONS(2132), + [sym_val_date] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [sym__str_single_quotes] = ACTIONS(2132), + [sym__str_back_ticks] = ACTIONS(2132), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), + [anon_sym_CARET] = ACTIONS(2132), [anon_sym_POUND] = ACTIONS(105), }, [877] = { - [sym__command_name] = STATE(1446), - [sym_scope_pattern] = STATE(1361), - [sym_wild_card] = STATE(1448), - [sym_command_list] = STATE(1449), - [sym_val_string] = STATE(1230), - [sym__str_double_quotes] = STATE(1233), + [sym_expr_parenthesized] = STATE(1436), + [sym__immediate_decimal] = STATE(1437), + [sym_val_variable] = STATE(1436), + [sym__var] = STATE(1127), [sym_comment] = STATE(877), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_alias] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_let_DASHenv] = ACTIONS(2275), - [anon_sym_mut] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [sym_cmd_identifier] = ACTIONS(2191), - [anon_sym_LF] = ACTIONS(2277), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_export_DASHenv] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_DOT] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_source] = ACTIONS(2275), - [anon_sym_source_DASHenv] = ACTIONS(2275), - [anon_sym_register] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_hide_DASHenv] = ACTIONS(2275), - [anon_sym_overlay] = ACTIONS(2275), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_where] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2275), - [anon_sym_not] = ACTIONS(2275), - [anon_sym_null] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = 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(2275), - [aux_sym__val_number_token5] = ACTIONS(2275), - [aux_sym__val_number_token6] = ACTIONS(2275), - [anon_sym_0b] = ACTIONS(2275), - [anon_sym_0o] = ACTIONS(2275), - [anon_sym_0x] = ACTIONS(2275), - [sym_val_date] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym__str_single_quotes] = ACTIONS(2201), - [sym__str_back_ticks] = ACTIONS(2201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2275), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2275), - [anon_sym_CARET] = ACTIONS(2275), + [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), + [anon_sym_SEMI] = ACTIONS(2136), + [sym_cmd_identifier] = ACTIONS(2136), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_loop] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_match] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_DOT] = ACTIONS(2136), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = 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_where] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = ACTIONS(2136), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2136), + [anon_sym_0o] = ACTIONS(2136), + [anon_sym_0x] = ACTIONS(2136), + [sym_val_date] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym__str_single_quotes] = ACTIONS(2136), + [sym__str_back_ticks] = ACTIONS(2136), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2136), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2136), + [anon_sym_CARET] = ACTIONS(2136), [anon_sym_POUND] = ACTIONS(105), }, [878] = { - [sym__expression] = STATE(2475), - [sym_expr_unary] = STATE(1011), - [sym__expr_unary_minus] = STATE(998), - [sym_expr_binary] = STATE(1011), - [sym__expr_binary_expression] = STATE(3482), - [sym_expr_parenthesized] = STATE(944), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(1011), - [sym_val_nothing] = STATE(994), - [sym_val_bool] = STATE(994), - [sym_val_variable] = STATE(952), - [sym__var] = STATE(887), - [sym_val_number] = STATE(133), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(130), - [sym_val_duration] = STATE(994), - [sym_val_filesize] = STATE(994), - [sym_val_binary] = STATE(994), - [sym_val_string] = STATE(994), - [sym__str_double_quotes] = STATE(1015), - [sym_val_interpolated] = STATE(994), - [sym__inter_single_quotes] = STATE(992), - [sym__inter_double_quotes] = STATE(991), - [sym_val_list] = STATE(994), - [sym_val_record] = STATE(994), - [sym_val_table] = STATE(994), - [sym_val_closure] = STATE(994), - [sym_unquoted] = STATE(2480), + [sym_expr_parenthesized] = STATE(1327), + [sym__immediate_decimal] = STATE(1328), + [sym_val_variable] = STATE(1327), + [sym__var] = STATE(1127), [sym_comment] = STATE(878), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2295), - [anon_sym_not] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2299), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_token1] = ACTIONS(2305), - [aux_sym__val_number_token2] = ACTIONS(2305), - [aux_sym__val_number_token3] = ACTIONS(2305), - [aux_sym__val_number_token4] = ACTIONS(2307), - [aux_sym__val_number_token5] = ACTIONS(2307), - [aux_sym__val_number_token6] = ACTIONS(2307), - [anon_sym_0b] = ACTIONS(2309), - [anon_sym_0o] = ACTIONS(2309), - [anon_sym_0x] = ACTIONS(2309), - [sym_val_date] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2315), - [sym__str_back_ticks] = ACTIONS(2315), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), - [anon_sym_err_GT] = ACTIONS(2279), - [anon_sym_out_GT] = ACTIONS(2279), - [anon_sym_e_GT] = ACTIONS(2279), - [anon_sym_o_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT] = ACTIONS(2279), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [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), + [anon_sym_SEMI] = ACTIONS(2140), + [sym_cmd_identifier] = ACTIONS(2140), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2140), + [anon_sym_DASH] = ACTIONS(2140), + [anon_sym_break] = ACTIONS(2140), + [anon_sym_continue] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_loop] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_do] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_match] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = 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_where] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(2140), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2140), + [anon_sym_false] = ACTIONS(2140), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2140), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2140), + [sym__str_single_quotes] = ACTIONS(2140), + [sym__str_back_ticks] = ACTIONS(2140), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2140), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2140), + [anon_sym_CARET] = ACTIONS(2140), [anon_sym_POUND] = ACTIONS(105), }, [879] = { - [sym_path] = STATE(956), + [sym_expr_parenthesized] = STATE(1439), + [sym__immediate_decimal] = STATE(1440), + [sym_val_variable] = STATE(1439), + [sym__var] = STATE(1127), [sym_comment] = STATE(879), - [aux_sym_cell_path_repeat1] = STATE(898), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1440), - [anon_sym_BANG_TILDE] = ACTIONS(1440), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_err_GT] = ACTIONS(1440), - [anon_sym_out_GT] = ACTIONS(1440), - [anon_sym_e_GT] = ACTIONS(1440), - [anon_sym_o_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT] = ACTIONS(1440), - [aux_sym_unquoted_token1] = ACTIONS(1440), + [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), + [anon_sym_SEMI] = ACTIONS(2144), + [sym_cmd_identifier] = ACTIONS(2144), + [anon_sym_LF] = ACTIONS(2146), + [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_LBRACK] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_loop] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2144), + [anon_sym_do] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_DOT] = ACTIONS(2144), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = 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_where] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_not] = ACTIONS(2144), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2144), + [anon_sym_false] = ACTIONS(2144), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2144), + [anon_sym_0o] = ACTIONS(2144), + [anon_sym_0x] = ACTIONS(2144), + [sym_val_date] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2144), + [sym__str_single_quotes] = ACTIONS(2144), + [sym__str_back_ticks] = ACTIONS(2144), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2144), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(2144), [anon_sym_POUND] = ACTIONS(105), }, [880] = { - [sym_expr_parenthesized] = STATE(1571), - [sym__immediate_decimal] = STATE(1581), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1129), + [sym_expr_parenthesized] = STATE(1430), + [sym__immediate_decimal] = STATE(1432), + [sym_val_variable] = STATE(1430), + [sym__var] = STATE(1127), [sym_comment] = STATE(880), - [ts_builtin_sym_end] = ACTIONS(2087), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_alias] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_let_DASHenv] = ACTIONS(2085), - [anon_sym_mut] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [sym_cmd_identifier] = ACTIONS(2085), - [anon_sym_LF] = ACTIONS(2087), - [anon_sym_def] = ACTIONS(2085), - [anon_sym_export_DASHenv] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_source] = ACTIONS(2085), - [anon_sym_source_DASHenv] = ACTIONS(2085), - [anon_sym_register] = ACTIONS(2085), - [anon_sym_hide] = ACTIONS(2085), - [anon_sym_hide_DASHenv] = ACTIONS(2085), - [anon_sym_overlay] = ACTIONS(2085), - [anon_sym_where] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_not] = ACTIONS(2085), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2085), - [aux_sym__val_number_token1] = ACTIONS(2085), - [aux_sym__val_number_token2] = ACTIONS(2085), - [aux_sym__val_number_token3] = ACTIONS(2085), - [aux_sym__val_number_token4] = ACTIONS(2085), - [aux_sym__val_number_token5] = ACTIONS(2085), - [aux_sym__val_number_token6] = ACTIONS(2085), - [anon_sym_0b] = ACTIONS(2085), - [anon_sym_0o] = ACTIONS(2085), - [anon_sym_0x] = ACTIONS(2085), - [sym_val_date] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [sym__str_single_quotes] = ACTIONS(2085), - [sym__str_back_ticks] = ACTIONS(2085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_alias] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_let_DASHenv] = ACTIONS(2148), + [anon_sym_mut] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [sym_cmd_identifier] = ACTIONS(2148), + [anon_sym_LF] = ACTIONS(2150), + [anon_sym_def] = ACTIONS(2148), + [anon_sym_export_DASHenv] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_use] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_loop] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_match] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_DOT] = ACTIONS(2148), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_source] = ACTIONS(2148), + [anon_sym_source_DASHenv] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_hide] = ACTIONS(2148), + [anon_sym_hide_DASHenv] = ACTIONS(2148), + [anon_sym_overlay] = ACTIONS(2148), + [anon_sym_where] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_not] = ACTIONS(2148), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2148), + [anon_sym_false] = ACTIONS(2148), + [aux_sym__val_number_decimal_token1] = ACTIONS(2148), + [aux_sym__val_number_token1] = ACTIONS(2148), + [aux_sym__val_number_token2] = ACTIONS(2148), + [aux_sym__val_number_token3] = ACTIONS(2148), + [aux_sym__val_number_token4] = ACTIONS(2148), + [aux_sym__val_number_token5] = ACTIONS(2148), + [aux_sym__val_number_token6] = ACTIONS(2148), + [anon_sym_0b] = ACTIONS(2148), + [anon_sym_0o] = ACTIONS(2148), + [anon_sym_0x] = ACTIONS(2148), + [sym_val_date] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2148), + [anon_sym_CARET] = ACTIONS(2148), [anon_sym_POUND] = ACTIONS(105), }, [881] = { - [sym_expr_parenthesized] = STATE(1578), - [sym__immediate_decimal] = STATE(1579), - [sym_val_variable] = STATE(1578), - [sym__var] = STATE(1129), + [sym_expr_parenthesized] = STATE(1428), + [sym__immediate_decimal] = STATE(1429), + [sym_val_variable] = STATE(1428), + [sym__var] = STATE(1127), [sym_comment] = STATE(881), - [ts_builtin_sym_end] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2101), - [anon_sym_alias] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_let_DASHenv] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [sym_cmd_identifier] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2103), - [anon_sym_def] = ACTIONS(2101), - [anon_sym_export_DASHenv] = ACTIONS(2101), - [anon_sym_extern] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_source] = ACTIONS(2101), - [anon_sym_source_DASHenv] = ACTIONS(2101), - [anon_sym_register] = ACTIONS(2101), - [anon_sym_hide] = ACTIONS(2101), - [anon_sym_hide_DASHenv] = ACTIONS(2101), - [anon_sym_overlay] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_not] = ACTIONS(2101), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [aux_sym__val_number_decimal_token1] = ACTIONS(2101), - [aux_sym__val_number_token1] = ACTIONS(2101), - [aux_sym__val_number_token2] = ACTIONS(2101), - [aux_sym__val_number_token3] = ACTIONS(2101), - [aux_sym__val_number_token4] = ACTIONS(2101), - [aux_sym__val_number_token5] = ACTIONS(2101), - [aux_sym__val_number_token6] = ACTIONS(2101), - [anon_sym_0b] = ACTIONS(2101), - [anon_sym_0o] = ACTIONS(2101), - [anon_sym_0x] = ACTIONS(2101), - [sym_val_date] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym__str_single_quotes] = ACTIONS(2101), - [sym__str_back_ticks] = ACTIONS(2101), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2101), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), + [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), + [anon_sym_SEMI] = ACTIONS(2152), + [sym_cmd_identifier] = ACTIONS(2152), + [anon_sym_LF] = ACTIONS(2154), + [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_LBRACK] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_loop] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_match] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = 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_where] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_not] = ACTIONS(2152), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2152), + [anon_sym_false] = ACTIONS(2152), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2152), + [anon_sym_0o] = ACTIONS(2152), + [anon_sym_0x] = ACTIONS(2152), + [sym_val_date] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [sym__str_single_quotes] = ACTIONS(2152), + [sym__str_back_ticks] = ACTIONS(2152), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2152), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2152), + [anon_sym_CARET] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(105), }, [882] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2462), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_expr_parenthesized] = STATE(1425), + [sym__immediate_decimal] = STATE(1426), + [sym_val_variable] = STATE(1425), + [sym__var] = STATE(1127), [sym_comment] = STATE(882), - [aux_sym_command_repeat1] = STATE(867), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_COLON] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [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), + [anon_sym_SEMI] = ACTIONS(2156), + [sym_cmd_identifier] = ACTIONS(2156), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = 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_where] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2156), + [anon_sym_false] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), + [anon_sym_0b] = ACTIONS(2156), + [anon_sym_0o] = ACTIONS(2156), + [anon_sym_0x] = ACTIONS(2156), + [sym_val_date] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(2156), [anon_sym_POUND] = ACTIONS(105), }, [883] = { - [sym_cell_path] = STATE(974), - [sym_path] = STATE(879), + [sym_expr_parenthesized] = STATE(1308), + [sym__immediate_decimal] = STATE(1309), + [sym_val_variable] = STATE(1308), + [sym__var] = STATE(1127), [sym_comment] = STATE(883), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_err_GT] = ACTIONS(1418), - [anon_sym_out_GT] = ACTIONS(1418), - [anon_sym_e_GT] = ACTIONS(1418), - [anon_sym_o_GT] = ACTIONS(1418), - [anon_sym_err_PLUSout_GT] = ACTIONS(1418), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1418), - [anon_sym_o_PLUSe_GT] = ACTIONS(1418), - [anon_sym_e_PLUSo_GT] = ACTIONS(1418), - [aux_sym_unquoted_token1] = ACTIONS(1418), + [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), + [anon_sym_SEMI] = ACTIONS(2160), + [sym_cmd_identifier] = ACTIONS(2160), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2160), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = 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_where] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_not] = ACTIONS(2160), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2160), + [anon_sym_false] = ACTIONS(2160), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2160), + [anon_sym_0o] = ACTIONS(2160), + [anon_sym_0x] = ACTIONS(2160), + [sym_val_date] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [sym__str_single_quotes] = ACTIONS(2160), + [sym__str_back_ticks] = ACTIONS(2160), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), [anon_sym_POUND] = ACTIONS(105), }, [884] = { - [sym_expr_parenthesized] = STATE(1573), - [sym__immediate_decimal] = STATE(1577), - [sym_val_variable] = STATE(1573), - [sym__var] = STATE(1129), [sym_comment] = STATE(884), - [ts_builtin_sym_end] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2133), - [sym_cmd_identifier] = ACTIONS(2133), - [anon_sym_LF] = ACTIONS(2135), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_DOT] = ACTIONS(2133), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_where] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_not] = ACTIONS(2133), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_token1] = ACTIONS(2133), - [aux_sym__val_number_token2] = ACTIONS(2133), - [aux_sym__val_number_token3] = ACTIONS(2133), - [aux_sym__val_number_token4] = ACTIONS(2133), - [aux_sym__val_number_token5] = ACTIONS(2133), - [aux_sym__val_number_token6] = ACTIONS(2133), - [anon_sym_0b] = ACTIONS(2133), - [anon_sym_0o] = ACTIONS(2133), - [anon_sym_0x] = ACTIONS(2133), - [sym_val_date] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2133), - [anon_sym_CARET] = ACTIONS(2133), + [ts_builtin_sym_end] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT2] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1375), + [anon_sym_BANG_TILDE] = ACTIONS(1375), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_EQ2] = ACTIONS(2164), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_err_GT] = ACTIONS(1375), + [anon_sym_out_GT] = ACTIONS(1375), + [anon_sym_e_GT] = ACTIONS(1375), + [anon_sym_o_GT] = ACTIONS(1375), + [anon_sym_err_PLUSout_GT] = ACTIONS(1375), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1375), + [anon_sym_o_PLUSe_GT] = ACTIONS(1375), + [anon_sym_e_PLUSo_GT] = ACTIONS(1375), + [aux_sym_unquoted_token1] = ACTIONS(1375), + [aux_sym_unquoted_token4] = ACTIONS(2168), + [aux_sym_unquoted_token6] = ACTIONS(2170), [anon_sym_POUND] = ACTIONS(105), }, [885] = { - [sym_expr_parenthesized] = STATE(1521), - [sym__immediate_decimal] = STATE(1560), - [sym_val_variable] = STATE(1521), - [sym__var] = STATE(1129), + [sym_expr_parenthesized] = STATE(1320), + [sym__immediate_decimal] = STATE(1321), + [sym_val_variable] = STATE(1320), + [sym__var] = STATE(1127), [sym_comment] = STATE(885), - [ts_builtin_sym_end] = ACTIONS(2131), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_alias] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_let_DASHenv] = ACTIONS(2129), - [anon_sym_mut] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [sym_cmd_identifier] = ACTIONS(2129), - [anon_sym_LF] = ACTIONS(2131), - [anon_sym_def] = ACTIONS(2129), - [anon_sym_export_DASHenv] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_loop] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_DOT] = ACTIONS(2129), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_source] = ACTIONS(2129), - [anon_sym_source_DASHenv] = ACTIONS(2129), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_hide] = ACTIONS(2129), - [anon_sym_hide_DASHenv] = ACTIONS(2129), - [anon_sym_overlay] = ACTIONS(2129), - [anon_sym_where] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_not] = ACTIONS(2129), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2129), - [anon_sym_false] = ACTIONS(2129), - [aux_sym__val_number_decimal_token1] = ACTIONS(2129), - [aux_sym__val_number_token1] = ACTIONS(2129), - [aux_sym__val_number_token2] = ACTIONS(2129), - [aux_sym__val_number_token3] = ACTIONS(2129), - [aux_sym__val_number_token4] = ACTIONS(2129), - [aux_sym__val_number_token5] = ACTIONS(2129), - [aux_sym__val_number_token6] = ACTIONS(2129), - [anon_sym_0b] = ACTIONS(2129), - [anon_sym_0o] = ACTIONS(2129), - [anon_sym_0x] = ACTIONS(2129), - [sym_val_date] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2129), - [sym__str_single_quotes] = ACTIONS(2129), - [sym__str_back_ticks] = ACTIONS(2129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2129), - [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_alias] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_let_DASHenv] = ACTIONS(2172), + [anon_sym_mut] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [sym_cmd_identifier] = ACTIONS(2172), + [anon_sym_LF] = ACTIONS(2174), + [anon_sym_def] = ACTIONS(2172), + [anon_sym_export_DASHenv] = ACTIONS(2172), + [anon_sym_extern] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_use] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_loop] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_match] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_source] = ACTIONS(2172), + [anon_sym_source_DASHenv] = ACTIONS(2172), + [anon_sym_register] = ACTIONS(2172), + [anon_sym_hide] = ACTIONS(2172), + [anon_sym_hide_DASHenv] = ACTIONS(2172), + [anon_sym_overlay] = ACTIONS(2172), + [anon_sym_where] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_not] = ACTIONS(2172), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [aux_sym__val_number_decimal_token1] = ACTIONS(2172), + [aux_sym__val_number_token1] = ACTIONS(2172), + [aux_sym__val_number_token2] = ACTIONS(2172), + [aux_sym__val_number_token3] = ACTIONS(2172), + [aux_sym__val_number_token4] = ACTIONS(2172), + [aux_sym__val_number_token5] = ACTIONS(2172), + [aux_sym__val_number_token6] = ACTIONS(2172), + [anon_sym_0b] = ACTIONS(2172), + [anon_sym_0o] = ACTIONS(2172), + [anon_sym_0x] = ACTIONS(2172), + [sym_val_date] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym__str_single_quotes] = ACTIONS(2172), + [sym__str_back_ticks] = ACTIONS(2172), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2172), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2172), + [anon_sym_CARET] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(105), }, [886] = { - [sym_path] = STATE(956), + [sym_expr_parenthesized] = STATE(1423), + [sym__immediate_decimal] = STATE(1424), + [sym_val_variable] = STATE(1423), + [sym__var] = STATE(1127), [sym_comment] = STATE(886), - [aux_sym_cell_path_repeat1] = STATE(891), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1436), - [anon_sym_BANG_TILDE] = ACTIONS(1436), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1436), - [anon_sym_out_GT] = ACTIONS(1436), - [anon_sym_e_GT] = ACTIONS(1436), - [anon_sym_o_GT] = ACTIONS(1436), - [anon_sym_err_PLUSout_GT] = ACTIONS(1436), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1436), - [anon_sym_o_PLUSe_GT] = ACTIONS(1436), - [anon_sym_e_PLUSo_GT] = ACTIONS(1436), - [aux_sym_unquoted_token1] = ACTIONS(1436), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_alias] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_let_DASHenv] = ACTIONS(2176), + [anon_sym_mut] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [sym_cmd_identifier] = ACTIONS(2176), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_def] = ACTIONS(2176), + [anon_sym_export_DASHenv] = ACTIONS(2176), + [anon_sym_extern] = ACTIONS(2176), + [anon_sym_module] = ACTIONS(2176), + [anon_sym_use] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_loop] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_match] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_DOT] = ACTIONS(2176), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_source] = ACTIONS(2176), + [anon_sym_source_DASHenv] = ACTIONS(2176), + [anon_sym_register] = ACTIONS(2176), + [anon_sym_hide] = ACTIONS(2176), + [anon_sym_hide_DASHenv] = ACTIONS(2176), + [anon_sym_overlay] = ACTIONS(2176), + [anon_sym_where] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_not] = ACTIONS(2176), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), + [aux_sym__val_number_decimal_token1] = 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(2176), + [anon_sym_0o] = ACTIONS(2176), + [anon_sym_0x] = ACTIONS(2176), + [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_CARET] = ACTIONS(2176), [anon_sym_POUND] = ACTIONS(105), }, [887] = { - [sym_cell_path] = STATE(950), - [sym_path] = STATE(897), + [sym_expr_parenthesized] = STATE(1444), + [sym__immediate_decimal] = STATE(1446), + [sym_val_variable] = STATE(1444), + [sym__var] = STATE(1127), [sym_comment] = STATE(887), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1395), - [anon_sym_BANG_TILDE] = ACTIONS(1395), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_err_GT] = ACTIONS(1395), - [anon_sym_out_GT] = ACTIONS(1395), - [anon_sym_e_GT] = ACTIONS(1395), - [anon_sym_o_GT] = ACTIONS(1395), - [anon_sym_err_PLUSout_GT] = ACTIONS(1395), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1395), - [anon_sym_o_PLUSe_GT] = ACTIONS(1395), - [anon_sym_e_PLUSo_GT] = ACTIONS(1395), - [aux_sym_unquoted_token1] = ACTIONS(1395), + [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), + [anon_sym_SEMI] = ACTIONS(2180), + [sym_cmd_identifier] = ACTIONS(2180), + [anon_sym_LF] = ACTIONS(2182), + [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_LBRACK] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2180), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_break] = ACTIONS(2180), + [anon_sym_continue] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2180), + [anon_sym_loop] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2180), + [anon_sym_do] = ACTIONS(2180), + [anon_sym_if] = ACTIONS(2180), + [anon_sym_match] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_DOT] = ACTIONS(2180), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_try] = 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_where] = ACTIONS(2180), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_not] = ACTIONS(2180), + [aux_sym__immediate_decimal_token1] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2180), + [anon_sym_true] = ACTIONS(2180), + [anon_sym_false] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2180), + [anon_sym_0o] = ACTIONS(2180), + [anon_sym_0x] = ACTIONS(2180), + [sym_val_date] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2180), + [sym__str_single_quotes] = ACTIONS(2180), + [sym__str_back_ticks] = ACTIONS(2180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), [anon_sym_POUND] = ACTIONS(105), }, [888] = { - [sym_cell_path] = STATE(968), - [sym_path] = STATE(879), + [sym_cell_path] = STATE(1065), + [sym_path] = STATE(914), [sym_comment] = STATE(888), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(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), - [anon_sym_err_GT] = ACTIONS(1389), - [anon_sym_out_GT] = ACTIONS(1389), - [anon_sym_e_GT] = ACTIONS(1389), - [anon_sym_o_GT] = ACTIONS(1389), - [anon_sym_err_PLUSout_GT] = ACTIONS(1389), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1389), - [anon_sym_o_PLUSe_GT] = ACTIONS(1389), - [anon_sym_e_PLUSo_GT] = ACTIONS(1389), - [aux_sym_unquoted_token1] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_LF] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_STAR_STAR] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_mod] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_bit_DASHshl] = ACTIONS(1431), + [anon_sym_bit_DASHshr] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_not_DASHin] = ACTIONS(1431), + [anon_sym_starts_DASHwith] = ACTIONS(1431), + [anon_sym_ends_DASHwith] = ACTIONS(1431), + [anon_sym_EQ_TILDE] = ACTIONS(1431), + [anon_sym_BANG_TILDE] = ACTIONS(1431), + [anon_sym_bit_DASHand] = ACTIONS(1431), + [anon_sym_bit_DASHxor] = ACTIONS(1431), + [anon_sym_bit_DASHor] = ACTIONS(1431), + [anon_sym_and] = ACTIONS(1431), + [anon_sym_xor] = ACTIONS(1431), + [anon_sym_or] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [aux_sym__val_number_token4] = ACTIONS(1431), + [aux_sym__val_number_token5] = ACTIONS(1431), + [aux_sym__val_number_token6] = ACTIONS(1431), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), + [sym_val_date] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1431), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1431), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), + [aux_sym_unquoted_token1] = ACTIONS(1431), [anon_sym_POUND] = ACTIONS(105), }, [889] = { - [sym__command_name] = STATE(1446), - [sym_scope_pattern] = STATE(1375), - [sym_wild_card] = STATE(1448), - [sym_command_list] = STATE(1449), - [sym_val_string] = STATE(1230), - [sym__str_double_quotes] = STATE(1233), + [sym_expr_parenthesized] = STATE(1633), + [sym__immediate_decimal] = STATE(1632), + [sym_val_variable] = STATE(1633), + [sym__var] = STATE(1173), [sym_comment] = STATE(889), - [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), - [anon_sym_SEMI] = ACTIONS(2326), - [sym_cmd_identifier] = ACTIONS(2191), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_RPAREN] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2326), - [anon_sym_error] = ACTIONS(2326), - [anon_sym_DASH] = ACTIONS(2326), - [anon_sym_break] = ACTIONS(2326), - [anon_sym_continue] = ACTIONS(2326), - [anon_sym_for] = ACTIONS(2326), - [anon_sym_loop] = ACTIONS(2326), - [anon_sym_while] = ACTIONS(2326), - [anon_sym_do] = ACTIONS(2326), - [anon_sym_if] = ACTIONS(2326), - [anon_sym_match] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_try] = 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_STAR] = ACTIONS(2197), - [anon_sym_where] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(2326), - [anon_sym_not] = ACTIONS(2326), - [anon_sym_null] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2326), - [anon_sym_false] = ACTIONS(2326), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2326), - [anon_sym_0o] = ACTIONS(2326), - [anon_sym_0x] = ACTIONS(2326), - [sym_val_date] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym__str_single_quotes] = ACTIONS(2201), - [sym__str_back_ticks] = ACTIONS(2201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2326), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2326), - [anon_sym_CARET] = ACTIONS(2326), + [ts_builtin_sym_end] = ACTIONS(2138), + [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), + [anon_sym_SEMI] = ACTIONS(2136), + [sym_cmd_identifier] = ACTIONS(2136), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_loop] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_match] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_DOT] = ACTIONS(2136), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = 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_where] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = ACTIONS(2136), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2136), + [anon_sym_0o] = ACTIONS(2136), + [anon_sym_0x] = ACTIONS(2136), + [sym_val_date] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym__str_single_quotes] = ACTIONS(2136), + [sym__str_back_ticks] = ACTIONS(2136), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2136), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2136), + [anon_sym_CARET] = ACTIONS(2136), [anon_sym_POUND] = ACTIONS(105), }, [890] = { - [sym_cell_path] = STATE(935), - [sym_path] = STATE(897), + [sym_path] = STATE(986), [sym_comment] = STATE(890), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1399), - [anon_sym_BANG_TILDE] = ACTIONS(1399), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_err_GT] = ACTIONS(1399), - [anon_sym_out_GT] = ACTIONS(1399), - [anon_sym_e_GT] = ACTIONS(1399), - [anon_sym_o_GT] = ACTIONS(1399), - [anon_sym_err_PLUSout_GT] = ACTIONS(1399), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1399), - [anon_sym_o_PLUSe_GT] = ACTIONS(1399), - [anon_sym_e_PLUSo_GT] = ACTIONS(1399), - [aux_sym_unquoted_token1] = ACTIONS(1399), + [aux_sym_cell_path_repeat1] = STATE(904), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_BANG_TILDE] = ACTIONS(1394), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_err_GT] = ACTIONS(1394), + [anon_sym_out_GT] = ACTIONS(1394), + [anon_sym_e_GT] = ACTIONS(1394), + [anon_sym_o_GT] = ACTIONS(1394), + [anon_sym_err_PLUSout_GT] = ACTIONS(1394), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1394), + [anon_sym_o_PLUSe_GT] = ACTIONS(1394), + [anon_sym_e_PLUSo_GT] = ACTIONS(1394), + [aux_sym_unquoted_token1] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [891] = { - [sym_path] = STATE(956), + [sym_expr_parenthesized] = STATE(1598), + [sym__immediate_decimal] = STATE(1584), + [sym_val_variable] = STATE(1598), + [sym__var] = STATE(1173), [sym_comment] = STATE(891), - [aux_sym_cell_path_repeat1] = STATE(891), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_DOT2] = ACTIONS(2333), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(2162), + [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), + [anon_sym_SEMI] = ACTIONS(2160), + [sym_cmd_identifier] = ACTIONS(2160), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = 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_where] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_not] = ACTIONS(2160), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2160), + [anon_sym_false] = ACTIONS(2160), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2160), + [anon_sym_0o] = ACTIONS(2160), + [anon_sym_0x] = ACTIONS(2160), + [sym_val_date] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [sym__str_single_quotes] = ACTIONS(2160), + [sym__str_back_ticks] = ACTIONS(2160), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), [anon_sym_POUND] = ACTIONS(105), }, [892] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2462), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_expr_parenthesized] = STATE(1491), + [sym__immediate_decimal] = STATE(1529), + [sym_val_variable] = STATE(1491), + [sym__var] = STATE(1173), [sym_comment] = STATE(892), - [aux_sym_command_repeat1] = STATE(873), - [anon_sym_SEMI] = ACTIONS(2336), - [anon_sym_LF] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2336), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [ts_builtin_sym_end] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_alias] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_let_DASHenv] = ACTIONS(2172), + [anon_sym_mut] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [sym_cmd_identifier] = ACTIONS(2172), + [anon_sym_LF] = ACTIONS(2174), + [anon_sym_def] = ACTIONS(2172), + [anon_sym_export_DASHenv] = ACTIONS(2172), + [anon_sym_extern] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_use] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_loop] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_match] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_source] = ACTIONS(2172), + [anon_sym_source_DASHenv] = ACTIONS(2172), + [anon_sym_register] = ACTIONS(2172), + [anon_sym_hide] = ACTIONS(2172), + [anon_sym_hide_DASHenv] = ACTIONS(2172), + [anon_sym_overlay] = ACTIONS(2172), + [anon_sym_where] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_not] = ACTIONS(2172), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [aux_sym__val_number_decimal_token1] = ACTIONS(2172), + [aux_sym__val_number_token1] = ACTIONS(2172), + [aux_sym__val_number_token2] = ACTIONS(2172), + [aux_sym__val_number_token3] = ACTIONS(2172), + [aux_sym__val_number_token4] = ACTIONS(2172), + [aux_sym__val_number_token5] = ACTIONS(2172), + [aux_sym__val_number_token6] = ACTIONS(2172), + [anon_sym_0b] = ACTIONS(2172), + [anon_sym_0o] = ACTIONS(2172), + [anon_sym_0x] = ACTIONS(2172), + [sym_val_date] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym__str_single_quotes] = ACTIONS(2172), + [sym__str_back_ticks] = ACTIONS(2172), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2172), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2172), + [anon_sym_CARET] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(105), }, [893] = { - [sym_expr_parenthesized] = STATE(1532), - [sym__immediate_decimal] = STATE(1548), - [sym_val_variable] = STATE(1532), - [sym__var] = STATE(1129), + [sym__command_name] = STATE(1472), + [sym_scope_pattern] = STATE(1291), + [sym_wild_card] = STATE(1474), + [sym_command_list] = STATE(1475), + [sym_val_string] = STATE(1226), + [sym__str_double_quotes] = STATE(1246), [sym_comment] = STATE(893), - [ts_builtin_sym_end] = ACTIONS(2091), - [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), - [anon_sym_SEMI] = ACTIONS(2089), - [sym_cmd_identifier] = ACTIONS(2089), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_DOT] = ACTIONS(2089), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = 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_where] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_not] = ACTIONS(2089), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2089), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2186), + [anon_sym_alias] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_let_DASHenv] = ACTIONS(2186), + [anon_sym_mut] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2186), + [sym_cmd_identifier] = ACTIONS(2188), + [anon_sym_LF] = ACTIONS(2190), + [anon_sym_def] = ACTIONS(2186), + [anon_sym_export_DASHenv] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_module] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2186), + [anon_sym_error] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_DOT] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_source] = ACTIONS(2186), + [anon_sym_source_DASHenv] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_hide] = ACTIONS(2186), + [anon_sym_hide_DASHenv] = ACTIONS(2186), + [anon_sym_overlay] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_where] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_null] = ACTIONS(2186), + [anon_sym_true] = ACTIONS(2186), + [anon_sym_false] = ACTIONS(2186), + [aux_sym__val_number_decimal_token1] = 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(2186), + [anon_sym_0o] = ACTIONS(2186), + [anon_sym_0x] = ACTIONS(2186), + [sym_val_date] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2198), + [sym__str_back_ticks] = ACTIONS(2198), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2186), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2186), + [anon_sym_CARET] = ACTIONS(2186), [anon_sym_POUND] = ACTIONS(105), }, [894] = { - [sym_cell_path] = STATE(1004), - [sym_path] = STATE(879), + [sym_expr_parenthesized] = STATE(1526), + [sym__immediate_decimal] = STATE(1524), + [sym_val_variable] = STATE(1526), + [sym__var] = STATE(1173), [sym_comment] = STATE(894), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1395), - [anon_sym_BANG_TILDE] = ACTIONS(1395), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_err_GT] = ACTIONS(1395), - [anon_sym_out_GT] = ACTIONS(1395), - [anon_sym_e_GT] = ACTIONS(1395), - [anon_sym_o_GT] = ACTIONS(1395), - [anon_sym_err_PLUSout_GT] = ACTIONS(1395), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1395), - [anon_sym_o_PLUSe_GT] = ACTIONS(1395), - [anon_sym_e_PLUSo_GT] = ACTIONS(1395), - [aux_sym_unquoted_token1] = ACTIONS(1395), + [ts_builtin_sym_end] = ACTIONS(2130), + [anon_sym_export] = ACTIONS(2128), + [anon_sym_alias] = ACTIONS(2128), + [anon_sym_let] = ACTIONS(2128), + [anon_sym_let_DASHenv] = ACTIONS(2128), + [anon_sym_mut] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [anon_sym_SEMI] = ACTIONS(2128), + [sym_cmd_identifier] = ACTIONS(2128), + [anon_sym_LF] = ACTIONS(2130), + [anon_sym_def] = ACTIONS(2128), + [anon_sym_export_DASHenv] = ACTIONS(2128), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym_module] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2128), + [anon_sym_DASH] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_loop] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_do] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_match] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_DOT] = ACTIONS(2128), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_source] = ACTIONS(2128), + [anon_sym_source_DASHenv] = ACTIONS(2128), + [anon_sym_register] = ACTIONS(2128), + [anon_sym_hide] = ACTIONS(2128), + [anon_sym_hide_DASHenv] = ACTIONS(2128), + [anon_sym_overlay] = ACTIONS(2128), + [anon_sym_where] = ACTIONS(2128), + [anon_sym_PLUS] = ACTIONS(2128), + [anon_sym_not] = ACTIONS(2128), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_token1] = ACTIONS(2128), + [aux_sym__val_number_token2] = ACTIONS(2128), + [aux_sym__val_number_token3] = ACTIONS(2128), + [aux_sym__val_number_token4] = ACTIONS(2128), + [aux_sym__val_number_token5] = ACTIONS(2128), + [aux_sym__val_number_token6] = ACTIONS(2128), + [anon_sym_0b] = ACTIONS(2128), + [anon_sym_0o] = ACTIONS(2128), + [anon_sym_0x] = ACTIONS(2128), + [sym_val_date] = ACTIONS(2128), + [anon_sym_DQUOTE] = ACTIONS(2128), + [sym__str_single_quotes] = ACTIONS(2128), + [sym__str_back_ticks] = ACTIONS(2128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2128), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2128), + [anon_sym_CARET] = ACTIONS(2128), [anon_sym_POUND] = ACTIONS(105), }, [895] = { - [sym_cell_path] = STATE(993), - [sym_path] = STATE(879), + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2526), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(895), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_LF] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_RPAREN] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_in] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_STAR_STAR] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_bit_DASHshl] = ACTIONS(1422), - [anon_sym_bit_DASHshr] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1422), - [anon_sym_BANG_EQ] = ACTIONS(1422), - [anon_sym_LT2] = ACTIONS(1422), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_not_DASHin] = ACTIONS(1422), - [anon_sym_starts_DASHwith] = ACTIONS(1422), - [anon_sym_ends_DASHwith] = ACTIONS(1422), - [anon_sym_EQ_TILDE] = ACTIONS(1422), - [anon_sym_BANG_TILDE] = ACTIONS(1422), - [anon_sym_bit_DASHand] = ACTIONS(1422), - [anon_sym_bit_DASHxor] = ACTIONS(1422), - [anon_sym_bit_DASHor] = ACTIONS(1422), - [anon_sym_and] = ACTIONS(1422), - [anon_sym_xor] = ACTIONS(1422), - [anon_sym_or] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [aux_sym__val_number_decimal_token1] = ACTIONS(1422), - [aux_sym__val_number_token1] = ACTIONS(1422), - [aux_sym__val_number_token2] = ACTIONS(1422), - [aux_sym__val_number_token3] = ACTIONS(1422), - [aux_sym__val_number_token4] = ACTIONS(1422), - [aux_sym__val_number_token5] = ACTIONS(1422), - [aux_sym__val_number_token6] = ACTIONS(1422), - [anon_sym_0b] = ACTIONS(1422), - [anon_sym_0o] = ACTIONS(1422), - [anon_sym_0x] = ACTIONS(1422), - [sym_val_date] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym__str_single_quotes] = ACTIONS(1422), - [sym__str_back_ticks] = ACTIONS(1422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1422), - [anon_sym_err_GT] = ACTIONS(1422), - [anon_sym_out_GT] = ACTIONS(1422), - [anon_sym_e_GT] = ACTIONS(1422), - [anon_sym_o_GT] = ACTIONS(1422), - [anon_sym_err_PLUSout_GT] = ACTIONS(1422), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1422), - [anon_sym_o_PLUSe_GT] = ACTIONS(1422), - [anon_sym_e_PLUSo_GT] = ACTIONS(1422), - [aux_sym_unquoted_token1] = ACTIONS(1422), + [aux_sym_command_repeat1] = STATE(911), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LF] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [896] = { - [sym_expr_parenthesized] = STATE(1595), - [sym__immediate_decimal] = STATE(1596), - [sym_val_variable] = STATE(1595), - [sym__var] = STATE(1129), [sym_comment] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_alias] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_let_DASHenv] = ACTIONS(2081), - [anon_sym_mut] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [sym_cmd_identifier] = ACTIONS(2081), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_def] = ACTIONS(2081), - [anon_sym_export_DASHenv] = ACTIONS(2081), - [anon_sym_extern] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_source] = ACTIONS(2081), - [anon_sym_source_DASHenv] = ACTIONS(2081), - [anon_sym_register] = ACTIONS(2081), - [anon_sym_hide] = ACTIONS(2081), - [anon_sym_hide_DASHenv] = ACTIONS(2081), - [anon_sym_overlay] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_not] = ACTIONS(2081), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [aux_sym__val_number_decimal_token1] = ACTIONS(2081), - [aux_sym__val_number_token1] = ACTIONS(2081), - [aux_sym__val_number_token2] = ACTIONS(2081), - [aux_sym__val_number_token3] = ACTIONS(2081), - [aux_sym__val_number_token4] = ACTIONS(2081), - [aux_sym__val_number_token5] = ACTIONS(2081), - [aux_sym__val_number_token6] = ACTIONS(2081), - [anon_sym_0b] = ACTIONS(2081), - [anon_sym_0o] = ACTIONS(2081), - [anon_sym_0x] = ACTIONS(2081), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2081), - [sym__str_back_ticks] = ACTIONS(2081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2081), - [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT2] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1445), + [anon_sym_BANG_TILDE] = ACTIONS(1445), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(2246), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_err_GT] = ACTIONS(1445), + [anon_sym_out_GT] = ACTIONS(1445), + [anon_sym_e_GT] = ACTIONS(1445), + [anon_sym_o_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT] = ACTIONS(1445), + [aux_sym_unquoted_token1] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(2248), [anon_sym_POUND] = ACTIONS(105), }, [897] = { - [sym_path] = STATE(956), + [sym_expr_parenthesized] = STATE(1507), + [sym__immediate_decimal] = STATE(1492), + [sym_val_variable] = STATE(1507), + [sym__var] = STATE(1173), [sym_comment] = STATE(897), - [aux_sym_cell_path_repeat1] = STATE(886), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1440), - [anon_sym_BANG_TILDE] = ACTIONS(1440), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_err_GT] = ACTIONS(1440), - [anon_sym_out_GT] = ACTIONS(1440), - [anon_sym_e_GT] = ACTIONS(1440), - [anon_sym_o_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT] = ACTIONS(1440), - [aux_sym_unquoted_token1] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(2142), + [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), + [anon_sym_SEMI] = ACTIONS(2140), + [sym_cmd_identifier] = ACTIONS(2140), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2140), + [anon_sym_DASH] = ACTIONS(2140), + [anon_sym_break] = ACTIONS(2140), + [anon_sym_continue] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_loop] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_do] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_match] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = 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_where] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(2140), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2140), + [anon_sym_false] = ACTIONS(2140), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2140), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2140), + [sym__str_single_quotes] = ACTIONS(2140), + [sym__str_back_ticks] = ACTIONS(2140), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2140), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2140), + [anon_sym_CARET] = ACTIONS(2140), [anon_sym_POUND] = ACTIONS(105), }, [898] = { - [sym_path] = STATE(956), + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2526), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(898), - [aux_sym_cell_path_repeat1] = STATE(891), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1436), - [anon_sym_BANG_TILDE] = ACTIONS(1436), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1436), - [anon_sym_out_GT] = ACTIONS(1436), - [anon_sym_e_GT] = ACTIONS(1436), - [anon_sym_o_GT] = ACTIONS(1436), - [anon_sym_err_PLUSout_GT] = ACTIONS(1436), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1436), - [anon_sym_o_PLUSe_GT] = ACTIONS(1436), - [anon_sym_e_PLUSo_GT] = ACTIONS(1436), - [aux_sym_unquoted_token1] = ACTIONS(1436), + [aux_sym_command_repeat1] = STATE(915), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_LF] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [899] = { - [sym_expr_parenthesized] = STATE(1519), - [sym__immediate_decimal] = STATE(1523), - [sym_val_variable] = STATE(1519), - [sym__var] = STATE(1129), + [sym_cell_path] = STATE(1011), + [sym_path] = STATE(914), [sym_comment] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(2119), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_alias] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_let_DASHenv] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [sym_cmd_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_def] = ACTIONS(2117), - [anon_sym_export_DASHenv] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_DOT2] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_source] = ACTIONS(2117), - [anon_sym_source_DASHenv] = ACTIONS(2117), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_hide] = ACTIONS(2117), - [anon_sym_hide_DASHenv] = ACTIONS(2117), - [anon_sym_overlay] = ACTIONS(2117), - [anon_sym_where] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_not] = ACTIONS(2117), - [aux_sym__immediate_decimal_token1] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [aux_sym__val_number_decimal_token1] = ACTIONS(2117), - [aux_sym__val_number_token1] = ACTIONS(2117), - [aux_sym__val_number_token2] = ACTIONS(2117), - [aux_sym__val_number_token3] = ACTIONS(2117), - [aux_sym__val_number_token4] = ACTIONS(2117), - [aux_sym__val_number_token5] = ACTIONS(2117), - [aux_sym__val_number_token6] = ACTIONS(2117), - [anon_sym_0b] = ACTIONS(2117), - [anon_sym_0o] = ACTIONS(2117), - [anon_sym_0x] = ACTIONS(2117), - [sym_val_date] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [sym__str_single_quotes] = ACTIONS(2117), - [sym__str_back_ticks] = ACTIONS(2117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1467), + [anon_sym_BANG_TILDE] = ACTIONS(1467), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_err_GT] = ACTIONS(1467), + [anon_sym_out_GT] = ACTIONS(1467), + [anon_sym_e_GT] = ACTIONS(1467), + [anon_sym_o_GT] = ACTIONS(1467), + [anon_sym_err_PLUSout_GT] = ACTIONS(1467), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1467), + [anon_sym_o_PLUSe_GT] = ACTIONS(1467), + [anon_sym_e_PLUSo_GT] = ACTIONS(1467), + [aux_sym_unquoted_token1] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, [900] = { - [sym_cell_path] = STATE(1100), - [sym_path] = STATE(904), + [sym_cell_path] = STATE(990), + [sym_path] = STATE(914), [sym_comment] = STATE(900), - [ts_builtin_sym_end] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_LF] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_DOLLAR] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_bit_DASHshl] = ACTIONS(1447), - [anon_sym_bit_DASHshr] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_LT2] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_not_DASHin] = ACTIONS(1447), - [anon_sym_starts_DASHwith] = ACTIONS(1447), - [anon_sym_ends_DASHwith] = ACTIONS(1447), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1447), - [anon_sym_bit_DASHxor] = ACTIONS(1447), - [anon_sym_bit_DASHor] = ACTIONS(1447), - [anon_sym_and] = ACTIONS(1447), - [anon_sym_xor] = ACTIONS(1447), - [anon_sym_or] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [aux_sym__val_number_decimal_token1] = 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(1447), - [aux_sym__val_number_token5] = ACTIONS(1447), - [aux_sym__val_number_token6] = ACTIONS(1447), - [anon_sym_0b] = ACTIONS(1447), - [anon_sym_0o] = ACTIONS(1447), - [anon_sym_0x] = ACTIONS(1447), - [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), - [anon_sym_err_GT] = ACTIONS(1447), - [anon_sym_out_GT] = ACTIONS(1447), - [anon_sym_e_GT] = ACTIONS(1447), - [anon_sym_o_GT] = ACTIONS(1447), - [anon_sym_err_PLUSout_GT] = ACTIONS(1447), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1447), - [anon_sym_o_PLUSe_GT] = ACTIONS(1447), - [anon_sym_e_PLUSo_GT] = ACTIONS(1447), - [aux_sym_unquoted_token1] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_STAR_STAR] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_SLASH_SLASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_bit_DASHshl] = ACTIONS(1474), + [anon_sym_bit_DASHshr] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT2] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_not_DASHin] = ACTIONS(1474), + [anon_sym_starts_DASHwith] = ACTIONS(1474), + [anon_sym_ends_DASHwith] = ACTIONS(1474), + [anon_sym_EQ_TILDE] = ACTIONS(1474), + [anon_sym_BANG_TILDE] = ACTIONS(1474), + [anon_sym_bit_DASHand] = ACTIONS(1474), + [anon_sym_bit_DASHxor] = ACTIONS(1474), + [anon_sym_bit_DASHor] = ACTIONS(1474), + [anon_sym_and] = ACTIONS(1474), + [anon_sym_xor] = ACTIONS(1474), + [anon_sym_or] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_token1] = ACTIONS(1474), + [aux_sym__val_number_token2] = ACTIONS(1474), + [aux_sym__val_number_token3] = ACTIONS(1474), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym__str_single_quotes] = ACTIONS(1474), + [sym__str_back_ticks] = ACTIONS(1474), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1474), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1474), + [anon_sym_err_GT] = ACTIONS(1474), + [anon_sym_out_GT] = ACTIONS(1474), + [anon_sym_e_GT] = ACTIONS(1474), + [anon_sym_o_GT] = ACTIONS(1474), + [anon_sym_err_PLUSout_GT] = ACTIONS(1474), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), + [anon_sym_o_PLUSe_GT] = ACTIONS(1474), + [anon_sym_e_PLUSo_GT] = ACTIONS(1474), + [aux_sym_unquoted_token1] = ACTIONS(1474), [anon_sym_POUND] = ACTIONS(105), }, [901] = { - [sym_cell_path] = STATE(1057), - [sym_path] = STATE(904), + [sym_expr_parenthesized] = STATE(1647), + [sym__immediate_decimal] = STATE(1646), + [sym_val_variable] = STATE(1647), + [sym__var] = STATE(1173), [sym_comment] = STATE(901), - [ts_builtin_sym_end] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1399), - [anon_sym_BANG_TILDE] = ACTIONS(1399), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_err_GT] = ACTIONS(1399), - [anon_sym_out_GT] = ACTIONS(1399), - [anon_sym_e_GT] = ACTIONS(1399), - [anon_sym_o_GT] = ACTIONS(1399), - [anon_sym_err_PLUSout_GT] = ACTIONS(1399), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1399), - [anon_sym_o_PLUSe_GT] = ACTIONS(1399), - [anon_sym_e_PLUSo_GT] = ACTIONS(1399), - [aux_sym_unquoted_token1] = ACTIONS(1399), + [ts_builtin_sym_end] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_alias] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_let_DASHenv] = ACTIONS(2176), + [anon_sym_mut] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [sym_cmd_identifier] = ACTIONS(2176), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_def] = ACTIONS(2176), + [anon_sym_export_DASHenv] = ACTIONS(2176), + [anon_sym_extern] = ACTIONS(2176), + [anon_sym_module] = ACTIONS(2176), + [anon_sym_use] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_loop] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_match] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_DOT] = ACTIONS(2176), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_source] = ACTIONS(2176), + [anon_sym_source_DASHenv] = ACTIONS(2176), + [anon_sym_register] = ACTIONS(2176), + [anon_sym_hide] = ACTIONS(2176), + [anon_sym_hide_DASHenv] = ACTIONS(2176), + [anon_sym_overlay] = ACTIONS(2176), + [anon_sym_where] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_not] = ACTIONS(2176), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), + [aux_sym__val_number_decimal_token1] = 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(2176), + [anon_sym_0o] = ACTIONS(2176), + [anon_sym_0x] = ACTIONS(2176), + [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_CARET] = ACTIONS(2176), [anon_sym_POUND] = ACTIONS(105), }, [902] = { - [sym_expr_parenthesized] = STATE(2456), - [sym_val_range] = STATE(2636), - [sym__value] = STATE(2636), - [sym_val_nothing] = STATE(2712), - [sym_val_bool] = STATE(2712), - [sym_val_variable] = STATE(2459), - [sym__var] = STATE(2375), - [sym_val_number] = STATE(298), - [sym__val_number_decimal] = STATE(289), - [sym__val_number] = STATE(307), - [sym_val_duration] = STATE(2712), - [sym_val_filesize] = STATE(2712), - [sym_val_binary] = STATE(2712), - [sym_val_string] = STATE(2712), - [sym__str_double_quotes] = STATE(2684), - [sym_val_interpolated] = STATE(2712), - [sym__inter_single_quotes] = STATE(2674), - [sym__inter_double_quotes] = STATE(2668), - [sym_val_list] = STATE(2712), - [sym_val_record] = STATE(2712), - [sym_val_table] = STATE(2712), - [sym_val_closure] = STATE(2712), - [sym__cmd_arg] = STATE(2639), - [sym_redirection] = STATE(2644), - [sym__flag] = STATE(2645), - [sym_short_flag] = STATE(2654), - [sym_long_flag] = STATE(2654), - [sym_unquoted] = STATE(2659), + [sym_expr_parenthesized] = STATE(1645), + [sym__immediate_decimal] = STATE(1642), + [sym_val_variable] = STATE(1645), + [sym__var] = STATE(1173), [sym_comment] = STATE(902), - [aux_sym_command_repeat1] = STATE(902), - [ts_builtin_sym_end] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_LF] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_DOT] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2360), - [anon_sym_null] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2366), - [anon_sym_false] = ACTIONS(2366), - [aux_sym__val_number_decimal_token1] = ACTIONS(2369), - [aux_sym__val_number_token1] = ACTIONS(2372), - [aux_sym__val_number_token2] = ACTIONS(2372), - [aux_sym__val_number_token3] = ACTIONS(2372), - [aux_sym__val_number_token4] = ACTIONS(2375), - [aux_sym__val_number_token5] = ACTIONS(2375), - [aux_sym__val_number_token6] = ACTIONS(2375), - [anon_sym_0b] = ACTIONS(2378), - [anon_sym_0o] = ACTIONS(2378), - [anon_sym_0x] = ACTIONS(2378), - [sym_val_date] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2384), - [sym__str_single_quotes] = ACTIONS(2387), - [sym__str_back_ticks] = ACTIONS(2387), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2390), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2393), - [anon_sym_err_GT] = ACTIONS(2396), - [anon_sym_out_GT] = ACTIONS(2396), - [anon_sym_e_GT] = ACTIONS(2396), - [anon_sym_o_GT] = ACTIONS(2396), - [anon_sym_err_PLUSout_GT] = ACTIONS(2396), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2396), - [anon_sym_o_PLUSe_GT] = ACTIONS(2396), - [anon_sym_e_PLUSo_GT] = ACTIONS(2396), - [aux_sym_unquoted_token1] = ACTIONS(2399), + [ts_builtin_sym_end] = ACTIONS(2158), + [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), + [anon_sym_SEMI] = ACTIONS(2156), + [sym_cmd_identifier] = ACTIONS(2156), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = 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_where] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2156), + [anon_sym_false] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), + [anon_sym_0b] = ACTIONS(2156), + [anon_sym_0o] = ACTIONS(2156), + [anon_sym_0x] = ACTIONS(2156), + [sym_val_date] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(2156), [anon_sym_POUND] = ACTIONS(105), }, [903] = { - [sym_cell_path] = STATE(1078), - [sym_path] = STATE(904), + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2526), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(903), - [ts_builtin_sym_end] = ACTIONS(1409), + [aux_sym_command_repeat1] = STATE(895), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(105), + }, + [904] = { + [sym_path] = STATE(986), + [sym_comment] = STATE(904), + [aux_sym_cell_path_repeat1] = STATE(921), [anon_sym_SEMI] = ACTIONS(1407), [anon_sym_LF] = ACTIONS(1409), [anon_sym_LBRACK] = ACTIONS(1407), [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_RPAREN] = ACTIONS(1407), [anon_sym_PIPE] = ACTIONS(1407), [anon_sym_DOLLAR] = ACTIONS(1407), [anon_sym_GT] = ACTIONS(1407), [anon_sym_DASH] = ACTIONS(1407), [anon_sym_in] = ACTIONS(1407), [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_DOT2] = ACTIONS(2340), + [anon_sym_DOT2] = ACTIONS(1409), [anon_sym_STAR] = ACTIONS(1407), [anon_sym_STAR_STAR] = ACTIONS(1407), [anon_sym_PLUS_PLUS] = ACTIONS(1407), @@ -173481,4379 +175581,4927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1407), [anon_sym_POUND] = ACTIONS(105), }, - [904] = { - [sym_path] = STATE(977), - [sym_comment] = STATE(904), - [aux_sym_cell_path_repeat1] = STATE(924), - [ts_builtin_sym_end] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1440), - [anon_sym_BANG_TILDE] = ACTIONS(1440), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_err_GT] = ACTIONS(1440), - [anon_sym_out_GT] = ACTIONS(1440), - [anon_sym_e_GT] = ACTIONS(1440), - [anon_sym_o_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT] = ACTIONS(1440), - [aux_sym_unquoted_token1] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(105), - }, [905] = { - [sym_cell_path] = STATE(1058), - [sym_path] = STATE(904), + [sym__expression] = STATE(2500), + [sym_expr_unary] = STATE(1028), + [sym__expr_unary_minus] = STATE(1037), + [sym_expr_binary] = STATE(1028), + [sym__expr_binary_expression] = STATE(3515), + [sym_expr_parenthesized] = STATE(967), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(1028), + [sym_val_nothing] = STATE(1029), + [sym_val_bool] = STATE(1029), + [sym_val_variable] = STATE(973), + [sym__var] = STATE(912), + [sym_val_number] = STATE(134), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(132), + [sym_val_duration] = STATE(1029), + [sym_val_filesize] = STATE(1029), + [sym_val_binary] = STATE(1029), + [sym_val_string] = STATE(1029), + [sym__str_double_quotes] = STATE(1021), + [sym_val_interpolated] = STATE(1029), + [sym__inter_single_quotes] = STATE(1025), + [sym__inter_double_quotes] = STATE(1017), + [sym_val_list] = STATE(1029), + [sym_val_record] = STATE(1029), + [sym_val_table] = STATE(1029), + [sym_val_closure] = STATE(1029), + [sym_unquoted] = STATE(2496), [sym_comment] = STATE(905), - [ts_builtin_sym_end] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_LF] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_in] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_STAR_STAR] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_bit_DASHshl] = ACTIONS(1422), - [anon_sym_bit_DASHshr] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1422), - [anon_sym_BANG_EQ] = ACTIONS(1422), - [anon_sym_LT2] = ACTIONS(1422), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_not_DASHin] = ACTIONS(1422), - [anon_sym_starts_DASHwith] = ACTIONS(1422), - [anon_sym_ends_DASHwith] = ACTIONS(1422), - [anon_sym_EQ_TILDE] = ACTIONS(1422), - [anon_sym_BANG_TILDE] = ACTIONS(1422), - [anon_sym_bit_DASHand] = ACTIONS(1422), - [anon_sym_bit_DASHxor] = ACTIONS(1422), - [anon_sym_bit_DASHor] = ACTIONS(1422), - [anon_sym_and] = ACTIONS(1422), - [anon_sym_xor] = ACTIONS(1422), - [anon_sym_or] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [aux_sym__val_number_decimal_token1] = ACTIONS(1422), - [aux_sym__val_number_token1] = ACTIONS(1422), - [aux_sym__val_number_token2] = ACTIONS(1422), - [aux_sym__val_number_token3] = ACTIONS(1422), - [aux_sym__val_number_token4] = ACTIONS(1422), - [aux_sym__val_number_token5] = ACTIONS(1422), - [aux_sym__val_number_token6] = ACTIONS(1422), - [anon_sym_0b] = ACTIONS(1422), - [anon_sym_0o] = ACTIONS(1422), - [anon_sym_0x] = ACTIONS(1422), - [sym_val_date] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym__str_single_quotes] = ACTIONS(1422), - [sym__str_back_ticks] = ACTIONS(1422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1422), - [anon_sym_err_GT] = ACTIONS(1422), - [anon_sym_out_GT] = ACTIONS(1422), - [anon_sym_e_GT] = ACTIONS(1422), - [anon_sym_o_GT] = ACTIONS(1422), - [anon_sym_err_PLUSout_GT] = ACTIONS(1422), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1422), - [anon_sym_o_PLUSe_GT] = ACTIONS(1422), - [anon_sym_e_PLUSo_GT] = ACTIONS(1422), - [aux_sym_unquoted_token1] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_LF] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_RPAREN] = ACTIONS(2258), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_not] = ACTIONS(2276), + [anon_sym_null] = ACTIONS(2278), + [anon_sym_true] = ACTIONS(2280), + [anon_sym_false] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [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(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_0b] = ACTIONS(2288), + [anon_sym_0o] = ACTIONS(2288), + [anon_sym_0x] = ACTIONS(2288), + [sym_val_date] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [sym__str_single_quotes] = ACTIONS(2294), + [sym__str_back_ticks] = ACTIONS(2294), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2298), + [anon_sym_err_GT] = ACTIONS(2258), + [anon_sym_out_GT] = ACTIONS(2258), + [anon_sym_e_GT] = ACTIONS(2258), + [anon_sym_o_GT] = ACTIONS(2258), + [anon_sym_err_PLUSout_GT] = ACTIONS(2258), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2258), + [anon_sym_o_PLUSe_GT] = ACTIONS(2258), + [anon_sym_e_PLUSo_GT] = ACTIONS(2258), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [906] = { - [sym_path] = STATE(977), + [sym_expr_parenthesized] = STATE(1621), + [sym__immediate_decimal] = STATE(1617), + [sym_val_variable] = STATE(1621), + [sym__var] = STATE(1173), [sym_comment] = STATE(906), - [aux_sym_cell_path_repeat1] = STATE(906), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_DOT2] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(2134), + [anon_sym_export] = ACTIONS(2132), + [anon_sym_alias] = ACTIONS(2132), + [anon_sym_let] = ACTIONS(2132), + [anon_sym_let_DASHenv] = ACTIONS(2132), + [anon_sym_mut] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [sym_cmd_identifier] = ACTIONS(2132), + [anon_sym_LF] = ACTIONS(2134), + [anon_sym_def] = ACTIONS(2132), + [anon_sym_export_DASHenv] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_module] = ACTIONS(2132), + [anon_sym_use] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_loop] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_match] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_DOT] = ACTIONS(2132), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_source] = ACTIONS(2132), + [anon_sym_source_DASHenv] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_hide] = ACTIONS(2132), + [anon_sym_hide_DASHenv] = ACTIONS(2132), + [anon_sym_overlay] = ACTIONS(2132), + [anon_sym_where] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_not] = ACTIONS(2132), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2132), + [anon_sym_false] = ACTIONS(2132), + [aux_sym__val_number_decimal_token1] = ACTIONS(2132), + [aux_sym__val_number_token1] = ACTIONS(2132), + [aux_sym__val_number_token2] = ACTIONS(2132), + [aux_sym__val_number_token3] = ACTIONS(2132), + [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(2132), + [anon_sym_0o] = ACTIONS(2132), + [anon_sym_0x] = ACTIONS(2132), + [sym_val_date] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2132), + [sym__str_single_quotes] = ACTIONS(2132), + [sym__str_back_ticks] = ACTIONS(2132), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), + [anon_sym_CARET] = ACTIONS(2132), [anon_sym_POUND] = ACTIONS(105), }, [907] = { - [sym__command_name] = STATE(1488), - [sym_scope_pattern] = STATE(1565), - [sym_wild_card] = STATE(1486), - [sym_command_list] = STATE(1485), - [sym_val_string] = STATE(1344), - [sym__str_double_quotes] = STATE(1432), + [sym__command_name] = STATE(1472), + [sym_scope_pattern] = STATE(1461), + [sym_wild_card] = STATE(1474), + [sym_command_list] = STATE(1475), + [sym_val_string] = STATE(1226), + [sym__str_double_quotes] = STATE(1246), [sym_comment] = STATE(907), - [ts_builtin_sym_end] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_alias] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_let_DASHenv] = ACTIONS(2275), - [anon_sym_mut] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [sym_cmd_identifier] = ACTIONS(2405), - [anon_sym_LF] = ACTIONS(2277), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_export_DASHenv] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_DOT] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_source] = ACTIONS(2275), - [anon_sym_source_DASHenv] = ACTIONS(2275), - [anon_sym_register] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_hide_DASHenv] = ACTIONS(2275), - [anon_sym_overlay] = ACTIONS(2275), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_where] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2275), - [anon_sym_not] = ACTIONS(2275), - [anon_sym_null] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = 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(2275), - [aux_sym__val_number_token5] = ACTIONS(2275), - [aux_sym__val_number_token6] = ACTIONS(2275), - [anon_sym_0b] = ACTIONS(2275), - [anon_sym_0o] = ACTIONS(2275), - [anon_sym_0x] = ACTIONS(2275), - [sym_val_date] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym__str_single_quotes] = ACTIONS(2413), - [sym__str_back_ticks] = ACTIONS(2413), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2275), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2275), - [anon_sym_CARET] = ACTIONS(2275), + [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), + [anon_sym_SEMI] = ACTIONS(2300), + [sym_cmd_identifier] = ACTIONS(2188), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_RPAREN] = ACTIONS(2300), + [anon_sym_DOLLAR] = ACTIONS(2300), + [anon_sym_error] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_loop] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_match] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_DOT] = ACTIONS(2300), + [anon_sym_try] = 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_STAR] = ACTIONS(2194), + [anon_sym_where] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_not] = ACTIONS(2300), + [anon_sym_null] = ACTIONS(2300), + [anon_sym_true] = ACTIONS(2300), + [anon_sym_false] = ACTIONS(2300), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2300), + [anon_sym_0o] = ACTIONS(2300), + [anon_sym_0x] = ACTIONS(2300), + [sym_val_date] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2198), + [sym__str_back_ticks] = ACTIONS(2198), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2300), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2300), [anon_sym_POUND] = ACTIONS(105), }, [908] = { + [sym_path] = STATE(986), [sym_comment] = STATE(908), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(2415), - [anon_sym_STAR_STAR] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1464), - [anon_sym_BANG_TILDE] = ACTIONS(1464), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_err_GT] = ACTIONS(1464), - [anon_sym_out_GT] = ACTIONS(1464), - [anon_sym_e_GT] = ACTIONS(1464), - [anon_sym_o_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT] = ACTIONS(1464), - [aux_sym_unquoted_token1] = ACTIONS(1464), + [aux_sym_cell_path_repeat1] = STATE(921), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_STAR_STAR] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_bit_DASHshl] = ACTIONS(1407), + [anon_sym_bit_DASHshr] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1407), + [anon_sym_BANG_EQ] = ACTIONS(1407), + [anon_sym_LT2] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1407), + [anon_sym_not_DASHin] = ACTIONS(1407), + [anon_sym_starts_DASHwith] = ACTIONS(1407), + [anon_sym_ends_DASHwith] = ACTIONS(1407), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1407), + [anon_sym_bit_DASHxor] = ACTIONS(1407), + [anon_sym_bit_DASHor] = ACTIONS(1407), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_xor] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_err_GT] = ACTIONS(1407), + [anon_sym_out_GT] = ACTIONS(1407), + [anon_sym_e_GT] = ACTIONS(1407), + [anon_sym_o_GT] = ACTIONS(1407), + [anon_sym_err_PLUSout_GT] = ACTIONS(1407), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1407), + [anon_sym_o_PLUSe_GT] = ACTIONS(1407), + [anon_sym_e_PLUSo_GT] = ACTIONS(1407), + [aux_sym_unquoted_token1] = ACTIONS(1407), [anon_sym_POUND] = ACTIONS(105), }, [909] = { - [sym__command_name] = STATE(1488), - [sym_scope_pattern] = STATE(1487), - [sym_wild_card] = STATE(1486), - [sym_command_list] = STATE(1485), - [sym_val_string] = STATE(1344), - [sym__str_double_quotes] = STATE(1432), + [sym_cell_path] = STATE(988), + [sym_path] = STATE(914), [sym_comment] = STATE(909), - [ts_builtin_sym_end] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_alias] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_let_DASHenv] = ACTIONS(2189), - [anon_sym_mut] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [sym_cmd_identifier] = ACTIONS(2405), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_def] = ACTIONS(2189), - [anon_sym_export_DASHenv] = ACTIONS(2189), - [anon_sym_extern] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_error] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_loop] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_source] = ACTIONS(2189), - [anon_sym_source_DASHenv] = ACTIONS(2189), - [anon_sym_register] = ACTIONS(2189), - [anon_sym_hide] = ACTIONS(2189), - [anon_sym_hide_DASHenv] = ACTIONS(2189), - [anon_sym_overlay] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_where] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_not] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [aux_sym__val_number_decimal_token1] = ACTIONS(2189), - [aux_sym__val_number_token1] = ACTIONS(2189), - [aux_sym__val_number_token2] = ACTIONS(2189), - [aux_sym__val_number_token3] = ACTIONS(2189), - [aux_sym__val_number_token4] = ACTIONS(2189), - [aux_sym__val_number_token5] = ACTIONS(2189), - [aux_sym__val_number_token6] = ACTIONS(2189), - [anon_sym_0b] = ACTIONS(2189), - [anon_sym_0o] = ACTIONS(2189), - [anon_sym_0x] = ACTIONS(2189), - [sym_val_date] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym__str_single_quotes] = ACTIONS(2413), - [sym__str_back_ticks] = ACTIONS(2413), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2189), - [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_LF] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_in] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_bit_DASHshl] = ACTIONS(1463), + [anon_sym_bit_DASHshr] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_LT2] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_not_DASHin] = ACTIONS(1463), + [anon_sym_starts_DASHwith] = ACTIONS(1463), + [anon_sym_ends_DASHwith] = ACTIONS(1463), + [anon_sym_EQ_TILDE] = ACTIONS(1463), + [anon_sym_BANG_TILDE] = ACTIONS(1463), + [anon_sym_bit_DASHand] = ACTIONS(1463), + [anon_sym_bit_DASHxor] = ACTIONS(1463), + [anon_sym_bit_DASHor] = ACTIONS(1463), + [anon_sym_and] = ACTIONS(1463), + [anon_sym_xor] = ACTIONS(1463), + [anon_sym_or] = ACTIONS(1463), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1463), + [aux_sym__val_number_token2] = ACTIONS(1463), + [aux_sym__val_number_token3] = ACTIONS(1463), + [aux_sym__val_number_token4] = ACTIONS(1463), + [aux_sym__val_number_token5] = ACTIONS(1463), + [aux_sym__val_number_token6] = ACTIONS(1463), + [anon_sym_0b] = ACTIONS(1463), + [anon_sym_0o] = ACTIONS(1463), + [anon_sym_0x] = ACTIONS(1463), + [sym_val_date] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [sym__str_single_quotes] = ACTIONS(1463), + [sym__str_back_ticks] = ACTIONS(1463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), + [anon_sym_err_GT] = ACTIONS(1463), + [anon_sym_out_GT] = ACTIONS(1463), + [anon_sym_e_GT] = ACTIONS(1463), + [anon_sym_o_GT] = ACTIONS(1463), + [anon_sym_err_PLUSout_GT] = ACTIONS(1463), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1463), + [anon_sym_o_PLUSe_GT] = ACTIONS(1463), + [anon_sym_e_PLUSo_GT] = ACTIONS(1463), + [aux_sym_unquoted_token1] = ACTIONS(1463), [anon_sym_POUND] = ACTIONS(105), }, [910] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2665), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_cell_path] = STATE(968), + [sym_path] = STATE(890), [sym_comment] = STATE(910), - [aux_sym__command_parenthesized_body_repeat1] = STATE(910), - [anon_sym_SEMI] = ACTIONS(2417), - [anon_sym_LF] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_RPAREN] = ACTIONS(2417), - [anon_sym_PIPE] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2440), - [anon_sym_null] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(2446), - [anon_sym_false] = ACTIONS(2446), - [aux_sym__val_number_decimal_token1] = ACTIONS(2449), - [aux_sym__val_number_token1] = ACTIONS(2452), - [aux_sym__val_number_token2] = ACTIONS(2452), - [aux_sym__val_number_token3] = ACTIONS(2452), - [aux_sym__val_number_token4] = ACTIONS(2455), - [aux_sym__val_number_token5] = ACTIONS(2455), - [aux_sym__val_number_token6] = ACTIONS(2455), - [anon_sym_0b] = ACTIONS(2458), - [anon_sym_0o] = ACTIONS(2458), - [anon_sym_0x] = ACTIONS(2458), - [sym_val_date] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym__str_single_quotes] = ACTIONS(2467), - [sym__str_back_ticks] = ACTIONS(2467), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2470), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_err_GT] = ACTIONS(2476), - [anon_sym_out_GT] = ACTIONS(2476), - [anon_sym_e_GT] = ACTIONS(2476), - [anon_sym_o_GT] = ACTIONS(2476), - [anon_sym_err_PLUSout_GT] = ACTIONS(2476), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2476), - [anon_sym_o_PLUSe_GT] = ACTIONS(2476), - [anon_sym_e_PLUSo_GT] = ACTIONS(2476), - [aux_sym_unquoted_token1] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(2304), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1467), + [anon_sym_BANG_TILDE] = ACTIONS(1467), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_err_GT] = ACTIONS(1467), + [anon_sym_out_GT] = ACTIONS(1467), + [anon_sym_e_GT] = ACTIONS(1467), + [anon_sym_o_GT] = ACTIONS(1467), + [anon_sym_err_PLUSout_GT] = ACTIONS(1467), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1467), + [anon_sym_o_PLUSe_GT] = ACTIONS(1467), + [anon_sym_e_PLUSo_GT] = ACTIONS(1467), + [aux_sym_unquoted_token1] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, [911] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2665), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2526), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(911), - [aux_sym__command_parenthesized_body_repeat1] = STATE(922), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_LF] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [aux_sym_command_repeat1] = STATE(911), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_LF] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_null] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [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(2344), + [aux_sym__val_number_token5] = ACTIONS(2344), + [aux_sym__val_number_token6] = ACTIONS(2344), + [anon_sym_0b] = ACTIONS(2347), + [anon_sym_0o] = ACTIONS(2347), + [anon_sym_0x] = ACTIONS(2347), + [sym_val_date] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2353), + [sym__str_single_quotes] = ACTIONS(2356), + [sym__str_back_ticks] = ACTIONS(2356), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2359), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2362), + [anon_sym_err_GT] = ACTIONS(2365), + [anon_sym_out_GT] = ACTIONS(2365), + [anon_sym_e_GT] = ACTIONS(2365), + [anon_sym_o_GT] = ACTIONS(2365), + [anon_sym_err_PLUSout_GT] = ACTIONS(2365), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2365), + [anon_sym_o_PLUSe_GT] = ACTIONS(2365), + [anon_sym_e_PLUSo_GT] = ACTIONS(2365), + [aux_sym_unquoted_token1] = ACTIONS(2368), [anon_sym_POUND] = ACTIONS(105), }, [912] = { - [sym_cell_path] = STATE(1102), - [sym_path] = STATE(904), + [sym_cell_path] = STATE(974), + [sym_path] = STATE(890), [sym_comment] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1395), - [anon_sym_BANG_TILDE] = ACTIONS(1395), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_err_GT] = ACTIONS(1395), - [anon_sym_out_GT] = ACTIONS(1395), - [anon_sym_e_GT] = ACTIONS(1395), - [anon_sym_o_GT] = ACTIONS(1395), - [anon_sym_err_PLUSout_GT] = ACTIONS(1395), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1395), - [anon_sym_o_PLUSe_GT] = ACTIONS(1395), - [anon_sym_e_PLUSo_GT] = ACTIONS(1395), - [aux_sym_unquoted_token1] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_BANG_TILDE] = ACTIONS(1400), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_err_GT] = ACTIONS(1400), + [anon_sym_out_GT] = ACTIONS(1400), + [anon_sym_e_GT] = ACTIONS(1400), + [anon_sym_o_GT] = ACTIONS(1400), + [anon_sym_err_PLUSout_GT] = ACTIONS(1400), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1400), + [anon_sym_o_PLUSe_GT] = ACTIONS(1400), + [anon_sym_e_PLUSo_GT] = ACTIONS(1400), + [aux_sym_unquoted_token1] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, [913] = { + [sym_cell_path] = STATE(1056), + [sym_path] = STATE(914), [sym_comment] = STATE(913), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(2415), - [anon_sym_STAR_STAR] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1464), - [anon_sym_BANG_TILDE] = ACTIONS(1464), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_err_GT] = ACTIONS(1464), - [anon_sym_out_GT] = ACTIONS(1464), - [anon_sym_e_GT] = ACTIONS(1464), - [anon_sym_o_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT] = ACTIONS(1464), - [aux_sym_unquoted_token1] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_LF] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_DOLLAR] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_in] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_STAR_STAR] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_bit_DASHshl] = ACTIONS(1459), + [anon_sym_bit_DASHshr] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_LT2] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_not_DASHin] = ACTIONS(1459), + [anon_sym_starts_DASHwith] = ACTIONS(1459), + [anon_sym_ends_DASHwith] = ACTIONS(1459), + [anon_sym_EQ_TILDE] = ACTIONS(1459), + [anon_sym_BANG_TILDE] = ACTIONS(1459), + [anon_sym_bit_DASHand] = ACTIONS(1459), + [anon_sym_bit_DASHxor] = ACTIONS(1459), + [anon_sym_bit_DASHor] = ACTIONS(1459), + [anon_sym_and] = ACTIONS(1459), + [anon_sym_xor] = ACTIONS(1459), + [anon_sym_or] = ACTIONS(1459), + [anon_sym_null] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [aux_sym__val_number_decimal_token1] = ACTIONS(1459), + [aux_sym__val_number_token1] = ACTIONS(1459), + [aux_sym__val_number_token2] = ACTIONS(1459), + [aux_sym__val_number_token3] = ACTIONS(1459), + [aux_sym__val_number_token4] = ACTIONS(1459), + [aux_sym__val_number_token5] = ACTIONS(1459), + [aux_sym__val_number_token6] = ACTIONS(1459), + [anon_sym_0b] = ACTIONS(1459), + [anon_sym_0o] = ACTIONS(1459), + [anon_sym_0x] = ACTIONS(1459), + [sym_val_date] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym__str_single_quotes] = ACTIONS(1459), + [sym__str_back_ticks] = ACTIONS(1459), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1459), + [anon_sym_err_GT] = ACTIONS(1459), + [anon_sym_out_GT] = ACTIONS(1459), + [anon_sym_e_GT] = ACTIONS(1459), + [anon_sym_o_GT] = ACTIONS(1459), + [anon_sym_err_PLUSout_GT] = ACTIONS(1459), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1459), + [anon_sym_o_PLUSe_GT] = ACTIONS(1459), + [anon_sym_e_PLUSo_GT] = ACTIONS(1459), + [aux_sym_unquoted_token1] = ACTIONS(1459), [anon_sym_POUND] = ACTIONS(105), }, [914] = { - [sym_expr_parenthesized] = STATE(2456), - [sym_val_range] = STATE(2636), - [sym__value] = STATE(2636), - [sym_val_nothing] = STATE(2712), - [sym_val_bool] = STATE(2712), - [sym_val_variable] = STATE(2459), - [sym__var] = STATE(2375), - [sym_val_number] = STATE(298), - [sym__val_number_decimal] = STATE(289), - [sym__val_number] = STATE(307), - [sym_val_duration] = STATE(2712), - [sym_val_filesize] = STATE(2712), - [sym_val_binary] = STATE(2712), - [sym_val_string] = STATE(2712), - [sym__str_double_quotes] = STATE(2684), - [sym_val_interpolated] = STATE(2712), - [sym__inter_single_quotes] = STATE(2674), - [sym__inter_double_quotes] = STATE(2668), - [sym_val_list] = STATE(2712), - [sym_val_record] = STATE(2712), - [sym_val_table] = STATE(2712), - [sym_val_closure] = STATE(2712), - [sym__cmd_arg] = STATE(2639), - [sym_redirection] = STATE(2644), - [sym__flag] = STATE(2645), - [sym_short_flag] = STATE(2654), - [sym_long_flag] = STATE(2654), - [sym_unquoted] = STATE(2659), + [sym_path] = STATE(986), [sym_comment] = STATE(914), - [aux_sym_command_repeat1] = STATE(917), - [ts_builtin_sym_end] = ACTIONS(2273), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(2500), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [aux_sym__val_number_decimal_token1] = ACTIONS(2504), - [aux_sym__val_number_token1] = ACTIONS(2506), - [aux_sym__val_number_token2] = ACTIONS(2506), - [aux_sym__val_number_token3] = ACTIONS(2506), - [aux_sym__val_number_token4] = ACTIONS(2508), - [aux_sym__val_number_token5] = ACTIONS(2508), - [aux_sym__val_number_token6] = ACTIONS(2508), - [anon_sym_0b] = ACTIONS(2510), - [anon_sym_0o] = ACTIONS(2510), - [anon_sym_0x] = ACTIONS(2510), - [sym_val_date] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2514), - [sym__str_single_quotes] = ACTIONS(2516), - [sym__str_back_ticks] = ACTIONS(2516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_err_GT] = ACTIONS(2522), - [anon_sym_out_GT] = ACTIONS(2522), - [anon_sym_e_GT] = ACTIONS(2522), - [anon_sym_o_GT] = ACTIONS(2522), - [anon_sym_err_PLUSout_GT] = ACTIONS(2522), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2522), - [anon_sym_o_PLUSe_GT] = ACTIONS(2522), - [anon_sym_e_PLUSo_GT] = ACTIONS(2522), - [aux_sym_unquoted_token1] = ACTIONS(2524), + [aux_sym_cell_path_repeat1] = STATE(908), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_BANG_TILDE] = ACTIONS(1394), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_err_GT] = ACTIONS(1394), + [anon_sym_out_GT] = ACTIONS(1394), + [anon_sym_e_GT] = ACTIONS(1394), + [anon_sym_o_GT] = ACTIONS(1394), + [anon_sym_err_PLUSout_GT] = ACTIONS(1394), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1394), + [anon_sym_o_PLUSe_GT] = ACTIONS(1394), + [anon_sym_e_PLUSo_GT] = ACTIONS(1394), + [aux_sym_unquoted_token1] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [915] = { - [sym_cell_path] = STATE(1049), - [sym_path] = STATE(904), + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2526), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(915), - [ts_builtin_sym_end] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(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), - [anon_sym_err_GT] = ACTIONS(1389), - [anon_sym_out_GT] = ACTIONS(1389), - [anon_sym_e_GT] = ACTIONS(1389), - [anon_sym_o_GT] = ACTIONS(1389), - [anon_sym_err_PLUSout_GT] = ACTIONS(1389), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1389), - [anon_sym_o_PLUSe_GT] = ACTIONS(1389), - [anon_sym_e_PLUSo_GT] = ACTIONS(1389), - [aux_sym_unquoted_token1] = ACTIONS(1389), + [aux_sym_command_repeat1] = STATE(911), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [916] = { - [sym_path] = STATE(977), + [sym_expr_parenthesized] = STATE(1631), + [sym__immediate_decimal] = STATE(1630), + [sym_val_variable] = STATE(1631), + [sym__var] = STATE(1173), [sym_comment] = STATE(916), - [aux_sym_cell_path_repeat1] = STATE(906), - [ts_builtin_sym_end] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1436), - [anon_sym_BANG_TILDE] = ACTIONS(1436), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1436), - [anon_sym_out_GT] = ACTIONS(1436), - [anon_sym_e_GT] = ACTIONS(1436), - [anon_sym_o_GT] = ACTIONS(1436), - [anon_sym_err_PLUSout_GT] = ACTIONS(1436), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1436), - [anon_sym_o_PLUSe_GT] = ACTIONS(1436), - [anon_sym_e_PLUSo_GT] = ACTIONS(1436), - [aux_sym_unquoted_token1] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(2146), + [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), + [anon_sym_SEMI] = ACTIONS(2144), + [sym_cmd_identifier] = ACTIONS(2144), + [anon_sym_LF] = ACTIONS(2146), + [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_LBRACK] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_loop] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2144), + [anon_sym_do] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_DOT] = ACTIONS(2144), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = 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_where] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_not] = ACTIONS(2144), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2144), + [anon_sym_false] = ACTIONS(2144), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2144), + [anon_sym_0o] = ACTIONS(2144), + [anon_sym_0x] = ACTIONS(2144), + [sym_val_date] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2144), + [sym__str_single_quotes] = ACTIONS(2144), + [sym__str_back_ticks] = ACTIONS(2144), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2144), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(2144), [anon_sym_POUND] = ACTIONS(105), }, [917] = { - [sym_expr_parenthesized] = STATE(2456), - [sym_val_range] = STATE(2636), - [sym__value] = STATE(2636), - [sym_val_nothing] = STATE(2712), - [sym_val_bool] = STATE(2712), - [sym_val_variable] = STATE(2459), - [sym__var] = STATE(2375), - [sym_val_number] = STATE(298), - [sym__val_number_decimal] = STATE(289), - [sym__val_number] = STATE(307), - [sym_val_duration] = STATE(2712), - [sym_val_filesize] = STATE(2712), - [sym_val_binary] = STATE(2712), - [sym_val_string] = STATE(2712), - [sym__str_double_quotes] = STATE(2684), - [sym_val_interpolated] = STATE(2712), - [sym__inter_single_quotes] = STATE(2674), - [sym__inter_double_quotes] = STATE(2668), - [sym_val_list] = STATE(2712), - [sym_val_record] = STATE(2712), - [sym_val_table] = STATE(2712), - [sym_val_closure] = STATE(2712), - [sym__cmd_arg] = STATE(2639), - [sym_redirection] = STATE(2644), - [sym__flag] = STATE(2645), - [sym_short_flag] = STATE(2654), - [sym_long_flag] = STATE(2654), - [sym_unquoted] = STATE(2659), + [sym_expr_parenthesized] = STATE(1639), + [sym__immediate_decimal] = STATE(1636), + [sym_val_variable] = STATE(1639), + [sym__var] = STATE(1173), [sym_comment] = STATE(917), - [aux_sym_command_repeat1] = STATE(902), - [ts_builtin_sym_end] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_LF] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(2500), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [aux_sym__val_number_decimal_token1] = ACTIONS(2504), - [aux_sym__val_number_token1] = ACTIONS(2506), - [aux_sym__val_number_token2] = ACTIONS(2506), - [aux_sym__val_number_token3] = ACTIONS(2506), - [aux_sym__val_number_token4] = ACTIONS(2508), - [aux_sym__val_number_token5] = ACTIONS(2508), - [aux_sym__val_number_token6] = ACTIONS(2508), - [anon_sym_0b] = ACTIONS(2510), - [anon_sym_0o] = ACTIONS(2510), - [anon_sym_0x] = ACTIONS(2510), - [sym_val_date] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2514), - [sym__str_single_quotes] = ACTIONS(2516), - [sym__str_back_ticks] = ACTIONS(2516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_err_GT] = ACTIONS(2522), - [anon_sym_out_GT] = ACTIONS(2522), - [anon_sym_e_GT] = ACTIONS(2522), - [anon_sym_o_GT] = ACTIONS(2522), - [anon_sym_err_PLUSout_GT] = ACTIONS(2522), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2522), - [anon_sym_o_PLUSe_GT] = ACTIONS(2522), - [anon_sym_e_PLUSo_GT] = ACTIONS(2522), - [aux_sym_unquoted_token1] = ACTIONS(2524), + [ts_builtin_sym_end] = ACTIONS(2154), + [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), + [anon_sym_SEMI] = ACTIONS(2152), + [sym_cmd_identifier] = ACTIONS(2152), + [anon_sym_LF] = ACTIONS(2154), + [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_LBRACK] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_loop] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_match] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = 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_where] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_not] = ACTIONS(2152), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2152), + [anon_sym_false] = ACTIONS(2152), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2152), + [anon_sym_0o] = ACTIONS(2152), + [anon_sym_0x] = ACTIONS(2152), + [sym_val_date] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [sym__str_single_quotes] = ACTIONS(2152), + [sym__str_back_ticks] = ACTIONS(2152), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2152), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2152), + [anon_sym_CARET] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(105), }, [918] = { + [sym_cell_path] = STATE(1010), + [sym_path] = STATE(914), [sym_comment] = STATE(918), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT2] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_EQ2] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token4] = ACTIONS(2530), - [aux_sym_unquoted_token6] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_LF] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_STAR_STAR] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_bit_DASHshl] = ACTIONS(1455), + [anon_sym_bit_DASHshr] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_not_DASHin] = ACTIONS(1455), + [anon_sym_starts_DASHwith] = ACTIONS(1455), + [anon_sym_ends_DASHwith] = ACTIONS(1455), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1455), + [anon_sym_bit_DASHxor] = ACTIONS(1455), + [anon_sym_bit_DASHor] = ACTIONS(1455), + [anon_sym_and] = ACTIONS(1455), + [anon_sym_xor] = ACTIONS(1455), + [anon_sym_or] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1455), + [aux_sym__val_number_token5] = ACTIONS(1455), + [aux_sym__val_number_token6] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1455), + [anon_sym_0o] = ACTIONS(1455), + [anon_sym_0x] = ACTIONS(1455), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [anon_sym_err_GT] = ACTIONS(1455), + [anon_sym_out_GT] = ACTIONS(1455), + [anon_sym_e_GT] = ACTIONS(1455), + [anon_sym_o_GT] = ACTIONS(1455), + [anon_sym_err_PLUSout_GT] = ACTIONS(1455), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1455), + [anon_sym_o_PLUSe_GT] = ACTIONS(1455), + [anon_sym_e_PLUSo_GT] = ACTIONS(1455), + [aux_sym_unquoted_token1] = ACTIONS(1455), [anon_sym_POUND] = ACTIONS(105), }, [919] = { - [sym_expr_parenthesized] = STATE(2456), - [sym_val_range] = STATE(2636), - [sym__value] = STATE(2636), - [sym_val_nothing] = STATE(2712), - [sym_val_bool] = STATE(2712), - [sym_val_variable] = STATE(2459), - [sym__var] = STATE(2375), - [sym_val_number] = STATE(298), - [sym__val_number_decimal] = STATE(289), - [sym__val_number] = STATE(307), - [sym_val_duration] = STATE(2712), - [sym_val_filesize] = STATE(2712), - [sym_val_binary] = STATE(2712), - [sym_val_string] = STATE(2712), - [sym__str_double_quotes] = STATE(2684), - [sym_val_interpolated] = STATE(2712), - [sym__inter_single_quotes] = STATE(2674), - [sym__inter_double_quotes] = STATE(2668), - [sym_val_list] = STATE(2712), - [sym_val_record] = STATE(2712), - [sym_val_table] = STATE(2712), - [sym_val_closure] = STATE(2712), - [sym__cmd_arg] = STATE(2639), - [sym_redirection] = STATE(2644), - [sym__flag] = STATE(2645), - [sym_short_flag] = STATE(2654), - [sym_long_flag] = STATE(2654), - [sym_unquoted] = STATE(2659), + [sym_expr_parenthesized] = STATE(1635), + [sym__immediate_decimal] = STATE(1634), + [sym_val_variable] = STATE(1635), + [sym__var] = STATE(1173), [sym_comment] = STATE(919), - [aux_sym_command_repeat1] = STATE(933), - [ts_builtin_sym_end] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2336), - [anon_sym_LF] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_DOLLAR] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(2500), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [aux_sym__val_number_decimal_token1] = ACTIONS(2504), - [aux_sym__val_number_token1] = ACTIONS(2506), - [aux_sym__val_number_token2] = ACTIONS(2506), - [aux_sym__val_number_token3] = ACTIONS(2506), - [aux_sym__val_number_token4] = ACTIONS(2508), - [aux_sym__val_number_token5] = ACTIONS(2508), - [aux_sym__val_number_token6] = ACTIONS(2508), - [anon_sym_0b] = ACTIONS(2510), - [anon_sym_0o] = ACTIONS(2510), - [anon_sym_0x] = ACTIONS(2510), - [sym_val_date] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2514), - [sym__str_single_quotes] = ACTIONS(2516), - [sym__str_back_ticks] = ACTIONS(2516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_err_GT] = ACTIONS(2522), - [anon_sym_out_GT] = ACTIONS(2522), - [anon_sym_e_GT] = ACTIONS(2522), - [anon_sym_o_GT] = ACTIONS(2522), - [anon_sym_err_PLUSout_GT] = ACTIONS(2522), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2522), - [anon_sym_o_PLUSe_GT] = ACTIONS(2522), - [anon_sym_e_PLUSo_GT] = ACTIONS(2522), - [aux_sym_unquoted_token1] = ACTIONS(2524), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_alias] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_let_DASHenv] = ACTIONS(2148), + [anon_sym_mut] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [sym_cmd_identifier] = ACTIONS(2148), + [anon_sym_LF] = ACTIONS(2150), + [anon_sym_def] = ACTIONS(2148), + [anon_sym_export_DASHenv] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_use] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_loop] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_match] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_DOT] = ACTIONS(2148), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_source] = ACTIONS(2148), + [anon_sym_source_DASHenv] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_hide] = ACTIONS(2148), + [anon_sym_hide_DASHenv] = ACTIONS(2148), + [anon_sym_overlay] = ACTIONS(2148), + [anon_sym_where] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_not] = ACTIONS(2148), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2148), + [anon_sym_false] = ACTIONS(2148), + [aux_sym__val_number_decimal_token1] = ACTIONS(2148), + [aux_sym__val_number_token1] = ACTIONS(2148), + [aux_sym__val_number_token2] = ACTIONS(2148), + [aux_sym__val_number_token3] = ACTIONS(2148), + [aux_sym__val_number_token4] = ACTIONS(2148), + [aux_sym__val_number_token5] = ACTIONS(2148), + [aux_sym__val_number_token6] = ACTIONS(2148), + [anon_sym_0b] = ACTIONS(2148), + [anon_sym_0o] = ACTIONS(2148), + [anon_sym_0x] = ACTIONS(2148), + [sym_val_date] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2148), + [anon_sym_CARET] = ACTIONS(2148), [anon_sym_POUND] = ACTIONS(105), }, [920] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2665), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym__command_name] = STATE(1472), + [sym_scope_pattern] = STATE(1473), + [sym_wild_card] = STATE(1474), + [sym_command_list] = STATE(1475), + [sym_val_string] = STATE(1226), + [sym__str_double_quotes] = STATE(1246), [sym_comment] = STATE(920), - [aux_sym__command_parenthesized_body_repeat1] = STATE(910), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_LF] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_alias] = ACTIONS(2378), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_let_DASHenv] = ACTIONS(2378), + [anon_sym_mut] = ACTIONS(2378), + [anon_sym_const] = ACTIONS(2378), + [anon_sym_SEMI] = ACTIONS(2378), + [sym_cmd_identifier] = ACTIONS(2188), + [anon_sym_LF] = ACTIONS(2380), + [anon_sym_def] = ACTIONS(2378), + [anon_sym_export_DASHenv] = ACTIONS(2378), + [anon_sym_extern] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_use] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_RPAREN] = ACTIONS(2378), + [anon_sym_DOLLAR] = ACTIONS(2378), + [anon_sym_error] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_loop] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2378), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_source] = ACTIONS(2378), + [anon_sym_source_DASHenv] = ACTIONS(2378), + [anon_sym_register] = ACTIONS(2378), + [anon_sym_hide] = ACTIONS(2378), + [anon_sym_hide_DASHenv] = ACTIONS(2378), + [anon_sym_overlay] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_where] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2378), + [anon_sym_not] = ACTIONS(2378), + [anon_sym_null] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2378), + [anon_sym_false] = ACTIONS(2378), + [aux_sym__val_number_decimal_token1] = ACTIONS(2378), + [aux_sym__val_number_token1] = ACTIONS(2378), + [aux_sym__val_number_token2] = ACTIONS(2378), + [aux_sym__val_number_token3] = ACTIONS(2378), + [aux_sym__val_number_token4] = ACTIONS(2378), + [aux_sym__val_number_token5] = ACTIONS(2378), + [aux_sym__val_number_token6] = ACTIONS(2378), + [anon_sym_0b] = ACTIONS(2378), + [anon_sym_0o] = ACTIONS(2378), + [anon_sym_0x] = ACTIONS(2378), + [sym_val_date] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2198), + [sym__str_back_ticks] = ACTIONS(2198), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2378), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2378), [anon_sym_POUND] = ACTIONS(105), }, [921] = { - [sym__command_name] = STATE(1488), - [sym_scope_pattern] = STATE(1552), - [sym_wild_card] = STATE(1486), - [sym_command_list] = STATE(1485), - [sym_val_string] = STATE(1344), - [sym__str_double_quotes] = STATE(1432), + [sym_path] = STATE(986), [sym_comment] = STATE(921), - [ts_builtin_sym_end] = ACTIONS(2328), - [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), - [anon_sym_SEMI] = ACTIONS(2326), - [sym_cmd_identifier] = ACTIONS(2405), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2326), - [anon_sym_error] = ACTIONS(2326), - [anon_sym_DASH] = ACTIONS(2326), - [anon_sym_break] = ACTIONS(2326), - [anon_sym_continue] = ACTIONS(2326), - [anon_sym_for] = ACTIONS(2326), - [anon_sym_loop] = ACTIONS(2326), - [anon_sym_while] = ACTIONS(2326), - [anon_sym_do] = ACTIONS(2326), - [anon_sym_if] = ACTIONS(2326), - [anon_sym_match] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_try] = 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_STAR] = ACTIONS(2409), - [anon_sym_where] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(2326), - [anon_sym_not] = ACTIONS(2326), - [anon_sym_null] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2326), - [anon_sym_false] = ACTIONS(2326), - [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2326), - [anon_sym_0o] = ACTIONS(2326), - [anon_sym_0x] = ACTIONS(2326), - [sym_val_date] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym__str_single_quotes] = ACTIONS(2413), - [sym__str_back_ticks] = ACTIONS(2413), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2326), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2326), - [anon_sym_CARET] = ACTIONS(2326), + [aux_sym_cell_path_repeat1] = STATE(921), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT2] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [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_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [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(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [922] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2665), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_cell_path] = STATE(1022), + [sym_path] = STATE(914), [sym_comment] = STATE(922), - [aux_sym__command_parenthesized_body_repeat1] = STATE(910), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_LF] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LF] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_STAR_STAR] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_SLASH_SLASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_bit_DASHshl] = ACTIONS(1478), + [anon_sym_bit_DASHshr] = ACTIONS(1478), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_not_DASHin] = ACTIONS(1478), + [anon_sym_starts_DASHwith] = ACTIONS(1478), + [anon_sym_ends_DASHwith] = ACTIONS(1478), + [anon_sym_EQ_TILDE] = ACTIONS(1478), + [anon_sym_BANG_TILDE] = ACTIONS(1478), + [anon_sym_bit_DASHand] = ACTIONS(1478), + [anon_sym_bit_DASHxor] = ACTIONS(1478), + [anon_sym_bit_DASHor] = ACTIONS(1478), + [anon_sym_and] = ACTIONS(1478), + [anon_sym_xor] = ACTIONS(1478), + [anon_sym_or] = ACTIONS(1478), + [anon_sym_null] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1478), + [aux_sym__val_number_token2] = ACTIONS(1478), + [aux_sym__val_number_token3] = ACTIONS(1478), + [aux_sym__val_number_token4] = ACTIONS(1478), + [aux_sym__val_number_token5] = ACTIONS(1478), + [aux_sym__val_number_token6] = ACTIONS(1478), + [anon_sym_0b] = ACTIONS(1478), + [anon_sym_0o] = ACTIONS(1478), + [anon_sym_0x] = ACTIONS(1478), + [sym_val_date] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym__str_single_quotes] = ACTIONS(1478), + [sym__str_back_ticks] = ACTIONS(1478), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1478), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1478), + [anon_sym_err_GT] = ACTIONS(1478), + [anon_sym_out_GT] = ACTIONS(1478), + [anon_sym_e_GT] = ACTIONS(1478), + [anon_sym_o_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT] = ACTIONS(1478), + [aux_sym_unquoted_token1] = ACTIONS(1478), [anon_sym_POUND] = ACTIONS(105), }, [923] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2665), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_cell_path] = STATE(1007), + [sym_path] = STATE(914), [sym_comment] = STATE(923), - [aux_sym__command_parenthesized_body_repeat1] = STATE(920), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_LF] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_BANG_TILDE] = ACTIONS(1400), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_err_GT] = ACTIONS(1400), + [anon_sym_out_GT] = ACTIONS(1400), + [anon_sym_e_GT] = ACTIONS(1400), + [anon_sym_o_GT] = ACTIONS(1400), + [anon_sym_err_PLUSout_GT] = ACTIONS(1400), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1400), + [anon_sym_o_PLUSe_GT] = ACTIONS(1400), + [anon_sym_e_PLUSo_GT] = ACTIONS(1400), + [aux_sym_unquoted_token1] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, [924] = { - [sym_path] = STATE(977), + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2526), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(924), - [aux_sym_cell_path_repeat1] = STATE(906), - [ts_builtin_sym_end] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_bit_DASHshl] = ACTIONS(1436), - [anon_sym_bit_DASHshr] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT2] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_not_DASHin] = ACTIONS(1436), - [anon_sym_starts_DASHwith] = ACTIONS(1436), - [anon_sym_ends_DASHwith] = ACTIONS(1436), - [anon_sym_EQ_TILDE] = ACTIONS(1436), - [anon_sym_BANG_TILDE] = ACTIONS(1436), - [anon_sym_bit_DASHand] = ACTIONS(1436), - [anon_sym_bit_DASHxor] = ACTIONS(1436), - [anon_sym_bit_DASHor] = ACTIONS(1436), - [anon_sym_and] = ACTIONS(1436), - [anon_sym_xor] = ACTIONS(1436), - [anon_sym_or] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1436), - [anon_sym_out_GT] = ACTIONS(1436), - [anon_sym_e_GT] = ACTIONS(1436), - [anon_sym_o_GT] = ACTIONS(1436), - [anon_sym_err_PLUSout_GT] = ACTIONS(1436), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1436), - [anon_sym_o_PLUSe_GT] = ACTIONS(1436), - [anon_sym_e_PLUSo_GT] = ACTIONS(1436), - [aux_sym_unquoted_token1] = ACTIONS(1436), + [aux_sym_command_repeat1] = STATE(895), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [925] = { - [sym_cell_path] = STATE(981), - [sym_path] = STATE(927), + [sym_expr_parenthesized] = STATE(1629), + [sym__immediate_decimal] = STATE(1623), + [sym_val_variable] = STATE(1629), + [sym__var] = STATE(1173), [sym_comment] = STATE(925), - [ts_builtin_sym_end] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(2546), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_bit_DASHshl] = ACTIONS(1395), - [anon_sym_bit_DASHshr] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT2] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_not_DASHin] = ACTIONS(1395), - [anon_sym_starts_DASHwith] = ACTIONS(1395), - [anon_sym_ends_DASHwith] = ACTIONS(1395), - [anon_sym_EQ_TILDE] = ACTIONS(1395), - [anon_sym_BANG_TILDE] = ACTIONS(1395), - [anon_sym_bit_DASHand] = ACTIONS(1395), - [anon_sym_bit_DASHxor] = ACTIONS(1395), - [anon_sym_bit_DASHor] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1395), - [anon_sym_xor] = ACTIONS(1395), - [anon_sym_or] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_err_GT] = ACTIONS(1395), - [anon_sym_out_GT] = ACTIONS(1395), - [anon_sym_e_GT] = ACTIONS(1395), - [anon_sym_o_GT] = ACTIONS(1395), - [anon_sym_err_PLUSout_GT] = ACTIONS(1395), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1395), - [anon_sym_o_PLUSe_GT] = ACTIONS(1395), - [anon_sym_e_PLUSo_GT] = ACTIONS(1395), - [aux_sym_unquoted_token1] = ACTIONS(1395), + [ts_builtin_sym_end] = ACTIONS(2182), + [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), + [anon_sym_SEMI] = ACTIONS(2180), + [sym_cmd_identifier] = ACTIONS(2180), + [anon_sym_LF] = ACTIONS(2182), + [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_LBRACK] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_break] = ACTIONS(2180), + [anon_sym_continue] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2180), + [anon_sym_loop] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2180), + [anon_sym_do] = ACTIONS(2180), + [anon_sym_if] = ACTIONS(2180), + [anon_sym_match] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_DOT] = ACTIONS(2180), + [anon_sym_DOT2] = ACTIONS(2102), + [anon_sym_try] = 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_where] = ACTIONS(2180), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_not] = ACTIONS(2180), + [aux_sym__immediate_decimal_token1] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2180), + [anon_sym_true] = ACTIONS(2180), + [anon_sym_false] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2180), + [anon_sym_0o] = ACTIONS(2180), + [anon_sym_0x] = ACTIONS(2180), + [sym_val_date] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2180), + [sym__str_single_quotes] = ACTIONS(2180), + [sym__str_back_ticks] = ACTIONS(2180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), [anon_sym_POUND] = ACTIONS(105), }, [926] = { - [sym_cell_path] = STATE(1029), - [sym_path] = STATE(927), + [sym_cell_path] = STATE(1148), + [sym_path] = STATE(945), [sym_comment] = STATE(926), - [ts_builtin_sym_end] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_mod] = ACTIONS(1399), - [anon_sym_SLASH_SLASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_bit_DASHshl] = ACTIONS(1399), - [anon_sym_bit_DASHshr] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT2] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_not_DASHin] = ACTIONS(1399), - [anon_sym_starts_DASHwith] = ACTIONS(1399), - [anon_sym_ends_DASHwith] = ACTIONS(1399), - [anon_sym_EQ_TILDE] = ACTIONS(1399), - [anon_sym_BANG_TILDE] = ACTIONS(1399), - [anon_sym_bit_DASHand] = ACTIONS(1399), - [anon_sym_bit_DASHxor] = ACTIONS(1399), - [anon_sym_bit_DASHor] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1399), - [anon_sym_xor] = ACTIONS(1399), - [anon_sym_or] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_err_GT] = ACTIONS(1399), - [anon_sym_out_GT] = ACTIONS(1399), - [anon_sym_e_GT] = ACTIONS(1399), - [anon_sym_o_GT] = ACTIONS(1399), - [anon_sym_err_PLUSout_GT] = ACTIONS(1399), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1399), - [anon_sym_o_PLUSe_GT] = ACTIONS(1399), - [anon_sym_e_PLUSo_GT] = ACTIONS(1399), - [aux_sym_unquoted_token1] = ACTIONS(1399), + [ts_builtin_sym_end] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_LF] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_in] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_bit_DASHshl] = ACTIONS(1463), + [anon_sym_bit_DASHshr] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_LT2] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_not_DASHin] = ACTIONS(1463), + [anon_sym_starts_DASHwith] = ACTIONS(1463), + [anon_sym_ends_DASHwith] = ACTIONS(1463), + [anon_sym_EQ_TILDE] = ACTIONS(1463), + [anon_sym_BANG_TILDE] = ACTIONS(1463), + [anon_sym_bit_DASHand] = ACTIONS(1463), + [anon_sym_bit_DASHxor] = ACTIONS(1463), + [anon_sym_bit_DASHor] = ACTIONS(1463), + [anon_sym_and] = ACTIONS(1463), + [anon_sym_xor] = ACTIONS(1463), + [anon_sym_or] = ACTIONS(1463), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1463), + [aux_sym__val_number_token2] = ACTIONS(1463), + [aux_sym__val_number_token3] = ACTIONS(1463), + [aux_sym__val_number_token4] = ACTIONS(1463), + [aux_sym__val_number_token5] = ACTIONS(1463), + [aux_sym__val_number_token6] = ACTIONS(1463), + [anon_sym_0b] = ACTIONS(1463), + [anon_sym_0o] = ACTIONS(1463), + [anon_sym_0x] = ACTIONS(1463), + [sym_val_date] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [sym__str_single_quotes] = ACTIONS(1463), + [sym__str_back_ticks] = ACTIONS(1463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), + [anon_sym_err_GT] = ACTIONS(1463), + [anon_sym_out_GT] = ACTIONS(1463), + [anon_sym_e_GT] = ACTIONS(1463), + [anon_sym_o_GT] = ACTIONS(1463), + [anon_sym_err_PLUSout_GT] = ACTIONS(1463), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1463), + [anon_sym_o_PLUSe_GT] = ACTIONS(1463), + [anon_sym_e_PLUSo_GT] = ACTIONS(1463), + [aux_sym_unquoted_token1] = ACTIONS(1463), [anon_sym_POUND] = ACTIONS(105), }, [927] = { - [sym_path] = STATE(977), + [sym_cell_path] = STATE(1125), + [sym_path] = STATE(945), [sym_comment] = STATE(927), - [aux_sym_cell_path_repeat1] = STATE(916), - [ts_builtin_sym_end] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_STAR_STAR] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_bit_DASHshl] = ACTIONS(1440), - [anon_sym_bit_DASHshr] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_not_DASHin] = ACTIONS(1440), - [anon_sym_starts_DASHwith] = ACTIONS(1440), - [anon_sym_ends_DASHwith] = ACTIONS(1440), - [anon_sym_EQ_TILDE] = ACTIONS(1440), - [anon_sym_BANG_TILDE] = ACTIONS(1440), - [anon_sym_bit_DASHand] = ACTIONS(1440), - [anon_sym_bit_DASHxor] = ACTIONS(1440), - [anon_sym_bit_DASHor] = ACTIONS(1440), - [anon_sym_and] = ACTIONS(1440), - [anon_sym_xor] = ACTIONS(1440), - [anon_sym_or] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_err_GT] = ACTIONS(1440), - [anon_sym_out_GT] = ACTIONS(1440), - [anon_sym_e_GT] = ACTIONS(1440), - [anon_sym_o_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT] = ACTIONS(1440), - [aux_sym_unquoted_token1] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_LF] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_STAR_STAR] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_mod] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_bit_DASHshl] = ACTIONS(1431), + [anon_sym_bit_DASHshr] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_not_DASHin] = ACTIONS(1431), + [anon_sym_starts_DASHwith] = ACTIONS(1431), + [anon_sym_ends_DASHwith] = ACTIONS(1431), + [anon_sym_EQ_TILDE] = ACTIONS(1431), + [anon_sym_BANG_TILDE] = ACTIONS(1431), + [anon_sym_bit_DASHand] = ACTIONS(1431), + [anon_sym_bit_DASHxor] = ACTIONS(1431), + [anon_sym_bit_DASHor] = ACTIONS(1431), + [anon_sym_and] = ACTIONS(1431), + [anon_sym_xor] = ACTIONS(1431), + [anon_sym_or] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [aux_sym__val_number_token4] = ACTIONS(1431), + [aux_sym__val_number_token5] = ACTIONS(1431), + [aux_sym__val_number_token6] = ACTIONS(1431), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), + [sym_val_date] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1431), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1431), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), + [aux_sym_unquoted_token1] = ACTIONS(1431), [anon_sym_POUND] = ACTIONS(105), }, [928] = { - [sym__expression] = STATE(2631), - [sym_expr_unary] = STATE(1059), - [sym__expr_unary_minus] = STATE(1069), - [sym_expr_binary] = STATE(1059), - [sym__expr_binary_expression] = STATE(3468), - [sym_expr_parenthesized] = STATE(1017), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(1059), - [sym_val_nothing] = STATE(1114), - [sym_val_bool] = STATE(1114), - [sym_val_variable] = STATE(965), - [sym__var] = STATE(925), - [sym_val_number] = STATE(135), - [sym__val_number_decimal] = STATE(122), - [sym__val_number] = STATE(134), - [sym_val_duration] = STATE(1114), - [sym_val_filesize] = STATE(1114), - [sym_val_binary] = STATE(1114), - [sym_val_string] = STATE(1114), - [sym__str_double_quotes] = STATE(1104), - [sym_val_interpolated] = STATE(1114), - [sym__inter_single_quotes] = STATE(1112), - [sym__inter_double_quotes] = STATE(1111), - [sym_val_list] = STATE(1114), - [sym_val_record] = STATE(1114), - [sym_val_table] = STATE(1114), - [sym_val_closure] = STATE(1114), - [sym_unquoted] = STATE(2633), + [sym__command_name] = STATE(1496), + [sym_scope_pattern] = STATE(1556), + [sym_wild_card] = STATE(1494), + [sym_command_list] = STATE(1493), + [sym_val_string] = STATE(1370), + [sym__str_double_quotes] = STATE(1382), [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2556), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_DOT] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_not] = ACTIONS(2566), - [anon_sym_null] = ACTIONS(2568), - [anon_sym_true] = ACTIONS(2570), - [anon_sym_false] = ACTIONS(2570), - [aux_sym__val_number_decimal_token1] = ACTIONS(2572), - [aux_sym__val_number_token1] = ACTIONS(2574), - [aux_sym__val_number_token2] = ACTIONS(2574), - [aux_sym__val_number_token3] = ACTIONS(2574), - [aux_sym__val_number_token4] = ACTIONS(2576), - [aux_sym__val_number_token5] = ACTIONS(2576), - [aux_sym__val_number_token6] = ACTIONS(2576), - [anon_sym_0b] = ACTIONS(2578), - [anon_sym_0o] = ACTIONS(2578), - [anon_sym_0x] = ACTIONS(2578), - [sym_val_date] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2582), - [sym__str_single_quotes] = ACTIONS(2584), - [sym__str_back_ticks] = ACTIONS(2584), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2586), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2279), - [anon_sym_out_GT] = ACTIONS(2279), - [anon_sym_e_GT] = ACTIONS(2279), - [anon_sym_o_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT] = ACTIONS(2279), - [aux_sym_unquoted_token1] = ACTIONS(2524), + [ts_builtin_sym_end] = ACTIONS(2190), + [anon_sym_export] = ACTIONS(2186), + [anon_sym_alias] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_let_DASHenv] = ACTIONS(2186), + [anon_sym_mut] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2186), + [sym_cmd_identifier] = ACTIONS(2389), + [anon_sym_LF] = ACTIONS(2190), + [anon_sym_def] = ACTIONS(2186), + [anon_sym_export_DASHenv] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_module] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2186), + [anon_sym_error] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_DOT] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_source] = ACTIONS(2186), + [anon_sym_source_DASHenv] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_hide] = ACTIONS(2186), + [anon_sym_hide_DASHenv] = ACTIONS(2186), + [anon_sym_overlay] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_null] = ACTIONS(2186), + [anon_sym_true] = ACTIONS(2186), + [anon_sym_false] = ACTIONS(2186), + [aux_sym__val_number_decimal_token1] = 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(2186), + [anon_sym_0o] = ACTIONS(2186), + [anon_sym_0x] = ACTIONS(2186), + [sym_val_date] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2395), + [sym__str_single_quotes] = ACTIONS(2397), + [sym__str_back_ticks] = ACTIONS(2397), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2186), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2186), + [anon_sym_CARET] = ACTIONS(2186), [anon_sym_POUND] = ACTIONS(105), }, [929] = { + [sym_path] = STATE(1008), [sym_comment] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT2] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1426), - [anon_sym_BANG_TILDE] = ACTIONS(1426), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [aux_sym__immediate_decimal_token1] = ACTIONS(2592), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_err_GT] = ACTIONS(1426), - [anon_sym_out_GT] = ACTIONS(1426), - [anon_sym_e_GT] = ACTIONS(1426), - [anon_sym_o_GT] = ACTIONS(1426), - [anon_sym_err_PLUSout_GT] = ACTIONS(1426), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1426), - [anon_sym_o_PLUSe_GT] = ACTIONS(1426), - [anon_sym_e_PLUSo_GT] = ACTIONS(1426), - [aux_sym_unquoted_token1] = ACTIONS(1426), - [aux_sym_unquoted_token2] = ACTIONS(2594), + [aux_sym_cell_path_repeat1] = STATE(929), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [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_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [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(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [930] = { - [sym_cell_path] = STATE(1087), - [sym_path] = STATE(904), + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2667), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(930), - [ts_builtin_sym_end] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_in] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_STAR_STAR] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_mod] = ACTIONS(1403), - [anon_sym_SLASH_SLASH] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_bit_DASHshl] = ACTIONS(1403), - [anon_sym_bit_DASHshr] = ACTIONS(1403), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT2] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_not_DASHin] = ACTIONS(1403), - [anon_sym_starts_DASHwith] = ACTIONS(1403), - [anon_sym_ends_DASHwith] = ACTIONS(1403), - [anon_sym_EQ_TILDE] = ACTIONS(1403), - [anon_sym_BANG_TILDE] = ACTIONS(1403), - [anon_sym_bit_DASHand] = ACTIONS(1403), - [anon_sym_bit_DASHxor] = ACTIONS(1403), - [anon_sym_bit_DASHor] = ACTIONS(1403), - [anon_sym_and] = ACTIONS(1403), - [anon_sym_xor] = ACTIONS(1403), - [anon_sym_or] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1403), - [aux_sym__val_number_token1] = ACTIONS(1403), - [aux_sym__val_number_token2] = ACTIONS(1403), - [aux_sym__val_number_token3] = ACTIONS(1403), - [aux_sym__val_number_token4] = ACTIONS(1403), - [aux_sym__val_number_token5] = ACTIONS(1403), - [aux_sym__val_number_token6] = ACTIONS(1403), - [anon_sym_0b] = ACTIONS(1403), - [anon_sym_0o] = ACTIONS(1403), - [anon_sym_0x] = ACTIONS(1403), - [sym_val_date] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym__str_single_quotes] = ACTIONS(1403), - [sym__str_back_ticks] = ACTIONS(1403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1403), - [anon_sym_err_GT] = ACTIONS(1403), - [anon_sym_out_GT] = ACTIONS(1403), - [anon_sym_e_GT] = ACTIONS(1403), - [anon_sym_o_GT] = ACTIONS(1403), - [anon_sym_err_PLUSout_GT] = ACTIONS(1403), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1403), - [anon_sym_o_PLUSe_GT] = ACTIONS(1403), - [anon_sym_e_PLUSo_GT] = ACTIONS(1403), - [aux_sym_unquoted_token1] = ACTIONS(1403), + [aux_sym__command_parenthesized_body_repeat1] = STATE(948), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [931] = { + [sym_expr_parenthesized] = STATE(2494), + [sym_val_range] = STATE(2642), + [sym__value] = STATE(2642), + [sym_val_nothing] = STATE(2692), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2495), + [sym__var] = STATE(2410), + [sym_val_number] = STATE(313), + [sym__val_number_decimal] = STATE(290), + [sym__val_number] = STATE(301), + [sym_val_duration] = STATE(2692), + [sym_val_filesize] = STATE(2692), + [sym_val_binary] = STATE(2692), + [sym_val_string] = STATE(2692), + [sym__str_double_quotes] = STATE(2698), + [sym_val_interpolated] = STATE(2692), + [sym__inter_single_quotes] = STATE(2684), + [sym__inter_double_quotes] = STATE(2683), + [sym_val_list] = STATE(2692), + [sym_val_record] = STATE(2692), + [sym_val_table] = STATE(2692), + [sym_val_closure] = STATE(2692), + [sym__cmd_arg] = STATE(2643), + [sym_redirection] = STATE(2644), + [sym__flag] = STATE(2645), + [sym_short_flag] = STATE(2646), + [sym_long_flag] = STATE(2646), + [sym_unquoted] = STATE(2647), [sym_comment] = STATE(931), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [anon_sym_BANG_TILDE] = ACTIONS(1454), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_err_GT] = ACTIONS(1454), - [anon_sym_out_GT] = ACTIONS(1454), - [anon_sym_e_GT] = ACTIONS(1454), - [anon_sym_o_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT] = ACTIONS(1454), - [aux_sym_unquoted_token1] = ACTIONS(1454), + [aux_sym_command_repeat1] = STATE(957), + [ts_builtin_sym_end] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_LF] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_null] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [aux_sym__val_number_decimal_token1] = ACTIONS(2424), + [aux_sym__val_number_token1] = ACTIONS(2426), + [aux_sym__val_number_token2] = ACTIONS(2426), + [aux_sym__val_number_token3] = ACTIONS(2426), + [aux_sym__val_number_token4] = ACTIONS(2428), + [aux_sym__val_number_token5] = ACTIONS(2428), + [aux_sym__val_number_token6] = ACTIONS(2428), + [anon_sym_0b] = ACTIONS(2430), + [anon_sym_0o] = ACTIONS(2430), + [anon_sym_0x] = ACTIONS(2430), + [sym_val_date] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym__str_single_quotes] = ACTIONS(2436), + [sym__str_back_ticks] = ACTIONS(2436), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2438), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [aux_sym_unquoted_token1] = ACTIONS(2444), [anon_sym_POUND] = ACTIONS(105), }, [932] = { - [sym_cell_path] = STATE(1088), - [sym_path] = STATE(904), + [sym_expr_parenthesized] = STATE(2494), + [sym_val_range] = STATE(2642), + [sym__value] = STATE(2642), + [sym_val_nothing] = STATE(2692), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2495), + [sym__var] = STATE(2410), + [sym_val_number] = STATE(313), + [sym__val_number_decimal] = STATE(290), + [sym__val_number] = STATE(301), + [sym_val_duration] = STATE(2692), + [sym_val_filesize] = STATE(2692), + [sym_val_binary] = STATE(2692), + [sym_val_string] = STATE(2692), + [sym__str_double_quotes] = STATE(2698), + [sym_val_interpolated] = STATE(2692), + [sym__inter_single_quotes] = STATE(2684), + [sym__inter_double_quotes] = STATE(2683), + [sym_val_list] = STATE(2692), + [sym_val_record] = STATE(2692), + [sym_val_table] = STATE(2692), + [sym_val_closure] = STATE(2692), + [sym__cmd_arg] = STATE(2643), + [sym_redirection] = STATE(2644), + [sym__flag] = STATE(2645), + [sym_short_flag] = STATE(2646), + [sym_long_flag] = STATE(2646), + [sym_unquoted] = STATE(2647), [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_err_GT] = ACTIONS(1418), - [anon_sym_out_GT] = ACTIONS(1418), - [anon_sym_e_GT] = ACTIONS(1418), - [anon_sym_o_GT] = ACTIONS(1418), - [anon_sym_err_PLUSout_GT] = ACTIONS(1418), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1418), - [anon_sym_o_PLUSe_GT] = ACTIONS(1418), - [anon_sym_e_PLUSo_GT] = ACTIONS(1418), - [aux_sym_unquoted_token1] = ACTIONS(1418), + [aux_sym_command_repeat1] = STATE(936), + [ts_builtin_sym_end] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_null] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [aux_sym__val_number_decimal_token1] = ACTIONS(2424), + [aux_sym__val_number_token1] = ACTIONS(2426), + [aux_sym__val_number_token2] = ACTIONS(2426), + [aux_sym__val_number_token3] = ACTIONS(2426), + [aux_sym__val_number_token4] = ACTIONS(2428), + [aux_sym__val_number_token5] = ACTIONS(2428), + [aux_sym__val_number_token6] = ACTIONS(2428), + [anon_sym_0b] = ACTIONS(2430), + [anon_sym_0o] = ACTIONS(2430), + [anon_sym_0x] = ACTIONS(2430), + [sym_val_date] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym__str_single_quotes] = ACTIONS(2436), + [sym__str_back_ticks] = ACTIONS(2436), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2438), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [aux_sym_unquoted_token1] = ACTIONS(2444), [anon_sym_POUND] = ACTIONS(105), }, [933] = { - [sym_expr_parenthesized] = STATE(2456), - [sym_val_range] = STATE(2636), - [sym__value] = STATE(2636), - [sym_val_nothing] = STATE(2712), - [sym_val_bool] = STATE(2712), - [sym_val_variable] = STATE(2459), - [sym__var] = STATE(2375), - [sym_val_number] = STATE(298), - [sym__val_number_decimal] = STATE(289), - [sym__val_number] = STATE(307), - [sym_val_duration] = STATE(2712), - [sym_val_filesize] = STATE(2712), - [sym_val_binary] = STATE(2712), - [sym_val_string] = STATE(2712), - [sym__str_double_quotes] = STATE(2684), - [sym_val_interpolated] = STATE(2712), - [sym__inter_single_quotes] = STATE(2674), - [sym__inter_double_quotes] = STATE(2668), - [sym_val_list] = STATE(2712), - [sym_val_record] = STATE(2712), - [sym_val_table] = STATE(2712), - [sym_val_closure] = STATE(2712), - [sym__cmd_arg] = STATE(2639), - [sym_redirection] = STATE(2644), - [sym__flag] = STATE(2645), - [sym_short_flag] = STATE(2654), - [sym_long_flag] = STATE(2654), - [sym_unquoted] = STATE(2659), + [sym__command_name] = STATE(1496), + [sym_scope_pattern] = STATE(1495), + [sym_wild_card] = STATE(1494), + [sym_command_list] = STATE(1493), + [sym_val_string] = STATE(1370), + [sym__str_double_quotes] = STATE(1382), [sym_comment] = STATE(933), - [aux_sym_command_repeat1] = STATE(902), - [ts_builtin_sym_end] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(2500), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [aux_sym__val_number_decimal_token1] = ACTIONS(2504), - [aux_sym__val_number_token1] = ACTIONS(2506), - [aux_sym__val_number_token2] = ACTIONS(2506), - [aux_sym__val_number_token3] = ACTIONS(2506), - [aux_sym__val_number_token4] = ACTIONS(2508), - [aux_sym__val_number_token5] = ACTIONS(2508), - [aux_sym__val_number_token6] = ACTIONS(2508), - [anon_sym_0b] = ACTIONS(2510), - [anon_sym_0o] = ACTIONS(2510), - [anon_sym_0x] = ACTIONS(2510), - [sym_val_date] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2514), - [sym__str_single_quotes] = ACTIONS(2516), - [sym__str_back_ticks] = ACTIONS(2516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_err_GT] = ACTIONS(2522), - [anon_sym_out_GT] = ACTIONS(2522), - [anon_sym_e_GT] = ACTIONS(2522), - [anon_sym_o_GT] = ACTIONS(2522), - [anon_sym_err_PLUSout_GT] = ACTIONS(2522), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2522), - [anon_sym_o_PLUSe_GT] = ACTIONS(2522), - [anon_sym_e_PLUSo_GT] = ACTIONS(2522), - [aux_sym_unquoted_token1] = ACTIONS(2524), + [ts_builtin_sym_end] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_alias] = ACTIONS(2378), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_let_DASHenv] = ACTIONS(2378), + [anon_sym_mut] = ACTIONS(2378), + [anon_sym_const] = ACTIONS(2378), + [anon_sym_SEMI] = ACTIONS(2378), + [sym_cmd_identifier] = ACTIONS(2389), + [anon_sym_LF] = ACTIONS(2380), + [anon_sym_def] = ACTIONS(2378), + [anon_sym_export_DASHenv] = ACTIONS(2378), + [anon_sym_extern] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_use] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_DOLLAR] = ACTIONS(2378), + [anon_sym_error] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_loop] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2378), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_source] = ACTIONS(2378), + [anon_sym_source_DASHenv] = ACTIONS(2378), + [anon_sym_register] = ACTIONS(2378), + [anon_sym_hide] = ACTIONS(2378), + [anon_sym_hide_DASHenv] = ACTIONS(2378), + [anon_sym_overlay] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2378), + [anon_sym_not] = ACTIONS(2378), + [anon_sym_null] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2378), + [anon_sym_false] = ACTIONS(2378), + [aux_sym__val_number_decimal_token1] = ACTIONS(2378), + [aux_sym__val_number_token1] = ACTIONS(2378), + [aux_sym__val_number_token2] = ACTIONS(2378), + [aux_sym__val_number_token3] = ACTIONS(2378), + [aux_sym__val_number_token4] = ACTIONS(2378), + [aux_sym__val_number_token5] = ACTIONS(2378), + [aux_sym__val_number_token6] = ACTIONS(2378), + [anon_sym_0b] = ACTIONS(2378), + [anon_sym_0o] = ACTIONS(2378), + [anon_sym_0x] = ACTIONS(2378), + [sym_val_date] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2395), + [sym__str_single_quotes] = ACTIONS(2397), + [sym__str_back_ticks] = ACTIONS(2397), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2378), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2378), [anon_sym_POUND] = ACTIONS(105), }, [934] = { + [sym_path] = STATE(1008), [sym_comment] = STATE(934), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT2] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_QMARK2] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1475), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1475), - [anon_sym_out_GT] = ACTIONS(1475), - [anon_sym_e_GT] = ACTIONS(1475), - [anon_sym_o_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1475), + [aux_sym_cell_path_repeat1] = STATE(929), + [ts_builtin_sym_end] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_STAR_STAR] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_bit_DASHshl] = ACTIONS(1407), + [anon_sym_bit_DASHshr] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1407), + [anon_sym_BANG_EQ] = ACTIONS(1407), + [anon_sym_LT2] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1407), + [anon_sym_not_DASHin] = ACTIONS(1407), + [anon_sym_starts_DASHwith] = ACTIONS(1407), + [anon_sym_ends_DASHwith] = ACTIONS(1407), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1407), + [anon_sym_bit_DASHxor] = ACTIONS(1407), + [anon_sym_bit_DASHor] = ACTIONS(1407), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_xor] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_err_GT] = ACTIONS(1407), + [anon_sym_out_GT] = ACTIONS(1407), + [anon_sym_e_GT] = ACTIONS(1407), + [anon_sym_o_GT] = ACTIONS(1407), + [anon_sym_err_PLUSout_GT] = ACTIONS(1407), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1407), + [anon_sym_o_PLUSe_GT] = ACTIONS(1407), + [anon_sym_e_PLUSo_GT] = ACTIONS(1407), + [aux_sym_unquoted_token1] = ACTIONS(1407), [anon_sym_POUND] = ACTIONS(105), }, [935] = { [sym_comment] = STATE(935), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT2] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_BANG_TILDE] = ACTIONS(1507), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1507), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_0b] = ACTIONS(1507), - [anon_sym_0o] = ACTIONS(1507), - [anon_sym_0x] = ACTIONS(1507), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_err_GT] = ACTIONS(1507), - [anon_sym_out_GT] = ACTIONS(1507), - [anon_sym_e_GT] = ACTIONS(1507), - [anon_sym_o_GT] = ACTIONS(1507), - [anon_sym_err_PLUSout_GT] = ACTIONS(1507), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1507), - [anon_sym_o_PLUSe_GT] = ACTIONS(1507), - [anon_sym_e_PLUSo_GT] = ACTIONS(1507), - [aux_sym_unquoted_token1] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_err_GT] = ACTIONS(1419), + [anon_sym_out_GT] = ACTIONS(1419), + [anon_sym_e_GT] = ACTIONS(1419), + [anon_sym_o_GT] = ACTIONS(1419), + [anon_sym_err_PLUSout_GT] = ACTIONS(1419), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1419), + [anon_sym_o_PLUSe_GT] = ACTIONS(1419), + [anon_sym_e_PLUSo_GT] = ACTIONS(1419), + [aux_sym_unquoted_token1] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, [936] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2656), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_expr_parenthesized] = STATE(2494), + [sym_val_range] = STATE(2642), + [sym__value] = STATE(2642), + [sym_val_nothing] = STATE(2692), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2495), + [sym__var] = STATE(2410), + [sym_val_number] = STATE(313), + [sym__val_number_decimal] = STATE(290), + [sym__val_number] = STATE(301), + [sym_val_duration] = STATE(2692), + [sym_val_filesize] = STATE(2692), + [sym_val_binary] = STATE(2692), + [sym_val_string] = STATE(2692), + [sym__str_double_quotes] = STATE(2698), + [sym_val_interpolated] = STATE(2692), + [sym__inter_single_quotes] = STATE(2684), + [sym__inter_double_quotes] = STATE(2683), + [sym_val_list] = STATE(2692), + [sym_val_record] = STATE(2692), + [sym_val_table] = STATE(2692), + [sym_val_closure] = STATE(2692), + [sym__cmd_arg] = STATE(2643), + [sym_redirection] = STATE(2644), + [sym__flag] = STATE(2645), + [sym_short_flag] = STATE(2646), + [sym_long_flag] = STATE(2646), + [sym_unquoted] = STATE(2647), [sym_comment] = STATE(936), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_LF] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [aux_sym_command_repeat1] = STATE(938), + [ts_builtin_sym_end] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LF] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_null] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [aux_sym__val_number_decimal_token1] = ACTIONS(2424), + [aux_sym__val_number_token1] = ACTIONS(2426), + [aux_sym__val_number_token2] = ACTIONS(2426), + [aux_sym__val_number_token3] = ACTIONS(2426), + [aux_sym__val_number_token4] = ACTIONS(2428), + [aux_sym__val_number_token5] = ACTIONS(2428), + [aux_sym__val_number_token6] = ACTIONS(2428), + [anon_sym_0b] = ACTIONS(2430), + [anon_sym_0o] = ACTIONS(2430), + [anon_sym_0x] = ACTIONS(2430), + [sym_val_date] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym__str_single_quotes] = ACTIONS(2436), + [sym__str_back_ticks] = ACTIONS(2436), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2438), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [aux_sym_unquoted_token1] = ACTIONS(2444), [anon_sym_POUND] = ACTIONS(105), }, [937] = { - [sym__flag] = STATE(1221), - [sym_short_flag] = STATE(1215), - [sym_long_flag] = STATE(1215), + [sym_path] = STATE(1008), [sym_comment] = STATE(937), - [aux_sym_overlay_use_repeat1] = STATE(940), - [anon_sym_export] = ACTIONS(2600), - [anon_sym_alias] = ACTIONS(2600), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_let_DASHenv] = ACTIONS(2600), - [anon_sym_mut] = ACTIONS(2600), - [anon_sym_const] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2600), - [sym_cmd_identifier] = ACTIONS(2600), - [anon_sym_LF] = ACTIONS(2602), - [anon_sym_def] = ACTIONS(2600), - [anon_sym_export_DASHenv] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2600), - [anon_sym_module] = ACTIONS(2600), - [anon_sym_use] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_RPAREN] = ACTIONS(2600), - [anon_sym_DOLLAR] = ACTIONS(2600), - [anon_sym_error] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_for] = ACTIONS(2600), - [anon_sym_loop] = ACTIONS(2600), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_match] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2600), - [anon_sym_try] = ACTIONS(2600), - [anon_sym_return] = ACTIONS(2600), - [anon_sym_source] = ACTIONS(2600), - [anon_sym_source_DASHenv] = ACTIONS(2600), - [anon_sym_register] = ACTIONS(2600), - [anon_sym_hide] = ACTIONS(2600), - [anon_sym_hide_DASHenv] = ACTIONS(2600), - [anon_sym_overlay] = ACTIONS(2600), - [anon_sym_as] = ACTIONS(2604), - [anon_sym_where] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_null] = ACTIONS(2600), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [aux_sym__val_number_decimal_token1] = ACTIONS(2600), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [aux_sym__val_number_token4] = ACTIONS(2600), - [aux_sym__val_number_token5] = ACTIONS(2600), - [aux_sym__val_number_token6] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(2600), - [anon_sym_0o] = ACTIONS(2600), - [anon_sym_0x] = ACTIONS(2600), - [sym_val_date] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(2600), - [sym__str_single_quotes] = ACTIONS(2600), - [sym__str_back_ticks] = ACTIONS(2600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2600), - [anon_sym_CARET] = ACTIONS(2600), + [aux_sym_cell_path_repeat1] = STATE(929), + [ts_builtin_sym_end] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_STAR_STAR] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_bit_DASHshl] = ACTIONS(1407), + [anon_sym_bit_DASHshr] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1407), + [anon_sym_BANG_EQ] = ACTIONS(1407), + [anon_sym_LT2] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1407), + [anon_sym_not_DASHin] = ACTIONS(1407), + [anon_sym_starts_DASHwith] = ACTIONS(1407), + [anon_sym_ends_DASHwith] = ACTIONS(1407), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1407), + [anon_sym_bit_DASHxor] = ACTIONS(1407), + [anon_sym_bit_DASHor] = ACTIONS(1407), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_xor] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_err_GT] = ACTIONS(1407), + [anon_sym_out_GT] = ACTIONS(1407), + [anon_sym_e_GT] = ACTIONS(1407), + [anon_sym_o_GT] = ACTIONS(1407), + [anon_sym_err_PLUSout_GT] = ACTIONS(1407), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1407), + [anon_sym_o_PLUSe_GT] = ACTIONS(1407), + [anon_sym_e_PLUSo_GT] = ACTIONS(1407), + [aux_sym_unquoted_token1] = ACTIONS(1407), [anon_sym_POUND] = ACTIONS(105), }, [938] = { - [sym__flag] = STATE(1221), - [sym_short_flag] = STATE(1215), - [sym_long_flag] = STATE(1215), + [sym_expr_parenthesized] = STATE(2494), + [sym_val_range] = STATE(2642), + [sym__value] = STATE(2642), + [sym_val_nothing] = STATE(2692), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2495), + [sym__var] = STATE(2410), + [sym_val_number] = STATE(313), + [sym__val_number_decimal] = STATE(290), + [sym__val_number] = STATE(301), + [sym_val_duration] = STATE(2692), + [sym_val_filesize] = STATE(2692), + [sym_val_binary] = STATE(2692), + [sym_val_string] = STATE(2692), + [sym__str_double_quotes] = STATE(2698), + [sym_val_interpolated] = STATE(2692), + [sym__inter_single_quotes] = STATE(2684), + [sym__inter_double_quotes] = STATE(2683), + [sym_val_list] = STATE(2692), + [sym_val_record] = STATE(2692), + [sym_val_table] = STATE(2692), + [sym_val_closure] = STATE(2692), + [sym__cmd_arg] = STATE(2643), + [sym_redirection] = STATE(2644), + [sym__flag] = STATE(2645), + [sym_short_flag] = STATE(2646), + [sym_long_flag] = STATE(2646), + [sym_unquoted] = STATE(2647), [sym_comment] = STATE(938), - [aux_sym_overlay_use_repeat1] = STATE(940), - [anon_sym_export] = ACTIONS(2606), - [anon_sym_alias] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2606), - [anon_sym_let_DASHenv] = ACTIONS(2606), - [anon_sym_mut] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2606), - [sym_cmd_identifier] = ACTIONS(2606), - [anon_sym_LF] = ACTIONS(2608), - [anon_sym_def] = ACTIONS(2606), - [anon_sym_export_DASHenv] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_module] = ACTIONS(2606), - [anon_sym_use] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(2606), - [anon_sym_error] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_loop] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_match] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_DOT] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_source] = ACTIONS(2606), - [anon_sym_source_DASHenv] = ACTIONS(2606), - [anon_sym_register] = ACTIONS(2606), - [anon_sym_hide] = ACTIONS(2606), - [anon_sym_hide_DASHenv] = ACTIONS(2606), - [anon_sym_overlay] = ACTIONS(2606), - [anon_sym_as] = ACTIONS(2610), - [anon_sym_where] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_not] = ACTIONS(2606), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym__val_number_decimal_token1] = ACTIONS(2606), - [aux_sym__val_number_token1] = ACTIONS(2606), - [aux_sym__val_number_token2] = ACTIONS(2606), - [aux_sym__val_number_token3] = ACTIONS(2606), - [aux_sym__val_number_token4] = ACTIONS(2606), - [aux_sym__val_number_token5] = ACTIONS(2606), - [aux_sym__val_number_token6] = ACTIONS(2606), - [anon_sym_0b] = ACTIONS(2606), - [anon_sym_0o] = ACTIONS(2606), - [anon_sym_0x] = ACTIONS(2606), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(2606), - [sym__str_single_quotes] = ACTIONS(2606), - [sym__str_back_ticks] = ACTIONS(2606), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2606), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2606), + [aux_sym_command_repeat1] = STATE(938), + [ts_builtin_sym_end] = ACTIONS(2309), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_LF] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_DOT] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_null] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [aux_sym__val_number_decimal_token1] = ACTIONS(2475), + [aux_sym__val_number_token1] = ACTIONS(2478), + [aux_sym__val_number_token2] = ACTIONS(2478), + [aux_sym__val_number_token3] = ACTIONS(2478), + [aux_sym__val_number_token4] = ACTIONS(2481), + [aux_sym__val_number_token5] = ACTIONS(2481), + [aux_sym__val_number_token6] = ACTIONS(2481), + [anon_sym_0b] = ACTIONS(2484), + [anon_sym_0o] = ACTIONS(2484), + [anon_sym_0x] = ACTIONS(2484), + [sym_val_date] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2490), + [sym__str_single_quotes] = ACTIONS(2493), + [sym__str_back_ticks] = ACTIONS(2493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2496), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2502), + [anon_sym_out_GT] = ACTIONS(2502), + [anon_sym_e_GT] = ACTIONS(2502), + [anon_sym_o_GT] = ACTIONS(2502), + [anon_sym_err_PLUSout_GT] = ACTIONS(2502), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2502), + [anon_sym_o_PLUSe_GT] = ACTIONS(2502), + [anon_sym_e_PLUSo_GT] = ACTIONS(2502), + [aux_sym_unquoted_token1] = ACTIONS(2505), [anon_sym_POUND] = ACTIONS(105), }, [939] = { + [sym_cell_path] = STATE(1005), + [sym_path] = STATE(953), [sym_comment] = STATE(939), - [ts_builtin_sym_end] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(2612), - [anon_sym_STAR_STAR] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1464), - [anon_sym_BANG_TILDE] = ACTIONS(1464), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_err_GT] = ACTIONS(1464), - [anon_sym_out_GT] = ACTIONS(1464), - [anon_sym_e_GT] = ACTIONS(1464), - [anon_sym_o_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT] = ACTIONS(1464), - [aux_sym_unquoted_token1] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1467), + [anon_sym_BANG_TILDE] = ACTIONS(1467), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_err_GT] = ACTIONS(1467), + [anon_sym_out_GT] = ACTIONS(1467), + [anon_sym_e_GT] = ACTIONS(1467), + [anon_sym_o_GT] = ACTIONS(1467), + [anon_sym_err_PLUSout_GT] = ACTIONS(1467), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1467), + [anon_sym_o_PLUSe_GT] = ACTIONS(1467), + [anon_sym_e_PLUSo_GT] = ACTIONS(1467), + [aux_sym_unquoted_token1] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, [940] = { - [sym__flag] = STATE(1221), - [sym_short_flag] = STATE(1215), - [sym_long_flag] = STATE(1215), + [sym_cell_path] = STATE(1023), + [sym_path] = STATE(953), [sym_comment] = STATE(940), - [aux_sym_overlay_use_repeat1] = STATE(940), - [anon_sym_export] = ACTIONS(2614), - [anon_sym_alias] = ACTIONS(2614), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_let_DASHenv] = ACTIONS(2614), - [anon_sym_mut] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2614), - [sym_cmd_identifier] = ACTIONS(2614), - [anon_sym_LF] = ACTIONS(2616), - [anon_sym_def] = ACTIONS(2614), - [anon_sym_export_DASHenv] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym_module] = ACTIONS(2614), - [anon_sym_use] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2614), - [anon_sym_DOLLAR] = ACTIONS(2614), - [anon_sym_error] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_loop] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_RBRACE] = ACTIONS(2614), - [anon_sym_DOT] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_source] = ACTIONS(2614), - [anon_sym_source_DASHenv] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_hide] = ACTIONS(2614), - [anon_sym_hide_DASHenv] = ACTIONS(2614), - [anon_sym_overlay] = ACTIONS(2614), - [anon_sym_as] = ACTIONS(2614), - [anon_sym_where] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [aux_sym__val_number_decimal_token1] = ACTIONS(2614), - [aux_sym__val_number_token1] = ACTIONS(2614), - [aux_sym__val_number_token2] = ACTIONS(2614), - [aux_sym__val_number_token3] = ACTIONS(2614), - [aux_sym__val_number_token4] = ACTIONS(2614), - [aux_sym__val_number_token5] = ACTIONS(2614), - [aux_sym__val_number_token6] = ACTIONS(2614), - [anon_sym_0b] = ACTIONS(2614), - [anon_sym_0o] = ACTIONS(2614), - [anon_sym_0x] = ACTIONS(2614), - [sym_val_date] = ACTIONS(2614), - [anon_sym_DQUOTE] = ACTIONS(2614), - [sym__str_single_quotes] = ACTIONS(2614), - [sym__str_back_ticks] = ACTIONS(2614), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2614), - [anon_sym_CARET] = ACTIONS(2614), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_BANG_TILDE] = ACTIONS(1400), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_err_GT] = ACTIONS(1400), + [anon_sym_out_GT] = ACTIONS(1400), + [anon_sym_e_GT] = ACTIONS(1400), + [anon_sym_o_GT] = ACTIONS(1400), + [anon_sym_err_PLUSout_GT] = ACTIONS(1400), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1400), + [anon_sym_o_PLUSe_GT] = ACTIONS(1400), + [anon_sym_e_PLUSo_GT] = ACTIONS(1400), + [aux_sym_unquoted_token1] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, [941] = { [sym_comment] = STATE(941), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT2] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_EQ2] = ACTIONS(2621), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token4] = ACTIONS(2530), - [aux_sym_unquoted_token6] = ACTIONS(2532), + [ts_builtin_sym_end] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1445), + [anon_sym_BANG_TILDE] = ACTIONS(1445), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(2516), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_err_GT] = ACTIONS(1445), + [anon_sym_out_GT] = ACTIONS(1445), + [anon_sym_e_GT] = ACTIONS(1445), + [anon_sym_o_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT] = ACTIONS(1445), + [aux_sym_unquoted_token1] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(2518), [anon_sym_POUND] = ACTIONS(105), }, [942] = { + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2667), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(942), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1495), - [anon_sym_BANG_TILDE] = ACTIONS(1495), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_err_GT] = ACTIONS(1495), - [anon_sym_out_GT] = ACTIONS(1495), - [anon_sym_e_GT] = ACTIONS(1495), - [anon_sym_o_GT] = ACTIONS(1495), - [anon_sym_err_PLUSout_GT] = ACTIONS(1495), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1495), - [anon_sym_o_PLUSe_GT] = ACTIONS(1495), - [anon_sym_e_PLUSo_GT] = ACTIONS(1495), - [aux_sym_unquoted_token1] = ACTIONS(1495), - [aux_sym_unquoted_token5] = ACTIONS(2623), + [aux_sym__command_parenthesized_body_repeat1] = STATE(952), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_LF] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [943] = { [sym_comment] = STATE(943), - [ts_builtin_sym_end] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(2612), - [anon_sym_STAR_STAR] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_bit_DASHshl] = ACTIONS(1464), - [anon_sym_bit_DASHshr] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_not_DASHin] = ACTIONS(1464), - [anon_sym_starts_DASHwith] = ACTIONS(1464), - [anon_sym_ends_DASHwith] = ACTIONS(1464), - [anon_sym_EQ_TILDE] = ACTIONS(1464), - [anon_sym_BANG_TILDE] = ACTIONS(1464), - [anon_sym_bit_DASHand] = ACTIONS(1464), - [anon_sym_bit_DASHxor] = ACTIONS(1464), - [anon_sym_bit_DASHor] = ACTIONS(1464), - [anon_sym_and] = ACTIONS(1464), - [anon_sym_xor] = ACTIONS(1464), - [anon_sym_or] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_err_GT] = ACTIONS(1464), - [anon_sym_out_GT] = ACTIONS(1464), - [anon_sym_e_GT] = ACTIONS(1464), - [anon_sym_o_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT] = ACTIONS(1464), - [aux_sym_unquoted_token1] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_err_GT] = ACTIONS(1419), + [anon_sym_out_GT] = ACTIONS(1419), + [anon_sym_e_GT] = ACTIONS(1419), + [anon_sym_o_GT] = ACTIONS(1419), + [anon_sym_err_PLUSout_GT] = ACTIONS(1419), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1419), + [anon_sym_o_PLUSe_GT] = ACTIONS(1419), + [anon_sym_e_PLUSo_GT] = ACTIONS(1419), + [aux_sym_unquoted_token1] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, [944] = { + [sym__command_name] = STATE(1496), + [sym_scope_pattern] = STATE(1523), + [sym_wild_card] = STATE(1494), + [sym_command_list] = STATE(1493), + [sym_val_string] = STATE(1370), + [sym__str_double_quotes] = STATE(1382), [sym_comment] = STATE(944), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_DOT2] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1515), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1515), - [anon_sym_0o] = ACTIONS(1515), - [anon_sym_0x] = ACTIONS(1515), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_err_GT] = ACTIONS(1515), - [anon_sym_out_GT] = ACTIONS(1515), - [anon_sym_e_GT] = ACTIONS(1515), - [anon_sym_o_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT] = ACTIONS(1515), - [aux_sym_unquoted_token1] = ACTIONS(1515), + [ts_builtin_sym_end] = ACTIONS(2302), + [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), + [anon_sym_SEMI] = ACTIONS(2300), + [sym_cmd_identifier] = ACTIONS(2389), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_DOLLAR] = ACTIONS(2300), + [anon_sym_error] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_loop] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_match] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_DOT] = ACTIONS(2300), + [anon_sym_try] = 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_STAR] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_not] = ACTIONS(2300), + [anon_sym_null] = ACTIONS(2300), + [anon_sym_true] = ACTIONS(2300), + [anon_sym_false] = ACTIONS(2300), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(2300), + [anon_sym_0o] = ACTIONS(2300), + [anon_sym_0x] = ACTIONS(2300), + [sym_val_date] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2395), + [sym__str_single_quotes] = ACTIONS(2397), + [sym__str_back_ticks] = ACTIONS(2397), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2300), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2300), [anon_sym_POUND] = ACTIONS(105), }, [945] = { + [sym_path] = STATE(1008), [sym_comment] = STATE(945), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [anon_sym_BANG_TILDE] = ACTIONS(1454), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_err_GT] = ACTIONS(1454), - [anon_sym_out_GT] = ACTIONS(1454), - [anon_sym_e_GT] = ACTIONS(1454), - [anon_sym_o_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT] = ACTIONS(1454), - [aux_sym_unquoted_token1] = ACTIONS(1454), + [aux_sym_cell_path_repeat1] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_BANG_TILDE] = ACTIONS(1394), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_err_GT] = ACTIONS(1394), + [anon_sym_out_GT] = ACTIONS(1394), + [anon_sym_e_GT] = ACTIONS(1394), + [anon_sym_o_GT] = ACTIONS(1394), + [anon_sym_err_PLUSout_GT] = ACTIONS(1394), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1394), + [anon_sym_o_PLUSe_GT] = ACTIONS(1394), + [anon_sym_e_PLUSo_GT] = ACTIONS(1394), + [aux_sym_unquoted_token1] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [946] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2656), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), [sym_comment] = STATE(946), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_LF] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_PIPE] = ACTIONS(2627), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT2] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_EQ2] = ACTIONS(2524), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token4] = ACTIONS(2528), + [aux_sym_unquoted_token6] = ACTIONS(2530), [anon_sym_POUND] = ACTIONS(105), }, [947] = { - [sym__flag] = STATE(1221), - [sym_short_flag] = STATE(1215), - [sym_long_flag] = STATE(1215), + [sym_cell_path] = STATE(1129), + [sym_path] = STATE(945), [sym_comment] = STATE(947), - [aux_sym_overlay_use_repeat1] = STATE(938), - [anon_sym_export] = ACTIONS(2631), - [anon_sym_alias] = ACTIONS(2631), - [anon_sym_let] = ACTIONS(2631), - [anon_sym_let_DASHenv] = ACTIONS(2631), - [anon_sym_mut] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2631), - [sym_cmd_identifier] = ACTIONS(2631), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_def] = ACTIONS(2631), - [anon_sym_export_DASHenv] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym_module] = ACTIONS(2631), - [anon_sym_use] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_RPAREN] = ACTIONS(2631), - [anon_sym_DOLLAR] = ACTIONS(2631), - [anon_sym_error] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_loop] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_source] = ACTIONS(2631), - [anon_sym_source_DASHenv] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_hide] = ACTIONS(2631), - [anon_sym_hide_DASHenv] = ACTIONS(2631), - [anon_sym_overlay] = ACTIONS(2631), - [anon_sym_as] = ACTIONS(2637), - [anon_sym_where] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2631), - [anon_sym_true] = ACTIONS(2631), - [anon_sym_false] = ACTIONS(2631), - [aux_sym__val_number_decimal_token1] = ACTIONS(2631), - [aux_sym__val_number_token1] = ACTIONS(2631), - [aux_sym__val_number_token2] = ACTIONS(2631), - [aux_sym__val_number_token3] = ACTIONS(2631), - [aux_sym__val_number_token4] = ACTIONS(2631), - [aux_sym__val_number_token5] = ACTIONS(2631), - [aux_sym__val_number_token6] = ACTIONS(2631), - [anon_sym_0b] = ACTIONS(2631), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym__str_single_quotes] = ACTIONS(2631), - [sym__str_back_ticks] = ACTIONS(2631), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2631), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2631), - [anon_sym_CARET] = ACTIONS(2631), + [ts_builtin_sym_end] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_LF] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_DOLLAR] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_in] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_STAR_STAR] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_bit_DASHshl] = ACTIONS(1459), + [anon_sym_bit_DASHshr] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_LT2] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_not_DASHin] = ACTIONS(1459), + [anon_sym_starts_DASHwith] = ACTIONS(1459), + [anon_sym_ends_DASHwith] = ACTIONS(1459), + [anon_sym_EQ_TILDE] = ACTIONS(1459), + [anon_sym_BANG_TILDE] = ACTIONS(1459), + [anon_sym_bit_DASHand] = ACTIONS(1459), + [anon_sym_bit_DASHxor] = ACTIONS(1459), + [anon_sym_bit_DASHor] = ACTIONS(1459), + [anon_sym_and] = ACTIONS(1459), + [anon_sym_xor] = ACTIONS(1459), + [anon_sym_or] = ACTIONS(1459), + [anon_sym_null] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [aux_sym__val_number_decimal_token1] = ACTIONS(1459), + [aux_sym__val_number_token1] = ACTIONS(1459), + [aux_sym__val_number_token2] = ACTIONS(1459), + [aux_sym__val_number_token3] = ACTIONS(1459), + [aux_sym__val_number_token4] = ACTIONS(1459), + [aux_sym__val_number_token5] = ACTIONS(1459), + [aux_sym__val_number_token6] = ACTIONS(1459), + [anon_sym_0b] = ACTIONS(1459), + [anon_sym_0o] = ACTIONS(1459), + [anon_sym_0x] = ACTIONS(1459), + [sym_val_date] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym__str_single_quotes] = ACTIONS(1459), + [sym__str_back_ticks] = ACTIONS(1459), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1459), + [anon_sym_err_GT] = ACTIONS(1459), + [anon_sym_out_GT] = ACTIONS(1459), + [anon_sym_e_GT] = ACTIONS(1459), + [anon_sym_o_GT] = ACTIONS(1459), + [anon_sym_err_PLUSout_GT] = ACTIONS(1459), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1459), + [anon_sym_o_PLUSe_GT] = ACTIONS(1459), + [anon_sym_e_PLUSo_GT] = ACTIONS(1459), + [aux_sym_unquoted_token1] = ACTIONS(1459), [anon_sym_POUND] = ACTIONS(105), }, [948] = { - [sym_ctrl_do] = STATE(4495), - [sym_ctrl_if] = STATE(4495), - [sym_ctrl_match] = STATE(4495), - [sym_ctrl_try] = STATE(4495), - [sym__expression] = STATE(4495), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2667), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(948), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_LF] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2645), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_PIPE] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(363), - [aux_sym__val_number_token2] = ACTIONS(363), - [aux_sym__val_number_token3] = ACTIONS(363), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(363), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [aux_sym__command_parenthesized_body_repeat1] = STATE(950), + [anon_sym_SEMI] = ACTIONS(2532), + [anon_sym_LF] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [949] = { - [sym_ctrl_do] = STATE(4495), - [sym_ctrl_if] = STATE(4495), - [sym_ctrl_match] = STATE(4495), - [sym_ctrl_try] = STATE(4495), - [sym__expression] = STATE(4495), - [sym_expr_unary] = STATE(3004), - [sym__expr_unary_minus] = STATE(3007), - [sym_expr_binary] = STATE(3004), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2994), - [sym_val_range] = STATE(2472), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(3047), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2980), - [sym__var] = STATE(2833), - [sym_val_number] = STATE(442), - [sym__val_number_decimal] = STATE(387), - [sym__val_number] = STATE(368), - [sym_val_duration] = STATE(3047), - [sym_val_filesize] = STATE(3047), - [sym_val_binary] = STATE(3047), - [sym_val_string] = STATE(3047), - [sym__str_double_quotes] = STATE(2990), - [sym_val_interpolated] = STATE(3047), - [sym__inter_single_quotes] = STATE(3046), - [sym__inter_double_quotes] = STATE(3045), - [sym_val_list] = STATE(3047), - [sym_val_record] = STATE(3047), - [sym_val_table] = STATE(3047), - [sym_val_closure] = STATE(3047), + [sym__expression] = STATE(2751), + [sym_expr_unary] = STATE(1080), + [sym__expr_unary_minus] = STATE(1118), + [sym_expr_binary] = STATE(1080), + [sym__expr_binary_expression] = STATE(3587), + [sym_expr_parenthesized] = STATE(1051), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(1080), + [sym_val_nothing] = STATE(1112), + [sym_val_bool] = STATE(1112), + [sym_val_variable] = STATE(1012), + [sym__var] = STATE(940), + [sym_val_number] = STATE(136), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(137), + [sym_val_duration] = STATE(1112), + [sym_val_filesize] = STATE(1112), + [sym_val_binary] = STATE(1112), + [sym_val_string] = STATE(1112), + [sym__str_double_quotes] = STATE(1082), + [sym_val_interpolated] = STATE(1112), + [sym__inter_single_quotes] = STATE(1119), + [sym__inter_double_quotes] = STATE(1135), + [sym_val_list] = STATE(1112), + [sym_val_record] = STATE(1112), + [sym_val_table] = STATE(1112), + [sym_val_closure] = STATE(1112), + [sym_unquoted] = STATE(2753), [sym_comment] = STATE(949), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_LF] = ACTIONS(2641), - [anon_sym_COLON] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_do] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_match] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_not] = ACTIONS(353), - [anon_sym_null] = ACTIONS(355), - [anon_sym_true] = ACTIONS(357), - [anon_sym_false] = ACTIONS(357), - [aux_sym__val_number_decimal_token1] = ACTIONS(359), - [aux_sym__val_number_token1] = ACTIONS(363), - [aux_sym__val_number_token2] = ACTIONS(363), - [aux_sym__val_number_token3] = ACTIONS(363), - [aux_sym__val_number_token4] = ACTIONS(363), - [aux_sym__val_number_token5] = ACTIONS(363), - [aux_sym__val_number_token6] = ACTIONS(363), - [anon_sym_0b] = ACTIONS(365), - [anon_sym_0o] = ACTIONS(365), - [anon_sym_0x] = ACTIONS(365), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [ts_builtin_sym_end] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_LF] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2544), + [anon_sym_DOT] = ACTIONS(2546), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_not] = ACTIONS(2550), + [anon_sym_null] = ACTIONS(2552), + [anon_sym_true] = ACTIONS(2554), + [anon_sym_false] = ACTIONS(2554), + [aux_sym__val_number_decimal_token1] = ACTIONS(2556), + [aux_sym__val_number_token1] = ACTIONS(2558), + [aux_sym__val_number_token2] = ACTIONS(2558), + [aux_sym__val_number_token3] = ACTIONS(2558), + [aux_sym__val_number_token4] = ACTIONS(2560), + [aux_sym__val_number_token5] = ACTIONS(2560), + [aux_sym__val_number_token6] = ACTIONS(2560), + [anon_sym_0b] = ACTIONS(2562), + [anon_sym_0o] = ACTIONS(2562), + [anon_sym_0x] = ACTIONS(2562), + [sym_val_date] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2566), + [sym__str_single_quotes] = ACTIONS(2568), + [sym__str_back_ticks] = ACTIONS(2568), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2572), + [anon_sym_err_GT] = ACTIONS(2258), + [anon_sym_out_GT] = ACTIONS(2258), + [anon_sym_e_GT] = ACTIONS(2258), + [anon_sym_o_GT] = ACTIONS(2258), + [anon_sym_err_PLUSout_GT] = ACTIONS(2258), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2258), + [anon_sym_o_PLUSe_GT] = ACTIONS(2258), + [anon_sym_e_PLUSo_GT] = ACTIONS(2258), + [aux_sym_unquoted_token1] = ACTIONS(2444), [anon_sym_POUND] = ACTIONS(105), }, [950] = { + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2667), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(950), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT2] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_BANG_TILDE] = ACTIONS(1491), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1491), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_0b] = ACTIONS(1491), - [anon_sym_0o] = ACTIONS(1491), - [anon_sym_0x] = ACTIONS(1491), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [anon_sym_err_GT] = ACTIONS(1491), - [anon_sym_out_GT] = ACTIONS(1491), - [anon_sym_e_GT] = ACTIONS(1491), - [anon_sym_o_GT] = ACTIONS(1491), - [anon_sym_err_PLUSout_GT] = ACTIONS(1491), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), - [anon_sym_o_PLUSe_GT] = ACTIONS(1491), - [anon_sym_e_PLUSo_GT] = ACTIONS(1491), - [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym__command_parenthesized_body_repeat1] = STATE(950), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_LF] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_RPAREN] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2574), + [anon_sym_DOLLAR] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_DOT] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_null] = ACTIONS(2600), + [anon_sym_true] = ACTIONS(2603), + [anon_sym_false] = ACTIONS(2603), + [aux_sym__val_number_decimal_token1] = ACTIONS(2606), + [aux_sym__val_number_token1] = ACTIONS(2609), + [aux_sym__val_number_token2] = ACTIONS(2609), + [aux_sym__val_number_token3] = ACTIONS(2609), + [aux_sym__val_number_token4] = ACTIONS(2612), + [aux_sym__val_number_token5] = ACTIONS(2612), + [aux_sym__val_number_token6] = ACTIONS(2612), + [anon_sym_0b] = ACTIONS(2615), + [anon_sym_0o] = ACTIONS(2615), + [anon_sym_0x] = ACTIONS(2615), + [sym_val_date] = ACTIONS(2618), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym__str_single_quotes] = ACTIONS(2624), + [sym__str_back_ticks] = ACTIONS(2624), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2627), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2630), + [anon_sym_err_GT] = ACTIONS(2633), + [anon_sym_out_GT] = ACTIONS(2633), + [anon_sym_e_GT] = ACTIONS(2633), + [anon_sym_o_GT] = ACTIONS(2633), + [anon_sym_err_PLUSout_GT] = ACTIONS(2633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2633), + [anon_sym_o_PLUSe_GT] = ACTIONS(2633), + [anon_sym_e_PLUSo_GT] = ACTIONS(2633), + [aux_sym_unquoted_token1] = ACTIONS(2636), [anon_sym_POUND] = ACTIONS(105), }, [951] = { + [sym_cell_path] = STATE(1123), + [sym_path] = STATE(945), [sym_comment] = STATE(951), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1369), - [anon_sym_BANG_TILDE] = ACTIONS(1369), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_err_GT] = ACTIONS(1369), - [anon_sym_out_GT] = ACTIONS(1369), - [anon_sym_e_GT] = ACTIONS(1369), - [anon_sym_o_GT] = ACTIONS(1369), - [anon_sym_err_PLUSout_GT] = ACTIONS(1369), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1369), - [anon_sym_o_PLUSe_GT] = ACTIONS(1369), - [anon_sym_e_PLUSo_GT] = ACTIONS(1369), - [aux_sym_unquoted_token1] = ACTIONS(1369), - [aux_sym_unquoted_token3] = ACTIONS(2049), + [ts_builtin_sym_end] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_LF] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_STAR_STAR] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_bit_DASHshl] = ACTIONS(1455), + [anon_sym_bit_DASHshr] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_not_DASHin] = ACTIONS(1455), + [anon_sym_starts_DASHwith] = ACTIONS(1455), + [anon_sym_ends_DASHwith] = ACTIONS(1455), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1455), + [anon_sym_bit_DASHxor] = ACTIONS(1455), + [anon_sym_bit_DASHor] = ACTIONS(1455), + [anon_sym_and] = ACTIONS(1455), + [anon_sym_xor] = ACTIONS(1455), + [anon_sym_or] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1455), + [aux_sym__val_number_token5] = ACTIONS(1455), + [aux_sym__val_number_token6] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1455), + [anon_sym_0o] = ACTIONS(1455), + [anon_sym_0x] = ACTIONS(1455), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [anon_sym_err_GT] = ACTIONS(1455), + [anon_sym_out_GT] = ACTIONS(1455), + [anon_sym_e_GT] = ACTIONS(1455), + [anon_sym_o_GT] = ACTIONS(1455), + [anon_sym_err_PLUSout_GT] = ACTIONS(1455), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1455), + [anon_sym_o_PLUSe_GT] = ACTIONS(1455), + [anon_sym_e_PLUSo_GT] = ACTIONS(1455), + [aux_sym_unquoted_token1] = ACTIONS(1455), [anon_sym_POUND] = ACTIONS(105), }, [952] = { + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2667), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(952), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LF] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_DOT2] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(213), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(213), - [anon_sym_SLASH_SLASH] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(213), - [anon_sym_bit_DASHshr] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_not_DASHin] = ACTIONS(213), - [anon_sym_starts_DASHwith] = ACTIONS(213), - [anon_sym_ends_DASHwith] = ACTIONS(213), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_BANG_TILDE] = ACTIONS(213), - [anon_sym_bit_DASHand] = ACTIONS(213), - [anon_sym_bit_DASHxor] = ACTIONS(213), - [anon_sym_bit_DASHor] = ACTIONS(213), - [anon_sym_and] = ACTIONS(213), - [anon_sym_xor] = ACTIONS(213), - [anon_sym_or] = ACTIONS(213), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(213), - [aux_sym__val_number_token2] = ACTIONS(213), - [aux_sym__val_number_token3] = ACTIONS(213), - [aux_sym__val_number_token4] = ACTIONS(213), - [aux_sym__val_number_token5] = ACTIONS(213), - [aux_sym__val_number_token6] = ACTIONS(213), - [anon_sym_0b] = ACTIONS(213), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym__str_single_quotes] = ACTIONS(213), - [sym__str_back_ticks] = ACTIONS(213), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), - [anon_sym_err_GT] = ACTIONS(213), - [anon_sym_out_GT] = ACTIONS(213), - [anon_sym_e_GT] = ACTIONS(213), - [anon_sym_o_GT] = ACTIONS(213), - [anon_sym_err_PLUSout_GT] = ACTIONS(213), - [anon_sym_out_PLUSerr_GT] = ACTIONS(213), - [anon_sym_o_PLUSe_GT] = ACTIONS(213), - [anon_sym_e_PLUSo_GT] = ACTIONS(213), - [aux_sym_unquoted_token1] = ACTIONS(213), + [aux_sym__command_parenthesized_body_repeat1] = STATE(950), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [953] = { + [sym_path] = STATE(1008), [sym_comment] = STATE(953), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_LF] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_STAR_STAR] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_mod] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_bit_DASHshl] = ACTIONS(1511), - [anon_sym_bit_DASHshr] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_LT2] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1511), - [anon_sym_BANG_TILDE] = ACTIONS(1511), - [anon_sym_bit_DASHand] = ACTIONS(1511), - [anon_sym_bit_DASHxor] = ACTIONS(1511), - [anon_sym_bit_DASHor] = ACTIONS(1511), - [anon_sym_and] = ACTIONS(1511), - [anon_sym_xor] = ACTIONS(1511), - [anon_sym_or] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [aux_sym__val_number_decimal_token1] = ACTIONS(1511), - [aux_sym__val_number_token1] = ACTIONS(1511), - [aux_sym__val_number_token2] = ACTIONS(1511), - [aux_sym__val_number_token3] = ACTIONS(1511), - [aux_sym__val_number_token4] = ACTIONS(1511), - [aux_sym__val_number_token5] = ACTIONS(1511), - [aux_sym__val_number_token6] = ACTIONS(1511), - [anon_sym_0b] = ACTIONS(1511), - [anon_sym_0o] = ACTIONS(1511), - [anon_sym_0x] = ACTIONS(1511), - [sym_val_date] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [sym__str_single_quotes] = ACTIONS(1511), - [sym__str_back_ticks] = ACTIONS(1511), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1511), - [anon_sym_err_GT] = ACTIONS(1511), - [anon_sym_out_GT] = ACTIONS(1511), - [anon_sym_e_GT] = ACTIONS(1511), - [anon_sym_o_GT] = ACTIONS(1511), - [anon_sym_err_PLUSout_GT] = ACTIONS(1511), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1511), - [anon_sym_o_PLUSe_GT] = ACTIONS(1511), - [anon_sym_e_PLUSo_GT] = ACTIONS(1511), - [aux_sym_unquoted_token1] = ACTIONS(1511), + [aux_sym_cell_path_repeat1] = STATE(937), + [ts_builtin_sym_end] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_SLASH_SLASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_bit_DASHshl] = ACTIONS(1394), + [anon_sym_bit_DASHshr] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT2] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_not_DASHin] = ACTIONS(1394), + [anon_sym_starts_DASHwith] = ACTIONS(1394), + [anon_sym_ends_DASHwith] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_BANG_TILDE] = ACTIONS(1394), + [anon_sym_bit_DASHand] = ACTIONS(1394), + [anon_sym_bit_DASHxor] = ACTIONS(1394), + [anon_sym_bit_DASHor] = ACTIONS(1394), + [anon_sym_and] = ACTIONS(1394), + [anon_sym_xor] = ACTIONS(1394), + [anon_sym_or] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_err_GT] = ACTIONS(1394), + [anon_sym_out_GT] = ACTIONS(1394), + [anon_sym_e_GT] = ACTIONS(1394), + [anon_sym_o_GT] = ACTIONS(1394), + [anon_sym_err_PLUSout_GT] = ACTIONS(1394), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1394), + [anon_sym_o_PLUSe_GT] = ACTIONS(1394), + [anon_sym_e_PLUSo_GT] = ACTIONS(1394), + [aux_sym_unquoted_token1] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [954] = { - [sym__flag] = STATE(1221), - [sym_short_flag] = STATE(1215), - [sym_long_flag] = STATE(1215), + [sym_cell_path] = STATE(1115), + [sym_path] = STATE(945), [sym_comment] = STATE(954), - [aux_sym_overlay_use_repeat1] = STATE(937), - [anon_sym_export] = ACTIONS(2663), - [anon_sym_alias] = ACTIONS(2663), - [anon_sym_let] = ACTIONS(2663), - [anon_sym_let_DASHenv] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2663), - [sym_cmd_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2665), - [anon_sym_def] = ACTIONS(2663), - [anon_sym_export_DASHenv] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym_module] = ACTIONS(2663), - [anon_sym_use] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_RPAREN] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2663), - [anon_sym_error] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_loop] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_do] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_source] = ACTIONS(2663), - [anon_sym_source_DASHenv] = ACTIONS(2663), - [anon_sym_register] = ACTIONS(2663), - [anon_sym_hide] = ACTIONS(2663), - [anon_sym_hide_DASHenv] = ACTIONS(2663), - [anon_sym_overlay] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2667), - [anon_sym_where] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_not] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2663), - [anon_sym_true] = ACTIONS(2663), - [anon_sym_false] = ACTIONS(2663), - [aux_sym__val_number_decimal_token1] = ACTIONS(2663), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [aux_sym__val_number_token4] = ACTIONS(2663), - [aux_sym__val_number_token5] = ACTIONS(2663), - [aux_sym__val_number_token6] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2663), - [anon_sym_0o] = ACTIONS(2663), - [anon_sym_0x] = ACTIONS(2663), - [sym_val_date] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2663), - [sym__str_back_ticks] = ACTIONS(2663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), + [ts_builtin_sym_end] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_bit_DASHshl] = ACTIONS(1467), + [anon_sym_bit_DASHshr] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_LT2] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_not_DASHin] = ACTIONS(1467), + [anon_sym_starts_DASHwith] = ACTIONS(1467), + [anon_sym_ends_DASHwith] = ACTIONS(1467), + [anon_sym_EQ_TILDE] = ACTIONS(1467), + [anon_sym_BANG_TILDE] = ACTIONS(1467), + [anon_sym_bit_DASHand] = ACTIONS(1467), + [anon_sym_bit_DASHxor] = ACTIONS(1467), + [anon_sym_bit_DASHor] = ACTIONS(1467), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_err_GT] = ACTIONS(1467), + [anon_sym_out_GT] = ACTIONS(1467), + [anon_sym_e_GT] = ACTIONS(1467), + [anon_sym_o_GT] = ACTIONS(1467), + [anon_sym_err_PLUSout_GT] = ACTIONS(1467), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1467), + [anon_sym_o_PLUSe_GT] = ACTIONS(1467), + [anon_sym_e_PLUSo_GT] = ACTIONS(1467), + [aux_sym_unquoted_token1] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, [955] = { [sym_comment] = STATE(955), - [ts_builtin_sym_end] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT2] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_EQ2] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token4] = ACTIONS(2673), - [aux_sym_unquoted_token6] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT2] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_QMARK2] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_err_GT] = ACTIONS(1437), + [anon_sym_out_GT] = ACTIONS(1437), + [anon_sym_e_GT] = ACTIONS(1437), + [anon_sym_o_GT] = ACTIONS(1437), + [anon_sym_err_PLUSout_GT] = ACTIONS(1437), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1437), + [anon_sym_o_PLUSe_GT] = ACTIONS(1437), + [anon_sym_e_PLUSo_GT] = ACTIONS(1437), + [aux_sym_unquoted_token1] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [956] = { + [sym_cell_path] = STATE(1068), + [sym_path] = STATE(945), [sym_comment] = STATE(956), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_LF] = ACTIONS(1487), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_in] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_DOT2] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_SLASH_SLASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_bit_DASHshl] = ACTIONS(1485), - [anon_sym_bit_DASHshr] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_LT2] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_not_DASHin] = ACTIONS(1485), - [anon_sym_starts_DASHwith] = ACTIONS(1485), - [anon_sym_ends_DASHwith] = ACTIONS(1485), - [anon_sym_EQ_TILDE] = ACTIONS(1485), - [anon_sym_BANG_TILDE] = ACTIONS(1485), - [anon_sym_bit_DASHand] = ACTIONS(1485), - [anon_sym_bit_DASHxor] = ACTIONS(1485), - [anon_sym_bit_DASHor] = ACTIONS(1485), - [anon_sym_and] = ACTIONS(1485), - [anon_sym_xor] = ACTIONS(1485), - [anon_sym_or] = ACTIONS(1485), - [anon_sym_null] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [aux_sym__val_number_decimal_token1] = ACTIONS(1485), - [aux_sym__val_number_token1] = ACTIONS(1485), - [aux_sym__val_number_token2] = ACTIONS(1485), - [aux_sym__val_number_token3] = ACTIONS(1485), - [aux_sym__val_number_token4] = ACTIONS(1485), - [aux_sym__val_number_token5] = ACTIONS(1485), - [aux_sym__val_number_token6] = ACTIONS(1485), - [anon_sym_0b] = ACTIONS(1485), - [anon_sym_0o] = ACTIONS(1485), - [anon_sym_0x] = ACTIONS(1485), - [sym_val_date] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym__str_single_quotes] = ACTIONS(1485), - [sym__str_back_ticks] = ACTIONS(1485), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1485), - [anon_sym_err_GT] = ACTIONS(1485), - [anon_sym_out_GT] = ACTIONS(1485), - [anon_sym_e_GT] = ACTIONS(1485), - [anon_sym_o_GT] = ACTIONS(1485), - [anon_sym_err_PLUSout_GT] = ACTIONS(1485), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1485), - [anon_sym_o_PLUSe_GT] = ACTIONS(1485), - [anon_sym_e_PLUSo_GT] = ACTIONS(1485), - [aux_sym_unquoted_token1] = ACTIONS(1485), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_STAR_STAR] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_bit_DASHshl] = ACTIONS(1400), + [anon_sym_bit_DASHshr] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_LT2] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [anon_sym_not_DASHin] = ACTIONS(1400), + [anon_sym_starts_DASHwith] = ACTIONS(1400), + [anon_sym_ends_DASHwith] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_BANG_TILDE] = ACTIONS(1400), + [anon_sym_bit_DASHand] = ACTIONS(1400), + [anon_sym_bit_DASHxor] = ACTIONS(1400), + [anon_sym_bit_DASHor] = ACTIONS(1400), + [anon_sym_and] = ACTIONS(1400), + [anon_sym_xor] = ACTIONS(1400), + [anon_sym_or] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_err_GT] = ACTIONS(1400), + [anon_sym_out_GT] = ACTIONS(1400), + [anon_sym_e_GT] = ACTIONS(1400), + [anon_sym_o_GT] = ACTIONS(1400), + [anon_sym_err_PLUSout_GT] = ACTIONS(1400), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1400), + [anon_sym_o_PLUSe_GT] = ACTIONS(1400), + [anon_sym_e_PLUSo_GT] = ACTIONS(1400), + [aux_sym_unquoted_token1] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, [957] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2656), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_expr_parenthesized] = STATE(2494), + [sym_val_range] = STATE(2642), + [sym__value] = STATE(2642), + [sym_val_nothing] = STATE(2692), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2495), + [sym__var] = STATE(2410), + [sym_val_number] = STATE(313), + [sym__val_number_decimal] = STATE(290), + [sym__val_number] = STATE(301), + [sym_val_duration] = STATE(2692), + [sym_val_filesize] = STATE(2692), + [sym_val_binary] = STATE(2692), + [sym_val_string] = STATE(2692), + [sym__str_double_quotes] = STATE(2698), + [sym_val_interpolated] = STATE(2692), + [sym__inter_single_quotes] = STATE(2684), + [sym__inter_double_quotes] = STATE(2683), + [sym_val_list] = STATE(2692), + [sym_val_record] = STATE(2692), + [sym_val_table] = STATE(2692), + [sym_val_closure] = STATE(2692), + [sym__cmd_arg] = STATE(2643), + [sym_redirection] = STATE(2644), + [sym__flag] = STATE(2645), + [sym_short_flag] = STATE(2646), + [sym_long_flag] = STATE(2646), + [sym_unquoted] = STATE(2647), [sym_comment] = STATE(957), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_LF] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [aux_sym_command_repeat1] = STATE(938), + [ts_builtin_sym_end] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_null] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [aux_sym__val_number_decimal_token1] = ACTIONS(2424), + [aux_sym__val_number_token1] = ACTIONS(2426), + [aux_sym__val_number_token2] = ACTIONS(2426), + [aux_sym__val_number_token3] = ACTIONS(2426), + [aux_sym__val_number_token4] = ACTIONS(2428), + [aux_sym__val_number_token5] = ACTIONS(2428), + [aux_sym__val_number_token6] = ACTIONS(2428), + [anon_sym_0b] = ACTIONS(2430), + [anon_sym_0o] = ACTIONS(2430), + [anon_sym_0x] = ACTIONS(2430), + [sym_val_date] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym__str_single_quotes] = ACTIONS(2436), + [sym__str_back_ticks] = ACTIONS(2436), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2438), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [aux_sym_unquoted_token1] = ACTIONS(2444), [anon_sym_POUND] = ACTIONS(105), }, [958] = { + [sym_cell_path] = STATE(1074), + [sym_path] = STATE(945), [sym_comment] = STATE(958), - [ts_builtin_sym_end] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT2] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_QMARK2] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1475), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1475), - [anon_sym_out_GT] = ACTIONS(1475), - [anon_sym_e_GT] = ACTIONS(1475), - [anon_sym_o_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1475), + [ts_builtin_sym_end] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LF] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_STAR_STAR] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_SLASH_SLASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_bit_DASHshl] = ACTIONS(1478), + [anon_sym_bit_DASHshr] = ACTIONS(1478), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_not_DASHin] = ACTIONS(1478), + [anon_sym_starts_DASHwith] = ACTIONS(1478), + [anon_sym_ends_DASHwith] = ACTIONS(1478), + [anon_sym_EQ_TILDE] = ACTIONS(1478), + [anon_sym_BANG_TILDE] = ACTIONS(1478), + [anon_sym_bit_DASHand] = ACTIONS(1478), + [anon_sym_bit_DASHxor] = ACTIONS(1478), + [anon_sym_bit_DASHor] = ACTIONS(1478), + [anon_sym_and] = ACTIONS(1478), + [anon_sym_xor] = ACTIONS(1478), + [anon_sym_or] = ACTIONS(1478), + [anon_sym_null] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1478), + [aux_sym__val_number_token2] = ACTIONS(1478), + [aux_sym__val_number_token3] = ACTIONS(1478), + [aux_sym__val_number_token4] = ACTIONS(1478), + [aux_sym__val_number_token5] = ACTIONS(1478), + [aux_sym__val_number_token6] = ACTIONS(1478), + [anon_sym_0b] = ACTIONS(1478), + [anon_sym_0o] = ACTIONS(1478), + [anon_sym_0x] = ACTIONS(1478), + [sym_val_date] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym__str_single_quotes] = ACTIONS(1478), + [sym__str_back_ticks] = ACTIONS(1478), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1478), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1478), + [anon_sym_err_GT] = ACTIONS(1478), + [anon_sym_out_GT] = ACTIONS(1478), + [anon_sym_e_GT] = ACTIONS(1478), + [anon_sym_o_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT] = ACTIONS(1478), + [aux_sym_unquoted_token1] = ACTIONS(1478), [anon_sym_POUND] = ACTIONS(105), }, [959] = { [sym_comment] = STATE(959), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_LF] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT2] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_STAR_STAR] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_bit_DASHshl] = ACTIONS(1501), - [anon_sym_bit_DASHshr] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1501), - [anon_sym_BANG_EQ] = ACTIONS(1501), - [anon_sym_LT2] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1501), - [anon_sym_not_DASHin] = ACTIONS(1501), - [anon_sym_starts_DASHwith] = ACTIONS(1501), - [anon_sym_ends_DASHwith] = ACTIONS(1501), - [anon_sym_EQ_TILDE] = ACTIONS(1501), - [anon_sym_BANG_TILDE] = ACTIONS(1501), - [anon_sym_bit_DASHand] = ACTIONS(1501), - [anon_sym_bit_DASHxor] = ACTIONS(1501), - [anon_sym_bit_DASHor] = ACTIONS(1501), - [anon_sym_and] = ACTIONS(1501), - [anon_sym_xor] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1501), - [aux_sym__val_number_token2] = ACTIONS(1501), - [aux_sym__val_number_token3] = ACTIONS(1501), - [aux_sym__val_number_token4] = ACTIONS(1501), - [aux_sym__val_number_token5] = ACTIONS(1501), - [aux_sym__val_number_token6] = ACTIONS(1501), - [anon_sym_0b] = ACTIONS(1501), - [anon_sym_0o] = ACTIONS(1501), - [anon_sym_0x] = ACTIONS(1501), - [sym_val_date] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), - [anon_sym_err_GT] = ACTIONS(1501), - [anon_sym_out_GT] = ACTIONS(1501), - [anon_sym_e_GT] = ACTIONS(1501), - [anon_sym_o_GT] = ACTIONS(1501), - [anon_sym_err_PLUSout_GT] = ACTIONS(1501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1501), - [anon_sym_o_PLUSe_GT] = ACTIONS(1501), - [anon_sym_e_PLUSo_GT] = ACTIONS(1501), - [aux_sym_unquoted_token1] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT2] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_QMARK2] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1441), + [anon_sym_BANG_TILDE] = ACTIONS(1441), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [aux_sym_unquoted_token1] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(105), }, [960] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2656), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), + [sym_cell_path] = STATE(1132), + [sym_path] = STATE(945), [sym_comment] = STATE(960), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_LF] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2169), - [aux_sym__val_number_token2] = ACTIONS(2169), - [aux_sym__val_number_token3] = ACTIONS(2169), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2177), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_err_GT] = ACTIONS(2185), - [anon_sym_out_GT] = ACTIONS(2185), - [anon_sym_e_GT] = ACTIONS(2185), - [anon_sym_o_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2187), + [ts_builtin_sym_end] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_DOT2] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_STAR_STAR] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_SLASH_SLASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_bit_DASHshl] = ACTIONS(1474), + [anon_sym_bit_DASHshr] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT2] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_not_DASHin] = ACTIONS(1474), + [anon_sym_starts_DASHwith] = ACTIONS(1474), + [anon_sym_ends_DASHwith] = ACTIONS(1474), + [anon_sym_EQ_TILDE] = ACTIONS(1474), + [anon_sym_BANG_TILDE] = ACTIONS(1474), + [anon_sym_bit_DASHand] = ACTIONS(1474), + [anon_sym_bit_DASHxor] = ACTIONS(1474), + [anon_sym_bit_DASHor] = ACTIONS(1474), + [anon_sym_and] = ACTIONS(1474), + [anon_sym_xor] = ACTIONS(1474), + [anon_sym_or] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_token1] = ACTIONS(1474), + [aux_sym__val_number_token2] = ACTIONS(1474), + [aux_sym__val_number_token3] = ACTIONS(1474), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym__str_single_quotes] = ACTIONS(1474), + [sym__str_back_ticks] = ACTIONS(1474), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1474), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1474), + [anon_sym_err_GT] = ACTIONS(1474), + [anon_sym_out_GT] = ACTIONS(1474), + [anon_sym_e_GT] = ACTIONS(1474), + [anon_sym_o_GT] = ACTIONS(1474), + [anon_sym_err_PLUSout_GT] = ACTIONS(1474), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), + [anon_sym_o_PLUSe_GT] = ACTIONS(1474), + [anon_sym_e_PLUSo_GT] = ACTIONS(1474), + [aux_sym_unquoted_token1] = ACTIONS(1474), [anon_sym_POUND] = ACTIONS(105), }, [961] = { [sym_comment] = STATE(961), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT2] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_not_DASHin] = ACTIONS(2689), - [anon_sym_starts_DASHwith] = ACTIONS(2689), - [anon_sym_ends_DASHwith] = ACTIONS(2689), - [anon_sym_EQ_TILDE] = ACTIONS(2697), - [anon_sym_BANG_TILDE] = ACTIONS(2697), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT2] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_EQ2] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token4] = ACTIONS(2528), + [aux_sym_unquoted_token6] = ACTIONS(2530), [anon_sym_POUND] = ACTIONS(105), }, [962] = { + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2715), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(962), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_LF] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_in] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_DOT] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_STAR_STAR] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_SLASH] = ACTIONS(1654), - [anon_sym_mod] = ACTIONS(1654), - [anon_sym_SLASH_SLASH] = ACTIONS(1654), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_bit_DASHshl] = ACTIONS(1654), - [anon_sym_bit_DASHshr] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), - [anon_sym_LT2] = ACTIONS(1654), - [anon_sym_LT_EQ] = ACTIONS(1654), - [anon_sym_GT_EQ] = ACTIONS(1654), - [anon_sym_not_DASHin] = ACTIONS(1654), - [anon_sym_starts_DASHwith] = ACTIONS(1654), - [anon_sym_ends_DASHwith] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1654), - [anon_sym_BANG_TILDE] = ACTIONS(1654), - [anon_sym_bit_DASHand] = ACTIONS(1654), - [anon_sym_bit_DASHxor] = ACTIONS(1654), - [anon_sym_bit_DASHor] = ACTIONS(1654), - [anon_sym_and] = ACTIONS(1654), - [anon_sym_xor] = ACTIONS(1654), - [anon_sym_or] = ACTIONS(1654), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1654), - [anon_sym_false] = ACTIONS(1654), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_token1] = ACTIONS(1654), - [aux_sym__val_number_token2] = ACTIONS(1654), - [aux_sym__val_number_token3] = ACTIONS(1654), - [aux_sym__val_number_token4] = ACTIONS(1654), - [aux_sym__val_number_token5] = ACTIONS(1654), - [aux_sym__val_number_token6] = ACTIONS(1654), - [anon_sym_0b] = ACTIONS(1654), - [anon_sym_0o] = ACTIONS(1654), - [anon_sym_0x] = ACTIONS(1654), - [sym_val_date] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [sym__str_single_quotes] = ACTIONS(1654), - [sym__str_back_ticks] = ACTIONS(1654), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1654), - [anon_sym_err_GT] = ACTIONS(1654), - [anon_sym_out_GT] = ACTIONS(1654), - [anon_sym_e_GT] = ACTIONS(1654), - [anon_sym_o_GT] = ACTIONS(1654), - [anon_sym_err_PLUSout_GT] = ACTIONS(1654), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1654), - [anon_sym_o_PLUSe_GT] = ACTIONS(1654), - [anon_sym_e_PLUSo_GT] = ACTIONS(1654), - [aux_sym_unquoted_token1] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LF] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [963] = { - [sym_ctrl_do] = STATE(5002), - [sym_ctrl_if] = STATE(5002), - [sym_ctrl_match] = STATE(5002), - [sym_ctrl_try] = STATE(5002), - [sym__expression] = STATE(5002), - [sym_expr_unary] = STATE(3190), - [sym__expr_unary_minus] = STATE(3186), - [sym_expr_binary] = STATE(3190), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3029), - [sym_val_range] = STATE(2605), - [sym__value] = STATE(3190), - [sym_val_nothing] = STATE(3212), - [sym_val_bool] = STATE(3212), - [sym_val_variable] = STATE(3040), - [sym__var] = STATE(2893), - [sym_val_number] = STATE(464), - [sym__val_number_decimal] = STATE(428), - [sym__val_number] = STATE(426), - [sym_val_duration] = STATE(3212), - [sym_val_filesize] = STATE(3212), - [sym_val_binary] = STATE(3212), - [sym_val_string] = STATE(3212), - [sym__str_double_quotes] = STATE(3222), - [sym_val_interpolated] = STATE(3212), - [sym__inter_single_quotes] = STATE(3185), - [sym__inter_double_quotes] = STATE(3179), - [sym_val_list] = STATE(3212), - [sym_val_record] = STATE(3212), - [sym_val_table] = STATE(3212), - [sym_val_closure] = STATE(3212), [sym_comment] = STATE(963), - [ts_builtin_sym_end] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_LF] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_not] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_token1] = ACTIONS(89), - [aux_sym__val_number_token2] = ACTIONS(89), - [aux_sym__val_number_token3] = ACTIONS(89), - [aux_sym__val_number_token4] = ACTIONS(89), - [aux_sym__val_number_token5] = ACTIONS(89), - [aux_sym__val_number_token6] = ACTIONS(89), - [anon_sym_0b] = ACTIONS(91), - [anon_sym_0o] = ACTIONS(91), - [anon_sym_0x] = ACTIONS(91), - [sym_val_date] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym__str_single_quotes] = ACTIONS(2713), - [sym__str_back_ticks] = ACTIONS(2713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2715), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2717), + [ts_builtin_sym_end] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT2] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_QMARK2] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1441), + [anon_sym_BANG_TILDE] = ACTIONS(1441), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [aux_sym_unquoted_token1] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(105), }, [964] = { [sym_comment] = STATE(964), - [ts_builtin_sym_end] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_STAR_STAR] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_SLASH_SLASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_bit_DASHshl] = ACTIONS(1369), - [anon_sym_bit_DASHshr] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT2] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_not_DASHin] = ACTIONS(1369), - [anon_sym_starts_DASHwith] = ACTIONS(1369), - [anon_sym_ends_DASHwith] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1369), - [anon_sym_BANG_TILDE] = ACTIONS(1369), - [anon_sym_bit_DASHand] = ACTIONS(1369), - [anon_sym_bit_DASHxor] = ACTIONS(1369), - [anon_sym_bit_DASHor] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_xor] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_err_GT] = ACTIONS(1369), - [anon_sym_out_GT] = ACTIONS(1369), - [anon_sym_e_GT] = ACTIONS(1369), - [anon_sym_o_GT] = ACTIONS(1369), - [anon_sym_err_PLUSout_GT] = ACTIONS(1369), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1369), - [anon_sym_o_PLUSe_GT] = ACTIONS(1369), - [anon_sym_e_PLUSo_GT] = ACTIONS(1369), - [aux_sym_unquoted_token1] = ACTIONS(1369), - [aux_sym_unquoted_token3] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_LF] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_in] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_STAR_STAR] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_bit_DASHshl] = ACTIONS(1520), + [anon_sym_bit_DASHshr] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1520), + [anon_sym_BANG_EQ] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1520), + [anon_sym_not_DASHin] = ACTIONS(1520), + [anon_sym_starts_DASHwith] = ACTIONS(1520), + [anon_sym_ends_DASHwith] = ACTIONS(1520), + [anon_sym_EQ_TILDE] = ACTIONS(1520), + [anon_sym_BANG_TILDE] = ACTIONS(1520), + [anon_sym_bit_DASHand] = ACTIONS(1520), + [anon_sym_bit_DASHxor] = ACTIONS(1520), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1520), + [anon_sym_xor] = ACTIONS(1520), + [anon_sym_or] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1520), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1520), + [anon_sym_0x] = ACTIONS(1520), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1520), + [anon_sym_out_GT] = ACTIONS(1520), + [anon_sym_e_GT] = ACTIONS(1520), + [anon_sym_o_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT] = ACTIONS(1520), + [aux_sym_unquoted_token1] = ACTIONS(1520), [anon_sym_POUND] = ACTIONS(105), }, [965] = { [sym_comment] = STATE(965), - [ts_builtin_sym_end] = ACTIONS(215), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT2] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_QMARK2] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_err_GT] = ACTIONS(1437), + [anon_sym_out_GT] = ACTIONS(1437), + [anon_sym_e_GT] = ACTIONS(1437), + [anon_sym_o_GT] = ACTIONS(1437), + [anon_sym_err_PLUSout_GT] = ACTIONS(1437), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1437), + [anon_sym_o_PLUSe_GT] = ACTIONS(1437), + [anon_sym_e_PLUSo_GT] = ACTIONS(1437), + [aux_sym_unquoted_token1] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(105), + }, + [966] = { + [sym_comment] = STATE(966), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1375), + [anon_sym_BANG_TILDE] = ACTIONS(1375), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_err_GT] = ACTIONS(1375), + [anon_sym_out_GT] = ACTIONS(1375), + [anon_sym_e_GT] = ACTIONS(1375), + [anon_sym_o_GT] = ACTIONS(1375), + [anon_sym_err_PLUSout_GT] = ACTIONS(1375), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1375), + [anon_sym_o_PLUSe_GT] = ACTIONS(1375), + [anon_sym_e_PLUSo_GT] = ACTIONS(1375), + [aux_sym_unquoted_token1] = ACTIONS(1375), + [aux_sym_unquoted_token3] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(105), + }, + [967] = { + [sym_comment] = STATE(967), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1536), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(105), + }, + [968] = { + [sym_comment] = STATE(968), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1532), + [anon_sym_BANG_EQ] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1532), + [anon_sym_GT_EQ] = ACTIONS(1532), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1532), + [anon_sym_BANG_TILDE] = ACTIONS(1532), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_err_GT] = ACTIONS(1532), + [anon_sym_out_GT] = ACTIONS(1532), + [anon_sym_e_GT] = ACTIONS(1532), + [anon_sym_o_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT] = ACTIONS(1532), + [aux_sym_unquoted_token1] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(105), + }, + [969] = { + [sym_ctrl_do] = STATE(4866), + [sym_ctrl_if] = STATE(4866), + [sym_ctrl_match] = STATE(4866), + [sym_ctrl_try] = STATE(4866), + [sym__expression] = STATE(4866), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), + [sym_comment] = STATE(969), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LF] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(363), + [aux_sym__val_number_token2] = ACTIONS(363), + [aux_sym__val_number_token3] = ACTIONS(363), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(363), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_POUND] = ACTIONS(105), + }, + [970] = { + [sym_comment] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(1377), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT2] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_EQ2] = ACTIONS(2675), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token4] = ACTIONS(2679), + [aux_sym_unquoted_token6] = ACTIONS(2681), + [anon_sym_POUND] = ACTIONS(105), + }, + [971] = { + [sym_comment] = STATE(971), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_BANG_TILDE] = ACTIONS(1545), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [aux_sym_unquoted_token1] = ACTIONS(1545), + [aux_sym_unquoted_token5] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(105), + }, + [972] = { + [sym__flag] = STATE(1249), + [sym_short_flag] = STATE(1232), + [sym_long_flag] = STATE(1232), + [sym_comment] = STATE(972), + [aux_sym_overlay_use_repeat1] = STATE(981), + [anon_sym_export] = ACTIONS(2685), + [anon_sym_alias] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_DASHenv] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), + [sym_cmd_identifier] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2687), + [anon_sym_def] = ACTIONS(2685), + [anon_sym_export_DASHenv] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym_module] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_error] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_loop] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_source] = ACTIONS(2685), + [anon_sym_source_DASHenv] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_hide] = ACTIONS(2685), + [anon_sym_hide_DASHenv] = ACTIONS(2685), + [anon_sym_overlay] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2691), + [anon_sym_where] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_true] = ACTIONS(2685), + [anon_sym_false] = ACTIONS(2685), + [aux_sym__val_number_decimal_token1] = ACTIONS(2685), + [aux_sym__val_number_token1] = ACTIONS(2685), + [aux_sym__val_number_token2] = ACTIONS(2685), + [aux_sym__val_number_token3] = ACTIONS(2685), + [aux_sym__val_number_token4] = ACTIONS(2685), + [aux_sym__val_number_token5] = ACTIONS(2685), + [aux_sym__val_number_token6] = ACTIONS(2685), + [anon_sym_0b] = ACTIONS(2685), + [anon_sym_0o] = ACTIONS(2685), + [anon_sym_0x] = ACTIONS(2685), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [sym__str_single_quotes] = ACTIONS(2685), + [sym__str_back_ticks] = ACTIONS(2685), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(105), + }, + [973] = { + [sym_comment] = STATE(973), [anon_sym_SEMI] = ACTIONS(213), [anon_sym_LF] = ACTIONS(215), [anon_sym_LBRACK] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(213), [anon_sym_PIPE] = ACTIONS(213), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_GT] = ACTIONS(213), [anon_sym_DASH] = ACTIONS(213), [anon_sym_in] = ACTIONS(213), [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(213), [anon_sym_DOT] = ACTIONS(213), - [anon_sym_DOT2] = ACTIONS(2719), + [anon_sym_DOT2] = ACTIONS(2649), [anon_sym_STAR] = ACTIONS(213), [anon_sym_STAR_STAR] = ACTIONS(213), [anon_sym_PLUS_PLUS] = ACTIONS(213), @@ -177909,2331 +180557,2414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(105), }, - [966] = { - [sym_comment] = STATE(966), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_LF] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_in] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_STAR_STAR] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_mod] = ACTIONS(1564), - [anon_sym_SLASH_SLASH] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_bit_DASHshl] = ACTIONS(1564), - [anon_sym_bit_DASHshr] = ACTIONS(1564), - [anon_sym_EQ_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1564), - [anon_sym_LT2] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_not_DASHin] = ACTIONS(1564), - [anon_sym_starts_DASHwith] = ACTIONS(1564), - [anon_sym_ends_DASHwith] = ACTIONS(1564), - [anon_sym_EQ_TILDE] = ACTIONS(1564), - [anon_sym_BANG_TILDE] = ACTIONS(1564), - [anon_sym_bit_DASHand] = ACTIONS(1564), - [anon_sym_bit_DASHxor] = ACTIONS(1564), - [anon_sym_bit_DASHor] = ACTIONS(1564), - [anon_sym_and] = ACTIONS(1564), - [anon_sym_xor] = ACTIONS(1564), - [anon_sym_or] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_token1] = ACTIONS(1564), - [aux_sym__val_number_token2] = ACTIONS(1564), - [aux_sym__val_number_token3] = ACTIONS(1564), - [aux_sym__val_number_token4] = ACTIONS(1564), - [aux_sym__val_number_token5] = ACTIONS(1564), - [aux_sym__val_number_token6] = ACTIONS(1564), - [anon_sym_0b] = ACTIONS(1564), - [anon_sym_0o] = ACTIONS(1564), - [anon_sym_0x] = ACTIONS(1564), - [sym_val_date] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym__str_single_quotes] = ACTIONS(1564), - [sym__str_back_ticks] = ACTIONS(1564), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1564), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1564), - [anon_sym_err_GT] = ACTIONS(1564), - [anon_sym_out_GT] = ACTIONS(1564), - [anon_sym_e_GT] = ACTIONS(1564), - [anon_sym_o_GT] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT] = ACTIONS(1564), - [aux_sym_unquoted_token1] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(105), - }, - [967] = { - [sym_comment] = STATE(967), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LF] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_DOLLAR] = ACTIONS(1636), - [anon_sym_GT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_STAR_STAR] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_SLASH] = ACTIONS(1636), - [anon_sym_mod] = ACTIONS(1636), - [anon_sym_SLASH_SLASH] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_bit_DASHshl] = ACTIONS(1636), - [anon_sym_bit_DASHshr] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT2] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_not_DASHin] = ACTIONS(1636), - [anon_sym_starts_DASHwith] = ACTIONS(1636), - [anon_sym_ends_DASHwith] = ACTIONS(1636), - [anon_sym_EQ_TILDE] = ACTIONS(1636), - [anon_sym_BANG_TILDE] = ACTIONS(1636), - [anon_sym_bit_DASHand] = ACTIONS(1636), - [anon_sym_bit_DASHxor] = ACTIONS(1636), - [anon_sym_bit_DASHor] = ACTIONS(1636), - [anon_sym_and] = ACTIONS(1636), - [anon_sym_xor] = ACTIONS(1636), - [anon_sym_or] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [aux_sym__val_number_decimal_token1] = ACTIONS(1636), - [aux_sym__val_number_token1] = ACTIONS(1636), - [aux_sym__val_number_token2] = ACTIONS(1636), - [aux_sym__val_number_token3] = ACTIONS(1636), - [aux_sym__val_number_token4] = ACTIONS(1636), - [aux_sym__val_number_token5] = ACTIONS(1636), - [aux_sym__val_number_token6] = ACTIONS(1636), - [anon_sym_0b] = ACTIONS(1636), - [anon_sym_0o] = ACTIONS(1636), - [anon_sym_0x] = ACTIONS(1636), - [sym_val_date] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1636), - [sym__str_single_quotes] = ACTIONS(1636), - [sym__str_back_ticks] = ACTIONS(1636), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1636), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1636), - [anon_sym_err_GT] = ACTIONS(1636), - [anon_sym_out_GT] = ACTIONS(1636), - [anon_sym_e_GT] = ACTIONS(1636), - [anon_sym_o_GT] = ACTIONS(1636), - [anon_sym_err_PLUSout_GT] = ACTIONS(1636), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1636), - [anon_sym_o_PLUSe_GT] = ACTIONS(1636), - [anon_sym_e_PLUSo_GT] = ACTIONS(1636), - [aux_sym_unquoted_token1] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(105), - }, - [968] = { - [sym_comment] = STATE(968), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_LF] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_RPAREN] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_DOT] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_PLUS_PLUS] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1588), - [anon_sym_mod] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_bit_DASHshl] = ACTIONS(1588), - [anon_sym_bit_DASHshr] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_not_DASHin] = ACTIONS(1588), - [anon_sym_starts_DASHwith] = ACTIONS(1588), - [anon_sym_ends_DASHwith] = ACTIONS(1588), - [anon_sym_EQ_TILDE] = ACTIONS(1588), - [anon_sym_BANG_TILDE] = ACTIONS(1588), - [anon_sym_bit_DASHand] = ACTIONS(1588), - [anon_sym_bit_DASHxor] = ACTIONS(1588), - [anon_sym_bit_DASHor] = ACTIONS(1588), - [anon_sym_and] = ACTIONS(1588), - [anon_sym_xor] = ACTIONS(1588), - [anon_sym_or] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [aux_sym__val_number_decimal_token1] = ACTIONS(1588), - [aux_sym__val_number_token1] = ACTIONS(1588), - [aux_sym__val_number_token2] = ACTIONS(1588), - [aux_sym__val_number_token3] = ACTIONS(1588), - [aux_sym__val_number_token4] = ACTIONS(1588), - [aux_sym__val_number_token5] = ACTIONS(1588), - [aux_sym__val_number_token6] = ACTIONS(1588), - [anon_sym_0b] = ACTIONS(1588), - [anon_sym_0o] = ACTIONS(1588), - [anon_sym_0x] = ACTIONS(1588), - [sym_val_date] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [sym__str_single_quotes] = ACTIONS(1588), - [sym__str_back_ticks] = ACTIONS(1588), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1588), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [aux_sym_unquoted_token1] = ACTIONS(1588), - [anon_sym_POUND] = ACTIONS(105), - }, - [969] = { - [sym_comment] = STATE(969), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_LF] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_DOT] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_STAR_STAR] = ACTIONS(1560), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_SLASH_SLASH] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_bit_DASHshl] = ACTIONS(1560), - [anon_sym_bit_DASHshr] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1560), - [anon_sym_BANG_EQ] = ACTIONS(1560), - [anon_sym_LT2] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1560), - [anon_sym_not_DASHin] = ACTIONS(1560), - [anon_sym_starts_DASHwith] = ACTIONS(1560), - [anon_sym_ends_DASHwith] = ACTIONS(1560), - [anon_sym_EQ_TILDE] = ACTIONS(1560), - [anon_sym_BANG_TILDE] = ACTIONS(1560), - [anon_sym_bit_DASHand] = ACTIONS(1560), - [anon_sym_bit_DASHxor] = ACTIONS(1560), - [anon_sym_bit_DASHor] = ACTIONS(1560), - [anon_sym_and] = ACTIONS(1560), - [anon_sym_xor] = ACTIONS(1560), - [anon_sym_or] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_token1] = ACTIONS(1560), - [aux_sym__val_number_token2] = ACTIONS(1560), - [aux_sym__val_number_token3] = ACTIONS(1560), - [aux_sym__val_number_token4] = ACTIONS(1560), - [aux_sym__val_number_token5] = ACTIONS(1560), - [aux_sym__val_number_token6] = ACTIONS(1560), - [anon_sym_0b] = ACTIONS(1560), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [sym__str_single_quotes] = ACTIONS(1560), - [sym__str_back_ticks] = ACTIONS(1560), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1560), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1560), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [aux_sym_unquoted_token1] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(105), - }, - [970] = { - [sym_comment] = STATE(970), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_LF] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_GT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_STAR_STAR] = ACTIONS(1628), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_SLASH] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_SLASH_SLASH] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_bit_DASHshl] = ACTIONS(1628), - [anon_sym_bit_DASHshr] = ACTIONS(1628), - [anon_sym_EQ_EQ] = ACTIONS(1628), - [anon_sym_BANG_EQ] = ACTIONS(1628), - [anon_sym_LT2] = ACTIONS(1628), - [anon_sym_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_EQ] = ACTIONS(1628), - [anon_sym_not_DASHin] = ACTIONS(1628), - [anon_sym_starts_DASHwith] = ACTIONS(1628), - [anon_sym_ends_DASHwith] = ACTIONS(1628), - [anon_sym_EQ_TILDE] = ACTIONS(1628), - [anon_sym_BANG_TILDE] = ACTIONS(1628), - [anon_sym_bit_DASHand] = ACTIONS(1628), - [anon_sym_bit_DASHxor] = ACTIONS(1628), - [anon_sym_bit_DASHor] = ACTIONS(1628), - [anon_sym_and] = ACTIONS(1628), - [anon_sym_xor] = ACTIONS(1628), - [anon_sym_or] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1628), - [aux_sym__val_number_token2] = ACTIONS(1628), - [aux_sym__val_number_token3] = ACTIONS(1628), - [aux_sym__val_number_token4] = ACTIONS(1628), - [aux_sym__val_number_token5] = ACTIONS(1628), - [aux_sym__val_number_token6] = ACTIONS(1628), - [anon_sym_0b] = ACTIONS(1628), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1628), - [sym__str_single_quotes] = ACTIONS(1628), - [sym__str_back_ticks] = ACTIONS(1628), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [aux_sym_unquoted_token1] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(105), - }, - [971] = { - [sym__flag] = STATE(1439), - [sym_short_flag] = STATE(1441), - [sym_long_flag] = STATE(1441), - [sym_comment] = STATE(971), - [aux_sym_overlay_use_repeat1] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(2608), - [anon_sym_export] = ACTIONS(2606), - [anon_sym_alias] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2606), - [anon_sym_let_DASHenv] = ACTIONS(2606), - [anon_sym_mut] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2606), - [sym_cmd_identifier] = ACTIONS(2606), - [anon_sym_LF] = ACTIONS(2608), - [anon_sym_def] = ACTIONS(2606), - [anon_sym_export_DASHenv] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_module] = ACTIONS(2606), - [anon_sym_use] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(2606), - [anon_sym_error] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_loop] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_match] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_DOT] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_source] = ACTIONS(2606), - [anon_sym_source_DASHenv] = ACTIONS(2606), - [anon_sym_register] = ACTIONS(2606), - [anon_sym_hide] = ACTIONS(2606), - [anon_sym_hide_DASHenv] = ACTIONS(2606), - [anon_sym_overlay] = ACTIONS(2606), - [anon_sym_as] = ACTIONS(2721), - [anon_sym_where] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_not] = ACTIONS(2606), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym__val_number_decimal_token1] = ACTIONS(2606), - [aux_sym__val_number_token1] = ACTIONS(2606), - [aux_sym__val_number_token2] = ACTIONS(2606), - [aux_sym__val_number_token3] = ACTIONS(2606), - [aux_sym__val_number_token4] = ACTIONS(2606), - [aux_sym__val_number_token5] = ACTIONS(2606), - [aux_sym__val_number_token6] = ACTIONS(2606), - [anon_sym_0b] = ACTIONS(2606), - [anon_sym_0o] = ACTIONS(2606), - [anon_sym_0x] = ACTIONS(2606), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(2606), - [sym__str_single_quotes] = ACTIONS(2606), - [sym__str_back_ticks] = ACTIONS(2606), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2606), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(105), - }, - [972] = { - [sym__flag] = STATE(1439), - [sym_short_flag] = STATE(1441), - [sym_long_flag] = STATE(1441), - [sym_comment] = STATE(972), - [aux_sym_overlay_use_repeat1] = STATE(1008), - [ts_builtin_sym_end] = ACTIONS(2665), - [anon_sym_export] = ACTIONS(2663), - [anon_sym_alias] = ACTIONS(2663), - [anon_sym_let] = ACTIONS(2663), - [anon_sym_let_DASHenv] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2663), - [sym_cmd_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2665), - [anon_sym_def] = ACTIONS(2663), - [anon_sym_export_DASHenv] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym_module] = ACTIONS(2663), - [anon_sym_use] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2663), - [anon_sym_error] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_loop] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_do] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_source] = ACTIONS(2663), - [anon_sym_source_DASHenv] = ACTIONS(2663), - [anon_sym_register] = ACTIONS(2663), - [anon_sym_hide] = ACTIONS(2663), - [anon_sym_hide_DASHenv] = ACTIONS(2663), - [anon_sym_overlay] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2725), - [anon_sym_where] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_not] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2663), - [anon_sym_true] = ACTIONS(2663), - [anon_sym_false] = ACTIONS(2663), - [aux_sym__val_number_decimal_token1] = ACTIONS(2663), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [aux_sym__val_number_token4] = ACTIONS(2663), - [aux_sym__val_number_token5] = ACTIONS(2663), - [aux_sym__val_number_token6] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2663), - [anon_sym_0o] = ACTIONS(2663), - [anon_sym_0x] = ACTIONS(2663), - [sym_val_date] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2663), - [sym__str_back_ticks] = ACTIONS(2663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_POUND] = ACTIONS(105), - }, - [973] = { - [sym__flag] = STATE(1439), - [sym_short_flag] = STATE(1441), - [sym_long_flag] = STATE(1441), - [sym_comment] = STATE(973), - [aux_sym_overlay_use_repeat1] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(2616), - [anon_sym_export] = ACTIONS(2614), - [anon_sym_alias] = ACTIONS(2614), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_let_DASHenv] = ACTIONS(2614), - [anon_sym_mut] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2614), - [sym_cmd_identifier] = ACTIONS(2614), - [anon_sym_LF] = ACTIONS(2616), - [anon_sym_def] = ACTIONS(2614), - [anon_sym_export_DASHenv] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym_module] = ACTIONS(2614), - [anon_sym_use] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_DOLLAR] = ACTIONS(2614), - [anon_sym_error] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_loop] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_DOT] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_source] = ACTIONS(2614), - [anon_sym_source_DASHenv] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_hide] = ACTIONS(2614), - [anon_sym_hide_DASHenv] = ACTIONS(2614), - [anon_sym_overlay] = ACTIONS(2614), - [anon_sym_as] = ACTIONS(2614), - [anon_sym_where] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [aux_sym__val_number_decimal_token1] = ACTIONS(2614), - [aux_sym__val_number_token1] = ACTIONS(2614), - [aux_sym__val_number_token2] = ACTIONS(2614), - [aux_sym__val_number_token3] = ACTIONS(2614), - [aux_sym__val_number_token4] = ACTIONS(2614), - [aux_sym__val_number_token5] = ACTIONS(2614), - [aux_sym__val_number_token6] = ACTIONS(2614), - [anon_sym_0b] = ACTIONS(2614), - [anon_sym_0o] = ACTIONS(2614), - [anon_sym_0x] = ACTIONS(2614), - [sym_val_date] = ACTIONS(2614), - [anon_sym_DQUOTE] = ACTIONS(2614), - [sym__str_single_quotes] = ACTIONS(2614), - [sym__str_back_ticks] = ACTIONS(2614), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2614), - [anon_sym_CARET] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(105), - }, [974] = { [sym_comment] = STATE(974), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1640), - [anon_sym_GT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_in] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_DOT] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_STAR_STAR] = ACTIONS(1640), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_SLASH] = ACTIONS(1640), - [anon_sym_mod] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_bit_DASHshl] = ACTIONS(1640), - [anon_sym_bit_DASHshr] = ACTIONS(1640), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT2] = ACTIONS(1640), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_not_DASHin] = ACTIONS(1640), - [anon_sym_starts_DASHwith] = ACTIONS(1640), - [anon_sym_ends_DASHwith] = ACTIONS(1640), - [anon_sym_EQ_TILDE] = ACTIONS(1640), - [anon_sym_BANG_TILDE] = ACTIONS(1640), - [anon_sym_bit_DASHand] = ACTIONS(1640), - [anon_sym_bit_DASHxor] = ACTIONS(1640), - [anon_sym_bit_DASHor] = ACTIONS(1640), - [anon_sym_and] = ACTIONS(1640), - [anon_sym_xor] = ACTIONS(1640), - [anon_sym_or] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [aux_sym__val_number_token4] = ACTIONS(1640), - [aux_sym__val_number_token5] = ACTIONS(1640), - [aux_sym__val_number_token6] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1640), - [anon_sym_0o] = ACTIONS(1640), - [anon_sym_0x] = ACTIONS(1640), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1640), - [anon_sym_out_GT] = ACTIONS(1640), - [anon_sym_e_GT] = ACTIONS(1640), - [anon_sym_o_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT] = ACTIONS(1640), - [aux_sym_unquoted_token1] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1513), + [anon_sym_BANG_TILDE] = ACTIONS(1513), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [aux_sym_unquoted_token1] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(105), }, [975] = { + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2715), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(975), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_LF] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_RPAREN] = ACTIONS(1624), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_in] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_DOT] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_STAR_STAR] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_SLASH_SLASH] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_bit_DASHshl] = ACTIONS(1624), - [anon_sym_bit_DASHshr] = ACTIONS(1624), - [anon_sym_EQ_EQ] = ACTIONS(1624), - [anon_sym_BANG_EQ] = ACTIONS(1624), - [anon_sym_LT2] = ACTIONS(1624), - [anon_sym_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_EQ] = ACTIONS(1624), - [anon_sym_not_DASHin] = ACTIONS(1624), - [anon_sym_starts_DASHwith] = ACTIONS(1624), - [anon_sym_ends_DASHwith] = ACTIONS(1624), - [anon_sym_EQ_TILDE] = ACTIONS(1624), - [anon_sym_BANG_TILDE] = ACTIONS(1624), - [anon_sym_bit_DASHand] = ACTIONS(1624), - [anon_sym_bit_DASHxor] = ACTIONS(1624), - [anon_sym_bit_DASHor] = ACTIONS(1624), - [anon_sym_and] = ACTIONS(1624), - [anon_sym_xor] = ACTIONS(1624), - [anon_sym_or] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [aux_sym__val_number_decimal_token1] = ACTIONS(1624), - [aux_sym__val_number_token1] = ACTIONS(1624), - [aux_sym__val_number_token2] = ACTIONS(1624), - [aux_sym__val_number_token3] = ACTIONS(1624), - [aux_sym__val_number_token4] = ACTIONS(1624), - [aux_sym__val_number_token5] = ACTIONS(1624), - [aux_sym__val_number_token6] = ACTIONS(1624), - [anon_sym_0b] = ACTIONS(1624), - [anon_sym_0o] = ACTIONS(1624), - [anon_sym_0x] = ACTIONS(1624), - [sym_val_date] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1624), - [sym__str_single_quotes] = ACTIONS(1624), - [sym__str_back_ticks] = ACTIONS(1624), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1624), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1624), - [anon_sym_err_GT] = ACTIONS(1624), - [anon_sym_out_GT] = ACTIONS(1624), - [anon_sym_e_GT] = ACTIONS(1624), - [anon_sym_o_GT] = ACTIONS(1624), - [anon_sym_err_PLUSout_GT] = ACTIONS(1624), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1624), - [anon_sym_o_PLUSe_GT] = ACTIONS(1624), - [anon_sym_e_PLUSo_GT] = ACTIONS(1624), - [aux_sym_unquoted_token1] = ACTIONS(1624), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [976] = { + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2715), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(976), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_BANG_TILDE] = ACTIONS(1507), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1507), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_0b] = ACTIONS(1507), - [anon_sym_0o] = ACTIONS(1507), - [anon_sym_0x] = ACTIONS(1507), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_err_GT] = ACTIONS(1507), - [anon_sym_out_GT] = ACTIONS(1507), - [anon_sym_e_GT] = ACTIONS(1507), - [anon_sym_o_GT] = ACTIONS(1507), - [anon_sym_err_PLUSout_GT] = ACTIONS(1507), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1507), - [anon_sym_o_PLUSe_GT] = ACTIONS(1507), - [anon_sym_e_PLUSo_GT] = ACTIONS(1507), - [aux_sym_unquoted_token1] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_LF] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [977] = { + [sym__flag] = STATE(1249), + [sym_short_flag] = STATE(1232), + [sym_long_flag] = STATE(1232), [sym_comment] = STATE(977), - [ts_builtin_sym_end] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_LF] = ACTIONS(1487), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_in] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_DOT2] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_SLASH_SLASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_bit_DASHshl] = ACTIONS(1485), - [anon_sym_bit_DASHshr] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_LT2] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_not_DASHin] = ACTIONS(1485), - [anon_sym_starts_DASHwith] = ACTIONS(1485), - [anon_sym_ends_DASHwith] = ACTIONS(1485), - [anon_sym_EQ_TILDE] = ACTIONS(1485), - [anon_sym_BANG_TILDE] = ACTIONS(1485), - [anon_sym_bit_DASHand] = ACTIONS(1485), - [anon_sym_bit_DASHxor] = ACTIONS(1485), - [anon_sym_bit_DASHor] = ACTIONS(1485), - [anon_sym_and] = ACTIONS(1485), - [anon_sym_xor] = ACTIONS(1485), - [anon_sym_or] = ACTIONS(1485), - [anon_sym_null] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [aux_sym__val_number_decimal_token1] = ACTIONS(1485), - [aux_sym__val_number_token1] = ACTIONS(1485), - [aux_sym__val_number_token2] = ACTIONS(1485), - [aux_sym__val_number_token3] = ACTIONS(1485), - [aux_sym__val_number_token4] = ACTIONS(1485), - [aux_sym__val_number_token5] = ACTIONS(1485), - [aux_sym__val_number_token6] = ACTIONS(1485), - [anon_sym_0b] = ACTIONS(1485), - [anon_sym_0o] = ACTIONS(1485), - [anon_sym_0x] = ACTIONS(1485), - [sym_val_date] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym__str_single_quotes] = ACTIONS(1485), - [sym__str_back_ticks] = ACTIONS(1485), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1485), - [anon_sym_err_GT] = ACTIONS(1485), - [anon_sym_out_GT] = ACTIONS(1485), - [anon_sym_e_GT] = ACTIONS(1485), - [anon_sym_o_GT] = ACTIONS(1485), - [anon_sym_err_PLUSout_GT] = ACTIONS(1485), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1485), - [anon_sym_o_PLUSe_GT] = ACTIONS(1485), - [anon_sym_e_PLUSo_GT] = ACTIONS(1485), - [aux_sym_unquoted_token1] = ACTIONS(1485), + [aux_sym_overlay_use_repeat1] = STATE(984), + [anon_sym_export] = ACTIONS(2701), + [anon_sym_alias] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_let_DASHenv] = ACTIONS(2701), + [anon_sym_mut] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2701), + [sym_cmd_identifier] = ACTIONS(2701), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_def] = ACTIONS(2701), + [anon_sym_export_DASHenv] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym_module] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_RPAREN] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2701), + [anon_sym_error] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_loop] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_source] = ACTIONS(2701), + [anon_sym_source_DASHenv] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_hide] = ACTIONS(2701), + [anon_sym_hide_DASHenv] = ACTIONS(2701), + [anon_sym_overlay] = ACTIONS(2701), + [anon_sym_as] = ACTIONS(2705), + [anon_sym_where] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [aux_sym__val_number_decimal_token1] = ACTIONS(2701), + [aux_sym__val_number_token1] = ACTIONS(2701), + [aux_sym__val_number_token2] = ACTIONS(2701), + [aux_sym__val_number_token3] = ACTIONS(2701), + [aux_sym__val_number_token4] = ACTIONS(2701), + [aux_sym__val_number_token5] = ACTIONS(2701), + [aux_sym__val_number_token6] = ACTIONS(2701), + [anon_sym_0b] = ACTIONS(2701), + [anon_sym_0o] = ACTIONS(2701), + [anon_sym_0x] = ACTIONS(2701), + [sym_val_date] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2701), + [sym__str_back_ticks] = ACTIONS(2701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2701), [anon_sym_POUND] = ACTIONS(105), }, [978] = { + [sym_ctrl_do] = STATE(4866), + [sym_ctrl_if] = STATE(4866), + [sym_ctrl_match] = STATE(4866), + [sym_ctrl_try] = STATE(4866), + [sym__expression] = STATE(4866), + [sym_expr_unary] = STATE(3101), + [sym__expr_unary_minus] = STATE(3102), + [sym_expr_binary] = STATE(3101), + [sym__expr_binary_expression] = STATE(3513), + [sym_expr_parenthesized] = STATE(2981), + [sym_val_range] = STATE(2531), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3057), + [sym_val_bool] = STATE(3057), + [sym_val_variable] = STATE(3031), + [sym__var] = STATE(2915), + [sym_val_number] = STATE(430), + [sym__val_number_decimal] = STATE(374), + [sym__val_number] = STATE(389), + [sym_val_duration] = STATE(3057), + [sym_val_filesize] = STATE(3057), + [sym_val_binary] = STATE(3057), + [sym_val_string] = STATE(3057), + [sym__str_double_quotes] = STATE(3004), + [sym_val_interpolated] = STATE(3057), + [sym__inter_single_quotes] = STATE(3061), + [sym__inter_double_quotes] = STATE(3055), + [sym_val_list] = STATE(3057), + [sym_val_record] = STATE(3057), + [sym_val_table] = STATE(3057), + [sym_val_closure] = STATE(3057), [sym_comment] = STATE(978), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_LF] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_DOT] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_STAR_STAR] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_SLASH_SLASH] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_bit_DASHshl] = ACTIONS(1620), - [anon_sym_bit_DASHshr] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_not_DASHin] = ACTIONS(1620), - [anon_sym_starts_DASHwith] = ACTIONS(1620), - [anon_sym_ends_DASHwith] = ACTIONS(1620), - [anon_sym_EQ_TILDE] = ACTIONS(1620), - [anon_sym_BANG_TILDE] = ACTIONS(1620), - [anon_sym_bit_DASHand] = ACTIONS(1620), - [anon_sym_bit_DASHxor] = ACTIONS(1620), - [anon_sym_bit_DASHor] = ACTIONS(1620), - [anon_sym_and] = ACTIONS(1620), - [anon_sym_xor] = ACTIONS(1620), - [anon_sym_or] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [aux_sym__val_number_decimal_token1] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1620), - [aux_sym__val_number_token2] = ACTIONS(1620), - [aux_sym__val_number_token3] = ACTIONS(1620), - [aux_sym__val_number_token4] = ACTIONS(1620), - [aux_sym__val_number_token5] = ACTIONS(1620), - [aux_sym__val_number_token6] = ACTIONS(1620), - [anon_sym_0b] = ACTIONS(1620), - [anon_sym_0o] = ACTIONS(1620), - [anon_sym_0x] = ACTIONS(1620), - [sym_val_date] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1620), - [sym__str_single_quotes] = ACTIONS(1620), - [sym__str_back_ticks] = ACTIONS(1620), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(1620), - [anon_sym_out_GT] = ACTIONS(1620), - [anon_sym_e_GT] = ACTIONS(1620), - [anon_sym_o_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT] = ACTIONS(1620), - [aux_sym_unquoted_token1] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LF] = ACTIONS(2653), + [anon_sym_COLON] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_do] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_match] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(353), + [anon_sym_null] = ACTIONS(355), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [aux_sym__val_number_decimal_token1] = ACTIONS(359), + [aux_sym__val_number_token1] = ACTIONS(363), + [aux_sym__val_number_token2] = ACTIONS(363), + [aux_sym__val_number_token3] = ACTIONS(363), + [aux_sym__val_number_token4] = ACTIONS(363), + [aux_sym__val_number_token5] = ACTIONS(363), + [aux_sym__val_number_token6] = ACTIONS(363), + [anon_sym_0b] = ACTIONS(365), + [anon_sym_0o] = ACTIONS(365), + [anon_sym_0x] = ACTIONS(365), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), [anon_sym_POUND] = ACTIONS(105), }, [979] = { [sym_comment] = STATE(979), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_STAR_STAR] = ACTIONS(1572), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_SLASH] = ACTIONS(1572), - [anon_sym_mod] = ACTIONS(1572), - [anon_sym_SLASH_SLASH] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_bit_DASHshl] = ACTIONS(1572), - [anon_sym_bit_DASHshr] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT2] = ACTIONS(1572), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_not_DASHin] = ACTIONS(1572), - [anon_sym_starts_DASHwith] = ACTIONS(1572), - [anon_sym_ends_DASHwith] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1572), - [anon_sym_BANG_TILDE] = ACTIONS(1572), - [anon_sym_bit_DASHand] = ACTIONS(1572), - [anon_sym_bit_DASHxor] = ACTIONS(1572), - [anon_sym_bit_DASHor] = ACTIONS(1572), - [anon_sym_and] = ACTIONS(1572), - [anon_sym_xor] = ACTIONS(1572), - [anon_sym_or] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [aux_sym__val_number_decimal_token1] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [aux_sym__val_number_token4] = ACTIONS(1572), - [aux_sym__val_number_token5] = ACTIONS(1572), - [aux_sym__val_number_token6] = ACTIONS(1572), - [anon_sym_0b] = ACTIONS(1572), - [anon_sym_0o] = ACTIONS(1572), - [anon_sym_0x] = ACTIONS(1572), - [sym_val_date] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), - [anon_sym_err_GT] = ACTIONS(1572), - [anon_sym_out_GT] = ACTIONS(1572), - [anon_sym_e_GT] = ACTIONS(1572), - [anon_sym_o_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT] = ACTIONS(1572), - [aux_sym_unquoted_token1] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(2707), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_err_GT] = ACTIONS(1419), + [anon_sym_out_GT] = ACTIONS(1419), + [anon_sym_e_GT] = ACTIONS(1419), + [anon_sym_o_GT] = ACTIONS(1419), + [anon_sym_err_PLUSout_GT] = ACTIONS(1419), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1419), + [anon_sym_o_PLUSe_GT] = ACTIONS(1419), + [anon_sym_e_PLUSo_GT] = ACTIONS(1419), + [aux_sym_unquoted_token1] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, [980] = { + [sym__flag] = STATE(1249), + [sym_short_flag] = STATE(1232), + [sym_long_flag] = STATE(1232), [sym_comment] = STATE(980), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_RPAREN] = ACTIONS(1646), - [anon_sym_PIPE] = ACTIONS(1646), - [anon_sym_DOLLAR] = ACTIONS(1646), - [anon_sym_GT] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_in] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_DOT] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_STAR_STAR] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_SLASH] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_SLASH_SLASH] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_bit_DASHshl] = ACTIONS(1646), - [anon_sym_bit_DASHshr] = ACTIONS(1646), - [anon_sym_EQ_EQ] = ACTIONS(1646), - [anon_sym_BANG_EQ] = ACTIONS(1646), - [anon_sym_LT2] = ACTIONS(1646), - [anon_sym_LT_EQ] = ACTIONS(1646), - [anon_sym_GT_EQ] = ACTIONS(1646), - [anon_sym_not_DASHin] = ACTIONS(1646), - [anon_sym_starts_DASHwith] = ACTIONS(1646), - [anon_sym_ends_DASHwith] = ACTIONS(1646), - [anon_sym_EQ_TILDE] = ACTIONS(1646), - [anon_sym_BANG_TILDE] = ACTIONS(1646), - [anon_sym_bit_DASHand] = ACTIONS(1646), - [anon_sym_bit_DASHxor] = ACTIONS(1646), - [anon_sym_bit_DASHor] = ACTIONS(1646), - [anon_sym_and] = ACTIONS(1646), - [anon_sym_xor] = ACTIONS(1646), - [anon_sym_or] = ACTIONS(1646), - [anon_sym_null] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [aux_sym__val_number_decimal_token1] = ACTIONS(1646), - [aux_sym__val_number_token1] = ACTIONS(1646), - [aux_sym__val_number_token2] = ACTIONS(1646), - [aux_sym__val_number_token3] = ACTIONS(1646), - [aux_sym__val_number_token4] = ACTIONS(1646), - [aux_sym__val_number_token5] = ACTIONS(1646), - [aux_sym__val_number_token6] = ACTIONS(1646), - [anon_sym_0b] = ACTIONS(1646), - [anon_sym_0o] = ACTIONS(1646), - [anon_sym_0x] = ACTIONS(1646), - [sym_val_date] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [sym__str_single_quotes] = ACTIONS(1646), - [sym__str_back_ticks] = ACTIONS(1646), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1646), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1646), - [anon_sym_err_GT] = ACTIONS(1646), - [anon_sym_out_GT] = ACTIONS(1646), - [anon_sym_e_GT] = ACTIONS(1646), - [anon_sym_o_GT] = ACTIONS(1646), - [anon_sym_err_PLUSout_GT] = ACTIONS(1646), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1646), - [anon_sym_o_PLUSe_GT] = ACTIONS(1646), - [anon_sym_e_PLUSo_GT] = ACTIONS(1646), - [aux_sym_unquoted_token1] = ACTIONS(1646), + [aux_sym_overlay_use_repeat1] = STATE(980), + [anon_sym_export] = ACTIONS(2709), + [anon_sym_alias] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_let_DASHenv] = ACTIONS(2709), + [anon_sym_mut] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2709), + [sym_cmd_identifier] = ACTIONS(2709), + [anon_sym_LF] = ACTIONS(2711), + [anon_sym_def] = ACTIONS(2709), + [anon_sym_export_DASHenv] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_module] = ACTIONS(2709), + [anon_sym_use] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_RPAREN] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2709), + [anon_sym_error] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_loop] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_DOT] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_source] = ACTIONS(2709), + [anon_sym_source_DASHenv] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_hide] = ACTIONS(2709), + [anon_sym_hide_DASHenv] = ACTIONS(2709), + [anon_sym_overlay] = ACTIONS(2709), + [anon_sym_as] = ACTIONS(2709), + [anon_sym_where] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_null] = ACTIONS(2709), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [aux_sym__val_number_decimal_token1] = ACTIONS(2709), + [aux_sym__val_number_token1] = ACTIONS(2709), + [aux_sym__val_number_token2] = ACTIONS(2709), + [aux_sym__val_number_token3] = ACTIONS(2709), + [aux_sym__val_number_token4] = ACTIONS(2709), + [aux_sym__val_number_token5] = ACTIONS(2709), + [aux_sym__val_number_token6] = ACTIONS(2709), + [anon_sym_0b] = ACTIONS(2709), + [anon_sym_0o] = ACTIONS(2709), + [anon_sym_0x] = ACTIONS(2709), + [sym_val_date] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2709), + [sym__str_single_quotes] = ACTIONS(2709), + [sym__str_back_ticks] = ACTIONS(2709), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2709), + [anon_sym_CARET] = ACTIONS(2709), [anon_sym_POUND] = ACTIONS(105), }, [981] = { + [sym__flag] = STATE(1249), + [sym_short_flag] = STATE(1232), + [sym_long_flag] = STATE(1232), [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT2] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_BANG_TILDE] = ACTIONS(1491), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1491), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_0b] = ACTIONS(1491), - [anon_sym_0o] = ACTIONS(1491), - [anon_sym_0x] = ACTIONS(1491), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [anon_sym_err_GT] = ACTIONS(1491), - [anon_sym_out_GT] = ACTIONS(1491), - [anon_sym_e_GT] = ACTIONS(1491), - [anon_sym_o_GT] = ACTIONS(1491), - [anon_sym_err_PLUSout_GT] = ACTIONS(1491), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), - [anon_sym_o_PLUSe_GT] = ACTIONS(1491), - [anon_sym_e_PLUSo_GT] = ACTIONS(1491), - [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym_overlay_use_repeat1] = STATE(980), + [anon_sym_export] = ACTIONS(2716), + [anon_sym_alias] = ACTIONS(2716), + [anon_sym_let] = ACTIONS(2716), + [anon_sym_let_DASHenv] = ACTIONS(2716), + [anon_sym_mut] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [sym_cmd_identifier] = ACTIONS(2716), + [anon_sym_LF] = ACTIONS(2718), + [anon_sym_def] = ACTIONS(2716), + [anon_sym_export_DASHenv] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym_module] = ACTIONS(2716), + [anon_sym_use] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_RPAREN] = ACTIONS(2716), + [anon_sym_DOLLAR] = ACTIONS(2716), + [anon_sym_error] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_loop] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_source] = ACTIONS(2716), + [anon_sym_source_DASHenv] = ACTIONS(2716), + [anon_sym_register] = ACTIONS(2716), + [anon_sym_hide] = ACTIONS(2716), + [anon_sym_hide_DASHenv] = ACTIONS(2716), + [anon_sym_overlay] = ACTIONS(2716), + [anon_sym_as] = ACTIONS(2720), + [anon_sym_where] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_not] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [aux_sym__val_number_decimal_token1] = ACTIONS(2716), + [aux_sym__val_number_token1] = ACTIONS(2716), + [aux_sym__val_number_token2] = ACTIONS(2716), + [aux_sym__val_number_token3] = ACTIONS(2716), + [aux_sym__val_number_token4] = ACTIONS(2716), + [aux_sym__val_number_token5] = ACTIONS(2716), + [aux_sym__val_number_token6] = ACTIONS(2716), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2716), + [anon_sym_0x] = ACTIONS(2716), + [sym_val_date] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [sym__str_single_quotes] = ACTIONS(2716), + [sym__str_back_ticks] = ACTIONS(2716), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2716), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(105), }, [982] = { [sym_comment] = STATE(982), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_LF] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_RPAREN] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_DOLLAR] = ACTIONS(1604), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_in] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_STAR_STAR] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_SLASH_SLASH] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_bit_DASHshl] = ACTIONS(1604), - [anon_sym_bit_DASHshr] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1604), - [anon_sym_BANG_EQ] = ACTIONS(1604), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1604), - [anon_sym_not_DASHin] = ACTIONS(1604), - [anon_sym_starts_DASHwith] = ACTIONS(1604), - [anon_sym_ends_DASHwith] = ACTIONS(1604), - [anon_sym_EQ_TILDE] = ACTIONS(1604), - [anon_sym_BANG_TILDE] = ACTIONS(1604), - [anon_sym_bit_DASHand] = ACTIONS(1604), - [anon_sym_bit_DASHxor] = ACTIONS(1604), - [anon_sym_bit_DASHor] = ACTIONS(1604), - [anon_sym_and] = ACTIONS(1604), - [anon_sym_xor] = ACTIONS(1604), - [anon_sym_or] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [aux_sym__val_number_decimal_token1] = ACTIONS(1604), - [aux_sym__val_number_token1] = ACTIONS(1604), - [aux_sym__val_number_token2] = ACTIONS(1604), - [aux_sym__val_number_token3] = ACTIONS(1604), - [aux_sym__val_number_token4] = ACTIONS(1604), - [aux_sym__val_number_token5] = ACTIONS(1604), - [aux_sym__val_number_token6] = ACTIONS(1604), - [anon_sym_0b] = ACTIONS(1604), - [anon_sym_0o] = ACTIONS(1604), - [anon_sym_0x] = ACTIONS(1604), - [sym_val_date] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1604), - [sym__str_single_quotes] = ACTIONS(1604), - [sym__str_back_ticks] = ACTIONS(1604), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1604), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), - [aux_sym_unquoted_token1] = ACTIONS(1604), + [ts_builtin_sym_end] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(2707), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_bit_DASHshl] = ACTIONS(1419), + [anon_sym_bit_DASHshr] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT2] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_not_DASHin] = ACTIONS(1419), + [anon_sym_starts_DASHwith] = ACTIONS(1419), + [anon_sym_ends_DASHwith] = ACTIONS(1419), + [anon_sym_EQ_TILDE] = ACTIONS(1419), + [anon_sym_BANG_TILDE] = ACTIONS(1419), + [anon_sym_bit_DASHand] = ACTIONS(1419), + [anon_sym_bit_DASHxor] = ACTIONS(1419), + [anon_sym_bit_DASHor] = ACTIONS(1419), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_xor] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_err_GT] = ACTIONS(1419), + [anon_sym_out_GT] = ACTIONS(1419), + [anon_sym_e_GT] = ACTIONS(1419), + [anon_sym_o_GT] = ACTIONS(1419), + [anon_sym_err_PLUSout_GT] = ACTIONS(1419), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1419), + [anon_sym_o_PLUSe_GT] = ACTIONS(1419), + [anon_sym_e_PLUSo_GT] = ACTIONS(1419), + [aux_sym_unquoted_token1] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, [983] = { [sym_comment] = STATE(983), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT2] = ACTIONS(2730), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_not] = ACTIONS(1426), - [aux_sym__immediate_decimal_token1] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [aux_sym_unquoted_token2] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_LF] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_STAR_STAR] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_bit_DASHshl] = ACTIONS(1509), + [anon_sym_bit_DASHshr] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_not_DASHin] = ACTIONS(1509), + [anon_sym_starts_DASHwith] = ACTIONS(1509), + [anon_sym_ends_DASHwith] = ACTIONS(1509), + [anon_sym_EQ_TILDE] = ACTIONS(1509), + [anon_sym_BANG_TILDE] = ACTIONS(1509), + [anon_sym_bit_DASHand] = ACTIONS(1509), + [anon_sym_bit_DASHxor] = ACTIONS(1509), + [anon_sym_bit_DASHor] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1509), + [anon_sym_xor] = ACTIONS(1509), + [anon_sym_or] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [aux_sym__val_number_decimal_token1] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1509), + [aux_sym__val_number_token5] = ACTIONS(1509), + [aux_sym__val_number_token6] = ACTIONS(1509), + [anon_sym_0b] = ACTIONS(1509), + [anon_sym_0o] = ACTIONS(1509), + [anon_sym_0x] = ACTIONS(1509), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [aux_sym_unquoted_token1] = ACTIONS(1509), [anon_sym_POUND] = ACTIONS(105), }, [984] = { + [sym__flag] = STATE(1249), + [sym_short_flag] = STATE(1232), + [sym_long_flag] = STATE(1232), [sym_comment] = STATE(984), - [ts_builtin_sym_end] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_LF] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_STAR_STAR] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_mod] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_bit_DASHshl] = ACTIONS(1511), - [anon_sym_bit_DASHshr] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_LT2] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1511), - [anon_sym_BANG_TILDE] = ACTIONS(1511), - [anon_sym_bit_DASHand] = ACTIONS(1511), - [anon_sym_bit_DASHxor] = ACTIONS(1511), - [anon_sym_bit_DASHor] = ACTIONS(1511), - [anon_sym_and] = ACTIONS(1511), - [anon_sym_xor] = ACTIONS(1511), - [anon_sym_or] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [aux_sym__val_number_decimal_token1] = ACTIONS(1511), - [aux_sym__val_number_token1] = ACTIONS(1511), - [aux_sym__val_number_token2] = ACTIONS(1511), - [aux_sym__val_number_token3] = ACTIONS(1511), - [aux_sym__val_number_token4] = ACTIONS(1511), - [aux_sym__val_number_token5] = ACTIONS(1511), - [aux_sym__val_number_token6] = ACTIONS(1511), - [anon_sym_0b] = ACTIONS(1511), - [anon_sym_0o] = ACTIONS(1511), - [anon_sym_0x] = ACTIONS(1511), - [sym_val_date] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [sym__str_single_quotes] = ACTIONS(1511), - [sym__str_back_ticks] = ACTIONS(1511), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1511), - [anon_sym_err_GT] = ACTIONS(1511), - [anon_sym_out_GT] = ACTIONS(1511), - [anon_sym_e_GT] = ACTIONS(1511), - [anon_sym_o_GT] = ACTIONS(1511), - [anon_sym_err_PLUSout_GT] = ACTIONS(1511), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1511), - [anon_sym_o_PLUSe_GT] = ACTIONS(1511), - [anon_sym_e_PLUSo_GT] = ACTIONS(1511), - [aux_sym_unquoted_token1] = ACTIONS(1511), + [aux_sym_overlay_use_repeat1] = STATE(980), + [anon_sym_export] = ACTIONS(2722), + [anon_sym_alias] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_let_DASHenv] = ACTIONS(2722), + [anon_sym_mut] = ACTIONS(2722), + [anon_sym_const] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [sym_cmd_identifier] = ACTIONS(2722), + [anon_sym_LF] = ACTIONS(2724), + [anon_sym_def] = ACTIONS(2722), + [anon_sym_export_DASHenv] = ACTIONS(2722), + [anon_sym_extern] = ACTIONS(2722), + [anon_sym_module] = ACTIONS(2722), + [anon_sym_use] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_DOLLAR] = ACTIONS(2722), + [anon_sym_error] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2722), + [anon_sym_break] = ACTIONS(2722), + [anon_sym_continue] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2722), + [anon_sym_loop] = ACTIONS(2722), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(2722), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_DOT] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2722), + [anon_sym_return] = ACTIONS(2722), + [anon_sym_source] = ACTIONS(2722), + [anon_sym_source_DASHenv] = ACTIONS(2722), + [anon_sym_register] = ACTIONS(2722), + [anon_sym_hide] = ACTIONS(2722), + [anon_sym_hide_DASHenv] = ACTIONS(2722), + [anon_sym_overlay] = ACTIONS(2722), + [anon_sym_as] = ACTIONS(2726), + [anon_sym_where] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2722), + [anon_sym_not] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [aux_sym__val_number_decimal_token1] = ACTIONS(2722), + [aux_sym__val_number_token1] = ACTIONS(2722), + [aux_sym__val_number_token2] = ACTIONS(2722), + [aux_sym__val_number_token3] = ACTIONS(2722), + [aux_sym__val_number_token4] = ACTIONS(2722), + [aux_sym__val_number_token5] = ACTIONS(2722), + [aux_sym__val_number_token6] = ACTIONS(2722), + [anon_sym_0b] = ACTIONS(2722), + [anon_sym_0o] = ACTIONS(2722), + [anon_sym_0x] = ACTIONS(2722), + [sym_val_date] = ACTIONS(2722), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2722), + [sym__str_back_ticks] = ACTIONS(2722), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2722), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), + [anon_sym_CARET] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(105), }, [985] = { + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2715), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), [sym_comment] = STATE(985), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_LF] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_STAR_STAR] = ACTIONS(1596), - [anon_sym_PLUS_PLUS] = ACTIONS(1596), - [anon_sym_SLASH] = ACTIONS(1596), - [anon_sym_mod] = ACTIONS(1596), - [anon_sym_SLASH_SLASH] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_bit_DASHshl] = ACTIONS(1596), - [anon_sym_bit_DASHshr] = ACTIONS(1596), - [anon_sym_EQ_EQ] = ACTIONS(1596), - [anon_sym_BANG_EQ] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1596), - [anon_sym_GT_EQ] = ACTIONS(1596), - [anon_sym_not_DASHin] = ACTIONS(1596), - [anon_sym_starts_DASHwith] = ACTIONS(1596), - [anon_sym_ends_DASHwith] = ACTIONS(1596), - [anon_sym_EQ_TILDE] = ACTIONS(1596), - [anon_sym_BANG_TILDE] = ACTIONS(1596), - [anon_sym_bit_DASHand] = ACTIONS(1596), - [anon_sym_bit_DASHxor] = ACTIONS(1596), - [anon_sym_bit_DASHor] = ACTIONS(1596), - [anon_sym_and] = ACTIONS(1596), - [anon_sym_xor] = ACTIONS(1596), - [anon_sym_or] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_token1] = ACTIONS(1596), - [aux_sym__val_number_token2] = ACTIONS(1596), - [aux_sym__val_number_token3] = ACTIONS(1596), - [aux_sym__val_number_token4] = ACTIONS(1596), - [aux_sym__val_number_token5] = ACTIONS(1596), - [aux_sym__val_number_token6] = ACTIONS(1596), - [anon_sym_0b] = ACTIONS(1596), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(1596), - [sym__str_single_quotes] = ACTIONS(1596), - [sym__str_back_ticks] = ACTIONS(1596), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1596), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [aux_sym_unquoted_token1] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_LF] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(105), }, [986] = { [sym_comment] = STATE(986), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1426), - [anon_sym_BANG_TILDE] = ACTIONS(1426), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_err_GT] = ACTIONS(1426), - [anon_sym_out_GT] = ACTIONS(1426), - [anon_sym_e_GT] = ACTIONS(1426), - [anon_sym_o_GT] = ACTIONS(1426), - [anon_sym_err_PLUSout_GT] = ACTIONS(1426), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1426), - [anon_sym_o_PLUSe_GT] = ACTIONS(1426), - [anon_sym_e_PLUSo_GT] = ACTIONS(1426), - [aux_sym_unquoted_token1] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_LF] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_in] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_STAR_STAR] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_SLASH_SLASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_bit_DASHshl] = ACTIONS(1524), + [anon_sym_bit_DASHshr] = ACTIONS(1524), + [anon_sym_EQ_EQ] = ACTIONS(1524), + [anon_sym_BANG_EQ] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1524), + [anon_sym_LT_EQ] = ACTIONS(1524), + [anon_sym_GT_EQ] = ACTIONS(1524), + [anon_sym_not_DASHin] = ACTIONS(1524), + [anon_sym_starts_DASHwith] = ACTIONS(1524), + [anon_sym_ends_DASHwith] = ACTIONS(1524), + [anon_sym_EQ_TILDE] = ACTIONS(1524), + [anon_sym_BANG_TILDE] = ACTIONS(1524), + [anon_sym_bit_DASHand] = ACTIONS(1524), + [anon_sym_bit_DASHxor] = ACTIONS(1524), + [anon_sym_bit_DASHor] = ACTIONS(1524), + [anon_sym_and] = ACTIONS(1524), + [anon_sym_xor] = ACTIONS(1524), + [anon_sym_or] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1524), + [aux_sym__val_number_token5] = ACTIONS(1524), + [aux_sym__val_number_token6] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1524), + [anon_sym_0o] = ACTIONS(1524), + [anon_sym_0x] = ACTIONS(1524), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1524), + [anon_sym_out_GT] = ACTIONS(1524), + [anon_sym_e_GT] = ACTIONS(1524), + [anon_sym_o_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT] = ACTIONS(1524), + [aux_sym_unquoted_token1] = ACTIONS(1524), [anon_sym_POUND] = ACTIONS(105), }, [987] = { [sym_comment] = STATE(987), - [ts_builtin_sym_end] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_LF] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT2] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_STAR_STAR] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_bit_DASHshl] = ACTIONS(1501), - [anon_sym_bit_DASHshr] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1501), - [anon_sym_BANG_EQ] = ACTIONS(1501), - [anon_sym_LT2] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1501), - [anon_sym_not_DASHin] = ACTIONS(1501), - [anon_sym_starts_DASHwith] = ACTIONS(1501), - [anon_sym_ends_DASHwith] = ACTIONS(1501), - [anon_sym_EQ_TILDE] = ACTIONS(1501), - [anon_sym_BANG_TILDE] = ACTIONS(1501), - [anon_sym_bit_DASHand] = ACTIONS(1501), - [anon_sym_bit_DASHxor] = ACTIONS(1501), - [anon_sym_bit_DASHor] = ACTIONS(1501), - [anon_sym_and] = ACTIONS(1501), - [anon_sym_xor] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1501), - [aux_sym__val_number_token2] = ACTIONS(1501), - [aux_sym__val_number_token3] = ACTIONS(1501), - [aux_sym__val_number_token4] = ACTIONS(1501), - [aux_sym__val_number_token5] = ACTIONS(1501), - [aux_sym__val_number_token6] = ACTIONS(1501), - [anon_sym_0b] = ACTIONS(1501), - [anon_sym_0o] = ACTIONS(1501), - [anon_sym_0x] = ACTIONS(1501), - [sym_val_date] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), - [anon_sym_err_GT] = ACTIONS(1501), - [anon_sym_out_GT] = ACTIONS(1501), - [anon_sym_e_GT] = ACTIONS(1501), - [anon_sym_o_GT] = ACTIONS(1501), - [anon_sym_err_PLUSout_GT] = ACTIONS(1501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1501), - [anon_sym_o_PLUSe_GT] = ACTIONS(1501), - [anon_sym_e_PLUSo_GT] = ACTIONS(1501), - [aux_sym_unquoted_token1] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_not_DASHin] = ACTIONS(2736), + [anon_sym_starts_DASHwith] = ACTIONS(2736), + [anon_sym_ends_DASHwith] = ACTIONS(2736), + [anon_sym_EQ_TILDE] = ACTIONS(2744), + [anon_sym_BANG_TILDE] = ACTIONS(2744), + [anon_sym_bit_DASHand] = ACTIONS(2746), + [anon_sym_bit_DASHxor] = ACTIONS(2748), + [anon_sym_bit_DASHor] = ACTIONS(2750), + [anon_sym_and] = ACTIONS(2752), + [anon_sym_xor] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2756), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [988] = { [sym_comment] = STATE(988), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_LF] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_in] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_SLASH] = ACTIONS(1650), - [anon_sym_mod] = ACTIONS(1650), - [anon_sym_SLASH_SLASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_bit_DASHshl] = ACTIONS(1650), - [anon_sym_bit_DASHshr] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1650), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_not_DASHin] = ACTIONS(1650), - [anon_sym_starts_DASHwith] = ACTIONS(1650), - [anon_sym_ends_DASHwith] = ACTIONS(1650), - [anon_sym_EQ_TILDE] = ACTIONS(1650), - [anon_sym_BANG_TILDE] = ACTIONS(1650), - [anon_sym_bit_DASHand] = ACTIONS(1650), - [anon_sym_bit_DASHxor] = ACTIONS(1650), - [anon_sym_bit_DASHor] = ACTIONS(1650), - [anon_sym_and] = ACTIONS(1650), - [anon_sym_xor] = ACTIONS(1650), - [anon_sym_or] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1650), - [anon_sym_0o] = ACTIONS(1650), - [anon_sym_0x] = ACTIONS(1650), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1650), - [anon_sym_out_GT] = ACTIONS(1650), - [anon_sym_e_GT] = ACTIONS(1650), - [anon_sym_o_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1679), + [anon_sym_mod] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_bit_DASHshl] = ACTIONS(1679), + [anon_sym_bit_DASHshr] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_not_DASHin] = ACTIONS(1679), + [anon_sym_starts_DASHwith] = ACTIONS(1679), + [anon_sym_ends_DASHwith] = ACTIONS(1679), + [anon_sym_EQ_TILDE] = ACTIONS(1679), + [anon_sym_BANG_TILDE] = ACTIONS(1679), + [anon_sym_bit_DASHand] = ACTIONS(1679), + [anon_sym_bit_DASHxor] = ACTIONS(1679), + [anon_sym_bit_DASHor] = ACTIONS(1679), + [anon_sym_and] = ACTIONS(1679), + [anon_sym_xor] = ACTIONS(1679), + [anon_sym_or] = ACTIONS(1679), + [anon_sym_null] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [aux_sym__val_number_decimal_token1] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(1679), + [aux_sym__val_number_token2] = ACTIONS(1679), + [aux_sym__val_number_token3] = ACTIONS(1679), + [aux_sym__val_number_token4] = ACTIONS(1679), + [aux_sym__val_number_token5] = ACTIONS(1679), + [aux_sym__val_number_token6] = ACTIONS(1679), + [anon_sym_0b] = ACTIONS(1679), + [anon_sym_0o] = ACTIONS(1679), + [anon_sym_0x] = ACTIONS(1679), + [sym_val_date] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [sym__str_single_quotes] = ACTIONS(1679), + [sym__str_back_ticks] = ACTIONS(1679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [aux_sym_unquoted_token1] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(105), }, [989] = { [sym_comment] = STATE(989), - [anon_sym_SEMI] = ACTIONS(1616), - [anon_sym_LF] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_DOLLAR] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_in] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_DOT] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_STAR_STAR] = ACTIONS(1616), - [anon_sym_PLUS_PLUS] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_SLASH_SLASH] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_bit_DASHshl] = ACTIONS(1616), - [anon_sym_bit_DASHshr] = ACTIONS(1616), - [anon_sym_EQ_EQ] = ACTIONS(1616), - [anon_sym_BANG_EQ] = ACTIONS(1616), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ] = ACTIONS(1616), - [anon_sym_GT_EQ] = ACTIONS(1616), - [anon_sym_not_DASHin] = ACTIONS(1616), - [anon_sym_starts_DASHwith] = ACTIONS(1616), - [anon_sym_ends_DASHwith] = ACTIONS(1616), - [anon_sym_EQ_TILDE] = ACTIONS(1616), - [anon_sym_BANG_TILDE] = ACTIONS(1616), - [anon_sym_bit_DASHand] = ACTIONS(1616), - [anon_sym_bit_DASHxor] = ACTIONS(1616), - [anon_sym_bit_DASHor] = ACTIONS(1616), - [anon_sym_and] = ACTIONS(1616), - [anon_sym_xor] = ACTIONS(1616), - [anon_sym_or] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1616), - [aux_sym__val_number_token1] = ACTIONS(1616), - [aux_sym__val_number_token2] = ACTIONS(1616), - [aux_sym__val_number_token3] = ACTIONS(1616), - [aux_sym__val_number_token4] = ACTIONS(1616), - [aux_sym__val_number_token5] = ACTIONS(1616), - [aux_sym__val_number_token6] = ACTIONS(1616), - [anon_sym_0b] = ACTIONS(1616), - [anon_sym_0o] = ACTIONS(1616), - [anon_sym_0x] = ACTIONS(1616), - [sym_val_date] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1616), - [sym__str_single_quotes] = ACTIONS(1616), - [sym__str_back_ticks] = ACTIONS(1616), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1616), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [aux_sym_unquoted_token1] = ACTIONS(1616), + [ts_builtin_sym_end] = ACTIONS(1377), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT2] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_EQ2] = ACTIONS(2758), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token4] = ACTIONS(2679), + [aux_sym_unquoted_token6] = ACTIONS(2681), [anon_sym_POUND] = ACTIONS(105), }, [990] = { [sym_comment] = STATE(990), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1495), - [anon_sym_BANG_TILDE] = ACTIONS(1495), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_err_GT] = ACTIONS(1495), - [anon_sym_out_GT] = ACTIONS(1495), - [anon_sym_e_GT] = ACTIONS(1495), - [anon_sym_o_GT] = ACTIONS(1495), - [anon_sym_err_PLUSout_GT] = ACTIONS(1495), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1495), - [anon_sym_o_PLUSe_GT] = ACTIONS(1495), - [anon_sym_e_PLUSo_GT] = ACTIONS(1495), - [aux_sym_unquoted_token1] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_PIPE] = ACTIONS(1637), + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_in] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1637), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1637), + [anon_sym_mod] = ACTIONS(1637), + [anon_sym_SLASH_SLASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_bit_DASHshl] = ACTIONS(1637), + [anon_sym_bit_DASHshr] = ACTIONS(1637), + [anon_sym_EQ_EQ] = ACTIONS(1637), + [anon_sym_BANG_EQ] = ACTIONS(1637), + [anon_sym_LT2] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1637), + [anon_sym_not_DASHin] = ACTIONS(1637), + [anon_sym_starts_DASHwith] = ACTIONS(1637), + [anon_sym_ends_DASHwith] = ACTIONS(1637), + [anon_sym_EQ_TILDE] = ACTIONS(1637), + [anon_sym_BANG_TILDE] = ACTIONS(1637), + [anon_sym_bit_DASHand] = ACTIONS(1637), + [anon_sym_bit_DASHxor] = ACTIONS(1637), + [anon_sym_bit_DASHor] = ACTIONS(1637), + [anon_sym_and] = ACTIONS(1637), + [anon_sym_xor] = ACTIONS(1637), + [anon_sym_or] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [aux_sym__val_number_decimal_token1] = ACTIONS(1637), + [aux_sym__val_number_token1] = ACTIONS(1637), + [aux_sym__val_number_token2] = ACTIONS(1637), + [aux_sym__val_number_token3] = ACTIONS(1637), + [aux_sym__val_number_token4] = ACTIONS(1637), + [aux_sym__val_number_token5] = ACTIONS(1637), + [aux_sym__val_number_token6] = ACTIONS(1637), + [anon_sym_0b] = ACTIONS(1637), + [anon_sym_0o] = ACTIONS(1637), + [anon_sym_0x] = ACTIONS(1637), + [sym_val_date] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym__str_single_quotes] = ACTIONS(1637), + [sym__str_back_ticks] = ACTIONS(1637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1637), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1637), + [anon_sym_err_GT] = ACTIONS(1637), + [anon_sym_out_GT] = ACTIONS(1637), + [anon_sym_e_GT] = ACTIONS(1637), + [anon_sym_o_GT] = ACTIONS(1637), + [anon_sym_err_PLUSout_GT] = ACTIONS(1637), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), + [anon_sym_o_PLUSe_GT] = ACTIONS(1637), + [anon_sym_e_PLUSo_GT] = ACTIONS(1637), + [aux_sym_unquoted_token1] = ACTIONS(1637), [anon_sym_POUND] = ACTIONS(105), }, [991] = { [sym_comment] = STATE(991), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_RPAREN] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1600), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1600), - [anon_sym_BANG_TILDE] = ACTIONS(1600), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1600), - [aux_sym__val_number_token2] = ACTIONS(1600), - [aux_sym__val_number_token3] = ACTIONS(1600), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1600), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_0b] = ACTIONS(1600), - [anon_sym_0o] = ACTIONS(1600), - [anon_sym_0x] = ACTIONS(1600), - [sym_val_date] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym__str_single_quotes] = ACTIONS(1600), - [sym__str_back_ticks] = ACTIONS(1600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1600), - [anon_sym_err_GT] = ACTIONS(1600), - [anon_sym_out_GT] = ACTIONS(1600), - [anon_sym_e_GT] = ACTIONS(1600), - [anon_sym_o_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT] = ACTIONS(1600), - [aux_sym_unquoted_token1] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_LF] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1663), + [aux_sym__val_number_token2] = ACTIONS(1663), + [aux_sym__val_number_token3] = ACTIONS(1663), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_0b] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(105), }, [992] = { [sym_comment] = STATE(992), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_RPAREN] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1600), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1600), - [anon_sym_BANG_TILDE] = ACTIONS(1600), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1600), - [aux_sym__val_number_token2] = ACTIONS(1600), - [aux_sym__val_number_token3] = ACTIONS(1600), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1600), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_0b] = ACTIONS(1600), - [anon_sym_0o] = ACTIONS(1600), - [anon_sym_0x] = ACTIONS(1600), - [sym_val_date] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym__str_single_quotes] = ACTIONS(1600), - [sym__str_back_ticks] = ACTIONS(1600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1600), - [anon_sym_err_GT] = ACTIONS(1600), - [anon_sym_out_GT] = ACTIONS(1600), - [anon_sym_e_GT] = ACTIONS(1600), - [anon_sym_o_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT] = ACTIONS(1600), - [aux_sym_unquoted_token1] = ACTIONS(1600), + [ts_builtin_sym_end] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_STAR_STAR] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_bit_DASHshl] = ACTIONS(1375), + [anon_sym_bit_DASHshr] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_LT2] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_not_DASHin] = ACTIONS(1375), + [anon_sym_starts_DASHwith] = ACTIONS(1375), + [anon_sym_ends_DASHwith] = ACTIONS(1375), + [anon_sym_EQ_TILDE] = ACTIONS(1375), + [anon_sym_BANG_TILDE] = ACTIONS(1375), + [anon_sym_bit_DASHand] = ACTIONS(1375), + [anon_sym_bit_DASHxor] = ACTIONS(1375), + [anon_sym_bit_DASHor] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_xor] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_err_GT] = ACTIONS(1375), + [anon_sym_out_GT] = ACTIONS(1375), + [anon_sym_e_GT] = ACTIONS(1375), + [anon_sym_o_GT] = ACTIONS(1375), + [anon_sym_err_PLUSout_GT] = ACTIONS(1375), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1375), + [anon_sym_o_PLUSe_GT] = ACTIONS(1375), + [anon_sym_e_PLUSo_GT] = ACTIONS(1375), + [aux_sym_unquoted_token1] = ACTIONS(1375), + [aux_sym_unquoted_token3] = ACTIONS(2170), [anon_sym_POUND] = ACTIONS(105), }, [993] = { + [sym_ctrl_do] = STATE(5086), + [sym_ctrl_if] = STATE(5086), + [sym_ctrl_match] = STATE(5086), + [sym_ctrl_try] = STATE(5086), + [sym__expression] = STATE(5086), + [sym_expr_unary] = STATE(3244), + [sym__expr_unary_minus] = STATE(3248), + [sym_expr_binary] = STATE(3244), + [sym__expr_binary_expression] = STATE(3553), + [sym_expr_parenthesized] = STATE(3074), + [sym_val_range] = STATE(2745), + [sym__value] = STATE(3244), + [sym_val_nothing] = STATE(3230), + [sym_val_bool] = STATE(3230), + [sym_val_variable] = STATE(3053), + [sym__var] = STATE(2955), + [sym_val_number] = STATE(451), + [sym__val_number_decimal] = STATE(408), + [sym__val_number] = STATE(422), + [sym_val_duration] = STATE(3230), + [sym_val_filesize] = STATE(3230), + [sym_val_binary] = STATE(3230), + [sym_val_string] = STATE(3230), + [sym__str_double_quotes] = STATE(3238), + [sym_val_interpolated] = STATE(3230), + [sym__inter_single_quotes] = STATE(3256), + [sym__inter_double_quotes] = STATE(3257), + [sym_val_list] = STATE(3230), + [sym_val_record] = STATE(3230), + [sym_val_table] = STATE(3230), + [sym_val_closure] = STATE(3230), [sym_comment] = STATE(993), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_LF] = ACTIONS(1582), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_DOLLAR] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_DOT] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_STAR_STAR] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [anon_sym_SLASH] = ACTIONS(1580), - [anon_sym_mod] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_bit_DASHshl] = ACTIONS(1580), - [anon_sym_bit_DASHshr] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1580), - [anon_sym_LT2] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_not_DASHin] = ACTIONS(1580), - [anon_sym_starts_DASHwith] = ACTIONS(1580), - [anon_sym_ends_DASHwith] = ACTIONS(1580), - [anon_sym_EQ_TILDE] = ACTIONS(1580), - [anon_sym_BANG_TILDE] = ACTIONS(1580), - [anon_sym_bit_DASHand] = ACTIONS(1580), - [anon_sym_bit_DASHxor] = ACTIONS(1580), - [anon_sym_bit_DASHor] = ACTIONS(1580), - [anon_sym_and] = ACTIONS(1580), - [anon_sym_xor] = ACTIONS(1580), - [anon_sym_or] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [aux_sym__val_number_decimal_token1] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [aux_sym__val_number_token4] = ACTIONS(1580), - [aux_sym__val_number_token5] = ACTIONS(1580), - [aux_sym__val_number_token6] = ACTIONS(1580), - [anon_sym_0b] = ACTIONS(1580), - [anon_sym_0o] = ACTIONS(1580), - [anon_sym_0x] = ACTIONS(1580), - [sym_val_date] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1580), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1580), - [anon_sym_out_GT] = ACTIONS(1580), - [anon_sym_e_GT] = ACTIONS(1580), - [anon_sym_o_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT] = ACTIONS(1580), - [aux_sym_unquoted_token1] = ACTIONS(1580), + [ts_builtin_sym_end] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LF] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_DOT] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_token1] = ACTIONS(89), + [aux_sym__val_number_token2] = ACTIONS(89), + [aux_sym__val_number_token3] = ACTIONS(89), + [aux_sym__val_number_token4] = ACTIONS(89), + [aux_sym__val_number_token5] = ACTIONS(89), + [aux_sym__val_number_token6] = ACTIONS(89), + [anon_sym_0b] = ACTIONS(91), + [anon_sym_0o] = ACTIONS(91), + [anon_sym_0x] = ACTIONS(91), + [sym_val_date] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2772), + [sym__str_single_quotes] = ACTIONS(2774), + [sym__str_back_ticks] = ACTIONS(2774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(105), }, [994] = { [sym_comment] = STATE(994), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LF] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_in] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_STAR_STAR] = ACTIONS(213), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_mod] = ACTIONS(213), - [anon_sym_SLASH_SLASH] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_bit_DASHshl] = ACTIONS(213), - [anon_sym_bit_DASHshr] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_LT2] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_not_DASHin] = ACTIONS(213), - [anon_sym_starts_DASHwith] = ACTIONS(213), - [anon_sym_ends_DASHwith] = ACTIONS(213), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_BANG_TILDE] = ACTIONS(213), - [anon_sym_bit_DASHand] = ACTIONS(213), - [anon_sym_bit_DASHxor] = ACTIONS(213), - [anon_sym_bit_DASHor] = ACTIONS(213), - [anon_sym_and] = ACTIONS(213), - [anon_sym_xor] = ACTIONS(213), - [anon_sym_or] = ACTIONS(213), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(213), - [aux_sym__val_number_token1] = ACTIONS(213), - [aux_sym__val_number_token2] = ACTIONS(213), - [aux_sym__val_number_token3] = ACTIONS(213), - [aux_sym__val_number_token4] = ACTIONS(213), - [aux_sym__val_number_token5] = ACTIONS(213), - [aux_sym__val_number_token6] = ACTIONS(213), - [anon_sym_0b] = ACTIONS(213), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym__str_single_quotes] = ACTIONS(213), - [sym__str_back_ticks] = ACTIONS(213), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), - [anon_sym_err_GT] = ACTIONS(213), - [anon_sym_out_GT] = ACTIONS(213), - [anon_sym_e_GT] = ACTIONS(213), - [anon_sym_o_GT] = ACTIONS(213), - [anon_sym_err_PLUSout_GT] = ACTIONS(213), - [anon_sym_out_PLUSerr_GT] = ACTIONS(213), - [anon_sym_o_PLUSe_GT] = ACTIONS(213), - [anon_sym_e_PLUSo_GT] = ACTIONS(213), - [aux_sym_unquoted_token1] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_LF] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_DOLLAR] = ACTIONS(1595), + [anon_sym_GT] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_in] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_RBRACE] = ACTIONS(1595), + [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_SLASH] = ACTIONS(1595), + [anon_sym_mod] = ACTIONS(1595), + [anon_sym_SLASH_SLASH] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_bit_DASHshl] = ACTIONS(1595), + [anon_sym_bit_DASHshr] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1595), + [anon_sym_BANG_EQ] = ACTIONS(1595), + [anon_sym_LT2] = ACTIONS(1595), + [anon_sym_LT_EQ] = ACTIONS(1595), + [anon_sym_GT_EQ] = ACTIONS(1595), + [anon_sym_not_DASHin] = ACTIONS(1595), + [anon_sym_starts_DASHwith] = ACTIONS(1595), + [anon_sym_ends_DASHwith] = ACTIONS(1595), + [anon_sym_EQ_TILDE] = ACTIONS(1595), + [anon_sym_BANG_TILDE] = ACTIONS(1595), + [anon_sym_bit_DASHand] = ACTIONS(1595), + [anon_sym_bit_DASHxor] = ACTIONS(1595), + [anon_sym_bit_DASHor] = ACTIONS(1595), + [anon_sym_and] = ACTIONS(1595), + [anon_sym_xor] = ACTIONS(1595), + [anon_sym_or] = ACTIONS(1595), + [anon_sym_null] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1595), + [anon_sym_false] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = 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), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [sym__str_single_quotes] = ACTIONS(1595), + [sym__str_back_ticks] = ACTIONS(1595), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1595), + [anon_sym_DOLLAR_DQUOTE] = 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), + [aux_sym_unquoted_token1] = ACTIONS(1595), [anon_sym_POUND] = ACTIONS(105), }, [995] = { [sym_comment] = STATE(995), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_LF] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_RPAREN] = ACTIONS(1658), - [anon_sym_PIPE] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1658), - [anon_sym_GT] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_in] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_STAR_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_mod] = ACTIONS(1658), - [anon_sym_SLASH_SLASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_bit_DASHshl] = ACTIONS(1658), - [anon_sym_bit_DASHshr] = ACTIONS(1658), - [anon_sym_EQ_EQ] = ACTIONS(1658), - [anon_sym_BANG_EQ] = ACTIONS(1658), - [anon_sym_LT2] = ACTIONS(1658), - [anon_sym_LT_EQ] = ACTIONS(1658), - [anon_sym_GT_EQ] = ACTIONS(1658), - [anon_sym_not_DASHin] = ACTIONS(1658), - [anon_sym_starts_DASHwith] = ACTIONS(1658), - [anon_sym_ends_DASHwith] = ACTIONS(1658), - [anon_sym_EQ_TILDE] = ACTIONS(1658), - [anon_sym_BANG_TILDE] = ACTIONS(1658), - [anon_sym_bit_DASHand] = ACTIONS(1658), - [anon_sym_bit_DASHxor] = ACTIONS(1658), - [anon_sym_bit_DASHor] = ACTIONS(1658), - [anon_sym_and] = ACTIONS(1658), - [anon_sym_xor] = ACTIONS(1658), - [anon_sym_or] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [aux_sym__val_number_token4] = ACTIONS(1658), - [aux_sym__val_number_token5] = ACTIONS(1658), - [aux_sym__val_number_token6] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1658), - [anon_sym_0o] = ACTIONS(1658), - [anon_sym_0x] = ACTIONS(1658), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [anon_sym_err_GT] = ACTIONS(1658), - [anon_sym_out_GT] = ACTIONS(1658), - [anon_sym_e_GT] = ACTIONS(1658), - [anon_sym_o_GT] = ACTIONS(1658), - [anon_sym_err_PLUSout_GT] = ACTIONS(1658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1658), - [anon_sym_o_PLUSe_GT] = ACTIONS(1658), - [anon_sym_e_PLUSo_GT] = ACTIONS(1658), - [aux_sym_unquoted_token1] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_LF] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_in] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_STAR_STAR] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_mod] = ACTIONS(1591), + [anon_sym_SLASH_SLASH] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_bit_DASHshl] = ACTIONS(1591), + [anon_sym_bit_DASHshr] = ACTIONS(1591), + [anon_sym_EQ_EQ] = ACTIONS(1591), + [anon_sym_BANG_EQ] = ACTIONS(1591), + [anon_sym_LT2] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_not_DASHin] = ACTIONS(1591), + [anon_sym_starts_DASHwith] = ACTIONS(1591), + [anon_sym_ends_DASHwith] = ACTIONS(1591), + [anon_sym_EQ_TILDE] = ACTIONS(1591), + [anon_sym_BANG_TILDE] = ACTIONS(1591), + [anon_sym_bit_DASHand] = ACTIONS(1591), + [anon_sym_bit_DASHxor] = ACTIONS(1591), + [anon_sym_bit_DASHor] = ACTIONS(1591), + [anon_sym_and] = ACTIONS(1591), + [anon_sym_xor] = ACTIONS(1591), + [anon_sym_or] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1591), + [aux_sym__val_number_token5] = ACTIONS(1591), + [aux_sym__val_number_token6] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1591), + [anon_sym_0o] = ACTIONS(1591), + [anon_sym_0x] = ACTIONS(1591), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1591), + [anon_sym_out_GT] = ACTIONS(1591), + [anon_sym_e_GT] = ACTIONS(1591), + [anon_sym_o_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(105), }, [996] = { [sym_comment] = STATE(996), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_in] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1576), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_STAR_STAR] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1576), - [anon_sym_SLASH] = ACTIONS(1576), - [anon_sym_mod] = ACTIONS(1576), - [anon_sym_SLASH_SLASH] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_bit_DASHshl] = ACTIONS(1576), - [anon_sym_bit_DASHshr] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1576), - [anon_sym_BANG_EQ] = ACTIONS(1576), - [anon_sym_LT2] = ACTIONS(1576), - [anon_sym_LT_EQ] = ACTIONS(1576), - [anon_sym_GT_EQ] = ACTIONS(1576), - [anon_sym_not_DASHin] = ACTIONS(1576), - [anon_sym_starts_DASHwith] = ACTIONS(1576), - [anon_sym_ends_DASHwith] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1576), - [anon_sym_BANG_TILDE] = ACTIONS(1576), - [anon_sym_bit_DASHand] = ACTIONS(1576), - [anon_sym_bit_DASHxor] = ACTIONS(1576), - [anon_sym_bit_DASHor] = ACTIONS(1576), - [anon_sym_and] = ACTIONS(1576), - [anon_sym_xor] = ACTIONS(1576), - [anon_sym_or] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [aux_sym__val_number_decimal_token1] = ACTIONS(1576), - [aux_sym__val_number_token1] = ACTIONS(1576), - [aux_sym__val_number_token2] = ACTIONS(1576), - [aux_sym__val_number_token3] = ACTIONS(1576), - [aux_sym__val_number_token4] = ACTIONS(1576), - [aux_sym__val_number_token5] = ACTIONS(1576), - [aux_sym__val_number_token6] = ACTIONS(1576), - [anon_sym_0b] = ACTIONS(1576), - [anon_sym_0o] = ACTIONS(1576), - [anon_sym_0x] = ACTIONS(1576), - [sym_val_date] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [sym__str_single_quotes] = ACTIONS(1576), - [sym__str_back_ticks] = ACTIONS(1576), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), - [anon_sym_err_GT] = ACTIONS(1576), - [anon_sym_out_GT] = ACTIONS(1576), - [anon_sym_e_GT] = ACTIONS(1576), - [anon_sym_o_GT] = ACTIONS(1576), - [anon_sym_err_PLUSout_GT] = ACTIONS(1576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1576), - [anon_sym_o_PLUSe_GT] = ACTIONS(1576), - [anon_sym_e_PLUSo_GT] = ACTIONS(1576), - [aux_sym_unquoted_token1] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_BANG_TILDE] = ACTIONS(1545), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [aux_sym_unquoted_token1] = ACTIONS(1545), [anon_sym_POUND] = ACTIONS(105), }, [997] = { + [sym__flag] = STATE(1456), + [sym_short_flag] = STATE(1277), + [sym_long_flag] = STATE(1277), [sym_comment] = STATE(997), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_LF] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_in] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_DOT] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_STAR_STAR] = ACTIONS(1612), - [anon_sym_PLUS_PLUS] = ACTIONS(1612), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_SLASH_SLASH] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_bit_DASHshl] = ACTIONS(1612), - [anon_sym_bit_DASHshr] = ACTIONS(1612), - [anon_sym_EQ_EQ] = ACTIONS(1612), - [anon_sym_BANG_EQ] = ACTIONS(1612), - [anon_sym_LT2] = ACTIONS(1612), - [anon_sym_LT_EQ] = ACTIONS(1612), - [anon_sym_GT_EQ] = ACTIONS(1612), - [anon_sym_not_DASHin] = ACTIONS(1612), - [anon_sym_starts_DASHwith] = ACTIONS(1612), - [anon_sym_ends_DASHwith] = ACTIONS(1612), - [anon_sym_EQ_TILDE] = ACTIONS(1612), - [anon_sym_BANG_TILDE] = ACTIONS(1612), - [anon_sym_bit_DASHand] = ACTIONS(1612), - [anon_sym_bit_DASHxor] = ACTIONS(1612), - [anon_sym_bit_DASHor] = ACTIONS(1612), - [anon_sym_and] = ACTIONS(1612), - [anon_sym_xor] = ACTIONS(1612), - [anon_sym_or] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1612), - [aux_sym__val_number_token2] = ACTIONS(1612), - [aux_sym__val_number_token3] = ACTIONS(1612), - [aux_sym__val_number_token4] = ACTIONS(1612), - [aux_sym__val_number_token5] = ACTIONS(1612), - [aux_sym__val_number_token6] = ACTIONS(1612), - [anon_sym_0b] = ACTIONS(1612), - [anon_sym_0o] = ACTIONS(1612), - [anon_sym_0x] = ACTIONS(1612), - [sym_val_date] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__str_single_quotes] = ACTIONS(1612), - [sym__str_back_ticks] = ACTIONS(1612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1612), - [anon_sym_out_GT] = ACTIONS(1612), - [anon_sym_e_GT] = ACTIONS(1612), - [anon_sym_o_GT] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT] = ACTIONS(1612), - [aux_sym_unquoted_token1] = ACTIONS(1612), + [aux_sym_overlay_use_repeat1] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(2724), + [anon_sym_export] = ACTIONS(2722), + [anon_sym_alias] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_let_DASHenv] = ACTIONS(2722), + [anon_sym_mut] = ACTIONS(2722), + [anon_sym_const] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [sym_cmd_identifier] = ACTIONS(2722), + [anon_sym_LF] = ACTIONS(2724), + [anon_sym_def] = ACTIONS(2722), + [anon_sym_export_DASHenv] = ACTIONS(2722), + [anon_sym_extern] = ACTIONS(2722), + [anon_sym_module] = ACTIONS(2722), + [anon_sym_use] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_DOLLAR] = ACTIONS(2722), + [anon_sym_error] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2722), + [anon_sym_break] = ACTIONS(2722), + [anon_sym_continue] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2722), + [anon_sym_loop] = ACTIONS(2722), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(2722), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_DOT] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2722), + [anon_sym_return] = ACTIONS(2722), + [anon_sym_source] = ACTIONS(2722), + [anon_sym_source_DASHenv] = ACTIONS(2722), + [anon_sym_register] = ACTIONS(2722), + [anon_sym_hide] = ACTIONS(2722), + [anon_sym_hide_DASHenv] = ACTIONS(2722), + [anon_sym_overlay] = ACTIONS(2722), + [anon_sym_as] = ACTIONS(2780), + [anon_sym_where] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2722), + [anon_sym_not] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [aux_sym__val_number_decimal_token1] = ACTIONS(2722), + [aux_sym__val_number_token1] = ACTIONS(2722), + [aux_sym__val_number_token2] = ACTIONS(2722), + [aux_sym__val_number_token3] = ACTIONS(2722), + [aux_sym__val_number_token4] = ACTIONS(2722), + [aux_sym__val_number_token5] = ACTIONS(2722), + [aux_sym__val_number_token6] = ACTIONS(2722), + [anon_sym_0b] = ACTIONS(2722), + [anon_sym_0o] = ACTIONS(2722), + [anon_sym_0x] = ACTIONS(2722), + [sym_val_date] = ACTIONS(2722), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2722), + [sym__str_back_ticks] = ACTIONS(2722), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2722), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), + [anon_sym_CARET] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(105), }, [998] = { [sym_comment] = STATE(998), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_LF] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DOLLAR] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_in] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_STAR_STAR] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1568), - [anon_sym_mod] = ACTIONS(1568), - [anon_sym_SLASH_SLASH] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_bit_DASHshl] = ACTIONS(1568), - [anon_sym_bit_DASHshr] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1568), - [anon_sym_BANG_EQ] = ACTIONS(1568), - [anon_sym_LT2] = ACTIONS(1568), - [anon_sym_LT_EQ] = ACTIONS(1568), - [anon_sym_GT_EQ] = ACTIONS(1568), - [anon_sym_not_DASHin] = ACTIONS(1568), - [anon_sym_starts_DASHwith] = ACTIONS(1568), - [anon_sym_ends_DASHwith] = ACTIONS(1568), - [anon_sym_EQ_TILDE] = ACTIONS(1568), - [anon_sym_BANG_TILDE] = ACTIONS(1568), - [anon_sym_bit_DASHand] = ACTIONS(1568), - [anon_sym_bit_DASHxor] = ACTIONS(1568), - [anon_sym_bit_DASHor] = ACTIONS(1568), - [anon_sym_and] = ACTIONS(1568), - [anon_sym_xor] = ACTIONS(1568), - [anon_sym_or] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [aux_sym__val_number_decimal_token1] = ACTIONS(1568), - [aux_sym__val_number_token1] = ACTIONS(1568), - [aux_sym__val_number_token2] = ACTIONS(1568), - [aux_sym__val_number_token3] = ACTIONS(1568), - [aux_sym__val_number_token4] = ACTIONS(1568), - [aux_sym__val_number_token5] = ACTIONS(1568), - [aux_sym__val_number_token6] = ACTIONS(1568), - [anon_sym_0b] = ACTIONS(1568), - [anon_sym_0o] = ACTIONS(1568), - [anon_sym_0x] = ACTIONS(1568), - [sym_val_date] = ACTIONS(1568), - [anon_sym_DQUOTE] = ACTIONS(1568), - [sym__str_single_quotes] = ACTIONS(1568), - [sym__str_back_ticks] = ACTIONS(1568), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1568), - [anon_sym_err_GT] = ACTIONS(1568), - [anon_sym_out_GT] = ACTIONS(1568), - [anon_sym_e_GT] = ACTIONS(1568), - [anon_sym_o_GT] = ACTIONS(1568), - [anon_sym_err_PLUSout_GT] = ACTIONS(1568), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1568), - [anon_sym_o_PLUSe_GT] = ACTIONS(1568), - [anon_sym_e_PLUSo_GT] = ACTIONS(1568), - [aux_sym_unquoted_token1] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_LF] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_in] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_STAR_STAR] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_bit_DASHshl] = ACTIONS(1520), + [anon_sym_bit_DASHshr] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1520), + [anon_sym_BANG_EQ] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1520), + [anon_sym_not_DASHin] = ACTIONS(1520), + [anon_sym_starts_DASHwith] = ACTIONS(1520), + [anon_sym_ends_DASHwith] = ACTIONS(1520), + [anon_sym_EQ_TILDE] = ACTIONS(1520), + [anon_sym_BANG_TILDE] = ACTIONS(1520), + [anon_sym_bit_DASHand] = ACTIONS(1520), + [anon_sym_bit_DASHxor] = ACTIONS(1520), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1520), + [anon_sym_xor] = ACTIONS(1520), + [anon_sym_or] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1520), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1520), + [anon_sym_0x] = ACTIONS(1520), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1520), + [anon_sym_out_GT] = ACTIONS(1520), + [anon_sym_e_GT] = ACTIONS(1520), + [anon_sym_o_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT] = ACTIONS(1520), + [aux_sym_unquoted_token1] = ACTIONS(1520), [anon_sym_POUND] = ACTIONS(105), }, [999] = { + [sym__flag] = STATE(1456), + [sym_short_flag] = STATE(1277), + [sym_long_flag] = STATE(1277), [sym_comment] = STATE(999), + [aux_sym_overlay_use_repeat1] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(2687), + [anon_sym_export] = ACTIONS(2685), + [anon_sym_alias] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_DASHenv] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), + [sym_cmd_identifier] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2687), + [anon_sym_def] = ACTIONS(2685), + [anon_sym_export_DASHenv] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym_module] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_error] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_loop] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_source] = ACTIONS(2685), + [anon_sym_source_DASHenv] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_hide] = ACTIONS(2685), + [anon_sym_hide_DASHenv] = ACTIONS(2685), + [anon_sym_overlay] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2784), + [anon_sym_where] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_true] = ACTIONS(2685), + [anon_sym_false] = ACTIONS(2685), + [aux_sym__val_number_decimal_token1] = ACTIONS(2685), + [aux_sym__val_number_token1] = ACTIONS(2685), + [aux_sym__val_number_token2] = ACTIONS(2685), + [aux_sym__val_number_token3] = ACTIONS(2685), + [aux_sym__val_number_token4] = ACTIONS(2685), + [aux_sym__val_number_token5] = ACTIONS(2685), + [aux_sym__val_number_token6] = ACTIONS(2685), + [anon_sym_0b] = ACTIONS(2685), + [anon_sym_0o] = ACTIONS(2685), + [anon_sym_0x] = ACTIONS(2685), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [sym__str_single_quotes] = ACTIONS(2685), + [sym__str_back_ticks] = ACTIONS(2685), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(105), + }, + [1000] = { + [sym_comment] = STATE(1000), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_LF] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = 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_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = 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(1599), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [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(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(105), + }, + [1001] = { + [sym_comment] = STATE(1001), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_LF] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_in] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_STAR_STAR] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1603), + [anon_sym_mod] = ACTIONS(1603), + [anon_sym_SLASH_SLASH] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_bit_DASHshl] = ACTIONS(1603), + [anon_sym_bit_DASHshr] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1603), + [anon_sym_BANG_EQ] = ACTIONS(1603), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(1603), + [anon_sym_not_DASHin] = ACTIONS(1603), + [anon_sym_starts_DASHwith] = ACTIONS(1603), + [anon_sym_ends_DASHwith] = ACTIONS(1603), + [anon_sym_EQ_TILDE] = ACTIONS(1603), + [anon_sym_BANG_TILDE] = ACTIONS(1603), + [anon_sym_bit_DASHand] = ACTIONS(1603), + [anon_sym_bit_DASHxor] = ACTIONS(1603), + [anon_sym_bit_DASHor] = ACTIONS(1603), + [anon_sym_and] = ACTIONS(1603), + [anon_sym_xor] = ACTIONS(1603), + [anon_sym_or] = ACTIONS(1603), + [anon_sym_null] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1603), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1603), + [aux_sym__val_number_token5] = ACTIONS(1603), + [aux_sym__val_number_token6] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1603), + [anon_sym_0o] = ACTIONS(1603), + [anon_sym_0x] = ACTIONS(1603), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(105), + }, + [1002] = { + [sym_comment] = STATE(1002), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1441), + [anon_sym_BANG_TILDE] = ACTIONS(1441), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [aux_sym_unquoted_token1] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(105), + }, + [1003] = { + [sym_comment] = STATE(1003), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), + }, + [1004] = { + [sym_comment] = STATE(1004), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_STAR_STAR] = ACTIONS(1659), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_SLASH] = ACTIONS(1659), + [anon_sym_mod] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_bit_DASHshl] = ACTIONS(1659), + [anon_sym_bit_DASHshr] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1659), + [anon_sym_BANG_EQ] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1659), + [anon_sym_LT_EQ] = ACTIONS(1659), + [anon_sym_GT_EQ] = ACTIONS(1659), + [anon_sym_not_DASHin] = ACTIONS(1659), + [anon_sym_starts_DASHwith] = ACTIONS(1659), + [anon_sym_ends_DASHwith] = ACTIONS(1659), + [anon_sym_EQ_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(1659), + [anon_sym_bit_DASHand] = ACTIONS(1659), + [anon_sym_bit_DASHxor] = ACTIONS(1659), + [anon_sym_bit_DASHor] = ACTIONS(1659), + [anon_sym_and] = ACTIONS(1659), + [anon_sym_xor] = ACTIONS(1659), + [anon_sym_or] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [aux_sym__val_number_token4] = ACTIONS(1659), + [aux_sym__val_number_token5] = ACTIONS(1659), + [aux_sym__val_number_token6] = ACTIONS(1659), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(105), + }, + [1005] = { + [sym_comment] = STATE(1005), + [ts_builtin_sym_end] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1532), + [anon_sym_BANG_EQ] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1532), + [anon_sym_GT_EQ] = ACTIONS(1532), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1532), + [anon_sym_BANG_TILDE] = ACTIONS(1532), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_err_GT] = ACTIONS(1532), + [anon_sym_out_GT] = ACTIONS(1532), + [anon_sym_e_GT] = ACTIONS(1532), + [anon_sym_o_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT] = ACTIONS(1532), + [aux_sym_unquoted_token1] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(105), + }, + [1006] = { + [sym_comment] = STATE(1006), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1445), + [anon_sym_BANG_TILDE] = ACTIONS(1445), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_err_GT] = ACTIONS(1445), + [anon_sym_out_GT] = ACTIONS(1445), + [anon_sym_e_GT] = ACTIONS(1445), + [anon_sym_o_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT] = ACTIONS(1445), + [aux_sym_unquoted_token1] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(105), + }, + [1007] = { + [sym_comment] = STATE(1007), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1513), + [anon_sym_BANG_TILDE] = ACTIONS(1513), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [aux_sym_unquoted_token1] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(105), + }, + [1008] = { + [sym_comment] = STATE(1008), + [ts_builtin_sym_end] = ACTIONS(1526), [anon_sym_SEMI] = ACTIONS(1524), [anon_sym_LF] = ACTIONS(1526), [anon_sym_LBRACK] = ACTIONS(1524), [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(1524), [anon_sym_PIPE] = ACTIONS(1524), [anon_sym_DOLLAR] = ACTIONS(1524), [anon_sym_GT] = ACTIONS(1524), [anon_sym_DASH] = ACTIONS(1524), [anon_sym_in] = ACTIONS(1524), [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT2] = ACTIONS(1526), [anon_sym_STAR] = ACTIONS(1524), [anon_sym_STAR_STAR] = ACTIONS(1524), [anon_sym_PLUS_PLUS] = ACTIONS(1524), @@ -180289,7915 +183020,7173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1524), [anon_sym_POUND] = ACTIONS(105), }, - [1000] = { - [sym_comment] = STATE(1000), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LF] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_in] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_STAR_STAR] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_mod] = ACTIONS(1664), - [anon_sym_SLASH_SLASH] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_bit_DASHshl] = ACTIONS(1664), - [anon_sym_bit_DASHshr] = ACTIONS(1664), - [anon_sym_EQ_EQ] = ACTIONS(1664), - [anon_sym_BANG_EQ] = ACTIONS(1664), - [anon_sym_LT2] = ACTIONS(1664), - [anon_sym_LT_EQ] = ACTIONS(1664), - [anon_sym_GT_EQ] = ACTIONS(1664), - [anon_sym_not_DASHin] = ACTIONS(1664), - [anon_sym_starts_DASHwith] = ACTIONS(1664), - [anon_sym_ends_DASHwith] = ACTIONS(1664), - [anon_sym_EQ_TILDE] = ACTIONS(1664), - [anon_sym_BANG_TILDE] = ACTIONS(1664), - [anon_sym_bit_DASHand] = ACTIONS(1664), - [anon_sym_bit_DASHxor] = ACTIONS(1664), - [anon_sym_bit_DASHor] = ACTIONS(1664), - [anon_sym_and] = ACTIONS(1664), - [anon_sym_xor] = ACTIONS(1664), - [anon_sym_or] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [aux_sym__val_number_decimal_token1] = ACTIONS(1664), - [aux_sym__val_number_token1] = ACTIONS(1664), - [aux_sym__val_number_token2] = ACTIONS(1664), - [aux_sym__val_number_token3] = ACTIONS(1664), - [aux_sym__val_number_token4] = ACTIONS(1664), - [aux_sym__val_number_token5] = ACTIONS(1664), - [aux_sym__val_number_token6] = ACTIONS(1664), - [anon_sym_0b] = ACTIONS(1664), - [anon_sym_0o] = ACTIONS(1664), - [anon_sym_0x] = ACTIONS(1664), - [sym_val_date] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1664), - [sym__str_single_quotes] = ACTIONS(1664), - [sym__str_back_ticks] = ACTIONS(1664), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1664), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1664), - [anon_sym_err_GT] = ACTIONS(1664), - [anon_sym_out_GT] = ACTIONS(1664), - [anon_sym_e_GT] = ACTIONS(1664), - [anon_sym_o_GT] = ACTIONS(1664), - [anon_sym_err_PLUSout_GT] = ACTIONS(1664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), - [anon_sym_o_PLUSe_GT] = ACTIONS(1664), - [anon_sym_e_PLUSo_GT] = ACTIONS(1664), - [aux_sym_unquoted_token1] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(105), - }, - [1001] = { - [sym_comment] = STATE(1001), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_LF] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_RPAREN] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_in] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_STAR_STAR] = ACTIONS(1584), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_mod] = ACTIONS(1584), - [anon_sym_SLASH_SLASH] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_bit_DASHshl] = ACTIONS(1584), - [anon_sym_bit_DASHshr] = ACTIONS(1584), - [anon_sym_EQ_EQ] = ACTIONS(1584), - [anon_sym_BANG_EQ] = ACTIONS(1584), - [anon_sym_LT2] = ACTIONS(1584), - [anon_sym_LT_EQ] = ACTIONS(1584), - [anon_sym_GT_EQ] = ACTIONS(1584), - [anon_sym_not_DASHin] = ACTIONS(1584), - [anon_sym_starts_DASHwith] = ACTIONS(1584), - [anon_sym_ends_DASHwith] = ACTIONS(1584), - [anon_sym_EQ_TILDE] = ACTIONS(1584), - [anon_sym_BANG_TILDE] = ACTIONS(1584), - [anon_sym_bit_DASHand] = ACTIONS(1584), - [anon_sym_bit_DASHxor] = ACTIONS(1584), - [anon_sym_bit_DASHor] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_xor] = ACTIONS(1584), - [anon_sym_or] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [aux_sym__val_number_decimal_token1] = ACTIONS(1584), - [aux_sym__val_number_token1] = ACTIONS(1584), - [aux_sym__val_number_token2] = ACTIONS(1584), - [aux_sym__val_number_token3] = ACTIONS(1584), - [aux_sym__val_number_token4] = ACTIONS(1584), - [aux_sym__val_number_token5] = ACTIONS(1584), - [aux_sym__val_number_token6] = ACTIONS(1584), - [anon_sym_0b] = ACTIONS(1584), - [anon_sym_0o] = ACTIONS(1584), - [anon_sym_0x] = ACTIONS(1584), - [sym_val_date] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1584), - [sym__str_single_quotes] = ACTIONS(1584), - [sym__str_back_ticks] = ACTIONS(1584), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), - [anon_sym_err_GT] = ACTIONS(1584), - [anon_sym_out_GT] = ACTIONS(1584), - [anon_sym_e_GT] = ACTIONS(1584), - [anon_sym_o_GT] = ACTIONS(1584), - [anon_sym_err_PLUSout_GT] = ACTIONS(1584), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), - [anon_sym_o_PLUSe_GT] = ACTIONS(1584), - [anon_sym_e_PLUSo_GT] = ACTIONS(1584), - [aux_sym_unquoted_token1] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(105), - }, - [1002] = { - [sym_comment] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1495), - [anon_sym_BANG_TILDE] = ACTIONS(1495), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_err_GT] = ACTIONS(1495), - [anon_sym_out_GT] = ACTIONS(1495), - [anon_sym_e_GT] = ACTIONS(1495), - [anon_sym_o_GT] = ACTIONS(1495), - [anon_sym_err_PLUSout_GT] = ACTIONS(1495), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1495), - [anon_sym_o_PLUSe_GT] = ACTIONS(1495), - [anon_sym_e_PLUSo_GT] = ACTIONS(1495), - [aux_sym_unquoted_token1] = ACTIONS(1495), - [aux_sym_unquoted_token5] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(105), - }, - [1003] = { - [sym_comment] = STATE(1003), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_LF] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_STAR_STAR] = ACTIONS(1608), - [anon_sym_PLUS_PLUS] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_SLASH_SLASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_bit_DASHshl] = ACTIONS(1608), - [anon_sym_bit_DASHshr] = ACTIONS(1608), - [anon_sym_EQ_EQ] = ACTIONS(1608), - [anon_sym_BANG_EQ] = ACTIONS(1608), - [anon_sym_LT2] = ACTIONS(1608), - [anon_sym_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1608), - [anon_sym_not_DASHin] = ACTIONS(1608), - [anon_sym_starts_DASHwith] = ACTIONS(1608), - [anon_sym_ends_DASHwith] = ACTIONS(1608), - [anon_sym_EQ_TILDE] = ACTIONS(1608), - [anon_sym_BANG_TILDE] = ACTIONS(1608), - [anon_sym_bit_DASHand] = ACTIONS(1608), - [anon_sym_bit_DASHxor] = ACTIONS(1608), - [anon_sym_bit_DASHor] = ACTIONS(1608), - [anon_sym_and] = ACTIONS(1608), - [anon_sym_xor] = ACTIONS(1608), - [anon_sym_or] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1608), - [aux_sym__val_number_token2] = ACTIONS(1608), - [aux_sym__val_number_token3] = ACTIONS(1608), - [aux_sym__val_number_token4] = ACTIONS(1608), - [aux_sym__val_number_token5] = ACTIONS(1608), - [aux_sym__val_number_token6] = ACTIONS(1608), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym__str_single_quotes] = ACTIONS(1608), - [sym__str_back_ticks] = ACTIONS(1608), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1608), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [aux_sym_unquoted_token1] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(105), - }, - [1004] = { - [sym_comment] = STATE(1004), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_BANG_TILDE] = ACTIONS(1491), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1491), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_0b] = ACTIONS(1491), - [anon_sym_0o] = ACTIONS(1491), - [anon_sym_0x] = ACTIONS(1491), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [anon_sym_err_GT] = ACTIONS(1491), - [anon_sym_out_GT] = ACTIONS(1491), - [anon_sym_e_GT] = ACTIONS(1491), - [anon_sym_o_GT] = ACTIONS(1491), - [anon_sym_err_PLUSout_GT] = ACTIONS(1491), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), - [anon_sym_o_PLUSe_GT] = ACTIONS(1491), - [anon_sym_e_PLUSo_GT] = ACTIONS(1491), - [aux_sym_unquoted_token1] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(105), - }, - [1005] = { - [sym_comment] = STATE(1005), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [anon_sym_BANG_TILDE] = ACTIONS(1454), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_err_GT] = ACTIONS(1454), - [anon_sym_out_GT] = ACTIONS(1454), - [anon_sym_e_GT] = ACTIONS(1454), - [anon_sym_o_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT] = ACTIONS(1454), - [aux_sym_unquoted_token1] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(105), - }, - [1006] = { - [sym_comment] = STATE(1006), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_in] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_STAR_STAR] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_SLASH] = ACTIONS(1668), - [anon_sym_mod] = ACTIONS(1668), - [anon_sym_SLASH_SLASH] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_bit_DASHshl] = ACTIONS(1668), - [anon_sym_bit_DASHshr] = ACTIONS(1668), - [anon_sym_EQ_EQ] = ACTIONS(1668), - [anon_sym_BANG_EQ] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1668), - [anon_sym_LT_EQ] = ACTIONS(1668), - [anon_sym_GT_EQ] = ACTIONS(1668), - [anon_sym_not_DASHin] = ACTIONS(1668), - [anon_sym_starts_DASHwith] = ACTIONS(1668), - [anon_sym_ends_DASHwith] = ACTIONS(1668), - [anon_sym_EQ_TILDE] = ACTIONS(1668), - [anon_sym_BANG_TILDE] = ACTIONS(1668), - [anon_sym_bit_DASHand] = ACTIONS(1668), - [anon_sym_bit_DASHxor] = ACTIONS(1668), - [anon_sym_bit_DASHor] = ACTIONS(1668), - [anon_sym_and] = ACTIONS(1668), - [anon_sym_xor] = ACTIONS(1668), - [anon_sym_or] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1668), - [anon_sym_0o] = ACTIONS(1668), - [anon_sym_0x] = ACTIONS(1668), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1668), - [anon_sym_out_GT] = ACTIONS(1668), - [anon_sym_e_GT] = ACTIONS(1668), - [anon_sym_o_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(105), - }, - [1007] = { - [sym_comment] = STATE(1007), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_LF] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [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_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [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(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(105), - }, - [1008] = { - [sym__flag] = STATE(1439), - [sym_short_flag] = STATE(1441), - [sym_long_flag] = STATE(1441), - [sym_comment] = STATE(1008), - [aux_sym_overlay_use_repeat1] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(2602), - [anon_sym_export] = ACTIONS(2600), - [anon_sym_alias] = ACTIONS(2600), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_let_DASHenv] = ACTIONS(2600), - [anon_sym_mut] = ACTIONS(2600), - [anon_sym_const] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2600), - [sym_cmd_identifier] = ACTIONS(2600), - [anon_sym_LF] = ACTIONS(2602), - [anon_sym_def] = ACTIONS(2600), - [anon_sym_export_DASHenv] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2600), - [anon_sym_module] = ACTIONS(2600), - [anon_sym_use] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_DOLLAR] = ACTIONS(2600), - [anon_sym_error] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_for] = ACTIONS(2600), - [anon_sym_loop] = ACTIONS(2600), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_match] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2600), - [anon_sym_try] = ACTIONS(2600), - [anon_sym_return] = ACTIONS(2600), - [anon_sym_source] = ACTIONS(2600), - [anon_sym_source_DASHenv] = ACTIONS(2600), - [anon_sym_register] = ACTIONS(2600), - [anon_sym_hide] = ACTIONS(2600), - [anon_sym_hide_DASHenv] = ACTIONS(2600), - [anon_sym_overlay] = ACTIONS(2600), - [anon_sym_as] = ACTIONS(2738), - [anon_sym_where] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_null] = ACTIONS(2600), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [aux_sym__val_number_decimal_token1] = ACTIONS(2600), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [aux_sym__val_number_token4] = ACTIONS(2600), - [aux_sym__val_number_token5] = ACTIONS(2600), - [aux_sym__val_number_token6] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(2600), - [anon_sym_0o] = ACTIONS(2600), - [anon_sym_0x] = ACTIONS(2600), - [sym_val_date] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(2600), - [sym__str_single_quotes] = ACTIONS(2600), - [sym__str_back_ticks] = ACTIONS(2600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2600), - [anon_sym_CARET] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(105), - }, [1009] = { [sym_comment] = STATE(1009), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT2] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1010] = { [sym_comment] = STATE(1010), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_mod] = ACTIONS(1647), + [anon_sym_SLASH_SLASH] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_bit_DASHshl] = ACTIONS(1647), + [anon_sym_bit_DASHshr] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_not_DASHin] = ACTIONS(1647), + [anon_sym_starts_DASHwith] = ACTIONS(1647), + [anon_sym_ends_DASHwith] = ACTIONS(1647), + [anon_sym_EQ_TILDE] = ACTIONS(1647), + [anon_sym_BANG_TILDE] = ACTIONS(1647), + [anon_sym_bit_DASHand] = ACTIONS(1647), + [anon_sym_bit_DASHxor] = ACTIONS(1647), + [anon_sym_bit_DASHor] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_xor] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_null] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1647), + [anon_sym_false] = ACTIONS(1647), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_token1] = ACTIONS(1647), + [aux_sym__val_number_token2] = ACTIONS(1647), + [aux_sym__val_number_token3] = ACTIONS(1647), + [aux_sym__val_number_token4] = ACTIONS(1647), + [aux_sym__val_number_token5] = ACTIONS(1647), + [aux_sym__val_number_token6] = ACTIONS(1647), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym__str_single_quotes] = ACTIONS(1647), + [sym__str_back_ticks] = ACTIONS(1647), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [aux_sym_unquoted_token1] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(105), }, [1011] = { [sym_comment] = STATE(1011), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1515), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1515), - [anon_sym_0o] = ACTIONS(1515), - [anon_sym_0x] = ACTIONS(1515), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_err_GT] = ACTIONS(1515), - [anon_sym_out_GT] = ACTIONS(1515), - [anon_sym_e_GT] = ACTIONS(1515), - [anon_sym_o_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT] = ACTIONS(1515), - [aux_sym_unquoted_token1] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1532), + [anon_sym_BANG_EQ] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1532), + [anon_sym_GT_EQ] = ACTIONS(1532), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1532), + [anon_sym_BANG_TILDE] = ACTIONS(1532), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_err_GT] = ACTIONS(1532), + [anon_sym_out_GT] = ACTIONS(1532), + [anon_sym_e_GT] = ACTIONS(1532), + [anon_sym_o_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT] = ACTIONS(1532), + [aux_sym_unquoted_token1] = ACTIONS(1532), [anon_sym_POUND] = ACTIONS(105), }, [1012] = { [sym_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT2] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_EQ2] = ACTIONS(2740), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token4] = ACTIONS(2673), - [aux_sym_unquoted_token6] = ACTIONS(2675), + [ts_builtin_sym_end] = ACTIONS(215), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_DOT2] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(213), + [anon_sym_bit_DASHshr] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_not_DASHin] = ACTIONS(213), + [anon_sym_starts_DASHwith] = ACTIONS(213), + [anon_sym_ends_DASHwith] = ACTIONS(213), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_BANG_TILDE] = ACTIONS(213), + [anon_sym_bit_DASHand] = ACTIONS(213), + [anon_sym_bit_DASHxor] = ACTIONS(213), + [anon_sym_bit_DASHor] = ACTIONS(213), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(213), + [aux_sym__val_number_token2] = ACTIONS(213), + [aux_sym__val_number_token3] = ACTIONS(213), + [aux_sym__val_number_token4] = ACTIONS(213), + [aux_sym__val_number_token5] = ACTIONS(213), + [aux_sym__val_number_token6] = ACTIONS(213), + [anon_sym_0b] = ACTIONS(213), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [sym__str_single_quotes] = ACTIONS(213), + [sym__str_back_ticks] = ACTIONS(213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), + [anon_sym_err_GT] = ACTIONS(213), + [anon_sym_out_GT] = ACTIONS(213), + [anon_sym_e_GT] = ACTIONS(213), + [anon_sym_o_GT] = ACTIONS(213), + [anon_sym_err_PLUSout_GT] = ACTIONS(213), + [anon_sym_out_PLUSerr_GT] = ACTIONS(213), + [anon_sym_o_PLUSe_GT] = ACTIONS(213), + [anon_sym_e_PLUSo_GT] = ACTIONS(213), + [aux_sym_unquoted_token1] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(105), }, [1013] = { [sym_comment] = STATE(1013), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_in] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_DOT] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_STAR_STAR] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_mod] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_bit_DASHshl] = ACTIONS(1611), + [anon_sym_bit_DASHshr] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1611), + [anon_sym_BANG_EQ] = ACTIONS(1611), + [anon_sym_LT2] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1611), + [anon_sym_GT_EQ] = ACTIONS(1611), + [anon_sym_not_DASHin] = ACTIONS(1611), + [anon_sym_starts_DASHwith] = ACTIONS(1611), + [anon_sym_ends_DASHwith] = ACTIONS(1611), + [anon_sym_EQ_TILDE] = ACTIONS(1611), + [anon_sym_BANG_TILDE] = ACTIONS(1611), + [anon_sym_bit_DASHand] = ACTIONS(1611), + [anon_sym_bit_DASHxor] = ACTIONS(1611), + [anon_sym_bit_DASHor] = ACTIONS(1611), + [anon_sym_and] = ACTIONS(1611), + [anon_sym_xor] = ACTIONS(1611), + [anon_sym_or] = ACTIONS(1611), + [anon_sym_null] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1611), + [anon_sym_false] = ACTIONS(1611), + [aux_sym__val_number_decimal_token1] = ACTIONS(1611), + [aux_sym__val_number_token1] = ACTIONS(1611), + [aux_sym__val_number_token2] = ACTIONS(1611), + [aux_sym__val_number_token3] = ACTIONS(1611), + [aux_sym__val_number_token4] = ACTIONS(1611), + [aux_sym__val_number_token5] = ACTIONS(1611), + [aux_sym__val_number_token6] = ACTIONS(1611), + [anon_sym_0b] = ACTIONS(1611), + [anon_sym_0o] = ACTIONS(1611), + [anon_sym_0x] = ACTIONS(1611), + [sym_val_date] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym__str_single_quotes] = ACTIONS(1611), + [sym__str_back_ticks] = ACTIONS(1611), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1611), + [anon_sym_out_GT] = ACTIONS(1611), + [anon_sym_e_GT] = ACTIONS(1611), + [anon_sym_o_GT] = ACTIONS(1611), + [anon_sym_err_PLUSout_GT] = ACTIONS(1611), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1611), + [anon_sym_o_PLUSe_GT] = ACTIONS(1611), + [anon_sym_e_PLUSo_GT] = ACTIONS(1611), + [aux_sym_unquoted_token1] = ACTIONS(1611), [anon_sym_POUND] = ACTIONS(105), }, [1014] = { [sym_comment] = STATE(1014), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_LF] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_DOT] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1633), + [anon_sym_STAR_STAR] = ACTIONS(1633), + [anon_sym_PLUS_PLUS] = ACTIONS(1633), + [anon_sym_SLASH] = ACTIONS(1633), + [anon_sym_mod] = ACTIONS(1633), + [anon_sym_SLASH_SLASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_bit_DASHshl] = ACTIONS(1633), + [anon_sym_bit_DASHshr] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1633), + [anon_sym_BANG_EQ] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_not_DASHin] = ACTIONS(1633), + [anon_sym_starts_DASHwith] = ACTIONS(1633), + [anon_sym_ends_DASHwith] = ACTIONS(1633), + [anon_sym_EQ_TILDE] = ACTIONS(1633), + [anon_sym_BANG_TILDE] = ACTIONS(1633), + [anon_sym_bit_DASHand] = ACTIONS(1633), + [anon_sym_bit_DASHxor] = ACTIONS(1633), + [anon_sym_bit_DASHor] = ACTIONS(1633), + [anon_sym_and] = ACTIONS(1633), + [anon_sym_xor] = ACTIONS(1633), + [anon_sym_or] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(1633), + [anon_sym_0o] = ACTIONS(1633), + [anon_sym_0x] = ACTIONS(1633), + [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), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1633), [anon_sym_POUND] = ACTIONS(105), }, [1015] = { + [sym__flag] = STATE(1456), + [sym_short_flag] = STATE(1277), + [sym_long_flag] = STATE(1277), [sym_comment] = STATE(1015), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_LF] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_DOLLAR] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_STAR_STAR] = ACTIONS(1632), - [anon_sym_PLUS_PLUS] = ACTIONS(1632), - [anon_sym_SLASH] = ACTIONS(1632), - [anon_sym_mod] = ACTIONS(1632), - [anon_sym_SLASH_SLASH] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_bit_DASHshl] = ACTIONS(1632), - [anon_sym_bit_DASHshr] = ACTIONS(1632), - [anon_sym_EQ_EQ] = ACTIONS(1632), - [anon_sym_BANG_EQ] = ACTIONS(1632), - [anon_sym_LT2] = ACTIONS(1632), - [anon_sym_LT_EQ] = ACTIONS(1632), - [anon_sym_GT_EQ] = ACTIONS(1632), - [anon_sym_not_DASHin] = ACTIONS(1632), - [anon_sym_starts_DASHwith] = ACTIONS(1632), - [anon_sym_ends_DASHwith] = ACTIONS(1632), - [anon_sym_EQ_TILDE] = ACTIONS(1632), - [anon_sym_BANG_TILDE] = ACTIONS(1632), - [anon_sym_bit_DASHand] = ACTIONS(1632), - [anon_sym_bit_DASHxor] = ACTIONS(1632), - [anon_sym_bit_DASHor] = ACTIONS(1632), - [anon_sym_and] = ACTIONS(1632), - [anon_sym_xor] = ACTIONS(1632), - [anon_sym_or] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [aux_sym__val_number_decimal_token1] = ACTIONS(1632), - [aux_sym__val_number_token1] = ACTIONS(1632), - [aux_sym__val_number_token2] = ACTIONS(1632), - [aux_sym__val_number_token3] = ACTIONS(1632), - [aux_sym__val_number_token4] = ACTIONS(1632), - [aux_sym__val_number_token5] = ACTIONS(1632), - [aux_sym__val_number_token6] = ACTIONS(1632), - [anon_sym_0b] = ACTIONS(1632), - [anon_sym_0o] = ACTIONS(1632), - [anon_sym_0x] = ACTIONS(1632), - [sym_val_date] = ACTIONS(1632), - [anon_sym_DQUOTE] = ACTIONS(1632), - [sym__str_single_quotes] = ACTIONS(1632), - [sym__str_back_ticks] = ACTIONS(1632), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1632), - [anon_sym_err_GT] = ACTIONS(1632), - [anon_sym_out_GT] = ACTIONS(1632), - [anon_sym_e_GT] = ACTIONS(1632), - [anon_sym_o_GT] = ACTIONS(1632), - [anon_sym_err_PLUSout_GT] = ACTIONS(1632), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), - [anon_sym_o_PLUSe_GT] = ACTIONS(1632), - [anon_sym_e_PLUSo_GT] = ACTIONS(1632), - [aux_sym_unquoted_token1] = ACTIONS(1632), + [aux_sym_overlay_use_repeat1] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(2711), + [anon_sym_export] = ACTIONS(2709), + [anon_sym_alias] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_let_DASHenv] = ACTIONS(2709), + [anon_sym_mut] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2709), + [sym_cmd_identifier] = ACTIONS(2709), + [anon_sym_LF] = ACTIONS(2711), + [anon_sym_def] = ACTIONS(2709), + [anon_sym_export_DASHenv] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_module] = ACTIONS(2709), + [anon_sym_use] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2709), + [anon_sym_error] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_loop] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_DOT] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_source] = ACTIONS(2709), + [anon_sym_source_DASHenv] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_hide] = ACTIONS(2709), + [anon_sym_hide_DASHenv] = ACTIONS(2709), + [anon_sym_overlay] = ACTIONS(2709), + [anon_sym_as] = ACTIONS(2709), + [anon_sym_where] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_null] = ACTIONS(2709), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [aux_sym__val_number_decimal_token1] = ACTIONS(2709), + [aux_sym__val_number_token1] = ACTIONS(2709), + [aux_sym__val_number_token2] = ACTIONS(2709), + [aux_sym__val_number_token3] = ACTIONS(2709), + [aux_sym__val_number_token4] = ACTIONS(2709), + [aux_sym__val_number_token5] = ACTIONS(2709), + [aux_sym__val_number_token6] = ACTIONS(2709), + [anon_sym_0b] = ACTIONS(2709), + [anon_sym_0o] = ACTIONS(2709), + [anon_sym_0x] = ACTIONS(2709), + [sym_val_date] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2709), + [sym__str_single_quotes] = ACTIONS(2709), + [sym__str_back_ticks] = ACTIONS(2709), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2709), + [anon_sym_CARET] = ACTIONS(2709), [anon_sym_POUND] = ACTIONS(105), }, [1016] = { [sym_comment] = STATE(1016), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT2] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_not_DASHin] = ACTIONS(2689), - [anon_sym_starts_DASHwith] = ACTIONS(2689), - [anon_sym_ends_DASHwith] = ACTIONS(2689), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1017] = { [sym_comment] = STATE(1017), - [ts_builtin_sym_end] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_DOT2] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1515), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1515), - [anon_sym_0o] = ACTIONS(1515), - [anon_sym_0x] = ACTIONS(1515), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_err_GT] = ACTIONS(1515), - [anon_sym_out_GT] = ACTIONS(1515), - [anon_sym_e_GT] = ACTIONS(1515), - [anon_sym_o_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT] = ACTIONS(1515), - [aux_sym_unquoted_token1] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(1619), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1619), + [anon_sym_BANG_TILDE] = ACTIONS(1619), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1619), + [anon_sym_0o] = ACTIONS(1619), + [anon_sym_0x] = ACTIONS(1619), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1619), + [anon_sym_out_GT] = ACTIONS(1619), + [anon_sym_e_GT] = ACTIONS(1619), + [anon_sym_o_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [aux_sym_unquoted_token1] = ACTIONS(1619), [anon_sym_POUND] = ACTIONS(105), }, [1018] = { [sym_comment] = STATE(1018), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_not_DASHin] = ACTIONS(2736), + [anon_sym_starts_DASHwith] = ACTIONS(2736), + [anon_sym_ends_DASHwith] = ACTIONS(2736), + [anon_sym_EQ_TILDE] = ACTIONS(2744), + [anon_sym_BANG_TILDE] = ACTIONS(2744), + [anon_sym_bit_DASHand] = ACTIONS(2746), + [anon_sym_bit_DASHxor] = ACTIONS(2748), + [anon_sym_bit_DASHor] = ACTIONS(2750), + [anon_sym_and] = ACTIONS(2752), + [anon_sym_xor] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1019] = { - [sym__flag] = STATE(1439), - [sym_short_flag] = STATE(1441), - [sym_long_flag] = STATE(1441), [sym_comment] = STATE(1019), - [aux_sym_overlay_use_repeat1] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(2633), - [anon_sym_export] = ACTIONS(2631), - [anon_sym_alias] = ACTIONS(2631), - [anon_sym_let] = ACTIONS(2631), - [anon_sym_let_DASHenv] = ACTIONS(2631), - [anon_sym_mut] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2631), - [sym_cmd_identifier] = ACTIONS(2631), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_def] = ACTIONS(2631), - [anon_sym_export_DASHenv] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym_module] = ACTIONS(2631), - [anon_sym_use] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_DOLLAR] = ACTIONS(2631), - [anon_sym_error] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_loop] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_source] = ACTIONS(2631), - [anon_sym_source_DASHenv] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_hide] = ACTIONS(2631), - [anon_sym_hide_DASHenv] = ACTIONS(2631), - [anon_sym_overlay] = ACTIONS(2631), - [anon_sym_as] = ACTIONS(2742), - [anon_sym_where] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2631), - [anon_sym_true] = ACTIONS(2631), - [anon_sym_false] = ACTIONS(2631), - [aux_sym__val_number_decimal_token1] = ACTIONS(2631), - [aux_sym__val_number_token1] = ACTIONS(2631), - [aux_sym__val_number_token2] = ACTIONS(2631), - [aux_sym__val_number_token3] = ACTIONS(2631), - [aux_sym__val_number_token4] = ACTIONS(2631), - [aux_sym__val_number_token5] = ACTIONS(2631), - [aux_sym__val_number_token6] = ACTIONS(2631), - [anon_sym_0b] = ACTIONS(2631), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym__str_single_quotes] = ACTIONS(2631), - [sym__str_back_ticks] = ACTIONS(2631), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2631), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2631), - [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1020] = { [sym_comment] = STATE(1020), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_BANG_TILDE] = ACTIONS(1545), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [aux_sym_unquoted_token1] = ACTIONS(1545), + [aux_sym_unquoted_token5] = ACTIONS(2791), [anon_sym_POUND] = ACTIONS(105), }, [1021] = { [sym_comment] = STATE(1021), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_SLASH] = ACTIONS(1625), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT_EQ] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1625), + [anon_sym_0x] = ACTIONS(1625), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(105), }, [1022] = { [sym_comment] = STATE(1022), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(1528), - [anon_sym_mod] = ACTIONS(1528), - [anon_sym_SLASH_SLASH] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_LF] = ACTIONS(1653), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_STAR_STAR] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(1651), + [anon_sym_mod] = ACTIONS(1651), + [anon_sym_SLASH_SLASH] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_bit_DASHshl] = ACTIONS(1651), + [anon_sym_bit_DASHshr] = ACTIONS(1651), + [anon_sym_EQ_EQ] = ACTIONS(1651), + [anon_sym_BANG_EQ] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ] = ACTIONS(1651), + [anon_sym_GT_EQ] = ACTIONS(1651), + [anon_sym_not_DASHin] = ACTIONS(1651), + [anon_sym_starts_DASHwith] = ACTIONS(1651), + [anon_sym_ends_DASHwith] = ACTIONS(1651), + [anon_sym_EQ_TILDE] = ACTIONS(1651), + [anon_sym_BANG_TILDE] = ACTIONS(1651), + [anon_sym_bit_DASHand] = ACTIONS(1651), + [anon_sym_bit_DASHxor] = ACTIONS(1651), + [anon_sym_bit_DASHor] = ACTIONS(1651), + [anon_sym_and] = ACTIONS(1651), + [anon_sym_xor] = ACTIONS(1651), + [anon_sym_or] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1651), + [anon_sym_out_GT] = ACTIONS(1651), + [anon_sym_e_GT] = ACTIONS(1651), + [anon_sym_o_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT] = ACTIONS(1651), + [aux_sym_unquoted_token1] = ACTIONS(1651), [anon_sym_POUND] = ACTIONS(105), }, [1023] = { [sym_comment] = STATE(1023), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1513), + [anon_sym_BANG_TILDE] = ACTIONS(1513), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [aux_sym_unquoted_token1] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(105), }, [1024] = { + [sym__flag] = STATE(1456), + [sym_short_flag] = STATE(1277), + [sym_long_flag] = STATE(1277), [sym_comment] = STATE(1024), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_overlay_use_repeat1] = STATE(997), + [ts_builtin_sym_end] = ACTIONS(2703), + [anon_sym_export] = ACTIONS(2701), + [anon_sym_alias] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_let_DASHenv] = ACTIONS(2701), + [anon_sym_mut] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2701), + [sym_cmd_identifier] = ACTIONS(2701), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_def] = ACTIONS(2701), + [anon_sym_export_DASHenv] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym_module] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2701), + [anon_sym_error] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_loop] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_source] = ACTIONS(2701), + [anon_sym_source_DASHenv] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_hide] = ACTIONS(2701), + [anon_sym_hide_DASHenv] = ACTIONS(2701), + [anon_sym_overlay] = ACTIONS(2701), + [anon_sym_as] = ACTIONS(2793), + [anon_sym_where] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [aux_sym__val_number_decimal_token1] = ACTIONS(2701), + [aux_sym__val_number_token1] = ACTIONS(2701), + [aux_sym__val_number_token2] = ACTIONS(2701), + [aux_sym__val_number_token3] = ACTIONS(2701), + [aux_sym__val_number_token4] = ACTIONS(2701), + [aux_sym__val_number_token5] = ACTIONS(2701), + [aux_sym__val_number_token6] = ACTIONS(2701), + [anon_sym_0b] = ACTIONS(2701), + [anon_sym_0o] = ACTIONS(2701), + [anon_sym_0x] = ACTIONS(2701), + [sym_val_date] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2701), + [sym__str_back_ticks] = ACTIONS(2701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2701), [anon_sym_POUND] = ACTIONS(105), }, [1025] = { [sym_comment] = STATE(1025), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1475), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1475), - [anon_sym_out_GT] = ACTIONS(1475), - [anon_sym_e_GT] = ACTIONS(1475), - [anon_sym_o_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(1619), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1619), + [anon_sym_BANG_TILDE] = ACTIONS(1619), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1619), + [anon_sym_0o] = ACTIONS(1619), + [anon_sym_0x] = ACTIONS(1619), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1619), + [anon_sym_out_GT] = ACTIONS(1619), + [anon_sym_e_GT] = ACTIONS(1619), + [anon_sym_o_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [aux_sym_unquoted_token1] = ACTIONS(1619), [anon_sym_POUND] = ACTIONS(105), }, [1026] = { [sym_comment] = STATE(1026), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_LF] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = 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_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_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(1607), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [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(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(105), }, [1027] = { [sym_comment] = STATE(1027), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_LF] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_DOT] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = 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_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = 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(1687), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [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(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(105), }, [1028] = { [sym_comment] = STATE(1028), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT2] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_not_DASHin] = ACTIONS(2689), - [anon_sym_starts_DASHwith] = ACTIONS(2689), - [anon_sym_ends_DASHwith] = ACTIONS(2689), - [anon_sym_EQ_TILDE] = ACTIONS(2697), - [anon_sym_BANG_TILDE] = ACTIONS(2697), - [anon_sym_bit_DASHand] = ACTIONS(2744), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1536), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [aux_sym_unquoted_token1] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(105), }, [1029] = { [sym_comment] = STATE(1029), - [ts_builtin_sym_end] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT2] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_BANG_TILDE] = ACTIONS(1507), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1507), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_0b] = ACTIONS(1507), - [anon_sym_0o] = ACTIONS(1507), - [anon_sym_0x] = ACTIONS(1507), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_err_GT] = ACTIONS(1507), - [anon_sym_out_GT] = ACTIONS(1507), - [anon_sym_e_GT] = ACTIONS(1507), - [anon_sym_o_GT] = ACTIONS(1507), - [anon_sym_err_PLUSout_GT] = ACTIONS(1507), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1507), - [anon_sym_o_PLUSe_GT] = ACTIONS(1507), - [anon_sym_e_PLUSo_GT] = ACTIONS(1507), - [aux_sym_unquoted_token1] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(105), - }, - [1030] = { - [sym_comment] = STATE(1030), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [1031] = { - [sym_comment] = STATE(1031), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT2] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_not_DASHin] = ACTIONS(2689), - [anon_sym_starts_DASHwith] = ACTIONS(2689), - [anon_sym_ends_DASHwith] = ACTIONS(2689), - [anon_sym_EQ_TILDE] = ACTIONS(2697), - [anon_sym_BANG_TILDE] = ACTIONS(2697), - [anon_sym_bit_DASHand] = ACTIONS(2744), - [anon_sym_bit_DASHxor] = ACTIONS(2746), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [1032] = { - [sym_comment] = STATE(1032), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [1033] = { - [sym_comment] = STATE(1033), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT2] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_not_DASHin] = ACTIONS(2689), - [anon_sym_starts_DASHwith] = ACTIONS(2689), - [anon_sym_ends_DASHwith] = ACTIONS(2689), - [anon_sym_EQ_TILDE] = ACTIONS(2697), - [anon_sym_BANG_TILDE] = ACTIONS(2697), - [anon_sym_bit_DASHand] = ACTIONS(2744), - [anon_sym_bit_DASHxor] = ACTIONS(2746), - [anon_sym_bit_DASHor] = ACTIONS(2748), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [1034] = { - [sym_comment] = STATE(1034), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [1035] = { - [sym_comment] = STATE(1035), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT2] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_not_DASHin] = ACTIONS(2689), - [anon_sym_starts_DASHwith] = ACTIONS(2689), - [anon_sym_ends_DASHwith] = ACTIONS(2689), - [anon_sym_EQ_TILDE] = ACTIONS(2697), - [anon_sym_BANG_TILDE] = ACTIONS(2697), - [anon_sym_bit_DASHand] = ACTIONS(2744), - [anon_sym_bit_DASHxor] = ACTIONS(2746), - [anon_sym_bit_DASHor] = ACTIONS(2748), - [anon_sym_and] = ACTIONS(2750), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [1036] = { - [sym_comment] = STATE(1036), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [1037] = { - [sym_comment] = STATE(1037), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT2] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_not_DASHin] = ACTIONS(2689), - [anon_sym_starts_DASHwith] = ACTIONS(2689), - [anon_sym_ends_DASHwith] = ACTIONS(2689), - [anon_sym_EQ_TILDE] = ACTIONS(2697), - [anon_sym_BANG_TILDE] = ACTIONS(2697), - [anon_sym_bit_DASHand] = ACTIONS(2744), - [anon_sym_bit_DASHxor] = ACTIONS(2746), - [anon_sym_bit_DASHor] = ACTIONS(2748), - [anon_sym_and] = ACTIONS(2750), - [anon_sym_xor] = ACTIONS(2752), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [1038] = { - [sym_comment] = STATE(1038), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [1039] = { - [sym_comment] = STATE(1039), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), - }, - [1040] = { - [sym_comment] = STATE(1040), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_bit_DASHshl] = ACTIONS(2695), - [anon_sym_bit_DASHshr] = ACTIONS(2695), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT2] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_not_DASHin] = ACTIONS(2689), - [anon_sym_starts_DASHwith] = ACTIONS(2689), - [anon_sym_ends_DASHwith] = ACTIONS(2689), - [anon_sym_EQ_TILDE] = ACTIONS(2697), - [anon_sym_BANG_TILDE] = ACTIONS(2697), - [anon_sym_bit_DASHand] = ACTIONS(2744), - [anon_sym_bit_DASHxor] = ACTIONS(2746), - [anon_sym_bit_DASHor] = ACTIONS(2748), - [anon_sym_and] = ACTIONS(2750), - [anon_sym_xor] = ACTIONS(2752), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [1041] = { - [sym_cell_path] = STATE(1419), - [sym_path] = STATE(1082), - [sym_comment] = STATE(1041), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_alias] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_let_DASHenv] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [sym_cmd_identifier] = ACTIONS(1422), - [anon_sym_LF] = ACTIONS(1424), - [anon_sym_def] = ACTIONS(1422), - [anon_sym_export_DASHenv] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_RPAREN] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_error] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT2] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_source] = ACTIONS(1422), - [anon_sym_source_DASHenv] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_hide] = ACTIONS(1422), - [anon_sym_hide_DASHenv] = ACTIONS(1422), - [anon_sym_overlay] = ACTIONS(1422), - [anon_sym_where] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_not] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [aux_sym__val_number_decimal_token1] = ACTIONS(1422), - [aux_sym__val_number_token1] = ACTIONS(1422), - [aux_sym__val_number_token2] = ACTIONS(1422), - [aux_sym__val_number_token3] = ACTIONS(1422), - [aux_sym__val_number_token4] = ACTIONS(1422), - [aux_sym__val_number_token5] = ACTIONS(1422), - [aux_sym__val_number_token6] = ACTIONS(1422), - [anon_sym_0b] = ACTIONS(1422), - [anon_sym_0o] = ACTIONS(1422), - [anon_sym_0x] = ACTIONS(1422), - [sym_val_date] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym__str_single_quotes] = ACTIONS(1422), - [sym__str_back_ticks] = ACTIONS(1422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(105), - }, - [1042] = { + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_in] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_STAR_STAR] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_SLASH_SLASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_bit_DASHshl] = ACTIONS(213), + [anon_sym_bit_DASHshr] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_LT2] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_not_DASHin] = ACTIONS(213), + [anon_sym_starts_DASHwith] = ACTIONS(213), + [anon_sym_ends_DASHwith] = ACTIONS(213), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_BANG_TILDE] = ACTIONS(213), + [anon_sym_bit_DASHand] = ACTIONS(213), + [anon_sym_bit_DASHxor] = ACTIONS(213), + [anon_sym_bit_DASHor] = ACTIONS(213), + [anon_sym_and] = ACTIONS(213), + [anon_sym_xor] = ACTIONS(213), + [anon_sym_or] = ACTIONS(213), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(213), + [aux_sym__val_number_token1] = ACTIONS(213), + [aux_sym__val_number_token2] = ACTIONS(213), + [aux_sym__val_number_token3] = ACTIONS(213), + [aux_sym__val_number_token4] = ACTIONS(213), + [aux_sym__val_number_token5] = ACTIONS(213), + [aux_sym__val_number_token6] = ACTIONS(213), + [anon_sym_0b] = ACTIONS(213), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [sym__str_single_quotes] = ACTIONS(213), + [sym__str_back_ticks] = ACTIONS(213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(213), + [anon_sym_err_GT] = ACTIONS(213), + [anon_sym_out_GT] = ACTIONS(213), + [anon_sym_e_GT] = ACTIONS(213), + [anon_sym_o_GT] = ACTIONS(213), + [anon_sym_err_PLUSout_GT] = ACTIONS(213), + [anon_sym_out_PLUSerr_GT] = ACTIONS(213), + [anon_sym_o_PLUSe_GT] = ACTIONS(213), + [anon_sym_e_PLUSo_GT] = ACTIONS(213), + [aux_sym_unquoted_token1] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(105), + }, + [1030] = { + [sym_comment] = STATE(1030), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_LF] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1675), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT_EQ] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = 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(1675), + [anon_sym_0o] = ACTIONS(1675), + [anon_sym_0x] = ACTIONS(1675), + [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(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(105), + }, + [1031] = { + [sym_comment] = STATE(1031), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_DOT] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT2] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT_EQ] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1691), + [anon_sym_0x] = ACTIONS(1691), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1691), + [anon_sym_out_GT] = ACTIONS(1691), + [anon_sym_e_GT] = ACTIONS(1691), + [anon_sym_o_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT] = ACTIONS(1691), + [aux_sym_unquoted_token1] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(105), + }, + [1032] = { + [sym_comment] = STATE(1032), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_not_DASHin] = ACTIONS(2736), + [anon_sym_starts_DASHwith] = ACTIONS(2736), + [anon_sym_ends_DASHwith] = ACTIONS(2736), + [anon_sym_EQ_TILDE] = ACTIONS(2744), + [anon_sym_BANG_TILDE] = ACTIONS(2744), + [anon_sym_bit_DASHand] = ACTIONS(2746), + [anon_sym_bit_DASHxor] = ACTIONS(2748), + [anon_sym_bit_DASHor] = ACTIONS(2750), + [anon_sym_and] = ACTIONS(2752), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), + }, + [1033] = { + [sym_comment] = STATE(1033), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_LF] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1587), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1587), + [anon_sym_0x] = ACTIONS(1587), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = 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), + [aux_sym_unquoted_token1] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(105), + }, + [1034] = { + [sym_comment] = STATE(1034), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_LF] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1641), + [anon_sym_GT] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_STAR_STAR] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1641), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_mod] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_bit_DASHshl] = ACTIONS(1641), + [anon_sym_bit_DASHshr] = ACTIONS(1641), + [anon_sym_EQ_EQ] = ACTIONS(1641), + [anon_sym_BANG_EQ] = ACTIONS(1641), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ] = ACTIONS(1641), + [anon_sym_GT_EQ] = ACTIONS(1641), + [anon_sym_not_DASHin] = ACTIONS(1641), + [anon_sym_starts_DASHwith] = ACTIONS(1641), + [anon_sym_ends_DASHwith] = ACTIONS(1641), + [anon_sym_EQ_TILDE] = ACTIONS(1641), + [anon_sym_BANG_TILDE] = ACTIONS(1641), + [anon_sym_bit_DASHand] = ACTIONS(1641), + [anon_sym_bit_DASHxor] = ACTIONS(1641), + [anon_sym_bit_DASHor] = ACTIONS(1641), + [anon_sym_and] = ACTIONS(1641), + [anon_sym_xor] = ACTIONS(1641), + [anon_sym_or] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [aux_sym__val_number_token4] = ACTIONS(1641), + [aux_sym__val_number_token5] = ACTIONS(1641), + [aux_sym__val_number_token6] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1641), + [anon_sym_0x] = ACTIONS(1641), + [sym_val_date] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [aux_sym_unquoted_token1] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(105), + }, + [1035] = { + [sym_comment] = STATE(1035), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LF] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [aux_sym__val_number_token4] = ACTIONS(1540), + [aux_sym__val_number_token5] = ACTIONS(1540), + [aux_sym__val_number_token6] = ACTIONS(1540), + [anon_sym_0b] = ACTIONS(1540), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(105), + }, + [1036] = { + [sym_comment] = STATE(1036), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), + }, + [1037] = { + [sym_comment] = STATE(1037), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_LF] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_STAR_STAR] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_SLASH_SLASH] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_bit_DASHshl] = ACTIONS(1667), + [anon_sym_bit_DASHshr] = ACTIONS(1667), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1667), + [anon_sym_GT_EQ] = ACTIONS(1667), + [anon_sym_not_DASHin] = ACTIONS(1667), + [anon_sym_starts_DASHwith] = ACTIONS(1667), + [anon_sym_ends_DASHwith] = ACTIONS(1667), + [anon_sym_EQ_TILDE] = ACTIONS(1667), + [anon_sym_BANG_TILDE] = ACTIONS(1667), + [anon_sym_bit_DASHand] = ACTIONS(1667), + [anon_sym_bit_DASHxor] = ACTIONS(1667), + [anon_sym_bit_DASHor] = ACTIONS(1667), + [anon_sym_and] = ACTIONS(1667), + [anon_sym_xor] = ACTIONS(1667), + [anon_sym_or] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = 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), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1667), + [anon_sym_DOLLAR_DQUOTE] = 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), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(105), + }, + [1038] = { + [sym_comment] = STATE(1038), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_LF] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1683), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1683), + [anon_sym_0x] = ACTIONS(1683), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1683), + [anon_sym_out_GT] = ACTIONS(1683), + [anon_sym_e_GT] = ACTIONS(1683), + [anon_sym_o_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(105), + }, + [1039] = { + [sym_comment] = STATE(1039), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DOT] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_SLASH] = ACTIONS(1671), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1671), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1671), + [anon_sym_0x] = ACTIONS(1671), + [sym_val_date] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [sym__str_single_quotes] = ACTIONS(1671), + [sym__str_back_ticks] = ACTIONS(1671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1671), + [anon_sym_out_GT] = ACTIONS(1671), + [anon_sym_e_GT] = ACTIONS(1671), + [anon_sym_o_GT] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT] = ACTIONS(1671), + [aux_sym_unquoted_token1] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(105), + }, + [1040] = { + [sym_comment] = STATE(1040), + [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), + [anon_sym_SEMI] = ACTIONS(1445), + [sym_cmd_identifier] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [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(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_DASH] = 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(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT2] = ACTIONS(2795), + [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_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_not] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(2797), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(2799), + [anon_sym_POUND] = ACTIONS(105), + }, + [1041] = { + [sym_comment] = STATE(1041), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), + }, + [1042] = { [sym_comment] = STATE(1042), - [ts_builtin_sym_end] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_in] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_STAR_STAR] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1576), - [anon_sym_SLASH] = ACTIONS(1576), - [anon_sym_mod] = ACTIONS(1576), - [anon_sym_SLASH_SLASH] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_bit_DASHshl] = ACTIONS(1576), - [anon_sym_bit_DASHshr] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1576), - [anon_sym_BANG_EQ] = ACTIONS(1576), - [anon_sym_LT2] = ACTIONS(1576), - [anon_sym_LT_EQ] = ACTIONS(1576), - [anon_sym_GT_EQ] = ACTIONS(1576), - [anon_sym_not_DASHin] = ACTIONS(1576), - [anon_sym_starts_DASHwith] = ACTIONS(1576), - [anon_sym_ends_DASHwith] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1576), - [anon_sym_BANG_TILDE] = ACTIONS(1576), - [anon_sym_bit_DASHand] = ACTIONS(1576), - [anon_sym_bit_DASHxor] = ACTIONS(1576), - [anon_sym_bit_DASHor] = ACTIONS(1576), - [anon_sym_and] = ACTIONS(1576), - [anon_sym_xor] = ACTIONS(1576), - [anon_sym_or] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [aux_sym__val_number_decimal_token1] = ACTIONS(1576), - [aux_sym__val_number_token1] = ACTIONS(1576), - [aux_sym__val_number_token2] = ACTIONS(1576), - [aux_sym__val_number_token3] = ACTIONS(1576), - [aux_sym__val_number_token4] = ACTIONS(1576), - [aux_sym__val_number_token5] = ACTIONS(1576), - [aux_sym__val_number_token6] = ACTIONS(1576), - [anon_sym_0b] = ACTIONS(1576), - [anon_sym_0o] = ACTIONS(1576), - [anon_sym_0x] = ACTIONS(1576), - [sym_val_date] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [sym__str_single_quotes] = ACTIONS(1576), - [sym__str_back_ticks] = ACTIONS(1576), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), - [anon_sym_err_GT] = ACTIONS(1576), - [anon_sym_out_GT] = ACTIONS(1576), - [anon_sym_e_GT] = ACTIONS(1576), - [anon_sym_o_GT] = ACTIONS(1576), - [anon_sym_err_PLUSout_GT] = ACTIONS(1576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1576), - [anon_sym_o_PLUSe_GT] = ACTIONS(1576), - [anon_sym_e_PLUSo_GT] = ACTIONS(1576), - [aux_sym_unquoted_token1] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_not_DASHin] = ACTIONS(2736), + [anon_sym_starts_DASHwith] = ACTIONS(2736), + [anon_sym_ends_DASHwith] = ACTIONS(2736), + [anon_sym_EQ_TILDE] = ACTIONS(2744), + [anon_sym_BANG_TILDE] = ACTIONS(2744), + [anon_sym_bit_DASHand] = ACTIONS(2746), + [anon_sym_bit_DASHxor] = ACTIONS(2748), + [anon_sym_bit_DASHor] = ACTIONS(2750), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1043] = { - [sym_cell_path] = STATE(1433), - [sym_path] = STATE(1082), [sym_comment] = STATE(1043), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_let] = ACTIONS(1403), - [anon_sym_let_DASHenv] = ACTIONS(1403), - [anon_sym_mut] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [sym_cmd_identifier] = ACTIONS(1403), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_def] = ACTIONS(1403), - [anon_sym_export_DASHenv] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_use] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_error] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_loop] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_match] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_DOT2] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_source] = ACTIONS(1403), - [anon_sym_source_DASHenv] = ACTIONS(1403), - [anon_sym_register] = ACTIONS(1403), - [anon_sym_hide] = ACTIONS(1403), - [anon_sym_hide_DASHenv] = ACTIONS(1403), - [anon_sym_overlay] = ACTIONS(1403), - [anon_sym_where] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_not] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1403), - [aux_sym__val_number_token1] = ACTIONS(1403), - [aux_sym__val_number_token2] = ACTIONS(1403), - [aux_sym__val_number_token3] = ACTIONS(1403), - [aux_sym__val_number_token4] = ACTIONS(1403), - [aux_sym__val_number_token5] = ACTIONS(1403), - [aux_sym__val_number_token6] = ACTIONS(1403), - [anon_sym_0b] = ACTIONS(1403), - [anon_sym_0o] = ACTIONS(1403), - [anon_sym_0x] = ACTIONS(1403), - [sym_val_date] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym__str_single_quotes] = ACTIONS(1403), - [sym__str_back_ticks] = ACTIONS(1403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1044] = { [sym_comment] = STATE(1044), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_not_DASHin] = ACTIONS(2736), + [anon_sym_starts_DASHwith] = ACTIONS(2736), + [anon_sym_ends_DASHwith] = ACTIONS(2736), + [anon_sym_EQ_TILDE] = ACTIONS(2744), + [anon_sym_BANG_TILDE] = ACTIONS(2744), + [anon_sym_bit_DASHand] = ACTIONS(2746), + [anon_sym_bit_DASHxor] = ACTIONS(2748), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1045] = { [sym_comment] = STATE(1045), - [ts_builtin_sym_end] = ACTIONS(1586), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_LF] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_in] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_STAR_STAR] = ACTIONS(1584), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_mod] = ACTIONS(1584), - [anon_sym_SLASH_SLASH] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_bit_DASHshl] = ACTIONS(1584), - [anon_sym_bit_DASHshr] = ACTIONS(1584), - [anon_sym_EQ_EQ] = ACTIONS(1584), - [anon_sym_BANG_EQ] = ACTIONS(1584), - [anon_sym_LT2] = ACTIONS(1584), - [anon_sym_LT_EQ] = ACTIONS(1584), - [anon_sym_GT_EQ] = ACTIONS(1584), - [anon_sym_not_DASHin] = ACTIONS(1584), - [anon_sym_starts_DASHwith] = ACTIONS(1584), - [anon_sym_ends_DASHwith] = ACTIONS(1584), - [anon_sym_EQ_TILDE] = ACTIONS(1584), - [anon_sym_BANG_TILDE] = ACTIONS(1584), - [anon_sym_bit_DASHand] = ACTIONS(1584), - [anon_sym_bit_DASHxor] = ACTIONS(1584), - [anon_sym_bit_DASHor] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_xor] = ACTIONS(1584), - [anon_sym_or] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [aux_sym__val_number_decimal_token1] = ACTIONS(1584), - [aux_sym__val_number_token1] = ACTIONS(1584), - [aux_sym__val_number_token2] = ACTIONS(1584), - [aux_sym__val_number_token3] = ACTIONS(1584), - [aux_sym__val_number_token4] = ACTIONS(1584), - [aux_sym__val_number_token5] = ACTIONS(1584), - [aux_sym__val_number_token6] = ACTIONS(1584), - [anon_sym_0b] = ACTIONS(1584), - [anon_sym_0o] = ACTIONS(1584), - [anon_sym_0x] = ACTIONS(1584), - [sym_val_date] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1584), - [sym__str_single_quotes] = ACTIONS(1584), - [sym__str_back_ticks] = ACTIONS(1584), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), - [anon_sym_err_GT] = ACTIONS(1584), - [anon_sym_out_GT] = ACTIONS(1584), - [anon_sym_e_GT] = ACTIONS(1584), - [anon_sym_o_GT] = ACTIONS(1584), - [anon_sym_err_PLUSout_GT] = ACTIONS(1584), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), - [anon_sym_o_PLUSe_GT] = ACTIONS(1584), - [anon_sym_e_PLUSo_GT] = ACTIONS(1584), - [aux_sym_unquoted_token1] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1046] = { [sym_comment] = STATE(1046), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_not_DASHin] = ACTIONS(2762), - [anon_sym_starts_DASHwith] = ACTIONS(2762), - [anon_sym_ends_DASHwith] = ACTIONS(2762), - [anon_sym_EQ_TILDE] = ACTIONS(2770), - [anon_sym_BANG_TILDE] = ACTIONS(2770), - [anon_sym_bit_DASHand] = ACTIONS(2772), - [anon_sym_bit_DASHxor] = ACTIONS(2774), - [anon_sym_bit_DASHor] = ACTIONS(2776), - [anon_sym_and] = ACTIONS(2778), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_STAR_STAR] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_mod] = ACTIONS(1629), + [anon_sym_SLASH_SLASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_bit_DASHshl] = ACTIONS(1629), + [anon_sym_bit_DASHshr] = ACTIONS(1629), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ] = ACTIONS(1629), + [anon_sym_GT_EQ] = ACTIONS(1629), + [anon_sym_not_DASHin] = ACTIONS(1629), + [anon_sym_starts_DASHwith] = ACTIONS(1629), + [anon_sym_ends_DASHwith] = ACTIONS(1629), + [anon_sym_EQ_TILDE] = ACTIONS(1629), + [anon_sym_BANG_TILDE] = ACTIONS(1629), + [anon_sym_bit_DASHand] = ACTIONS(1629), + [anon_sym_bit_DASHxor] = ACTIONS(1629), + [anon_sym_bit_DASHor] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_xor] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1629), + [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(1629), + [anon_sym_0o] = ACTIONS(1629), + [anon_sym_0x] = ACTIONS(1629), + [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(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [aux_sym_unquoted_token1] = ACTIONS(1629), [anon_sym_POUND] = ACTIONS(105), }, [1047] = { [sym_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_LF] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_in] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_STAR_STAR] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_mod] = ACTIONS(1564), - [anon_sym_SLASH_SLASH] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_bit_DASHshl] = ACTIONS(1564), - [anon_sym_bit_DASHshr] = ACTIONS(1564), - [anon_sym_EQ_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1564), - [anon_sym_LT2] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_not_DASHin] = ACTIONS(1564), - [anon_sym_starts_DASHwith] = ACTIONS(1564), - [anon_sym_ends_DASHwith] = ACTIONS(1564), - [anon_sym_EQ_TILDE] = ACTIONS(1564), - [anon_sym_BANG_TILDE] = ACTIONS(1564), - [anon_sym_bit_DASHand] = ACTIONS(1564), - [anon_sym_bit_DASHxor] = ACTIONS(1564), - [anon_sym_bit_DASHor] = ACTIONS(1564), - [anon_sym_and] = ACTIONS(1564), - [anon_sym_xor] = ACTIONS(1564), - [anon_sym_or] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_token1] = ACTIONS(1564), - [aux_sym__val_number_token2] = ACTIONS(1564), - [aux_sym__val_number_token3] = ACTIONS(1564), - [aux_sym__val_number_token4] = ACTIONS(1564), - [aux_sym__val_number_token5] = ACTIONS(1564), - [aux_sym__val_number_token6] = ACTIONS(1564), - [anon_sym_0b] = ACTIONS(1564), - [anon_sym_0o] = ACTIONS(1564), - [anon_sym_0x] = ACTIONS(1564), - [sym_val_date] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym__str_single_quotes] = ACTIONS(1564), - [sym__str_back_ticks] = ACTIONS(1564), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1564), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1564), - [anon_sym_err_GT] = ACTIONS(1564), - [anon_sym_out_GT] = ACTIONS(1564), - [anon_sym_e_GT] = ACTIONS(1564), - [anon_sym_o_GT] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT] = ACTIONS(1564), - [aux_sym_unquoted_token1] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_err_GT] = ACTIONS(1437), + [anon_sym_out_GT] = ACTIONS(1437), + [anon_sym_e_GT] = ACTIONS(1437), + [anon_sym_o_GT] = ACTIONS(1437), + [anon_sym_err_PLUSout_GT] = ACTIONS(1437), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1437), + [anon_sym_o_PLUSe_GT] = ACTIONS(1437), + [anon_sym_e_PLUSo_GT] = ACTIONS(1437), + [aux_sym_unquoted_token1] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [1048] = { [sym_comment] = STATE(1048), - [ts_builtin_sym_end] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_STAR_STAR] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_bit_DASHshl] = ACTIONS(1426), - [anon_sym_bit_DASHshr] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_LT2] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_not_DASHin] = ACTIONS(1426), - [anon_sym_starts_DASHwith] = ACTIONS(1426), - [anon_sym_ends_DASHwith] = ACTIONS(1426), - [anon_sym_EQ_TILDE] = ACTIONS(1426), - [anon_sym_BANG_TILDE] = ACTIONS(1426), - [anon_sym_bit_DASHand] = ACTIONS(1426), - [anon_sym_bit_DASHxor] = ACTIONS(1426), - [anon_sym_bit_DASHor] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_xor] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_err_GT] = ACTIONS(1426), - [anon_sym_out_GT] = ACTIONS(1426), - [anon_sym_e_GT] = ACTIONS(1426), - [anon_sym_o_GT] = ACTIONS(1426), - [anon_sym_err_PLUSout_GT] = ACTIONS(1426), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1426), - [anon_sym_o_PLUSe_GT] = ACTIONS(1426), - [anon_sym_e_PLUSo_GT] = ACTIONS(1426), - [aux_sym_unquoted_token1] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_not_DASHin] = ACTIONS(2736), + [anon_sym_starts_DASHwith] = ACTIONS(2736), + [anon_sym_ends_DASHwith] = ACTIONS(2736), + [anon_sym_EQ_TILDE] = ACTIONS(2744), + [anon_sym_BANG_TILDE] = ACTIONS(2744), + [anon_sym_bit_DASHand] = ACTIONS(2746), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1049] = { [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_LF] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_DOT] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_PLUS_PLUS] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1588), - [anon_sym_mod] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_bit_DASHshl] = ACTIONS(1588), - [anon_sym_bit_DASHshr] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_LT2] = ACTIONS(1588), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_not_DASHin] = ACTIONS(1588), - [anon_sym_starts_DASHwith] = ACTIONS(1588), - [anon_sym_ends_DASHwith] = ACTIONS(1588), - [anon_sym_EQ_TILDE] = ACTIONS(1588), - [anon_sym_BANG_TILDE] = ACTIONS(1588), - [anon_sym_bit_DASHand] = ACTIONS(1588), - [anon_sym_bit_DASHxor] = ACTIONS(1588), - [anon_sym_bit_DASHor] = ACTIONS(1588), - [anon_sym_and] = ACTIONS(1588), - [anon_sym_xor] = ACTIONS(1588), - [anon_sym_or] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [aux_sym__val_number_decimal_token1] = ACTIONS(1588), - [aux_sym__val_number_token1] = ACTIONS(1588), - [aux_sym__val_number_token2] = ACTIONS(1588), - [aux_sym__val_number_token3] = ACTIONS(1588), - [aux_sym__val_number_token4] = ACTIONS(1588), - [aux_sym__val_number_token5] = ACTIONS(1588), - [aux_sym__val_number_token6] = ACTIONS(1588), - [anon_sym_0b] = ACTIONS(1588), - [anon_sym_0o] = ACTIONS(1588), - [anon_sym_0x] = ACTIONS(1588), - [sym_val_date] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [sym__str_single_quotes] = ACTIONS(1588), - [sym__str_back_ticks] = ACTIONS(1588), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1588), - [anon_sym_err_GT] = ACTIONS(1588), - [anon_sym_out_GT] = ACTIONS(1588), - [anon_sym_e_GT] = ACTIONS(1588), - [anon_sym_o_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT] = ACTIONS(1588), - [aux_sym_unquoted_token1] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1050] = { [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_LF] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_DOLLAR] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_in] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_DOT] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_STAR_STAR] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1524), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_mod] = ACTIONS(1524), - [anon_sym_SLASH_SLASH] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_bit_DASHshl] = ACTIONS(1524), - [anon_sym_bit_DASHshr] = ACTIONS(1524), - [anon_sym_EQ_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ] = ACTIONS(1524), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1524), - [anon_sym_GT_EQ] = ACTIONS(1524), - [anon_sym_not_DASHin] = ACTIONS(1524), - [anon_sym_starts_DASHwith] = ACTIONS(1524), - [anon_sym_ends_DASHwith] = ACTIONS(1524), - [anon_sym_EQ_TILDE] = ACTIONS(1524), - [anon_sym_BANG_TILDE] = ACTIONS(1524), - [anon_sym_bit_DASHand] = ACTIONS(1524), - [anon_sym_bit_DASHxor] = ACTIONS(1524), - [anon_sym_bit_DASHor] = ACTIONS(1524), - [anon_sym_and] = ACTIONS(1524), - [anon_sym_xor] = ACTIONS(1524), - [anon_sym_or] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_token1] = ACTIONS(1524), - [aux_sym__val_number_token2] = ACTIONS(1524), - [aux_sym__val_number_token3] = ACTIONS(1524), - [aux_sym__val_number_token4] = ACTIONS(1524), - [aux_sym__val_number_token5] = ACTIONS(1524), - [aux_sym__val_number_token6] = ACTIONS(1524), - [anon_sym_0b] = ACTIONS(1524), - [anon_sym_0o] = ACTIONS(1524), - [anon_sym_0x] = ACTIONS(1524), - [sym_val_date] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym__str_single_quotes] = ACTIONS(1524), - [sym__str_back_ticks] = ACTIONS(1524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [aux_sym_unquoted_token1] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_not_DASHin] = ACTIONS(2736), + [anon_sym_starts_DASHwith] = ACTIONS(2736), + [anon_sym_ends_DASHwith] = ACTIONS(2736), + [anon_sym_EQ_TILDE] = ACTIONS(2744), + [anon_sym_BANG_TILDE] = ACTIONS(2744), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1051] = { [sym_comment] = STATE(1051), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_not_DASHin] = ACTIONS(2762), - [anon_sym_starts_DASHwith] = ACTIONS(2762), - [anon_sym_ends_DASHwith] = ACTIONS(2762), - [anon_sym_EQ_TILDE] = ACTIONS(2770), - [anon_sym_BANG_TILDE] = ACTIONS(2770), - [anon_sym_bit_DASHand] = ACTIONS(2772), - [anon_sym_bit_DASHxor] = ACTIONS(2774), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1536), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [aux_sym_unquoted_token1] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(105), }, [1052] = { [sym_comment] = STATE(1052), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_not_DASHin] = ACTIONS(2762), - [anon_sym_starts_DASHwith] = ACTIONS(2762), - [anon_sym_ends_DASHwith] = ACTIONS(2762), - [anon_sym_EQ_TILDE] = ACTIONS(2770), - [anon_sym_BANG_TILDE] = ACTIONS(2770), - [anon_sym_bit_DASHand] = ACTIONS(2772), - [anon_sym_bit_DASHxor] = ACTIONS(2774), - [anon_sym_bit_DASHor] = ACTIONS(2776), - [anon_sym_and] = ACTIONS(2778), - [anon_sym_xor] = ACTIONS(2780), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1053] = { [sym_comment] = STATE(1053), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_LF] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_STAR_STAR] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_bit_DASHshl] = ACTIONS(1509), + [anon_sym_bit_DASHshr] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_not_DASHin] = ACTIONS(1509), + [anon_sym_starts_DASHwith] = ACTIONS(1509), + [anon_sym_ends_DASHwith] = ACTIONS(1509), + [anon_sym_EQ_TILDE] = ACTIONS(1509), + [anon_sym_BANG_TILDE] = ACTIONS(1509), + [anon_sym_bit_DASHand] = ACTIONS(1509), + [anon_sym_bit_DASHxor] = ACTIONS(1509), + [anon_sym_bit_DASHor] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1509), + [anon_sym_xor] = ACTIONS(1509), + [anon_sym_or] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [aux_sym__val_number_decimal_token1] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1509), + [aux_sym__val_number_token5] = ACTIONS(1509), + [aux_sym__val_number_token6] = ACTIONS(1509), + [anon_sym_0b] = ACTIONS(1509), + [anon_sym_0o] = ACTIONS(1509), + [anon_sym_0x] = ACTIONS(1509), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [aux_sym_unquoted_token1] = ACTIONS(1509), [anon_sym_POUND] = ACTIONS(105), }, [1054] = { [sym_comment] = STATE(1054), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_not_DASHin] = ACTIONS(2762), - [anon_sym_starts_DASHwith] = ACTIONS(2762), - [anon_sym_ends_DASHwith] = ACTIONS(2762), - [anon_sym_EQ_TILDE] = ACTIONS(2770), - [anon_sym_BANG_TILDE] = ACTIONS(2770), - [anon_sym_bit_DASHand] = ACTIONS(2772), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1055] = { [sym_comment] = STATE(1055), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_alias] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_let_DASHenv] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [sym_cmd_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_def] = ACTIONS(2782), - [anon_sym_export_DASHenv] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2782), - [anon_sym_error] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_loop] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_DOT2] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_source] = ACTIONS(2782), - [anon_sym_source_DASHenv] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_hide] = ACTIONS(2782), - [anon_sym_hide_DASHenv] = ACTIONS(2782), - [anon_sym_overlay] = ACTIONS(2782), - [anon_sym_where] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [aux_sym__immediate_decimal_token1] = ACTIONS(2786), - [aux_sym__immediate_decimal_token2] = ACTIONS(2788), - [anon_sym_null] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2782), - [anon_sym_false] = ACTIONS(2782), - [aux_sym__val_number_decimal_token1] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2782), - [aux_sym__val_number_token2] = ACTIONS(2782), - [aux_sym__val_number_token3] = ACTIONS(2782), - [aux_sym__val_number_token4] = ACTIONS(2782), - [aux_sym__val_number_token5] = ACTIONS(2782), - [aux_sym__val_number_token6] = ACTIONS(2782), - [anon_sym_0b] = ACTIONS(2782), - [anon_sym_0o] = ACTIONS(2782), - [anon_sym_0x] = ACTIONS(2782), - [sym_val_date] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2782), - [sym__str_single_quotes] = ACTIONS(2782), - [sym__str_back_ticks] = ACTIONS(2782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1056] = { [sym_comment] = STATE(1056), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_LF] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1695), + [anon_sym_GT] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_in] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_STAR_STAR] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_bit_DASHshl] = ACTIONS(1695), + [anon_sym_bit_DASHshr] = ACTIONS(1695), + [anon_sym_EQ_EQ] = ACTIONS(1695), + [anon_sym_BANG_EQ] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1695), + [anon_sym_LT_EQ] = ACTIONS(1695), + [anon_sym_GT_EQ] = ACTIONS(1695), + [anon_sym_not_DASHin] = ACTIONS(1695), + [anon_sym_starts_DASHwith] = ACTIONS(1695), + [anon_sym_ends_DASHwith] = ACTIONS(1695), + [anon_sym_EQ_TILDE] = ACTIONS(1695), + [anon_sym_BANG_TILDE] = ACTIONS(1695), + [anon_sym_bit_DASHand] = ACTIONS(1695), + [anon_sym_bit_DASHxor] = ACTIONS(1695), + [anon_sym_bit_DASHor] = ACTIONS(1695), + [anon_sym_and] = ACTIONS(1695), + [anon_sym_xor] = ACTIONS(1695), + [anon_sym_or] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1695), + [anon_sym_0o] = ACTIONS(1695), + [anon_sym_0x] = ACTIONS(1695), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1695), + [anon_sym_out_GT] = ACTIONS(1695), + [anon_sym_e_GT] = ACTIONS(1695), + [anon_sym_o_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1695), [anon_sym_POUND] = ACTIONS(105), }, [1057] = { [sym_comment] = STATE(1057), - [ts_builtin_sym_end] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_bit_DASHshl] = ACTIONS(1507), - [anon_sym_bit_DASHshr] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1507), - [anon_sym_starts_DASHwith] = ACTIONS(1507), - [anon_sym_ends_DASHwith] = ACTIONS(1507), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_BANG_TILDE] = ACTIONS(1507), - [anon_sym_bit_DASHand] = ACTIONS(1507), - [anon_sym_bit_DASHxor] = ACTIONS(1507), - [anon_sym_bit_DASHor] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1507), - [anon_sym_xor] = ACTIONS(1507), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1507), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_0b] = ACTIONS(1507), - [anon_sym_0o] = ACTIONS(1507), - [anon_sym_0x] = ACTIONS(1507), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_err_GT] = ACTIONS(1507), - [anon_sym_out_GT] = ACTIONS(1507), - [anon_sym_e_GT] = ACTIONS(1507), - [anon_sym_o_GT] = ACTIONS(1507), - [anon_sym_err_PLUSout_GT] = ACTIONS(1507), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1507), - [anon_sym_o_PLUSe_GT] = ACTIONS(1507), - [anon_sym_e_PLUSo_GT] = ACTIONS(1507), - [aux_sym_unquoted_token1] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1058] = { [sym_comment] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_LF] = ACTIONS(1582), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_DOLLAR] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_DOT] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_STAR_STAR] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [anon_sym_SLASH] = ACTIONS(1580), - [anon_sym_mod] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_bit_DASHshl] = ACTIONS(1580), - [anon_sym_bit_DASHshr] = ACTIONS(1580), - [anon_sym_EQ_EQ] = ACTIONS(1580), - [anon_sym_BANG_EQ] = ACTIONS(1580), - [anon_sym_LT2] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1580), - [anon_sym_not_DASHin] = ACTIONS(1580), - [anon_sym_starts_DASHwith] = ACTIONS(1580), - [anon_sym_ends_DASHwith] = ACTIONS(1580), - [anon_sym_EQ_TILDE] = ACTIONS(1580), - [anon_sym_BANG_TILDE] = ACTIONS(1580), - [anon_sym_bit_DASHand] = ACTIONS(1580), - [anon_sym_bit_DASHxor] = ACTIONS(1580), - [anon_sym_bit_DASHor] = ACTIONS(1580), - [anon_sym_and] = ACTIONS(1580), - [anon_sym_xor] = ACTIONS(1580), - [anon_sym_or] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [aux_sym__val_number_decimal_token1] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [aux_sym__val_number_token4] = ACTIONS(1580), - [aux_sym__val_number_token5] = ACTIONS(1580), - [aux_sym__val_number_token6] = ACTIONS(1580), - [anon_sym_0b] = ACTIONS(1580), - [anon_sym_0o] = ACTIONS(1580), - [anon_sym_0x] = ACTIONS(1580), - [sym_val_date] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1580), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1580), - [anon_sym_out_GT] = ACTIONS(1580), - [anon_sym_e_GT] = ACTIONS(1580), - [anon_sym_o_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT] = ACTIONS(1580), - [aux_sym_unquoted_token1] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1059] = { [sym_comment] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [aux_sym__val_number_token4] = ACTIONS(1515), - [aux_sym__val_number_token5] = ACTIONS(1515), - [aux_sym__val_number_token6] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1515), - [anon_sym_0o] = ACTIONS(1515), - [anon_sym_0x] = ACTIONS(1515), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_err_GT] = ACTIONS(1515), - [anon_sym_out_GT] = ACTIONS(1515), - [anon_sym_e_GT] = ACTIONS(1515), - [anon_sym_o_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT] = ACTIONS(1515), - [aux_sym_unquoted_token1] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1060] = { [sym_comment] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_SLASH_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_bit_DASHshl] = ACTIONS(1454), - [anon_sym_bit_DASHshr] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_not_DASHin] = ACTIONS(1454), - [anon_sym_starts_DASHwith] = ACTIONS(1454), - [anon_sym_ends_DASHwith] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [anon_sym_BANG_TILDE] = ACTIONS(1454), - [anon_sym_bit_DASHand] = ACTIONS(1454), - [anon_sym_bit_DASHxor] = ACTIONS(1454), - [anon_sym_bit_DASHor] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_xor] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_err_GT] = ACTIONS(1454), - [anon_sym_out_GT] = ACTIONS(1454), - [anon_sym_e_GT] = ACTIONS(1454), - [anon_sym_o_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT] = ACTIONS(1454), - [aux_sym_unquoted_token1] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1061] = { [sym_comment] = STATE(1061), - [ts_builtin_sym_end] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_bit_DASHshl] = ACTIONS(1475), - [anon_sym_bit_DASHshr] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_not_DASHin] = ACTIONS(1475), - [anon_sym_starts_DASHwith] = ACTIONS(1475), - [anon_sym_ends_DASHwith] = ACTIONS(1475), - [anon_sym_EQ_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1475), - [anon_sym_bit_DASHand] = ACTIONS(1475), - [anon_sym_bit_DASHxor] = ACTIONS(1475), - [anon_sym_bit_DASHor] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1475), - [anon_sym_xor] = ACTIONS(1475), - [anon_sym_or] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1475), - [anon_sym_out_GT] = ACTIONS(1475), - [anon_sym_e_GT] = ACTIONS(1475), - [anon_sym_o_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1062] = { [sym_comment] = STATE(1062), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1063] = { - [sym_path] = STATE(1191), [sym_comment] = STATE(1063), - [aux_sym_cell_path_repeat1] = STATE(1118), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_not] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_LF] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(1583), + [anon_sym_GT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_in] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_STAR_STAR] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_mod] = ACTIONS(1583), + [anon_sym_SLASH_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_bit_DASHshl] = ACTIONS(1583), + [anon_sym_bit_DASHshr] = ACTIONS(1583), + [anon_sym_EQ_EQ] = ACTIONS(1583), + [anon_sym_BANG_EQ] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1583), + [anon_sym_GT_EQ] = ACTIONS(1583), + [anon_sym_not_DASHin] = ACTIONS(1583), + [anon_sym_starts_DASHwith] = ACTIONS(1583), + [anon_sym_ends_DASHwith] = ACTIONS(1583), + [anon_sym_EQ_TILDE] = ACTIONS(1583), + [anon_sym_BANG_TILDE] = ACTIONS(1583), + [anon_sym_bit_DASHand] = ACTIONS(1583), + [anon_sym_bit_DASHxor] = ACTIONS(1583), + [anon_sym_bit_DASHor] = ACTIONS(1583), + [anon_sym_and] = ACTIONS(1583), + [anon_sym_xor] = ACTIONS(1583), + [anon_sym_or] = ACTIONS(1583), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1583), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1583), + [anon_sym_0o] = ACTIONS(1583), + [anon_sym_0x] = ACTIONS(1583), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [anon_sym_err_GT] = ACTIONS(1583), + [anon_sym_out_GT] = ACTIONS(1583), + [anon_sym_e_GT] = ACTIONS(1583), + [anon_sym_o_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT] = ACTIONS(1583), + [aux_sym_unquoted_token1] = ACTIONS(1583), [anon_sym_POUND] = ACTIONS(105), }, [1064] = { + [sym__flag] = STATE(1456), + [sym_short_flag] = STATE(1277), + [sym_long_flag] = STATE(1277), [sym_comment] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [aux_sym_overlay_use_repeat1] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2716), + [anon_sym_alias] = ACTIONS(2716), + [anon_sym_let] = ACTIONS(2716), + [anon_sym_let_DASHenv] = ACTIONS(2716), + [anon_sym_mut] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [sym_cmd_identifier] = ACTIONS(2716), + [anon_sym_LF] = ACTIONS(2718), + [anon_sym_def] = ACTIONS(2716), + [anon_sym_export_DASHenv] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym_module] = ACTIONS(2716), + [anon_sym_use] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_DOLLAR] = ACTIONS(2716), + [anon_sym_error] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_loop] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_source] = ACTIONS(2716), + [anon_sym_source_DASHenv] = ACTIONS(2716), + [anon_sym_register] = ACTIONS(2716), + [anon_sym_hide] = ACTIONS(2716), + [anon_sym_hide_DASHenv] = ACTIONS(2716), + [anon_sym_overlay] = ACTIONS(2716), + [anon_sym_as] = ACTIONS(2801), + [anon_sym_where] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_not] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [aux_sym__val_number_decimal_token1] = ACTIONS(2716), + [aux_sym__val_number_token1] = ACTIONS(2716), + [aux_sym__val_number_token2] = ACTIONS(2716), + [aux_sym__val_number_token3] = ACTIONS(2716), + [aux_sym__val_number_token4] = ACTIONS(2716), + [aux_sym__val_number_token5] = ACTIONS(2716), + [aux_sym__val_number_token6] = ACTIONS(2716), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2716), + [anon_sym_0x] = ACTIONS(2716), + [sym_val_date] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [sym__str_single_quotes] = ACTIONS(2716), + [sym__str_back_ticks] = ACTIONS(2716), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2716), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2716), [anon_sym_POUND] = ACTIONS(105), }, [1065] = { [sym_comment] = STATE(1065), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_not_DASHin] = ACTIONS(2762), - [anon_sym_starts_DASHwith] = ACTIONS(2762), - [anon_sym_ends_DASHwith] = ACTIONS(2762), - [anon_sym_EQ_TILDE] = ACTIONS(2770), - [anon_sym_BANG_TILDE] = ACTIONS(2770), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_LF] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_mod] = ACTIONS(1655), + [anon_sym_SLASH_SLASH] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_bit_DASHshl] = ACTIONS(1655), + [anon_sym_bit_DASHshr] = ACTIONS(1655), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_LT2] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1655), + [anon_sym_GT_EQ] = ACTIONS(1655), + [anon_sym_not_DASHin] = ACTIONS(1655), + [anon_sym_starts_DASHwith] = ACTIONS(1655), + [anon_sym_ends_DASHwith] = ACTIONS(1655), + [anon_sym_EQ_TILDE] = ACTIONS(1655), + [anon_sym_BANG_TILDE] = ACTIONS(1655), + [anon_sym_bit_DASHand] = ACTIONS(1655), + [anon_sym_bit_DASHxor] = ACTIONS(1655), + [anon_sym_bit_DASHor] = ACTIONS(1655), + [anon_sym_and] = ACTIONS(1655), + [anon_sym_xor] = ACTIONS(1655), + [anon_sym_or] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1655), + [aux_sym__val_number_token1] = ACTIONS(1655), + [aux_sym__val_number_token2] = ACTIONS(1655), + [aux_sym__val_number_token3] = ACTIONS(1655), + [aux_sym__val_number_token4] = ACTIONS(1655), + [aux_sym__val_number_token5] = ACTIONS(1655), + [aux_sym__val_number_token6] = ACTIONS(1655), + [anon_sym_0b] = ACTIONS(1655), + [anon_sym_0o] = ACTIONS(1655), + [anon_sym_0x] = ACTIONS(1655), + [sym_val_date] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym__str_single_quotes] = ACTIONS(1655), + [sym__str_back_ticks] = ACTIONS(1655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1655), + [anon_sym_out_GT] = ACTIONS(1655), + [anon_sym_e_GT] = ACTIONS(1655), + [anon_sym_o_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT] = ACTIONS(1655), + [aux_sym_unquoted_token1] = ACTIONS(1655), [anon_sym_POUND] = ACTIONS(105), }, [1066] = { [sym_comment] = STATE(1066), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_STAR_STAR] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_bit_DASHshl] = ACTIONS(2742), + [anon_sym_bit_DASHshr] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_not_DASHin] = ACTIONS(2736), + [anon_sym_starts_DASHwith] = ACTIONS(2736), + [anon_sym_ends_DASHwith] = ACTIONS(2736), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1067] = { [sym_comment] = STATE(1067), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_LF] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_in] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_STAR_STAR] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_mod] = ACTIONS(1591), + [anon_sym_SLASH_SLASH] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_bit_DASHshl] = ACTIONS(1591), + [anon_sym_bit_DASHshr] = ACTIONS(1591), + [anon_sym_EQ_EQ] = ACTIONS(1591), + [anon_sym_BANG_EQ] = ACTIONS(1591), + [anon_sym_LT2] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_not_DASHin] = ACTIONS(1591), + [anon_sym_starts_DASHwith] = ACTIONS(1591), + [anon_sym_ends_DASHwith] = ACTIONS(1591), + [anon_sym_EQ_TILDE] = ACTIONS(1591), + [anon_sym_BANG_TILDE] = ACTIONS(1591), + [anon_sym_bit_DASHand] = ACTIONS(1591), + [anon_sym_bit_DASHxor] = ACTIONS(1591), + [anon_sym_bit_DASHor] = ACTIONS(1591), + [anon_sym_and] = ACTIONS(1591), + [anon_sym_xor] = ACTIONS(1591), + [anon_sym_or] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1591), + [aux_sym__val_number_token5] = ACTIONS(1591), + [aux_sym__val_number_token6] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1591), + [anon_sym_0o] = ACTIONS(1591), + [anon_sym_0x] = ACTIONS(1591), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1591), + [anon_sym_out_GT] = ACTIONS(1591), + [anon_sym_e_GT] = ACTIONS(1591), + [anon_sym_o_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(105), }, [1068] = { [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1513), + [anon_sym_PLUS_PLUS] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_bit_DASHshl] = ACTIONS(1513), + [anon_sym_bit_DASHshr] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1513), + [anon_sym_starts_DASHwith] = ACTIONS(1513), + [anon_sym_ends_DASHwith] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1513), + [anon_sym_BANG_TILDE] = ACTIONS(1513), + [anon_sym_bit_DASHand] = ACTIONS(1513), + [anon_sym_bit_DASHxor] = ACTIONS(1513), + [anon_sym_bit_DASHor] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [aux_sym_unquoted_token1] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(105), }, [1069] = { [sym_comment] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_LF] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DOLLAR] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_in] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_STAR_STAR] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1568), - [anon_sym_mod] = ACTIONS(1568), - [anon_sym_SLASH_SLASH] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_bit_DASHshl] = ACTIONS(1568), - [anon_sym_bit_DASHshr] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1568), - [anon_sym_BANG_EQ] = ACTIONS(1568), - [anon_sym_LT2] = ACTIONS(1568), - [anon_sym_LT_EQ] = ACTIONS(1568), - [anon_sym_GT_EQ] = ACTIONS(1568), - [anon_sym_not_DASHin] = ACTIONS(1568), - [anon_sym_starts_DASHwith] = ACTIONS(1568), - [anon_sym_ends_DASHwith] = ACTIONS(1568), - [anon_sym_EQ_TILDE] = ACTIONS(1568), - [anon_sym_BANG_TILDE] = ACTIONS(1568), - [anon_sym_bit_DASHand] = ACTIONS(1568), - [anon_sym_bit_DASHxor] = ACTIONS(1568), - [anon_sym_bit_DASHor] = ACTIONS(1568), - [anon_sym_and] = ACTIONS(1568), - [anon_sym_xor] = ACTIONS(1568), - [anon_sym_or] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [aux_sym__val_number_decimal_token1] = ACTIONS(1568), - [aux_sym__val_number_token1] = ACTIONS(1568), - [aux_sym__val_number_token2] = ACTIONS(1568), - [aux_sym__val_number_token3] = ACTIONS(1568), - [aux_sym__val_number_token4] = ACTIONS(1568), - [aux_sym__val_number_token5] = ACTIONS(1568), - [aux_sym__val_number_token6] = ACTIONS(1568), - [anon_sym_0b] = ACTIONS(1568), - [anon_sym_0o] = ACTIONS(1568), - [anon_sym_0x] = ACTIONS(1568), - [sym_val_date] = ACTIONS(1568), - [anon_sym_DQUOTE] = ACTIONS(1568), - [sym__str_single_quotes] = ACTIONS(1568), - [sym__str_back_ticks] = ACTIONS(1568), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1568), - [anon_sym_err_GT] = ACTIONS(1568), - [anon_sym_out_GT] = ACTIONS(1568), - [anon_sym_e_GT] = ACTIONS(1568), - [anon_sym_o_GT] = ACTIONS(1568), - [anon_sym_err_PLUSout_GT] = ACTIONS(1568), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1568), - [anon_sym_o_PLUSe_GT] = ACTIONS(1568), - [anon_sym_e_PLUSo_GT] = ACTIONS(1568), - [aux_sym_unquoted_token1] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_STAR_STAR] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_mod] = ACTIONS(1629), + [anon_sym_SLASH_SLASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_bit_DASHshl] = ACTIONS(1629), + [anon_sym_bit_DASHshr] = ACTIONS(1629), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ] = ACTIONS(1629), + [anon_sym_GT_EQ] = ACTIONS(1629), + [anon_sym_not_DASHin] = ACTIONS(1629), + [anon_sym_starts_DASHwith] = ACTIONS(1629), + [anon_sym_ends_DASHwith] = ACTIONS(1629), + [anon_sym_EQ_TILDE] = ACTIONS(1629), + [anon_sym_BANG_TILDE] = ACTIONS(1629), + [anon_sym_bit_DASHand] = ACTIONS(1629), + [anon_sym_bit_DASHxor] = ACTIONS(1629), + [anon_sym_bit_DASHor] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_xor] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1629), + [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(1629), + [anon_sym_0o] = ACTIONS(1629), + [anon_sym_0x] = ACTIONS(1629), + [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(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [aux_sym_unquoted_token1] = ACTIONS(1629), [anon_sym_POUND] = ACTIONS(105), }, [1070] = { [sym_comment] = STATE(1070), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT2] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_not_DASHin] = ACTIONS(2807), + [anon_sym_starts_DASHwith] = ACTIONS(2807), + [anon_sym_ends_DASHwith] = ACTIONS(2807), + [anon_sym_EQ_TILDE] = ACTIONS(2815), + [anon_sym_BANG_TILDE] = ACTIONS(2815), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1071] = { + [sym_path] = STATE(1233), [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_not_DASHin] = ACTIONS(2762), - [anon_sym_starts_DASHwith] = ACTIONS(2762), - [anon_sym_ends_DASHwith] = ACTIONS(2762), - [anon_sym_EQ_TILDE] = ACTIONS(2770), - [anon_sym_BANG_TILDE] = ACTIONS(2770), - [anon_sym_bit_DASHand] = ACTIONS(2772), - [anon_sym_bit_DASHxor] = ACTIONS(2774), - [anon_sym_bit_DASHor] = ACTIONS(2776), - [anon_sym_and] = ACTIONS(2778), - [anon_sym_xor] = ACTIONS(2780), - [anon_sym_or] = ACTIONS(2790), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_cell_path_repeat1] = STATE(1071), + [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), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [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(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_DASH] = 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(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT2] = ACTIONS(2817), + [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(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [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_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [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(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1072] = { [sym_comment] = STATE(1072), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1073] = { [sym_comment] = STATE(1073), - [ts_builtin_sym_end] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_LF] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_in] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_DOT] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_STAR_STAR] = ACTIONS(1612), - [anon_sym_PLUS_PLUS] = ACTIONS(1612), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_SLASH_SLASH] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_bit_DASHshl] = ACTIONS(1612), - [anon_sym_bit_DASHshr] = ACTIONS(1612), - [anon_sym_EQ_EQ] = ACTIONS(1612), - [anon_sym_BANG_EQ] = ACTIONS(1612), - [anon_sym_LT2] = ACTIONS(1612), - [anon_sym_LT_EQ] = ACTIONS(1612), - [anon_sym_GT_EQ] = ACTIONS(1612), - [anon_sym_not_DASHin] = ACTIONS(1612), - [anon_sym_starts_DASHwith] = ACTIONS(1612), - [anon_sym_ends_DASHwith] = ACTIONS(1612), - [anon_sym_EQ_TILDE] = ACTIONS(1612), - [anon_sym_BANG_TILDE] = ACTIONS(1612), - [anon_sym_bit_DASHand] = ACTIONS(1612), - [anon_sym_bit_DASHxor] = ACTIONS(1612), - [anon_sym_bit_DASHor] = ACTIONS(1612), - [anon_sym_and] = ACTIONS(1612), - [anon_sym_xor] = ACTIONS(1612), - [anon_sym_or] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1612), - [aux_sym__val_number_token2] = ACTIONS(1612), - [aux_sym__val_number_token3] = ACTIONS(1612), - [aux_sym__val_number_token4] = ACTIONS(1612), - [aux_sym__val_number_token5] = ACTIONS(1612), - [aux_sym__val_number_token6] = ACTIONS(1612), - [anon_sym_0b] = ACTIONS(1612), - [anon_sym_0o] = ACTIONS(1612), - [anon_sym_0x] = ACTIONS(1612), - [sym_val_date] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__str_single_quotes] = ACTIONS(1612), - [sym__str_back_ticks] = ACTIONS(1612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1612), - [anon_sym_out_GT] = ACTIONS(1612), - [anon_sym_e_GT] = ACTIONS(1612), - [anon_sym_o_GT] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT] = ACTIONS(1612), - [aux_sym_unquoted_token1] = ACTIONS(1612), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1074] = { [sym_comment] = STATE(1074), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_LF] = ACTIONS(1653), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_STAR_STAR] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(1651), + [anon_sym_mod] = ACTIONS(1651), + [anon_sym_SLASH_SLASH] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_bit_DASHshl] = ACTIONS(1651), + [anon_sym_bit_DASHshr] = ACTIONS(1651), + [anon_sym_EQ_EQ] = ACTIONS(1651), + [anon_sym_BANG_EQ] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ] = ACTIONS(1651), + [anon_sym_GT_EQ] = ACTIONS(1651), + [anon_sym_not_DASHin] = ACTIONS(1651), + [anon_sym_starts_DASHwith] = ACTIONS(1651), + [anon_sym_ends_DASHwith] = ACTIONS(1651), + [anon_sym_EQ_TILDE] = ACTIONS(1651), + [anon_sym_BANG_TILDE] = ACTIONS(1651), + [anon_sym_bit_DASHand] = ACTIONS(1651), + [anon_sym_bit_DASHxor] = ACTIONS(1651), + [anon_sym_bit_DASHor] = ACTIONS(1651), + [anon_sym_and] = ACTIONS(1651), + [anon_sym_xor] = ACTIONS(1651), + [anon_sym_or] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1651), + [anon_sym_out_GT] = ACTIONS(1651), + [anon_sym_e_GT] = ACTIONS(1651), + [anon_sym_o_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT] = ACTIONS(1651), + [aux_sym_unquoted_token1] = ACTIONS(1651), [anon_sym_POUND] = ACTIONS(105), }, [1075] = { [sym_comment] = STATE(1075), - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_PIPE] = ACTIONS(1646), - [anon_sym_DOLLAR] = ACTIONS(1646), - [anon_sym_GT] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_in] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DOT] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_STAR_STAR] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_SLASH] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_SLASH_SLASH] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_bit_DASHshl] = ACTIONS(1646), - [anon_sym_bit_DASHshr] = ACTIONS(1646), - [anon_sym_EQ_EQ] = ACTIONS(1646), - [anon_sym_BANG_EQ] = ACTIONS(1646), - [anon_sym_LT2] = ACTIONS(1646), - [anon_sym_LT_EQ] = ACTIONS(1646), - [anon_sym_GT_EQ] = ACTIONS(1646), - [anon_sym_not_DASHin] = ACTIONS(1646), - [anon_sym_starts_DASHwith] = ACTIONS(1646), - [anon_sym_ends_DASHwith] = ACTIONS(1646), - [anon_sym_EQ_TILDE] = ACTIONS(1646), - [anon_sym_BANG_TILDE] = ACTIONS(1646), - [anon_sym_bit_DASHand] = ACTIONS(1646), - [anon_sym_bit_DASHxor] = ACTIONS(1646), - [anon_sym_bit_DASHor] = ACTIONS(1646), - [anon_sym_and] = ACTIONS(1646), - [anon_sym_xor] = ACTIONS(1646), - [anon_sym_or] = ACTIONS(1646), - [anon_sym_null] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [aux_sym__val_number_decimal_token1] = ACTIONS(1646), - [aux_sym__val_number_token1] = ACTIONS(1646), - [aux_sym__val_number_token2] = ACTIONS(1646), - [aux_sym__val_number_token3] = ACTIONS(1646), - [aux_sym__val_number_token4] = ACTIONS(1646), - [aux_sym__val_number_token5] = ACTIONS(1646), - [aux_sym__val_number_token6] = ACTIONS(1646), - [anon_sym_0b] = ACTIONS(1646), - [anon_sym_0o] = ACTIONS(1646), - [anon_sym_0x] = ACTIONS(1646), - [sym_val_date] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [sym__str_single_quotes] = ACTIONS(1646), - [sym__str_back_ticks] = ACTIONS(1646), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1646), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1646), - [anon_sym_err_GT] = ACTIONS(1646), - [anon_sym_out_GT] = ACTIONS(1646), - [anon_sym_e_GT] = ACTIONS(1646), - [anon_sym_o_GT] = ACTIONS(1646), - [anon_sym_err_PLUSout_GT] = ACTIONS(1646), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1646), - [anon_sym_o_PLUSe_GT] = ACTIONS(1646), - [anon_sym_e_PLUSo_GT] = ACTIONS(1646), - [aux_sym_unquoted_token1] = ACTIONS(1646), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1076] = { - [sym_cell_path] = STATE(1238), - [sym_path] = STATE(1077), [sym_comment] = STATE(1076), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(2792), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_where] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1077] = { - [sym_path] = STATE(1191), [sym_comment] = STATE(1077), - [aux_sym_cell_path_repeat1] = STATE(1063), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_where] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_not] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_err_GT] = ACTIONS(1437), + [anon_sym_out_GT] = ACTIONS(1437), + [anon_sym_e_GT] = ACTIONS(1437), + [anon_sym_o_GT] = ACTIONS(1437), + [anon_sym_err_PLUSout_GT] = ACTIONS(1437), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1437), + [anon_sym_o_PLUSe_GT] = ACTIONS(1437), + [anon_sym_e_PLUSo_GT] = ACTIONS(1437), + [aux_sym_unquoted_token1] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [1078] = { + [sym_cell_path] = STATE(1281), + [sym_path] = STATE(1145), [sym_comment] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_LF] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_in] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_SLASH] = ACTIONS(1650), - [anon_sym_mod] = ACTIONS(1650), - [anon_sym_SLASH_SLASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_bit_DASHshl] = ACTIONS(1650), - [anon_sym_bit_DASHshr] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1650), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_not_DASHin] = ACTIONS(1650), - [anon_sym_starts_DASHwith] = ACTIONS(1650), - [anon_sym_ends_DASHwith] = ACTIONS(1650), - [anon_sym_EQ_TILDE] = ACTIONS(1650), - [anon_sym_BANG_TILDE] = ACTIONS(1650), - [anon_sym_bit_DASHand] = ACTIONS(1650), - [anon_sym_bit_DASHxor] = ACTIONS(1650), - [anon_sym_bit_DASHor] = ACTIONS(1650), - [anon_sym_and] = ACTIONS(1650), - [anon_sym_xor] = ACTIONS(1650), - [anon_sym_or] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1650), - [anon_sym_0o] = ACTIONS(1650), - [anon_sym_0x] = ACTIONS(1650), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1650), - [anon_sym_out_GT] = ACTIONS(1650), - [anon_sym_e_GT] = ACTIONS(1650), - [anon_sym_o_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1650), + [anon_sym_export] = ACTIONS(1463), + [anon_sym_alias] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_let_DASHenv] = ACTIONS(1463), + [anon_sym_mut] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1463), + [sym_cmd_identifier] = ACTIONS(1463), + [anon_sym_LF] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1463), + [anon_sym_export_DASHenv] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_module] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_error] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT2] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_source] = ACTIONS(1463), + [anon_sym_source_DASHenv] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_hide] = ACTIONS(1463), + [anon_sym_hide_DASHenv] = ACTIONS(1463), + [anon_sym_overlay] = ACTIONS(1463), + [anon_sym_where] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_not] = ACTIONS(1463), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1463), + [aux_sym__val_number_token2] = ACTIONS(1463), + [aux_sym__val_number_token3] = ACTIONS(1463), + [aux_sym__val_number_token4] = ACTIONS(1463), + [aux_sym__val_number_token5] = ACTIONS(1463), + [aux_sym__val_number_token6] = ACTIONS(1463), + [anon_sym_0b] = ACTIONS(1463), + [anon_sym_0o] = ACTIONS(1463), + [anon_sym_0x] = ACTIONS(1463), + [sym_val_date] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [sym__str_single_quotes] = ACTIONS(1463), + [sym__str_back_ticks] = ACTIONS(1463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1463), [anon_sym_POUND] = ACTIONS(105), }, [1079] = { [sym_comment] = STATE(1079), - [ts_builtin_sym_end] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT2] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_not] = ACTIONS(1426), - [aux_sym__immediate_decimal_token1] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [aux_sym_unquoted_token2] = ACTIONS(2797), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT2] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_not_DASHin] = ACTIONS(2807), + [anon_sym_starts_DASHwith] = ACTIONS(2807), + [anon_sym_ends_DASHwith] = ACTIONS(2807), + [anon_sym_EQ_TILDE] = ACTIONS(2815), + [anon_sym_BANG_TILDE] = ACTIONS(2815), + [anon_sym_bit_DASHand] = ACTIONS(2822), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1080] = { [sym_comment] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1536), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [aux_sym_unquoted_token1] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(105), }, [1081] = { [sym_comment] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_STAR_STAR] = ACTIONS(1659), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_SLASH] = ACTIONS(1659), + [anon_sym_mod] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_bit_DASHshl] = ACTIONS(1659), + [anon_sym_bit_DASHshr] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1659), + [anon_sym_BANG_EQ] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1659), + [anon_sym_LT_EQ] = ACTIONS(1659), + [anon_sym_GT_EQ] = ACTIONS(1659), + [anon_sym_not_DASHin] = ACTIONS(1659), + [anon_sym_starts_DASHwith] = ACTIONS(1659), + [anon_sym_ends_DASHwith] = ACTIONS(1659), + [anon_sym_EQ_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(1659), + [anon_sym_bit_DASHand] = ACTIONS(1659), + [anon_sym_bit_DASHxor] = ACTIONS(1659), + [anon_sym_bit_DASHor] = ACTIONS(1659), + [anon_sym_and] = ACTIONS(1659), + [anon_sym_xor] = ACTIONS(1659), + [anon_sym_or] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [aux_sym__val_number_token4] = ACTIONS(1659), + [aux_sym__val_number_token5] = ACTIONS(1659), + [aux_sym__val_number_token6] = ACTIONS(1659), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [aux_sym_unquoted_token1] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(105), }, [1082] = { - [sym_path] = STATE(1191), [sym_comment] = STATE(1082), - [aux_sym_cell_path_repeat1] = STATE(1090), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_where] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_not] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1627), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_SLASH] = ACTIONS(1625), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT_EQ] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1625), + [anon_sym_0x] = ACTIONS(1625), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(105), }, [1083] = { - [sym_cell_path] = STATE(1306), - [sym_path] = STATE(1082), [sym_comment] = STATE(1083), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_where] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_not] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1084] = { - [sym_cell_path] = STATE(1203), - [sym_path] = STATE(1077), [sym_comment] = STATE(1084), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(2799), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_where] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_not] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1085] = { [sym_comment] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_LF] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_DOT] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_STAR_STAR] = ACTIONS(1560), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_SLASH_SLASH] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_bit_DASHshl] = ACTIONS(1560), - [anon_sym_bit_DASHshr] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1560), - [anon_sym_BANG_EQ] = ACTIONS(1560), - [anon_sym_LT2] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1560), - [anon_sym_not_DASHin] = ACTIONS(1560), - [anon_sym_starts_DASHwith] = ACTIONS(1560), - [anon_sym_ends_DASHwith] = ACTIONS(1560), - [anon_sym_EQ_TILDE] = ACTIONS(1560), - [anon_sym_BANG_TILDE] = ACTIONS(1560), - [anon_sym_bit_DASHand] = ACTIONS(1560), - [anon_sym_bit_DASHxor] = ACTIONS(1560), - [anon_sym_bit_DASHor] = ACTIONS(1560), - [anon_sym_and] = ACTIONS(1560), - [anon_sym_xor] = ACTIONS(1560), - [anon_sym_or] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_token1] = ACTIONS(1560), - [aux_sym__val_number_token2] = ACTIONS(1560), - [aux_sym__val_number_token3] = ACTIONS(1560), - [aux_sym__val_number_token4] = ACTIONS(1560), - [aux_sym__val_number_token5] = ACTIONS(1560), - [aux_sym__val_number_token6] = ACTIONS(1560), - [anon_sym_0b] = ACTIONS(1560), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [sym__str_single_quotes] = ACTIONS(1560), - [sym__str_back_ticks] = ACTIONS(1560), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1560), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1560), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [aux_sym_unquoted_token1] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1086] = { [sym_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(1630), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_LF] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_GT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_STAR_STAR] = ACTIONS(1628), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_SLASH] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_SLASH_SLASH] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_bit_DASHshl] = ACTIONS(1628), - [anon_sym_bit_DASHshr] = ACTIONS(1628), - [anon_sym_EQ_EQ] = ACTIONS(1628), - [anon_sym_BANG_EQ] = ACTIONS(1628), - [anon_sym_LT2] = ACTIONS(1628), - [anon_sym_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_EQ] = ACTIONS(1628), - [anon_sym_not_DASHin] = ACTIONS(1628), - [anon_sym_starts_DASHwith] = ACTIONS(1628), - [anon_sym_ends_DASHwith] = ACTIONS(1628), - [anon_sym_EQ_TILDE] = ACTIONS(1628), - [anon_sym_BANG_TILDE] = ACTIONS(1628), - [anon_sym_bit_DASHand] = ACTIONS(1628), - [anon_sym_bit_DASHxor] = ACTIONS(1628), - [anon_sym_bit_DASHor] = ACTIONS(1628), - [anon_sym_and] = ACTIONS(1628), - [anon_sym_xor] = ACTIONS(1628), - [anon_sym_or] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1628), - [aux_sym__val_number_token2] = ACTIONS(1628), - [aux_sym__val_number_token3] = ACTIONS(1628), - [aux_sym__val_number_token4] = ACTIONS(1628), - [aux_sym__val_number_token5] = ACTIONS(1628), - [aux_sym__val_number_token6] = ACTIONS(1628), - [anon_sym_0b] = ACTIONS(1628), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1628), - [sym__str_single_quotes] = ACTIONS(1628), - [sym__str_back_ticks] = ACTIONS(1628), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [aux_sym_unquoted_token1] = ACTIONS(1628), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT2] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_not_DASHin] = ACTIONS(2807), + [anon_sym_starts_DASHwith] = ACTIONS(2807), + [anon_sym_ends_DASHwith] = ACTIONS(2807), + [anon_sym_EQ_TILDE] = ACTIONS(2815), + [anon_sym_BANG_TILDE] = ACTIONS(2815), + [anon_sym_bit_DASHand] = ACTIONS(2822), + [anon_sym_bit_DASHxor] = ACTIONS(2824), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1087] = { [sym_comment] = STATE(1087), - [ts_builtin_sym_end] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_STAR_STAR] = ACTIONS(1572), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_SLASH] = ACTIONS(1572), - [anon_sym_mod] = ACTIONS(1572), - [anon_sym_SLASH_SLASH] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_bit_DASHshl] = ACTIONS(1572), - [anon_sym_bit_DASHshr] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT2] = ACTIONS(1572), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_not_DASHin] = ACTIONS(1572), - [anon_sym_starts_DASHwith] = ACTIONS(1572), - [anon_sym_ends_DASHwith] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1572), - [anon_sym_BANG_TILDE] = ACTIONS(1572), - [anon_sym_bit_DASHand] = ACTIONS(1572), - [anon_sym_bit_DASHxor] = ACTIONS(1572), - [anon_sym_bit_DASHor] = ACTIONS(1572), - [anon_sym_and] = ACTIONS(1572), - [anon_sym_xor] = ACTIONS(1572), - [anon_sym_or] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [aux_sym__val_number_decimal_token1] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [aux_sym__val_number_token4] = ACTIONS(1572), - [aux_sym__val_number_token5] = ACTIONS(1572), - [aux_sym__val_number_token6] = ACTIONS(1572), - [anon_sym_0b] = ACTIONS(1572), - [anon_sym_0o] = ACTIONS(1572), - [anon_sym_0x] = ACTIONS(1572), - [sym_val_date] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), - [anon_sym_err_GT] = ACTIONS(1572), - [anon_sym_out_GT] = ACTIONS(1572), - [anon_sym_e_GT] = ACTIONS(1572), - [anon_sym_o_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT] = ACTIONS(1572), - [aux_sym_unquoted_token1] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_LF] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_in] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_STAR_STAR] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1603), + [anon_sym_mod] = ACTIONS(1603), + [anon_sym_SLASH_SLASH] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_bit_DASHshl] = ACTIONS(1603), + [anon_sym_bit_DASHshr] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1603), + [anon_sym_BANG_EQ] = ACTIONS(1603), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(1603), + [anon_sym_not_DASHin] = ACTIONS(1603), + [anon_sym_starts_DASHwith] = ACTIONS(1603), + [anon_sym_ends_DASHwith] = ACTIONS(1603), + [anon_sym_EQ_TILDE] = ACTIONS(1603), + [anon_sym_BANG_TILDE] = ACTIONS(1603), + [anon_sym_bit_DASHand] = ACTIONS(1603), + [anon_sym_bit_DASHxor] = ACTIONS(1603), + [anon_sym_bit_DASHor] = ACTIONS(1603), + [anon_sym_and] = ACTIONS(1603), + [anon_sym_xor] = ACTIONS(1603), + [anon_sym_or] = ACTIONS(1603), + [anon_sym_null] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1603), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1603), + [aux_sym__val_number_token5] = ACTIONS(1603), + [aux_sym__val_number_token6] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1603), + [anon_sym_0o] = ACTIONS(1603), + [anon_sym_0x] = ACTIONS(1603), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1603), [anon_sym_POUND] = ACTIONS(105), }, [1088] = { [sym_comment] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1640), - [anon_sym_GT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_in] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_DOT] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_STAR_STAR] = ACTIONS(1640), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_SLASH] = ACTIONS(1640), - [anon_sym_mod] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_bit_DASHshl] = ACTIONS(1640), - [anon_sym_bit_DASHshr] = ACTIONS(1640), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT2] = ACTIONS(1640), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_not_DASHin] = ACTIONS(1640), - [anon_sym_starts_DASHwith] = ACTIONS(1640), - [anon_sym_ends_DASHwith] = ACTIONS(1640), - [anon_sym_EQ_TILDE] = ACTIONS(1640), - [anon_sym_BANG_TILDE] = ACTIONS(1640), - [anon_sym_bit_DASHand] = ACTIONS(1640), - [anon_sym_bit_DASHxor] = ACTIONS(1640), - [anon_sym_bit_DASHor] = ACTIONS(1640), - [anon_sym_and] = ACTIONS(1640), - [anon_sym_xor] = ACTIONS(1640), - [anon_sym_or] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [aux_sym__val_number_token4] = ACTIONS(1640), - [aux_sym__val_number_token5] = ACTIONS(1640), - [aux_sym__val_number_token6] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1640), - [anon_sym_0o] = ACTIONS(1640), - [anon_sym_0x] = ACTIONS(1640), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1640), - [anon_sym_out_GT] = ACTIONS(1640), - [anon_sym_e_GT] = ACTIONS(1640), - [anon_sym_o_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT] = ACTIONS(1640), - [aux_sym_unquoted_token1] = ACTIONS(1640), + [ts_builtin_sym_end] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_LF] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(1583), + [anon_sym_GT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_in] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_STAR_STAR] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_mod] = ACTIONS(1583), + [anon_sym_SLASH_SLASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_bit_DASHshl] = ACTIONS(1583), + [anon_sym_bit_DASHshr] = ACTIONS(1583), + [anon_sym_EQ_EQ] = ACTIONS(1583), + [anon_sym_BANG_EQ] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1583), + [anon_sym_GT_EQ] = ACTIONS(1583), + [anon_sym_not_DASHin] = ACTIONS(1583), + [anon_sym_starts_DASHwith] = ACTIONS(1583), + [anon_sym_ends_DASHwith] = ACTIONS(1583), + [anon_sym_EQ_TILDE] = ACTIONS(1583), + [anon_sym_BANG_TILDE] = ACTIONS(1583), + [anon_sym_bit_DASHand] = ACTIONS(1583), + [anon_sym_bit_DASHxor] = ACTIONS(1583), + [anon_sym_bit_DASHor] = ACTIONS(1583), + [anon_sym_and] = ACTIONS(1583), + [anon_sym_xor] = ACTIONS(1583), + [anon_sym_or] = ACTIONS(1583), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1583), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1583), + [anon_sym_0o] = ACTIONS(1583), + [anon_sym_0x] = ACTIONS(1583), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [anon_sym_err_GT] = ACTIONS(1583), + [anon_sym_out_GT] = ACTIONS(1583), + [anon_sym_e_GT] = ACTIONS(1583), + [anon_sym_o_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT] = ACTIONS(1583), + [aux_sym_unquoted_token1] = ACTIONS(1583), [anon_sym_POUND] = ACTIONS(105), }, [1089] = { [sym_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_LF] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_in] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_DOT] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_STAR_STAR] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_SLASH_SLASH] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_bit_DASHshl] = ACTIONS(1624), - [anon_sym_bit_DASHshr] = ACTIONS(1624), - [anon_sym_EQ_EQ] = ACTIONS(1624), - [anon_sym_BANG_EQ] = ACTIONS(1624), - [anon_sym_LT2] = ACTIONS(1624), - [anon_sym_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_EQ] = ACTIONS(1624), - [anon_sym_not_DASHin] = ACTIONS(1624), - [anon_sym_starts_DASHwith] = ACTIONS(1624), - [anon_sym_ends_DASHwith] = ACTIONS(1624), - [anon_sym_EQ_TILDE] = ACTIONS(1624), - [anon_sym_BANG_TILDE] = ACTIONS(1624), - [anon_sym_bit_DASHand] = ACTIONS(1624), - [anon_sym_bit_DASHxor] = ACTIONS(1624), - [anon_sym_bit_DASHor] = ACTIONS(1624), - [anon_sym_and] = ACTIONS(1624), - [anon_sym_xor] = ACTIONS(1624), - [anon_sym_or] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [aux_sym__val_number_decimal_token1] = ACTIONS(1624), - [aux_sym__val_number_token1] = ACTIONS(1624), - [aux_sym__val_number_token2] = ACTIONS(1624), - [aux_sym__val_number_token3] = ACTIONS(1624), - [aux_sym__val_number_token4] = ACTIONS(1624), - [aux_sym__val_number_token5] = ACTIONS(1624), - [aux_sym__val_number_token6] = ACTIONS(1624), - [anon_sym_0b] = ACTIONS(1624), - [anon_sym_0o] = ACTIONS(1624), - [anon_sym_0x] = ACTIONS(1624), - [sym_val_date] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1624), - [sym__str_single_quotes] = ACTIONS(1624), - [sym__str_back_ticks] = ACTIONS(1624), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1624), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1624), - [anon_sym_err_GT] = ACTIONS(1624), - [anon_sym_out_GT] = ACTIONS(1624), - [anon_sym_e_GT] = ACTIONS(1624), - [anon_sym_o_GT] = ACTIONS(1624), - [anon_sym_err_PLUSout_GT] = ACTIONS(1624), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1624), - [anon_sym_o_PLUSe_GT] = ACTIONS(1624), - [anon_sym_e_PLUSo_GT] = ACTIONS(1624), - [aux_sym_unquoted_token1] = ACTIONS(1624), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1090] = { - [sym_path] = STATE(1191), [sym_comment] = STATE(1090), - [aux_sym_cell_path_repeat1] = STATE(1118), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_not] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), + [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), + [anon_sym_SEMI] = ACTIONS(1445), + [sym_cmd_identifier] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [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(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_DASH] = 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(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT2] = ACTIONS(2826), + [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_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_not] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(2797), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(2828), [anon_sym_POUND] = ACTIONS(105), }, [1091] = { + [sym_path] = STATE(1233), [sym_comment] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_LF] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_DOT] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_STAR_STAR] = ACTIONS(1620), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_SLASH_SLASH] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_bit_DASHshl] = ACTIONS(1620), - [anon_sym_bit_DASHshr] = ACTIONS(1620), - [anon_sym_EQ_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1620), - [anon_sym_LT2] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_not_DASHin] = ACTIONS(1620), - [anon_sym_starts_DASHwith] = ACTIONS(1620), - [anon_sym_ends_DASHwith] = ACTIONS(1620), - [anon_sym_EQ_TILDE] = ACTIONS(1620), - [anon_sym_BANG_TILDE] = ACTIONS(1620), - [anon_sym_bit_DASHand] = ACTIONS(1620), - [anon_sym_bit_DASHxor] = ACTIONS(1620), - [anon_sym_bit_DASHor] = ACTIONS(1620), - [anon_sym_and] = ACTIONS(1620), - [anon_sym_xor] = ACTIONS(1620), - [anon_sym_or] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [aux_sym__val_number_decimal_token1] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1620), - [aux_sym__val_number_token2] = ACTIONS(1620), - [aux_sym__val_number_token3] = ACTIONS(1620), - [aux_sym__val_number_token4] = ACTIONS(1620), - [aux_sym__val_number_token5] = ACTIONS(1620), - [aux_sym__val_number_token6] = ACTIONS(1620), - [anon_sym_0b] = ACTIONS(1620), - [anon_sym_0o] = ACTIONS(1620), - [anon_sym_0x] = ACTIONS(1620), - [sym_val_date] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1620), - [sym__str_single_quotes] = ACTIONS(1620), - [sym__str_back_ticks] = ACTIONS(1620), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(1620), - [anon_sym_out_GT] = ACTIONS(1620), - [anon_sym_e_GT] = ACTIONS(1620), - [anon_sym_o_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT] = ACTIONS(1620), - [aux_sym_unquoted_token1] = ACTIONS(1620), + [aux_sym_cell_path_repeat1] = STATE(1146), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [1092] = { [sym_comment] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_LF] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_DOLLAR] = ACTIONS(1604), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_in] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_STAR_STAR] = ACTIONS(1604), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_SLASH_SLASH] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_bit_DASHshl] = ACTIONS(1604), - [anon_sym_bit_DASHshr] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1604), - [anon_sym_BANG_EQ] = ACTIONS(1604), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1604), - [anon_sym_not_DASHin] = ACTIONS(1604), - [anon_sym_starts_DASHwith] = ACTIONS(1604), - [anon_sym_ends_DASHwith] = ACTIONS(1604), - [anon_sym_EQ_TILDE] = ACTIONS(1604), - [anon_sym_BANG_TILDE] = ACTIONS(1604), - [anon_sym_bit_DASHand] = ACTIONS(1604), - [anon_sym_bit_DASHxor] = ACTIONS(1604), - [anon_sym_bit_DASHor] = ACTIONS(1604), - [anon_sym_and] = ACTIONS(1604), - [anon_sym_xor] = ACTIONS(1604), - [anon_sym_or] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [aux_sym__val_number_decimal_token1] = ACTIONS(1604), - [aux_sym__val_number_token1] = ACTIONS(1604), - [aux_sym__val_number_token2] = ACTIONS(1604), - [aux_sym__val_number_token3] = ACTIONS(1604), - [aux_sym__val_number_token4] = ACTIONS(1604), - [aux_sym__val_number_token5] = ACTIONS(1604), - [aux_sym__val_number_token6] = ACTIONS(1604), - [anon_sym_0b] = ACTIONS(1604), - [anon_sym_0o] = ACTIONS(1604), - [anon_sym_0x] = ACTIONS(1604), - [sym_val_date] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1604), - [sym__str_single_quotes] = ACTIONS(1604), - [sym__str_back_ticks] = ACTIONS(1604), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1604), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), - [aux_sym_unquoted_token1] = ACTIONS(1604), + [ts_builtin_sym_end] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_LF] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = 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_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = 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(1599), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [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(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [aux_sym_unquoted_token1] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(105), }, [1093] = { [sym_comment] = STATE(1093), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT2] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_not_DASHin] = ACTIONS(2807), + [anon_sym_starts_DASHwith] = ACTIONS(2807), + [anon_sym_ends_DASHwith] = ACTIONS(2807), + [anon_sym_EQ_TILDE] = ACTIONS(2815), + [anon_sym_BANG_TILDE] = ACTIONS(2815), + [anon_sym_bit_DASHand] = ACTIONS(2822), + [anon_sym_bit_DASHxor] = ACTIONS(2824), + [anon_sym_bit_DASHor] = ACTIONS(2830), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1094] = { [sym_comment] = STATE(1094), - [ts_builtin_sym_end] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_LF] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_STAR_STAR] = ACTIONS(1608), - [anon_sym_PLUS_PLUS] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_SLASH_SLASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_bit_DASHshl] = ACTIONS(1608), - [anon_sym_bit_DASHshr] = ACTIONS(1608), - [anon_sym_EQ_EQ] = ACTIONS(1608), - [anon_sym_BANG_EQ] = ACTIONS(1608), - [anon_sym_LT2] = ACTIONS(1608), - [anon_sym_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1608), - [anon_sym_not_DASHin] = ACTIONS(1608), - [anon_sym_starts_DASHwith] = ACTIONS(1608), - [anon_sym_ends_DASHwith] = ACTIONS(1608), - [anon_sym_EQ_TILDE] = ACTIONS(1608), - [anon_sym_BANG_TILDE] = ACTIONS(1608), - [anon_sym_bit_DASHand] = ACTIONS(1608), - [anon_sym_bit_DASHxor] = ACTIONS(1608), - [anon_sym_bit_DASHor] = ACTIONS(1608), - [anon_sym_and] = ACTIONS(1608), - [anon_sym_xor] = ACTIONS(1608), - [anon_sym_or] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1608), - [aux_sym__val_number_token2] = ACTIONS(1608), - [aux_sym__val_number_token3] = ACTIONS(1608), - [aux_sym__val_number_token4] = ACTIONS(1608), - [aux_sym__val_number_token5] = ACTIONS(1608), - [aux_sym__val_number_token6] = ACTIONS(1608), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym__str_single_quotes] = ACTIONS(1608), - [sym__str_back_ticks] = ACTIONS(1608), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1608), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [aux_sym_unquoted_token1] = ACTIONS(1608), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_DOT2] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token1] = ACTIONS(2836), + [aux_sym__immediate_decimal_token2] = ACTIONS(2838), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), [anon_sym_POUND] = ACTIONS(105), }, [1095] = { [sym_comment] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1096] = { [sym_comment] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LF] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_DOLLAR] = ACTIONS(1636), - [anon_sym_GT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_STAR_STAR] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_SLASH] = ACTIONS(1636), - [anon_sym_mod] = ACTIONS(1636), - [anon_sym_SLASH_SLASH] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_bit_DASHshl] = ACTIONS(1636), - [anon_sym_bit_DASHshr] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT2] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_not_DASHin] = ACTIONS(1636), - [anon_sym_starts_DASHwith] = ACTIONS(1636), - [anon_sym_ends_DASHwith] = ACTIONS(1636), - [anon_sym_EQ_TILDE] = ACTIONS(1636), - [anon_sym_BANG_TILDE] = ACTIONS(1636), - [anon_sym_bit_DASHand] = ACTIONS(1636), - [anon_sym_bit_DASHxor] = ACTIONS(1636), - [anon_sym_bit_DASHor] = ACTIONS(1636), - [anon_sym_and] = ACTIONS(1636), - [anon_sym_xor] = ACTIONS(1636), - [anon_sym_or] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [aux_sym__val_number_decimal_token1] = ACTIONS(1636), - [aux_sym__val_number_token1] = ACTIONS(1636), - [aux_sym__val_number_token2] = ACTIONS(1636), - [aux_sym__val_number_token3] = ACTIONS(1636), - [aux_sym__val_number_token4] = ACTIONS(1636), - [aux_sym__val_number_token5] = ACTIONS(1636), - [aux_sym__val_number_token6] = ACTIONS(1636), - [anon_sym_0b] = ACTIONS(1636), - [anon_sym_0o] = ACTIONS(1636), - [anon_sym_0x] = ACTIONS(1636), - [sym_val_date] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1636), - [sym__str_single_quotes] = ACTIONS(1636), - [sym__str_back_ticks] = ACTIONS(1636), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1636), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1636), - [anon_sym_err_GT] = ACTIONS(1636), - [anon_sym_out_GT] = ACTIONS(1636), - [anon_sym_e_GT] = ACTIONS(1636), - [anon_sym_o_GT] = ACTIONS(1636), - [anon_sym_err_PLUSout_GT] = ACTIONS(1636), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1636), - [anon_sym_o_PLUSe_GT] = ACTIONS(1636), - [anon_sym_e_PLUSo_GT] = ACTIONS(1636), - [aux_sym_unquoted_token1] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_DOT] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_SLASH] = ACTIONS(1671), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1671), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1671), + [anon_sym_0x] = ACTIONS(1671), + [sym_val_date] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [sym__str_single_quotes] = ACTIONS(1671), + [sym__str_back_ticks] = ACTIONS(1671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1671), + [anon_sym_out_GT] = ACTIONS(1671), + [anon_sym_e_GT] = ACTIONS(1671), + [anon_sym_o_GT] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT] = ACTIONS(1671), + [aux_sym_unquoted_token1] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(105), }, [1097] = { [sym_comment] = STATE(1097), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT2] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_not] = ACTIONS(1426), - [aux_sym__immediate_decimal_token1] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [aux_sym_unquoted_token2] = ACTIONS(2804), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT2] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_not_DASHin] = ACTIONS(2807), + [anon_sym_starts_DASHwith] = ACTIONS(2807), + [anon_sym_ends_DASHwith] = ACTIONS(2807), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1098] = { [sym_comment] = STATE(1098), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_LF] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1663), + [aux_sym__val_number_token2] = ACTIONS(1663), + [aux_sym__val_number_token3] = ACTIONS(1663), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_0b] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(105), }, [1099] = { [sym_comment] = STATE(1099), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_LF] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_STAR_STAR] = ACTIONS(1596), - [anon_sym_PLUS_PLUS] = ACTIONS(1596), - [anon_sym_SLASH] = ACTIONS(1596), - [anon_sym_mod] = ACTIONS(1596), - [anon_sym_SLASH_SLASH] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_bit_DASHshl] = ACTIONS(1596), - [anon_sym_bit_DASHshr] = ACTIONS(1596), - [anon_sym_EQ_EQ] = ACTIONS(1596), - [anon_sym_BANG_EQ] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1596), - [anon_sym_GT_EQ] = ACTIONS(1596), - [anon_sym_not_DASHin] = ACTIONS(1596), - [anon_sym_starts_DASHwith] = ACTIONS(1596), - [anon_sym_ends_DASHwith] = ACTIONS(1596), - [anon_sym_EQ_TILDE] = ACTIONS(1596), - [anon_sym_BANG_TILDE] = ACTIONS(1596), - [anon_sym_bit_DASHand] = ACTIONS(1596), - [anon_sym_bit_DASHxor] = ACTIONS(1596), - [anon_sym_bit_DASHor] = ACTIONS(1596), - [anon_sym_and] = ACTIONS(1596), - [anon_sym_xor] = ACTIONS(1596), - [anon_sym_or] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_token1] = ACTIONS(1596), - [aux_sym__val_number_token2] = ACTIONS(1596), - [aux_sym__val_number_token3] = ACTIONS(1596), - [aux_sym__val_number_token4] = ACTIONS(1596), - [aux_sym__val_number_token5] = ACTIONS(1596), - [aux_sym__val_number_token6] = ACTIONS(1596), - [anon_sym_0b] = ACTIONS(1596), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(1596), - [sym__str_single_quotes] = ACTIONS(1596), - [sym__str_back_ticks] = ACTIONS(1596), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1596), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [aux_sym_unquoted_token1] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1100] = { [sym_comment] = STATE(1100), - [ts_builtin_sym_end] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LF] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_in] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_STAR_STAR] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_mod] = ACTIONS(1664), - [anon_sym_SLASH_SLASH] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_bit_DASHshl] = ACTIONS(1664), - [anon_sym_bit_DASHshr] = ACTIONS(1664), - [anon_sym_EQ_EQ] = ACTIONS(1664), - [anon_sym_BANG_EQ] = ACTIONS(1664), - [anon_sym_LT2] = ACTIONS(1664), - [anon_sym_LT_EQ] = ACTIONS(1664), - [anon_sym_GT_EQ] = ACTIONS(1664), - [anon_sym_not_DASHin] = ACTIONS(1664), - [anon_sym_starts_DASHwith] = ACTIONS(1664), - [anon_sym_ends_DASHwith] = ACTIONS(1664), - [anon_sym_EQ_TILDE] = ACTIONS(1664), - [anon_sym_BANG_TILDE] = ACTIONS(1664), - [anon_sym_bit_DASHand] = ACTIONS(1664), - [anon_sym_bit_DASHxor] = ACTIONS(1664), - [anon_sym_bit_DASHor] = ACTIONS(1664), - [anon_sym_and] = ACTIONS(1664), - [anon_sym_xor] = ACTIONS(1664), - [anon_sym_or] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [aux_sym__val_number_decimal_token1] = ACTIONS(1664), - [aux_sym__val_number_token1] = ACTIONS(1664), - [aux_sym__val_number_token2] = ACTIONS(1664), - [aux_sym__val_number_token3] = ACTIONS(1664), - [aux_sym__val_number_token4] = ACTIONS(1664), - [aux_sym__val_number_token5] = ACTIONS(1664), - [aux_sym__val_number_token6] = ACTIONS(1664), - [anon_sym_0b] = ACTIONS(1664), - [anon_sym_0o] = ACTIONS(1664), - [anon_sym_0x] = ACTIONS(1664), - [sym_val_date] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1664), - [sym__str_single_quotes] = ACTIONS(1664), - [sym__str_back_ticks] = ACTIONS(1664), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1664), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1664), - [anon_sym_err_GT] = ACTIONS(1664), - [anon_sym_out_GT] = ACTIONS(1664), - [anon_sym_e_GT] = ACTIONS(1664), - [anon_sym_o_GT] = ACTIONS(1664), - [anon_sym_err_PLUSout_GT] = ACTIONS(1664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), - [anon_sym_o_PLUSe_GT] = ACTIONS(1664), - [anon_sym_e_PLUSo_GT] = ACTIONS(1664), - [aux_sym_unquoted_token1] = ACTIONS(1664), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT2] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_not_DASHin] = ACTIONS(2807), + [anon_sym_starts_DASHwith] = ACTIONS(2807), + [anon_sym_ends_DASHwith] = ACTIONS(2807), + [anon_sym_EQ_TILDE] = ACTIONS(2815), + [anon_sym_BANG_TILDE] = ACTIONS(2815), + [anon_sym_bit_DASHand] = ACTIONS(2822), + [anon_sym_bit_DASHxor] = ACTIONS(2824), + [anon_sym_bit_DASHor] = ACTIONS(2830), + [anon_sym_and] = ACTIONS(2840), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1101] = { [sym_comment] = STATE(1101), - [ts_builtin_sym_end] = ACTIONS(1618), - [anon_sym_SEMI] = ACTIONS(1616), - [anon_sym_LF] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_DOLLAR] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_in] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_DOT] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_STAR_STAR] = ACTIONS(1616), - [anon_sym_PLUS_PLUS] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_SLASH_SLASH] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_bit_DASHshl] = ACTIONS(1616), - [anon_sym_bit_DASHshr] = ACTIONS(1616), - [anon_sym_EQ_EQ] = ACTIONS(1616), - [anon_sym_BANG_EQ] = ACTIONS(1616), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ] = ACTIONS(1616), - [anon_sym_GT_EQ] = ACTIONS(1616), - [anon_sym_not_DASHin] = ACTIONS(1616), - [anon_sym_starts_DASHwith] = ACTIONS(1616), - [anon_sym_ends_DASHwith] = ACTIONS(1616), - [anon_sym_EQ_TILDE] = ACTIONS(1616), - [anon_sym_BANG_TILDE] = ACTIONS(1616), - [anon_sym_bit_DASHand] = ACTIONS(1616), - [anon_sym_bit_DASHxor] = ACTIONS(1616), - [anon_sym_bit_DASHor] = ACTIONS(1616), - [anon_sym_and] = ACTIONS(1616), - [anon_sym_xor] = ACTIONS(1616), - [anon_sym_or] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1616), - [aux_sym__val_number_token1] = ACTIONS(1616), - [aux_sym__val_number_token2] = ACTIONS(1616), - [aux_sym__val_number_token3] = ACTIONS(1616), - [aux_sym__val_number_token4] = ACTIONS(1616), - [aux_sym__val_number_token5] = ACTIONS(1616), - [aux_sym__val_number_token6] = ACTIONS(1616), - [anon_sym_0b] = ACTIONS(1616), - [anon_sym_0o] = ACTIONS(1616), - [anon_sym_0x] = ACTIONS(1616), - [sym_val_date] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1616), - [sym__str_single_quotes] = ACTIONS(1616), - [sym__str_back_ticks] = ACTIONS(1616), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1616), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [aux_sym_unquoted_token1] = ACTIONS(1616), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1102] = { [sym_comment] = STATE(1102), - [ts_builtin_sym_end] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_bit_DASHshl] = ACTIONS(1491), - [anon_sym_bit_DASHshr] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT2] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_not_DASHin] = ACTIONS(1491), - [anon_sym_starts_DASHwith] = ACTIONS(1491), - [anon_sym_ends_DASHwith] = ACTIONS(1491), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_BANG_TILDE] = ACTIONS(1491), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1491), - [anon_sym_bit_DASHor] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1491), - [anon_sym_xor] = ACTIONS(1491), - [anon_sym_or] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1491), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_0b] = ACTIONS(1491), - [anon_sym_0o] = ACTIONS(1491), - [anon_sym_0x] = ACTIONS(1491), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [anon_sym_err_GT] = ACTIONS(1491), - [anon_sym_out_GT] = ACTIONS(1491), - [anon_sym_e_GT] = ACTIONS(1491), - [anon_sym_o_GT] = ACTIONS(1491), - [anon_sym_err_PLUSout_GT] = ACTIONS(1491), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), - [anon_sym_o_PLUSe_GT] = ACTIONS(1491), - [anon_sym_e_PLUSo_GT] = ACTIONS(1491), - [aux_sym_unquoted_token1] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT2] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_not_DASHin] = ACTIONS(2807), + [anon_sym_starts_DASHwith] = ACTIONS(2807), + [anon_sym_ends_DASHwith] = ACTIONS(2807), + [anon_sym_EQ_TILDE] = ACTIONS(2815), + [anon_sym_BANG_TILDE] = ACTIONS(2815), + [anon_sym_bit_DASHand] = ACTIONS(2822), + [anon_sym_bit_DASHxor] = ACTIONS(2824), + [anon_sym_bit_DASHor] = ACTIONS(2830), + [anon_sym_and] = ACTIONS(2840), + [anon_sym_xor] = ACTIONS(2842), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1103] = { [sym_comment] = STATE(1103), - [ts_builtin_sym_end] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_LF] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_STAR_STAR] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_bit_DASHshl] = ACTIONS(1519), - [anon_sym_bit_DASHshr] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1519), - [anon_sym_starts_DASHwith] = ACTIONS(1519), - [anon_sym_ends_DASHwith] = ACTIONS(1519), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1519), - [anon_sym_bit_DASHxor] = ACTIONS(1519), - [anon_sym_bit_DASHor] = ACTIONS(1519), - [anon_sym_and] = ACTIONS(1519), - [anon_sym_xor] = ACTIONS(1519), - [anon_sym_or] = ACTIONS(1519), - [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_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [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(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1519), + [ts_builtin_sym_end] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_LF] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_DOT] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1683), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1683), + [anon_sym_0x] = ACTIONS(1683), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1683), + [anon_sym_out_GT] = ACTIONS(1683), + [anon_sym_e_GT] = ACTIONS(1683), + [anon_sym_o_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1683), [anon_sym_POUND] = ACTIONS(105), }, [1104] = { [sym_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(1634), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_LF] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_DOLLAR] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_in] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_STAR_STAR] = ACTIONS(1632), - [anon_sym_PLUS_PLUS] = ACTIONS(1632), - [anon_sym_SLASH] = ACTIONS(1632), - [anon_sym_mod] = ACTIONS(1632), - [anon_sym_SLASH_SLASH] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_bit_DASHshl] = ACTIONS(1632), - [anon_sym_bit_DASHshr] = ACTIONS(1632), - [anon_sym_EQ_EQ] = ACTIONS(1632), - [anon_sym_BANG_EQ] = ACTIONS(1632), - [anon_sym_LT2] = ACTIONS(1632), - [anon_sym_LT_EQ] = ACTIONS(1632), - [anon_sym_GT_EQ] = ACTIONS(1632), - [anon_sym_not_DASHin] = ACTIONS(1632), - [anon_sym_starts_DASHwith] = ACTIONS(1632), - [anon_sym_ends_DASHwith] = ACTIONS(1632), - [anon_sym_EQ_TILDE] = ACTIONS(1632), - [anon_sym_BANG_TILDE] = ACTIONS(1632), - [anon_sym_bit_DASHand] = ACTIONS(1632), - [anon_sym_bit_DASHxor] = ACTIONS(1632), - [anon_sym_bit_DASHor] = ACTIONS(1632), - [anon_sym_and] = ACTIONS(1632), - [anon_sym_xor] = ACTIONS(1632), - [anon_sym_or] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [aux_sym__val_number_decimal_token1] = ACTIONS(1632), - [aux_sym__val_number_token1] = ACTIONS(1632), - [aux_sym__val_number_token2] = ACTIONS(1632), - [aux_sym__val_number_token3] = ACTIONS(1632), - [aux_sym__val_number_token4] = ACTIONS(1632), - [aux_sym__val_number_token5] = ACTIONS(1632), - [aux_sym__val_number_token6] = ACTIONS(1632), - [anon_sym_0b] = ACTIONS(1632), - [anon_sym_0o] = ACTIONS(1632), - [anon_sym_0x] = ACTIONS(1632), - [sym_val_date] = ACTIONS(1632), - [anon_sym_DQUOTE] = ACTIONS(1632), - [sym__str_single_quotes] = ACTIONS(1632), - [sym__str_back_ticks] = ACTIONS(1632), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1632), - [anon_sym_err_GT] = ACTIONS(1632), - [anon_sym_out_GT] = ACTIONS(1632), - [anon_sym_e_GT] = ACTIONS(1632), - [anon_sym_o_GT] = ACTIONS(1632), - [anon_sym_err_PLUSout_GT] = ACTIONS(1632), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), - [anon_sym_o_PLUSe_GT] = ACTIONS(1632), - [anon_sym_e_PLUSo_GT] = ACTIONS(1632), - [aux_sym_unquoted_token1] = ACTIONS(1632), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1105] = { + [sym__match_pattern_record_variable] = STATE(2301), + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(1946), + [sym__var] = STATE(1684), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2301), + [sym__record_key] = STATE(5871), [sym_comment] = STATE(1105), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LF] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_STAR_STAR] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_bit_DASHshl] = ACTIONS(1556), - [anon_sym_bit_DASHshr] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_not_DASHin] = ACTIONS(1556), - [anon_sym_starts_DASHwith] = ACTIONS(1556), - [anon_sym_ends_DASHwith] = ACTIONS(1556), - [anon_sym_EQ_TILDE] = ACTIONS(1556), - [anon_sym_BANG_TILDE] = ACTIONS(1556), - [anon_sym_bit_DASHand] = ACTIONS(1556), - [anon_sym_bit_DASHxor] = ACTIONS(1556), - [anon_sym_bit_DASHor] = ACTIONS(1556), - [anon_sym_and] = ACTIONS(1556), - [anon_sym_xor] = ACTIONS(1556), - [anon_sym_or] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [aux_sym__val_number_token4] = ACTIONS(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym__match_pattern_record_repeat1] = STATE(1105), + [anon_sym_export] = ACTIONS(2844), + [anon_sym_alias] = ACTIONS(2844), + [anon_sym_let] = ACTIONS(2844), + [anon_sym_let_DASHenv] = ACTIONS(2844), + [anon_sym_mut] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [sym_cmd_identifier] = ACTIONS(2844), + [anon_sym_def] = ACTIONS(2844), + [anon_sym_export_DASHenv] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym_module] = ACTIONS(2844), + [anon_sym_use] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_DOLLAR] = ACTIONS(2850), + [anon_sym_error] = ACTIONS(2844), + [anon_sym_list] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_in] = ACTIONS(2844), + [anon_sym_loop] = ACTIONS(2844), + [anon_sym_make] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_match] = ACTIONS(2844), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_catch] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_source] = ACTIONS(2844), + [anon_sym_source_DASHenv] = ACTIONS(2844), + [anon_sym_register] = ACTIONS(2844), + [anon_sym_hide] = ACTIONS(2844), + [anon_sym_hide_DASHenv] = ACTIONS(2844), + [anon_sym_overlay] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_as] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2861), + [aux_sym__val_number_decimal_token1] = ACTIONS(2864), + [aux_sym__val_number_token1] = ACTIONS(2867), + [aux_sym__val_number_token2] = ACTIONS(2867), + [aux_sym__val_number_token3] = ACTIONS(2867), + [aux_sym__val_number_token4] = ACTIONS(2870), + [aux_sym__val_number_token5] = ACTIONS(2867), + [aux_sym__val_number_token6] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym__str_single_quotes] = ACTIONS(2876), + [sym__str_back_ticks] = ACTIONS(2876), + [aux_sym__record_key_token2] = ACTIONS(2879), + [anon_sym_POUND] = ACTIONS(3), }, [1106] = { + [sym__match_pattern_record_variable] = STATE(2301), + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(1946), + [sym__var] = STATE(1684), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2301), + [sym__record_key] = STATE(5871), [sym_comment] = STATE(1106), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_not_DASHin] = ACTIONS(2762), - [anon_sym_starts_DASHwith] = ACTIONS(2762), - [anon_sym_ends_DASHwith] = ACTIONS(2762), - [anon_sym_EQ_TILDE] = ACTIONS(2770), - [anon_sym_BANG_TILDE] = ACTIONS(2770), - [anon_sym_bit_DASHand] = ACTIONS(2772), - [anon_sym_bit_DASHxor] = ACTIONS(2774), - [anon_sym_bit_DASHor] = ACTIONS(2776), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym__match_pattern_record_repeat1] = STATE(1105), + [anon_sym_export] = ACTIONS(309), + [anon_sym_alias] = ACTIONS(309), + [anon_sym_let] = ACTIONS(309), + [anon_sym_let_DASHenv] = ACTIONS(309), + [anon_sym_mut] = ACTIONS(309), + [anon_sym_const] = ACTIONS(309), + [sym_cmd_identifier] = ACTIONS(309), + [anon_sym_def] = ACTIONS(309), + [anon_sym_export_DASHenv] = ACTIONS(309), + [anon_sym_extern] = ACTIONS(309), + [anon_sym_module] = ACTIONS(309), + [anon_sym_use] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_error] = ACTIONS(309), + [anon_sym_list] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(309), + [anon_sym_continue] = ACTIONS(309), + [anon_sym_for] = ACTIONS(309), + [anon_sym_in] = ACTIONS(309), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_make] = ACTIONS(309), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(309), + [anon_sym_if] = ACTIONS(309), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_try] = ACTIONS(309), + [anon_sym_catch] = ACTIONS(309), + [anon_sym_return] = ACTIONS(309), + [anon_sym_source] = ACTIONS(309), + [anon_sym_source_DASHenv] = ACTIONS(309), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(309), + [anon_sym_hide_DASHenv] = ACTIONS(309), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(309), + [anon_sym_as] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), + [aux_sym__record_key_token2] = ACTIONS(377), + [anon_sym_POUND] = ACTIONS(3), }, [1107] = { [sym_comment] = STATE(1107), - [ts_builtin_sym_end] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_bit_DASHshl] = ACTIONS(1495), - [anon_sym_bit_DASHshr] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT2] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_not_DASHin] = ACTIONS(1495), - [anon_sym_starts_DASHwith] = ACTIONS(1495), - [anon_sym_ends_DASHwith] = ACTIONS(1495), - [anon_sym_EQ_TILDE] = ACTIONS(1495), - [anon_sym_BANG_TILDE] = ACTIONS(1495), - [anon_sym_bit_DASHand] = ACTIONS(1495), - [anon_sym_bit_DASHxor] = ACTIONS(1495), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1495), - [anon_sym_xor] = ACTIONS(1495), - [anon_sym_or] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_err_GT] = ACTIONS(1495), - [anon_sym_out_GT] = ACTIONS(1495), - [anon_sym_e_GT] = ACTIONS(1495), - [anon_sym_o_GT] = ACTIONS(1495), - [anon_sym_err_PLUSout_GT] = ACTIONS(1495), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1495), - [anon_sym_o_PLUSe_GT] = ACTIONS(1495), - [anon_sym_e_PLUSo_GT] = ACTIONS(1495), - [aux_sym_unquoted_token1] = ACTIONS(1495), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT2] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_not_DASHin] = ACTIONS(2807), + [anon_sym_starts_DASHwith] = ACTIONS(2807), + [anon_sym_ends_DASHwith] = ACTIONS(2807), + [anon_sym_EQ_TILDE] = ACTIONS(2815), + [anon_sym_BANG_TILDE] = ACTIONS(2815), + [anon_sym_bit_DASHand] = ACTIONS(2822), + [anon_sym_bit_DASHxor] = ACTIONS(2824), + [anon_sym_bit_DASHor] = ACTIONS(2830), + [anon_sym_and] = ACTIONS(2840), + [anon_sym_xor] = ACTIONS(2842), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1108] = { + [sym_cell_path] = STATE(1435), + [sym_path] = STATE(1145), [sym_comment] = STATE(1108), - [ts_builtin_sym_end] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_in] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_STAR_STAR] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_SLASH] = ACTIONS(1668), - [anon_sym_mod] = ACTIONS(1668), - [anon_sym_SLASH_SLASH] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_bit_DASHshl] = ACTIONS(1668), - [anon_sym_bit_DASHshr] = ACTIONS(1668), - [anon_sym_EQ_EQ] = ACTIONS(1668), - [anon_sym_BANG_EQ] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1668), - [anon_sym_LT_EQ] = ACTIONS(1668), - [anon_sym_GT_EQ] = ACTIONS(1668), - [anon_sym_not_DASHin] = ACTIONS(1668), - [anon_sym_starts_DASHwith] = ACTIONS(1668), - [anon_sym_ends_DASHwith] = ACTIONS(1668), - [anon_sym_EQ_TILDE] = ACTIONS(1668), - [anon_sym_BANG_TILDE] = ACTIONS(1668), - [anon_sym_bit_DASHand] = ACTIONS(1668), - [anon_sym_bit_DASHxor] = ACTIONS(1668), - [anon_sym_bit_DASHor] = ACTIONS(1668), - [anon_sym_and] = ACTIONS(1668), - [anon_sym_xor] = ACTIONS(1668), - [anon_sym_or] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1668), - [anon_sym_0o] = ACTIONS(1668), - [anon_sym_0x] = ACTIONS(1668), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1668), - [anon_sym_out_GT] = ACTIONS(1668), - [anon_sym_e_GT] = ACTIONS(1668), - [anon_sym_o_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1668), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_where] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_not] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, [1109] = { [sym_comment] = STATE(1109), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(1528), - [anon_sym_mod] = ACTIONS(1528), - [anon_sym_SLASH_SLASH] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_bit_DASHshl] = ACTIONS(1528), - [anon_sym_bit_DASHshr] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_not_DASHin] = ACTIONS(1528), - [anon_sym_starts_DASHwith] = ACTIONS(1528), - [anon_sym_ends_DASHwith] = ACTIONS(1528), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(105), }, [1110] = { - [sym_cell_path] = STATE(1346), - [sym_path] = STATE(1082), [sym_comment] = STATE(1110), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_where] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_alias] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_DASHenv] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [sym_cmd_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2908), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_export_DASHenv] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_error] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_DOT2] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_source] = ACTIONS(2906), + [anon_sym_source_DASHenv] = ACTIONS(2906), + [anon_sym_register] = ACTIONS(2906), + [anon_sym_hide] = ACTIONS(2906), + [anon_sym_hide_DASHenv] = ACTIONS(2906), + [anon_sym_overlay] = ACTIONS(2906), + [anon_sym_where] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_not] = ACTIONS(2906), + [aux_sym__immediate_decimal_token1] = ACTIONS(2910), + [aux_sym__immediate_decimal_token2] = ACTIONS(2912), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym__val_number_decimal_token1] = ACTIONS(2906), + [aux_sym__val_number_token1] = ACTIONS(2906), + [aux_sym__val_number_token2] = ACTIONS(2906), + [aux_sym__val_number_token3] = ACTIONS(2906), + [aux_sym__val_number_token4] = ACTIONS(2906), + [aux_sym__val_number_token5] = ACTIONS(2906), + [aux_sym__val_number_token6] = ACTIONS(2906), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2906), + [anon_sym_0x] = ACTIONS(2906), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym__str_single_quotes] = ACTIONS(2906), + [sym__str_back_ticks] = ACTIONS(2906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), [anon_sym_POUND] = ACTIONS(105), }, [1111] = { [sym_comment] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1600), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1600), - [anon_sym_BANG_TILDE] = ACTIONS(1600), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1600), - [aux_sym__val_number_token2] = ACTIONS(1600), - [aux_sym__val_number_token3] = ACTIONS(1600), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1600), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_0b] = ACTIONS(1600), - [anon_sym_0o] = ACTIONS(1600), - [anon_sym_0x] = ACTIONS(1600), - [sym_val_date] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym__str_single_quotes] = ACTIONS(1600), - [sym__str_back_ticks] = ACTIONS(1600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1600), - [anon_sym_err_GT] = ACTIONS(1600), - [anon_sym_out_GT] = ACTIONS(1600), - [anon_sym_e_GT] = ACTIONS(1600), - [anon_sym_o_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT] = ACTIONS(1600), - [aux_sym_unquoted_token1] = ACTIONS(1600), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(105), }, [1112] = { [sym_comment] = STATE(1112), - [ts_builtin_sym_end] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_in] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_SLASH_SLASH] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_bit_DASHshl] = ACTIONS(1600), - [anon_sym_bit_DASHshr] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1600), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1600), - [anon_sym_not_DASHin] = ACTIONS(1600), - [anon_sym_starts_DASHwith] = ACTIONS(1600), - [anon_sym_ends_DASHwith] = ACTIONS(1600), - [anon_sym_EQ_TILDE] = ACTIONS(1600), - [anon_sym_BANG_TILDE] = ACTIONS(1600), - [anon_sym_bit_DASHand] = ACTIONS(1600), - [anon_sym_bit_DASHxor] = ACTIONS(1600), - [anon_sym_bit_DASHor] = ACTIONS(1600), - [anon_sym_and] = ACTIONS(1600), - [anon_sym_xor] = ACTIONS(1600), - [anon_sym_or] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1600), - [aux_sym__val_number_token1] = ACTIONS(1600), - [aux_sym__val_number_token2] = ACTIONS(1600), - [aux_sym__val_number_token3] = ACTIONS(1600), - [aux_sym__val_number_token4] = ACTIONS(1600), - [aux_sym__val_number_token5] = ACTIONS(1600), - [aux_sym__val_number_token6] = ACTIONS(1600), - [anon_sym_0b] = ACTIONS(1600), - [anon_sym_0o] = ACTIONS(1600), - [anon_sym_0x] = ACTIONS(1600), - [sym_val_date] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym__str_single_quotes] = ACTIONS(1600), - [sym__str_back_ticks] = ACTIONS(1600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1600), - [anon_sym_err_GT] = ACTIONS(1600), - [anon_sym_out_GT] = ACTIONS(1600), - [anon_sym_e_GT] = ACTIONS(1600), - [anon_sym_o_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT] = ACTIONS(1600), - [aux_sym_unquoted_token1] = ACTIONS(1600), - [anon_sym_POUND] = ACTIONS(105), - }, - [1113] = { - [sym_comment] = STATE(1113), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_in] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_bit_DASHshl] = ACTIONS(2768), - [anon_sym_bit_DASHshr] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_not_DASHin] = ACTIONS(2762), - [anon_sym_starts_DASHwith] = ACTIONS(2762), - [anon_sym_ends_DASHwith] = ACTIONS(2762), - [anon_sym_EQ_TILDE] = ACTIONS(1528), - [anon_sym_BANG_TILDE] = ACTIONS(1528), - [anon_sym_bit_DASHand] = ACTIONS(1528), - [anon_sym_bit_DASHxor] = ACTIONS(1528), - [anon_sym_bit_DASHor] = ACTIONS(1528), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1528), - [anon_sym_or] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(105), - }, - [1114] = { - [sym_comment] = STATE(1114), [ts_builtin_sym_end] = ACTIONS(215), [anon_sym_SEMI] = ACTIONS(213), [anon_sym_LF] = ACTIONS(215), @@ -188265,363 +190254,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(105), }, - [1115] = { - [sym_comment] = STATE(1115), - [ts_builtin_sym_end] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_LF] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_PIPE] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1658), - [anon_sym_GT] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_in] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_STAR_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_mod] = ACTIONS(1658), - [anon_sym_SLASH_SLASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_bit_DASHshl] = ACTIONS(1658), - [anon_sym_bit_DASHshr] = ACTIONS(1658), - [anon_sym_EQ_EQ] = ACTIONS(1658), - [anon_sym_BANG_EQ] = ACTIONS(1658), - [anon_sym_LT2] = ACTIONS(1658), - [anon_sym_LT_EQ] = ACTIONS(1658), - [anon_sym_GT_EQ] = ACTIONS(1658), - [anon_sym_not_DASHin] = ACTIONS(1658), - [anon_sym_starts_DASHwith] = ACTIONS(1658), - [anon_sym_ends_DASHwith] = ACTIONS(1658), - [anon_sym_EQ_TILDE] = ACTIONS(1658), - [anon_sym_BANG_TILDE] = ACTIONS(1658), - [anon_sym_bit_DASHand] = ACTIONS(1658), - [anon_sym_bit_DASHxor] = ACTIONS(1658), - [anon_sym_bit_DASHor] = ACTIONS(1658), - [anon_sym_and] = ACTIONS(1658), - [anon_sym_xor] = ACTIONS(1658), - [anon_sym_or] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [aux_sym__val_number_token4] = ACTIONS(1658), - [aux_sym__val_number_token5] = ACTIONS(1658), - [aux_sym__val_number_token6] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1658), - [anon_sym_0o] = ACTIONS(1658), - [anon_sym_0x] = ACTIONS(1658), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [anon_sym_err_GT] = ACTIONS(1658), - [anon_sym_out_GT] = ACTIONS(1658), - [anon_sym_e_GT] = ACTIONS(1658), - [anon_sym_o_GT] = ACTIONS(1658), - [anon_sym_err_PLUSout_GT] = ACTIONS(1658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1658), - [anon_sym_o_PLUSe_GT] = ACTIONS(1658), - [anon_sym_e_PLUSo_GT] = ACTIONS(1658), - [aux_sym_unquoted_token1] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(105), - }, - [1116] = { - [sym_comment] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_LF] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_in] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_DOT] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_STAR_STAR] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_SLASH] = ACTIONS(1654), - [anon_sym_mod] = ACTIONS(1654), - [anon_sym_SLASH_SLASH] = ACTIONS(1654), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_bit_DASHshl] = ACTIONS(1654), - [anon_sym_bit_DASHshr] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), - [anon_sym_LT2] = ACTIONS(1654), - [anon_sym_LT_EQ] = ACTIONS(1654), - [anon_sym_GT_EQ] = ACTIONS(1654), - [anon_sym_not_DASHin] = ACTIONS(1654), - [anon_sym_starts_DASHwith] = ACTIONS(1654), - [anon_sym_ends_DASHwith] = ACTIONS(1654), - [anon_sym_EQ_TILDE] = ACTIONS(1654), - [anon_sym_BANG_TILDE] = ACTIONS(1654), - [anon_sym_bit_DASHand] = ACTIONS(1654), - [anon_sym_bit_DASHxor] = ACTIONS(1654), - [anon_sym_bit_DASHor] = ACTIONS(1654), - [anon_sym_and] = ACTIONS(1654), - [anon_sym_xor] = ACTIONS(1654), - [anon_sym_or] = ACTIONS(1654), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1654), - [anon_sym_false] = ACTIONS(1654), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_token1] = ACTIONS(1654), - [aux_sym__val_number_token2] = ACTIONS(1654), - [aux_sym__val_number_token3] = ACTIONS(1654), - [aux_sym__val_number_token4] = ACTIONS(1654), - [aux_sym__val_number_token5] = ACTIONS(1654), - [aux_sym__val_number_token6] = ACTIONS(1654), - [anon_sym_0b] = ACTIONS(1654), - [anon_sym_0o] = ACTIONS(1654), - [anon_sym_0x] = ACTIONS(1654), - [sym_val_date] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [sym__str_single_quotes] = ACTIONS(1654), - [sym__str_back_ticks] = ACTIONS(1654), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1654), - [anon_sym_err_GT] = ACTIONS(1654), - [anon_sym_out_GT] = ACTIONS(1654), - [anon_sym_e_GT] = ACTIONS(1654), - [anon_sym_o_GT] = ACTIONS(1654), - [anon_sym_err_PLUSout_GT] = ACTIONS(1654), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1654), - [anon_sym_o_PLUSe_GT] = ACTIONS(1654), - [anon_sym_e_PLUSo_GT] = ACTIONS(1654), - [aux_sym_unquoted_token1] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(105), - }, - [1117] = { - [sym_comment] = STATE(1117), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DOT2] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token1] = ACTIONS(2810), - [aux_sym__immediate_decimal_token2] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(105), - }, - [1118] = { - [sym_path] = STATE(1191), - [sym_comment] = STATE(1118), - [aux_sym_cell_path_repeat1] = STATE(1118), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_DOT2] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [1119] = { - [sym_comment] = STATE(1119), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_alias] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_let_DASHenv] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [sym_cmd_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_def] = ACTIONS(2782), - [anon_sym_export_DASHenv] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2782), - [anon_sym_error] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_loop] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_DOT2] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_source] = ACTIONS(2782), - [anon_sym_source_DASHenv] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_hide] = ACTIONS(2782), - [anon_sym_hide_DASHenv] = ACTIONS(2782), - [anon_sym_overlay] = ACTIONS(2782), - [anon_sym_where] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [aux_sym__immediate_decimal_token2] = ACTIONS(2788), - [anon_sym_null] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2782), - [anon_sym_false] = ACTIONS(2782), - [aux_sym__val_number_decimal_token1] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2782), - [aux_sym__val_number_token2] = ACTIONS(2782), - [aux_sym__val_number_token3] = ACTIONS(2782), - [aux_sym__val_number_token4] = ACTIONS(2782), - [aux_sym__val_number_token5] = ACTIONS(2782), - [aux_sym__val_number_token6] = ACTIONS(2782), - [anon_sym_0b] = ACTIONS(2782), - [anon_sym_0o] = ACTIONS(2782), - [anon_sym_0x] = ACTIONS(2782), - [sym_val_date] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2782), - [sym__str_single_quotes] = ACTIONS(2782), - [sym__str_back_ticks] = ACTIONS(2782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(105), - }, - [1120] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1120), - [aux_sym_val_record_repeat1] = STATE(1142), + [1113] = { + [sym__match_pattern_record_variable] = STATE(2301), + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(1946), + [sym__var] = STATE(1684), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2301), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1113), + [aux_sym__match_pattern_record_repeat1] = STATE(1105), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -188634,11 +190280,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2884), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -188650,8 +190296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -188663,33 +190309,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, + [1114] = { + [sym_comment] = STATE(1114), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), + }, + [1115] = { + [sym_comment] = STATE(1115), + [ts_builtin_sym_end] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_STAR_STAR] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_bit_DASHshl] = ACTIONS(1532), + [anon_sym_bit_DASHshr] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1532), + [anon_sym_BANG_EQ] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1532), + [anon_sym_GT_EQ] = ACTIONS(1532), + [anon_sym_not_DASHin] = ACTIONS(1532), + [anon_sym_starts_DASHwith] = ACTIONS(1532), + [anon_sym_ends_DASHwith] = ACTIONS(1532), + [anon_sym_EQ_TILDE] = ACTIONS(1532), + [anon_sym_BANG_TILDE] = ACTIONS(1532), + [anon_sym_bit_DASHand] = ACTIONS(1532), + [anon_sym_bit_DASHxor] = ACTIONS(1532), + [anon_sym_bit_DASHor] = ACTIONS(1532), + [anon_sym_and] = ACTIONS(1532), + [anon_sym_xor] = ACTIONS(1532), + [anon_sym_or] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_err_GT] = ACTIONS(1532), + [anon_sym_out_GT] = ACTIONS(1532), + [anon_sym_e_GT] = ACTIONS(1532), + [anon_sym_o_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT] = ACTIONS(1532), + [aux_sym_unquoted_token1] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(105), + }, + [1116] = { + [sym_comment] = STATE(1116), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_STAR_STAR] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_bit_DASHshl] = ACTIONS(1579), + [anon_sym_bit_DASHshr] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_not_DASHin] = ACTIONS(1579), + [anon_sym_starts_DASHwith] = ACTIONS(1579), + [anon_sym_ends_DASHwith] = ACTIONS(1579), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_BANG_TILDE] = ACTIONS(1579), + [anon_sym_bit_DASHand] = ACTIONS(1579), + [anon_sym_bit_DASHxor] = ACTIONS(1579), + [anon_sym_bit_DASHor] = ACTIONS(1579), + [anon_sym_and] = ACTIONS(1579), + [anon_sym_xor] = ACTIONS(1579), + [anon_sym_or] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1579), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(105), + }, + [1117] = { + [sym_comment] = STATE(1117), + [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), + [anon_sym_SEMI] = ACTIONS(1445), + [sym_cmd_identifier] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [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(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_DASH] = 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(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT2] = ACTIONS(2916), + [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(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_not] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(2797), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(105), + }, + [1118] = { + [sym_comment] = STATE(1118), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_LF] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_STAR_STAR] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_SLASH_SLASH] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_bit_DASHshl] = ACTIONS(1667), + [anon_sym_bit_DASHshr] = ACTIONS(1667), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1667), + [anon_sym_GT_EQ] = ACTIONS(1667), + [anon_sym_not_DASHin] = ACTIONS(1667), + [anon_sym_starts_DASHwith] = ACTIONS(1667), + [anon_sym_ends_DASHwith] = ACTIONS(1667), + [anon_sym_EQ_TILDE] = ACTIONS(1667), + [anon_sym_BANG_TILDE] = ACTIONS(1667), + [anon_sym_bit_DASHand] = ACTIONS(1667), + [anon_sym_bit_DASHxor] = ACTIONS(1667), + [anon_sym_bit_DASHor] = ACTIONS(1667), + [anon_sym_and] = ACTIONS(1667), + [anon_sym_xor] = ACTIONS(1667), + [anon_sym_or] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = 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), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1667), + [anon_sym_DOLLAR_DQUOTE] = 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), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(105), + }, + [1119] = { + [sym_comment] = STATE(1119), + [ts_builtin_sym_end] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(1619), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1619), + [anon_sym_BANG_TILDE] = ACTIONS(1619), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1619), + [anon_sym_0o] = ACTIONS(1619), + [anon_sym_0x] = ACTIONS(1619), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1619), + [anon_sym_out_GT] = ACTIONS(1619), + [anon_sym_e_GT] = ACTIONS(1619), + [anon_sym_o_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [aux_sym_unquoted_token1] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(105), + }, + [1120] = { + [sym_comment] = STATE(1120), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_bit_DASHshl] = ACTIONS(2813), + [anon_sym_bit_DASHshr] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT2] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), + }, [1121] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), + [sym__match_pattern_record_variable] = STATE(2301), + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(1946), + [sym__var] = STATE(1684), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2301), + [sym__record_key] = STATE(5871), [sym_comment] = STATE(1121), - [aux_sym_val_record_repeat1] = STATE(1171), + [aux_sym__match_pattern_record_repeat1] = STATE(1106), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -188702,11 +190832,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2884), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -188718,8 +190848,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2920), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -188731,237 +190861,655 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, [1122] = { - [sym_expr_parenthesized] = STATE(1902), - [sym__immediate_decimal] = STATE(1901), - [sym_val_variable] = STATE(1902), - [sym__var] = STATE(1659), [sym_comment] = STATE(1122), - [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), - [sym_cmd_identifier] = 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_COMMA] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_DOLLAR] = ACTIONS(2841), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_list] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_in] = 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_DOT] = ACTIONS(1977), - [anon_sym_DOT2] = ACTIONS(2845), - [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_new] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_EQ2] = ACTIONS(2847), - [aux_sym__immediate_decimal_token1] = ACTIONS(2849), - [anon_sym_DASH2] = ACTIONS(2851), - [anon_sym_PLUS2] = ACTIONS(2853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [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(1979), - [aux_sym__val_number_token6] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1979), - [sym__str_single_quotes] = ACTIONS(1979), - [sym__str_back_ticks] = ACTIONS(1979), - [aux_sym__record_key_token2] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_LF] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_DOLLAR] = ACTIONS(1595), + [anon_sym_GT] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_in] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_SLASH] = ACTIONS(1595), + [anon_sym_mod] = ACTIONS(1595), + [anon_sym_SLASH_SLASH] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_bit_DASHshl] = ACTIONS(1595), + [anon_sym_bit_DASHshr] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1595), + [anon_sym_BANG_EQ] = ACTIONS(1595), + [anon_sym_LT2] = ACTIONS(1595), + [anon_sym_LT_EQ] = ACTIONS(1595), + [anon_sym_GT_EQ] = ACTIONS(1595), + [anon_sym_not_DASHin] = ACTIONS(1595), + [anon_sym_starts_DASHwith] = ACTIONS(1595), + [anon_sym_ends_DASHwith] = ACTIONS(1595), + [anon_sym_EQ_TILDE] = ACTIONS(1595), + [anon_sym_BANG_TILDE] = ACTIONS(1595), + [anon_sym_bit_DASHand] = ACTIONS(1595), + [anon_sym_bit_DASHxor] = ACTIONS(1595), + [anon_sym_bit_DASHor] = ACTIONS(1595), + [anon_sym_and] = ACTIONS(1595), + [anon_sym_xor] = ACTIONS(1595), + [anon_sym_or] = ACTIONS(1595), + [anon_sym_null] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1595), + [anon_sym_false] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = 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), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [sym__str_single_quotes] = ACTIONS(1595), + [sym__str_back_ticks] = ACTIONS(1595), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1595), + [anon_sym_DOLLAR_DQUOTE] = 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), + [aux_sym_unquoted_token1] = ACTIONS(1595), + [anon_sym_POUND] = ACTIONS(105), }, [1123] = { [sym_comment] = STATE(1123), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DOT2] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token2] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), + [ts_builtin_sym_end] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_mod] = ACTIONS(1647), + [anon_sym_SLASH_SLASH] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_bit_DASHshl] = ACTIONS(1647), + [anon_sym_bit_DASHshr] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_not_DASHin] = ACTIONS(1647), + [anon_sym_starts_DASHwith] = ACTIONS(1647), + [anon_sym_ends_DASHwith] = ACTIONS(1647), + [anon_sym_EQ_TILDE] = ACTIONS(1647), + [anon_sym_BANG_TILDE] = ACTIONS(1647), + [anon_sym_bit_DASHand] = ACTIONS(1647), + [anon_sym_bit_DASHxor] = ACTIONS(1647), + [anon_sym_bit_DASHor] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_xor] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_null] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1647), + [anon_sym_false] = ACTIONS(1647), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_token1] = ACTIONS(1647), + [aux_sym__val_number_token2] = ACTIONS(1647), + [aux_sym__val_number_token3] = ACTIONS(1647), + [aux_sym__val_number_token4] = ACTIONS(1647), + [aux_sym__val_number_token5] = ACTIONS(1647), + [aux_sym__val_number_token6] = ACTIONS(1647), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym__str_single_quotes] = ACTIONS(1647), + [sym__str_back_ticks] = ACTIONS(1647), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [aux_sym_unquoted_token1] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(105), }, [1124] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), [sym_comment] = STATE(1124), - [aux_sym_val_record_repeat1] = STATE(1171), - [anon_sym_export] = ACTIONS(309), - [anon_sym_alias] = ACTIONS(309), - [anon_sym_let] = ACTIONS(309), - [anon_sym_let_DASHenv] = ACTIONS(309), - [anon_sym_mut] = ACTIONS(309), - [anon_sym_const] = ACTIONS(309), - [sym_cmd_identifier] = ACTIONS(309), - [anon_sym_def] = ACTIONS(309), - [anon_sym_export_DASHenv] = ACTIONS(309), - [anon_sym_extern] = ACTIONS(309), - [anon_sym_module] = ACTIONS(309), - [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), - [anon_sym_error] = ACTIONS(309), - [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(309), - [anon_sym_continue] = ACTIONS(309), - [anon_sym_for] = ACTIONS(309), - [anon_sym_in] = ACTIONS(309), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_make] = ACTIONS(309), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(309), - [anon_sym_if] = ACTIONS(309), - [anon_sym_else] = ACTIONS(309), - [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2823), - [anon_sym_try] = ACTIONS(309), - [anon_sym_catch] = ACTIONS(309), - [anon_sym_return] = ACTIONS(309), - [anon_sym_source] = ACTIONS(309), - [anon_sym_source_DASHenv] = ACTIONS(309), - [anon_sym_register] = ACTIONS(309), - [anon_sym_hide] = ACTIONS(309), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(309), - [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), - [aux_sym__record_key_token2] = ACTIONS(377), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LF] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_bit_DASHshl] = ACTIONS(1540), + [anon_sym_bit_DASHshr] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_not_DASHin] = ACTIONS(1540), + [anon_sym_starts_DASHwith] = ACTIONS(1540), + [anon_sym_ends_DASHwith] = ACTIONS(1540), + [anon_sym_EQ_TILDE] = ACTIONS(1540), + [anon_sym_BANG_TILDE] = ACTIONS(1540), + [anon_sym_bit_DASHand] = ACTIONS(1540), + [anon_sym_bit_DASHxor] = ACTIONS(1540), + [anon_sym_bit_DASHor] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_xor] = ACTIONS(1540), + [anon_sym_or] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [aux_sym__val_number_token4] = ACTIONS(1540), + [aux_sym__val_number_token5] = ACTIONS(1540), + [aux_sym__val_number_token6] = ACTIONS(1540), + [anon_sym_0b] = ACTIONS(1540), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(105), }, [1125] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), [sym_comment] = STATE(1125), - [aux_sym_val_record_repeat1] = STATE(1171), + [ts_builtin_sym_end] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_LF] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_mod] = ACTIONS(1655), + [anon_sym_SLASH_SLASH] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_bit_DASHshl] = ACTIONS(1655), + [anon_sym_bit_DASHshr] = ACTIONS(1655), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_LT2] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1655), + [anon_sym_GT_EQ] = ACTIONS(1655), + [anon_sym_not_DASHin] = ACTIONS(1655), + [anon_sym_starts_DASHwith] = ACTIONS(1655), + [anon_sym_ends_DASHwith] = ACTIONS(1655), + [anon_sym_EQ_TILDE] = ACTIONS(1655), + [anon_sym_BANG_TILDE] = ACTIONS(1655), + [anon_sym_bit_DASHand] = ACTIONS(1655), + [anon_sym_bit_DASHxor] = ACTIONS(1655), + [anon_sym_bit_DASHor] = ACTIONS(1655), + [anon_sym_and] = ACTIONS(1655), + [anon_sym_xor] = ACTIONS(1655), + [anon_sym_or] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1655), + [aux_sym__val_number_token1] = ACTIONS(1655), + [aux_sym__val_number_token2] = ACTIONS(1655), + [aux_sym__val_number_token3] = ACTIONS(1655), + [aux_sym__val_number_token4] = ACTIONS(1655), + [aux_sym__val_number_token5] = ACTIONS(1655), + [aux_sym__val_number_token6] = ACTIONS(1655), + [anon_sym_0b] = ACTIONS(1655), + [anon_sym_0o] = ACTIONS(1655), + [anon_sym_0x] = ACTIONS(1655), + [sym_val_date] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym__str_single_quotes] = ACTIONS(1655), + [sym__str_back_ticks] = ACTIONS(1655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1655), + [anon_sym_out_GT] = ACTIONS(1655), + [anon_sym_e_GT] = ACTIONS(1655), + [anon_sym_o_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT] = ACTIONS(1655), + [aux_sym_unquoted_token1] = ACTIONS(1655), + [anon_sym_POUND] = ACTIONS(105), + }, + [1126] = { + [sym_comment] = STATE(1126), + [ts_builtin_sym_end] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_bit_DASHshl] = ACTIONS(1445), + [anon_sym_bit_DASHshr] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_not_DASHin] = ACTIONS(1445), + [anon_sym_starts_DASHwith] = ACTIONS(1445), + [anon_sym_ends_DASHwith] = ACTIONS(1445), + [anon_sym_EQ_TILDE] = ACTIONS(1445), + [anon_sym_BANG_TILDE] = ACTIONS(1445), + [anon_sym_bit_DASHand] = ACTIONS(1445), + [anon_sym_bit_DASHxor] = ACTIONS(1445), + [anon_sym_bit_DASHor] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1445), + [anon_sym_xor] = ACTIONS(1445), + [anon_sym_or] = ACTIONS(1445), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_err_GT] = ACTIONS(1445), + [anon_sym_out_GT] = ACTIONS(1445), + [anon_sym_e_GT] = ACTIONS(1445), + [anon_sym_o_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT] = ACTIONS(1445), + [aux_sym_unquoted_token1] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(105), + }, + [1127] = { + [sym_cell_path] = STATE(1322), + [sym_path] = STATE(1145), + [sym_comment] = STATE(1127), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_where] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(105), + }, + [1128] = { + [sym_path] = STATE(1233), + [sym_comment] = STATE(1128), + [aux_sym_cell_path_repeat1] = STATE(1071), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_alias] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_let_DASHenv] = ACTIONS(1407), + [anon_sym_mut] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_cmd_identifier] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_def] = ACTIONS(1407), + [anon_sym_export_DASHenv] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_error] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_source] = ACTIONS(1407), + [anon_sym_source_DASHenv] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), + [anon_sym_hide_DASHenv] = ACTIONS(1407), + [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_where] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_not] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(105), + }, + [1129] = { + [sym_comment] = STATE(1129), + [ts_builtin_sym_end] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_LF] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1695), + [anon_sym_GT] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_in] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_STAR_STAR] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_bit_DASHshl] = ACTIONS(1695), + [anon_sym_bit_DASHshr] = ACTIONS(1695), + [anon_sym_EQ_EQ] = ACTIONS(1695), + [anon_sym_BANG_EQ] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1695), + [anon_sym_LT_EQ] = ACTIONS(1695), + [anon_sym_GT_EQ] = ACTIONS(1695), + [anon_sym_not_DASHin] = ACTIONS(1695), + [anon_sym_starts_DASHwith] = ACTIONS(1695), + [anon_sym_ends_DASHwith] = ACTIONS(1695), + [anon_sym_EQ_TILDE] = ACTIONS(1695), + [anon_sym_BANG_TILDE] = ACTIONS(1695), + [anon_sym_bit_DASHand] = ACTIONS(1695), + [anon_sym_bit_DASHxor] = ACTIONS(1695), + [anon_sym_bit_DASHor] = ACTIONS(1695), + [anon_sym_and] = ACTIONS(1695), + [anon_sym_xor] = ACTIONS(1695), + [anon_sym_or] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1695), + [anon_sym_0o] = ACTIONS(1695), + [anon_sym_0x] = ACTIONS(1695), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1695), + [anon_sym_out_GT] = ACTIONS(1695), + [anon_sym_e_GT] = ACTIONS(1695), + [anon_sym_o_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(105), + }, + [1130] = { + [sym_comment] = STATE(1130), + [ts_builtin_sym_end] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_bit_DASHshl] = ACTIONS(1441), + [anon_sym_bit_DASHshr] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1441), + [anon_sym_starts_DASHwith] = ACTIONS(1441), + [anon_sym_ends_DASHwith] = ACTIONS(1441), + [anon_sym_EQ_TILDE] = ACTIONS(1441), + [anon_sym_BANG_TILDE] = ACTIONS(1441), + [anon_sym_bit_DASHand] = ACTIONS(1441), + [anon_sym_bit_DASHxor] = ACTIONS(1441), + [anon_sym_bit_DASHor] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_xor] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [aux_sym_unquoted_token1] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(105), + }, + [1131] = { + [sym__match_pattern_record_variable] = STATE(2301), + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(1946), + [sym__var] = STATE(1684), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2301), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1131), + [aux_sym__match_pattern_record_repeat1] = STATE(1113), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -188974,11 +191522,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2884), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -188990,8 +191538,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -189003,849 +191551,2023 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1126] = { - [sym_comment] = STATE(1126), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_where] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_not] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [aux_sym_unquoted_token5] = ACTIONS(2859), - [anon_sym_POUND] = ACTIONS(105), - }, - [1127] = { - [sym_comment] = STATE(1127), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DOT2] = ACTIONS(2861), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token2] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(105), - }, - [1128] = { - [sym__terminator] = STATE(1400), - [sym_comment] = STATE(1128), - [aux_sym__block_body_repeat1] = STATE(1128), - [anon_sym_export] = ACTIONS(2864), - [anon_sym_alias] = ACTIONS(2864), - [anon_sym_let] = ACTIONS(2864), - [anon_sym_let_DASHenv] = ACTIONS(2864), - [anon_sym_mut] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2866), - [sym_cmd_identifier] = ACTIONS(2864), - [anon_sym_LF] = ACTIONS(2869), - [anon_sym_def] = ACTIONS(2864), - [anon_sym_export_DASHenv] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym_module] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_RPAREN] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_error] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_loop] = ACTIONS(2864), - [anon_sym_while] = ACTIONS(2864), - [anon_sym_do] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2864), - [anon_sym_try] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_source] = ACTIONS(2864), - [anon_sym_source_DASHenv] = ACTIONS(2864), - [anon_sym_register] = ACTIONS(2864), - [anon_sym_hide] = ACTIONS(2864), - [anon_sym_hide_DASHenv] = ACTIONS(2864), - [anon_sym_overlay] = ACTIONS(2864), - [anon_sym_where] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_not] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2864), - [anon_sym_true] = ACTIONS(2864), - [anon_sym_false] = ACTIONS(2864), - [aux_sym__val_number_decimal_token1] = ACTIONS(2864), - [aux_sym__val_number_token1] = ACTIONS(2864), - [aux_sym__val_number_token2] = ACTIONS(2864), - [aux_sym__val_number_token3] = ACTIONS(2864), - [aux_sym__val_number_token4] = ACTIONS(2864), - [aux_sym__val_number_token5] = ACTIONS(2864), - [aux_sym__val_number_token6] = ACTIONS(2864), - [anon_sym_0b] = ACTIONS(2864), - [anon_sym_0o] = ACTIONS(2864), - [anon_sym_0x] = ACTIONS(2864), - [sym_val_date] = ACTIONS(2864), - [anon_sym_DQUOTE] = ACTIONS(2864), - [sym__str_single_quotes] = ACTIONS(2864), - [sym__str_back_ticks] = ACTIONS(2864), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_POUND] = ACTIONS(105), - }, - [1129] = { - [sym_cell_path] = STATE(1542), - [sym_path] = STATE(1169), - [sym_comment] = STATE(1129), - [ts_builtin_sym_end] = ACTIONS(1397), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_where] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(105), - }, - [1130] = { - [sym_comment] = STATE(1130), - [anon_sym_export] = ACTIONS(2874), - [anon_sym_alias] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_DASHenv] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2874), - [sym_cmd_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_def] = ACTIONS(2874), - [anon_sym_export_DASHenv] = ACTIONS(2874), - [anon_sym_extern] = ACTIONS(2874), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_RPAREN] = ACTIONS(2874), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_error] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_loop] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_DOT2] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_source] = ACTIONS(2874), - [anon_sym_source_DASHenv] = ACTIONS(2874), - [anon_sym_register] = ACTIONS(2874), - [anon_sym_hide] = ACTIONS(2874), - [anon_sym_hide_DASHenv] = ACTIONS(2874), - [anon_sym_overlay] = ACTIONS(2874), - [anon_sym_where] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_not] = ACTIONS(2874), - [aux_sym__immediate_decimal_token2] = ACTIONS(2878), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [aux_sym__val_number_decimal_token1] = ACTIONS(2874), - [aux_sym__val_number_token1] = ACTIONS(2874), - [aux_sym__val_number_token2] = ACTIONS(2874), - [aux_sym__val_number_token3] = ACTIONS(2874), - [aux_sym__val_number_token4] = ACTIONS(2874), - [aux_sym__val_number_token5] = ACTIONS(2874), - [aux_sym__val_number_token6] = ACTIONS(2874), - [anon_sym_0b] = ACTIONS(2874), - [anon_sym_0o] = ACTIONS(2874), - [anon_sym_0x] = ACTIONS(2874), - [sym_val_date] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym__str_single_quotes] = ACTIONS(2874), - [sym__str_back_ticks] = ACTIONS(2874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(105), - }, - [1131] = { - [sym_expr_parenthesized] = STATE(2126), - [sym__immediate_decimal] = STATE(2125), - [sym_val_variable] = STATE(2126), - [sym__var] = STATE(1667), - [sym_comment] = STATE(1131), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [sym_cmd_identifier] = ACTIONS(2019), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_COMMA] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2841), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_list] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_DOT] = ACTIONS(2019), - [anon_sym_DOT2] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_new] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_EQ2] = ACTIONS(2886), - [aux_sym__immediate_decimal_token1] = ACTIONS(2888), - [anon_sym_DASH2] = ACTIONS(2890), - [anon_sym_PLUS2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [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(2019), - [aux_sym__val_number_token5] = ACTIONS(2021), - [aux_sym__val_number_token6] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym__str_single_quotes] = ACTIONS(2021), - [sym__str_back_ticks] = ACTIONS(2021), - [aux_sym__record_key_token2] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(3), - }, [1132] = { [sym_comment] = STATE(1132), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_where] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_not] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_PIPE] = ACTIONS(1637), + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_in] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1637), + [anon_sym_mod] = ACTIONS(1637), + [anon_sym_SLASH_SLASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_bit_DASHshl] = ACTIONS(1637), + [anon_sym_bit_DASHshr] = ACTIONS(1637), + [anon_sym_EQ_EQ] = ACTIONS(1637), + [anon_sym_BANG_EQ] = ACTIONS(1637), + [anon_sym_LT2] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1637), + [anon_sym_GT_EQ] = ACTIONS(1637), + [anon_sym_not_DASHin] = ACTIONS(1637), + [anon_sym_starts_DASHwith] = ACTIONS(1637), + [anon_sym_ends_DASHwith] = ACTIONS(1637), + [anon_sym_EQ_TILDE] = ACTIONS(1637), + [anon_sym_BANG_TILDE] = ACTIONS(1637), + [anon_sym_bit_DASHand] = ACTIONS(1637), + [anon_sym_bit_DASHxor] = ACTIONS(1637), + [anon_sym_bit_DASHor] = ACTIONS(1637), + [anon_sym_and] = ACTIONS(1637), + [anon_sym_xor] = ACTIONS(1637), + [anon_sym_or] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [aux_sym__val_number_decimal_token1] = ACTIONS(1637), + [aux_sym__val_number_token1] = ACTIONS(1637), + [aux_sym__val_number_token2] = ACTIONS(1637), + [aux_sym__val_number_token3] = ACTIONS(1637), + [aux_sym__val_number_token4] = ACTIONS(1637), + [aux_sym__val_number_token5] = ACTIONS(1637), + [aux_sym__val_number_token6] = ACTIONS(1637), + [anon_sym_0b] = ACTIONS(1637), + [anon_sym_0o] = ACTIONS(1637), + [anon_sym_0x] = ACTIONS(1637), + [sym_val_date] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym__str_single_quotes] = ACTIONS(1637), + [sym__str_back_ticks] = ACTIONS(1637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1637), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1637), + [anon_sym_err_GT] = ACTIONS(1637), + [anon_sym_out_GT] = ACTIONS(1637), + [anon_sym_e_GT] = ACTIONS(1637), + [anon_sym_o_GT] = ACTIONS(1637), + [anon_sym_err_PLUSout_GT] = ACTIONS(1637), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), + [anon_sym_o_PLUSe_GT] = ACTIONS(1637), + [anon_sym_e_PLUSo_GT] = ACTIONS(1637), + [aux_sym_unquoted_token1] = ACTIONS(1637), [anon_sym_POUND] = ACTIONS(105), }, [1133] = { [sym_comment] = STATE(1133), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_where] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_not] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_LF] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DOT] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1587), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1587), + [anon_sym_0x] = ACTIONS(1587), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = 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), + [aux_sym_unquoted_token1] = ACTIONS(1587), [anon_sym_POUND] = ACTIONS(105), }, [1134] = { - [sym_path] = STATE(1413), + [sym_cell_path] = STATE(1416), + [sym_path] = STATE(1145), [sym_comment] = STATE(1134), - [aux_sym_cell_path_repeat1] = STATE(1174), - [ts_builtin_sym_end] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_not] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [sym_cmd_identifier] = ACTIONS(1431), + [anon_sym_LF] = ACTIONS(1433), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT2] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_register] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_where] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_not] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [aux_sym__val_number_token4] = ACTIONS(1431), + [aux_sym__val_number_token5] = ACTIONS(1431), + [aux_sym__val_number_token6] = ACTIONS(1431), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), + [sym_val_date] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1431), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), [anon_sym_POUND] = ACTIONS(105), }, [1135] = { [sym_comment] = STATE(1135), - [ts_builtin_sym_end] = ACTIONS(2784), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_alias] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_let_DASHenv] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [sym_cmd_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_def] = ACTIONS(2782), - [anon_sym_export_DASHenv] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2782), - [anon_sym_error] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_loop] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_DOT2] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_source] = ACTIONS(2782), - [anon_sym_source_DASHenv] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_hide] = ACTIONS(2782), - [anon_sym_hide_DASHenv] = ACTIONS(2782), - [anon_sym_overlay] = ACTIONS(2782), - [anon_sym_where] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [aux_sym__immediate_decimal_token1] = ACTIONS(2896), - [aux_sym__immediate_decimal_token2] = ACTIONS(2898), - [anon_sym_null] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2782), - [anon_sym_false] = ACTIONS(2782), - [aux_sym__val_number_decimal_token1] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2782), - [aux_sym__val_number_token2] = ACTIONS(2782), - [aux_sym__val_number_token3] = ACTIONS(2782), - [aux_sym__val_number_token4] = ACTIONS(2782), - [aux_sym__val_number_token5] = ACTIONS(2782), - [aux_sym__val_number_token6] = ACTIONS(2782), - [anon_sym_0b] = ACTIONS(2782), - [anon_sym_0o] = ACTIONS(2782), - [anon_sym_0x] = ACTIONS(2782), - [sym_val_date] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2782), - [sym__str_single_quotes] = ACTIONS(2782), - [sym__str_back_ticks] = ACTIONS(2782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), + [ts_builtin_sym_end] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_STAR_STAR] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_SLASH_SLASH] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_bit_DASHshl] = ACTIONS(1619), + [anon_sym_bit_DASHshr] = ACTIONS(1619), + [anon_sym_EQ_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(1619), + [anon_sym_not_DASHin] = ACTIONS(1619), + [anon_sym_starts_DASHwith] = ACTIONS(1619), + [anon_sym_ends_DASHwith] = ACTIONS(1619), + [anon_sym_EQ_TILDE] = ACTIONS(1619), + [anon_sym_BANG_TILDE] = ACTIONS(1619), + [anon_sym_bit_DASHand] = ACTIONS(1619), + [anon_sym_bit_DASHxor] = ACTIONS(1619), + [anon_sym_bit_DASHor] = ACTIONS(1619), + [anon_sym_and] = ACTIONS(1619), + [anon_sym_xor] = ACTIONS(1619), + [anon_sym_or] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1619), + [anon_sym_0o] = ACTIONS(1619), + [anon_sym_0x] = ACTIONS(1619), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1619), + [anon_sym_out_GT] = ACTIONS(1619), + [anon_sym_e_GT] = ACTIONS(1619), + [anon_sym_o_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [aux_sym_unquoted_token1] = ACTIONS(1619), [anon_sym_POUND] = ACTIONS(105), }, [1136] = { - [sym_expr_parenthesized] = STATE(1905), - [sym__immediate_decimal] = STATE(1903), - [sym_val_variable] = STATE(1905), - [sym__var] = STATE(1659), [sym_comment] = STATE(1136), - [anon_sym_export] = ACTIONS(2003), - [anon_sym_alias] = ACTIONS(2003), - [anon_sym_let] = ACTIONS(2003), - [anon_sym_let_DASHenv] = ACTIONS(2003), - [anon_sym_mut] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [sym_cmd_identifier] = ACTIONS(2003), - [anon_sym_def] = ACTIONS(2003), - [anon_sym_export_DASHenv] = ACTIONS(2003), - [anon_sym_extern] = ACTIONS(2003), - [anon_sym_module] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_DOLLAR] = ACTIONS(2841), - [anon_sym_error] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_in] = ACTIONS(2003), - [anon_sym_loop] = ACTIONS(2003), - [anon_sym_make] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2003), - [anon_sym_match] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_source] = ACTIONS(2003), - [anon_sym_source_DASHenv] = ACTIONS(2003), - [anon_sym_register] = ACTIONS(2003), - [anon_sym_hide] = ACTIONS(2003), - [anon_sym_hide_DASHenv] = ACTIONS(2003), - [anon_sym_overlay] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_as] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_EQ2] = ACTIONS(2902), - [aux_sym__immediate_decimal_token1] = ACTIONS(2849), - [anon_sym_DASH2] = ACTIONS(2851), - [anon_sym_PLUS2] = ACTIONS(2853), - [aux_sym__val_number_decimal_token1] = ACTIONS(2003), - [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(2003), - [aux_sym__val_number_token5] = ACTIONS(2005), - [aux_sym__val_number_token6] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [aux_sym__record_key_token2] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_LF] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1641), + [anon_sym_GT] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_STAR_STAR] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1641), + [anon_sym_SLASH] = ACTIONS(1641), + [anon_sym_mod] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_bit_DASHshl] = ACTIONS(1641), + [anon_sym_bit_DASHshr] = ACTIONS(1641), + [anon_sym_EQ_EQ] = ACTIONS(1641), + [anon_sym_BANG_EQ] = ACTIONS(1641), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ] = ACTIONS(1641), + [anon_sym_GT_EQ] = ACTIONS(1641), + [anon_sym_not_DASHin] = ACTIONS(1641), + [anon_sym_starts_DASHwith] = ACTIONS(1641), + [anon_sym_ends_DASHwith] = ACTIONS(1641), + [anon_sym_EQ_TILDE] = ACTIONS(1641), + [anon_sym_BANG_TILDE] = ACTIONS(1641), + [anon_sym_bit_DASHand] = ACTIONS(1641), + [anon_sym_bit_DASHxor] = ACTIONS(1641), + [anon_sym_bit_DASHor] = ACTIONS(1641), + [anon_sym_and] = ACTIONS(1641), + [anon_sym_xor] = ACTIONS(1641), + [anon_sym_or] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [aux_sym__val_number_token4] = ACTIONS(1641), + [aux_sym__val_number_token5] = ACTIONS(1641), + [aux_sym__val_number_token6] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1641), + [anon_sym_0x] = ACTIONS(1641), + [sym_val_date] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [aux_sym_unquoted_token1] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(105), }, [1137] = { [sym_comment] = STATE(1137), - [anon_sym_export] = ACTIONS(2904), - [anon_sym_alias] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_DASHenv] = ACTIONS(2904), - [anon_sym_mut] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [sym_cmd_identifier] = ACTIONS(2904), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_def] = ACTIONS(2904), - [anon_sym_export_DASHenv] = ACTIONS(2904), - [anon_sym_extern] = ACTIONS(2904), - [anon_sym_module] = ACTIONS(2904), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_error] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_loop] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_DOT2] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_source] = ACTIONS(2904), - [anon_sym_source_DASHenv] = ACTIONS(2904), - [anon_sym_register] = ACTIONS(2904), - [anon_sym_hide] = ACTIONS(2904), - [anon_sym_hide_DASHenv] = ACTIONS(2904), - [anon_sym_overlay] = ACTIONS(2904), - [anon_sym_where] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_not] = ACTIONS(2904), - [aux_sym__immediate_decimal_token2] = ACTIONS(2911), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_true] = ACTIONS(2904), - [anon_sym_false] = ACTIONS(2904), - [aux_sym__val_number_decimal_token1] = ACTIONS(2904), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [aux_sym__val_number_token4] = ACTIONS(2904), - [aux_sym__val_number_token5] = ACTIONS(2904), - [aux_sym__val_number_token6] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2904), - [anon_sym_0o] = ACTIONS(2904), - [anon_sym_0x] = ACTIONS(2904), - [sym_val_date] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [sym__str_single_quotes] = ACTIONS(2904), - [sym__str_back_ticks] = ACTIONS(2904), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), + [ts_builtin_sym_end] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_LF] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_DOT] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = 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_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = 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(1687), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [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(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(105), }, [1138] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), [sym_comment] = STATE(1138), - [aux_sym_val_record_repeat1] = STATE(1171), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_STAR_STAR] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_bit_DASHshl] = ACTIONS(1551), + [anon_sym_bit_DASHshr] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_not_DASHin] = ACTIONS(1551), + [anon_sym_starts_DASHwith] = ACTIONS(1551), + [anon_sym_ends_DASHwith] = ACTIONS(1551), + [anon_sym_EQ_TILDE] = ACTIONS(1551), + [anon_sym_BANG_TILDE] = ACTIONS(1551), + [anon_sym_bit_DASHand] = ACTIONS(1551), + [anon_sym_bit_DASHxor] = ACTIONS(1551), + [anon_sym_bit_DASHor] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_xor] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [aux_sym__val_number_token4] = ACTIONS(1551), + [aux_sym__val_number_token5] = ACTIONS(1551), + [aux_sym__val_number_token6] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(105), + }, + [1139] = { + [sym_comment] = STATE(1139), + [ts_builtin_sym_end] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_LF] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1675), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT_EQ] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = 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(1675), + [anon_sym_0o] = ACTIONS(1675), + [anon_sym_0x] = ACTIONS(1675), + [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(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(105), + }, + [1140] = { + [sym_cell_path] = STATE(1263), + [sym_path] = STATE(1091), + [sym_comment] = STATE(1140), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_where] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(105), + }, + [1141] = { + [sym_comment] = STATE(1141), + [ts_builtin_sym_end] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_DOT] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT2] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT_EQ] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1691), + [anon_sym_0x] = ACTIONS(1691), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1691), + [anon_sym_out_GT] = ACTIONS(1691), + [anon_sym_e_GT] = ACTIONS(1691), + [anon_sym_o_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT] = ACTIONS(1691), + [aux_sym_unquoted_token1] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(105), + }, + [1142] = { + [sym_comment] = STATE(1142), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_LF] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = 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_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_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(1607), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [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(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(105), + }, + [1143] = { + [sym_comment] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_in] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_DOT] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_STAR_STAR] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_mod] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_bit_DASHshl] = ACTIONS(1611), + [anon_sym_bit_DASHshr] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1611), + [anon_sym_BANG_EQ] = ACTIONS(1611), + [anon_sym_LT2] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1611), + [anon_sym_GT_EQ] = ACTIONS(1611), + [anon_sym_not_DASHin] = ACTIONS(1611), + [anon_sym_starts_DASHwith] = ACTIONS(1611), + [anon_sym_ends_DASHwith] = ACTIONS(1611), + [anon_sym_EQ_TILDE] = ACTIONS(1611), + [anon_sym_BANG_TILDE] = ACTIONS(1611), + [anon_sym_bit_DASHand] = ACTIONS(1611), + [anon_sym_bit_DASHxor] = ACTIONS(1611), + [anon_sym_bit_DASHor] = ACTIONS(1611), + [anon_sym_and] = ACTIONS(1611), + [anon_sym_xor] = ACTIONS(1611), + [anon_sym_or] = ACTIONS(1611), + [anon_sym_null] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1611), + [anon_sym_false] = ACTIONS(1611), + [aux_sym__val_number_decimal_token1] = ACTIONS(1611), + [aux_sym__val_number_token1] = ACTIONS(1611), + [aux_sym__val_number_token2] = ACTIONS(1611), + [aux_sym__val_number_token3] = ACTIONS(1611), + [aux_sym__val_number_token4] = ACTIONS(1611), + [aux_sym__val_number_token5] = ACTIONS(1611), + [aux_sym__val_number_token6] = ACTIONS(1611), + [anon_sym_0b] = ACTIONS(1611), + [anon_sym_0o] = ACTIONS(1611), + [anon_sym_0x] = ACTIONS(1611), + [sym_val_date] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym__str_single_quotes] = ACTIONS(1611), + [sym__str_back_ticks] = ACTIONS(1611), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1611), + [anon_sym_out_GT] = ACTIONS(1611), + [anon_sym_e_GT] = ACTIONS(1611), + [anon_sym_o_GT] = ACTIONS(1611), + [anon_sym_err_PLUSout_GT] = ACTIONS(1611), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1611), + [anon_sym_o_PLUSe_GT] = ACTIONS(1611), + [anon_sym_e_PLUSo_GT] = ACTIONS(1611), + [aux_sym_unquoted_token1] = ACTIONS(1611), + [anon_sym_POUND] = ACTIONS(105), + }, + [1144] = { + [sym_comment] = STATE(1144), + [ts_builtin_sym_end] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_LF] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_GT] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_DOT] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1633), + [anon_sym_STAR_STAR] = ACTIONS(1633), + [anon_sym_PLUS_PLUS] = ACTIONS(1633), + [anon_sym_SLASH] = ACTIONS(1633), + [anon_sym_mod] = ACTIONS(1633), + [anon_sym_SLASH_SLASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_bit_DASHshl] = ACTIONS(1633), + [anon_sym_bit_DASHshr] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1633), + [anon_sym_BANG_EQ] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_not_DASHin] = ACTIONS(1633), + [anon_sym_starts_DASHwith] = ACTIONS(1633), + [anon_sym_ends_DASHwith] = ACTIONS(1633), + [anon_sym_EQ_TILDE] = ACTIONS(1633), + [anon_sym_BANG_TILDE] = ACTIONS(1633), + [anon_sym_bit_DASHand] = ACTIONS(1633), + [anon_sym_bit_DASHxor] = ACTIONS(1633), + [anon_sym_bit_DASHor] = ACTIONS(1633), + [anon_sym_and] = ACTIONS(1633), + [anon_sym_xor] = ACTIONS(1633), + [anon_sym_or] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = 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_0b] = ACTIONS(1633), + [anon_sym_0o] = ACTIONS(1633), + [anon_sym_0x] = ACTIONS(1633), + [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), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(105), + }, + [1145] = { + [sym_path] = STATE(1233), + [sym_comment] = STATE(1145), + [aux_sym_cell_path_repeat1] = STATE(1128), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(105), + }, + [1146] = { + [sym_path] = STATE(1233), + [sym_comment] = STATE(1146), + [aux_sym_cell_path_repeat1] = STATE(1071), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_alias] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_let_DASHenv] = ACTIONS(1407), + [anon_sym_mut] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_cmd_identifier] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_def] = ACTIONS(1407), + [anon_sym_export_DASHenv] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_error] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(1409), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_source] = ACTIONS(1407), + [anon_sym_source_DASHenv] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), + [anon_sym_hide_DASHenv] = ACTIONS(1407), + [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_where] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_not] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(105), + }, + [1147] = { + [sym_cell_path] = STATE(1239), + [sym_path] = STATE(1091), + [sym_comment] = STATE(1147), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_where] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_not] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(105), + }, + [1148] = { + [sym_comment] = STATE(1148), + [ts_builtin_sym_end] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1679), + [anon_sym_mod] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_bit_DASHshl] = ACTIONS(1679), + [anon_sym_bit_DASHshr] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_not_DASHin] = ACTIONS(1679), + [anon_sym_starts_DASHwith] = ACTIONS(1679), + [anon_sym_ends_DASHwith] = ACTIONS(1679), + [anon_sym_EQ_TILDE] = ACTIONS(1679), + [anon_sym_BANG_TILDE] = ACTIONS(1679), + [anon_sym_bit_DASHand] = ACTIONS(1679), + [anon_sym_bit_DASHxor] = ACTIONS(1679), + [anon_sym_bit_DASHor] = ACTIONS(1679), + [anon_sym_and] = ACTIONS(1679), + [anon_sym_xor] = ACTIONS(1679), + [anon_sym_or] = ACTIONS(1679), + [anon_sym_null] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [aux_sym__val_number_decimal_token1] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(1679), + [aux_sym__val_number_token2] = ACTIONS(1679), + [aux_sym__val_number_token3] = ACTIONS(1679), + [aux_sym__val_number_token4] = ACTIONS(1679), + [aux_sym__val_number_token5] = ACTIONS(1679), + [aux_sym__val_number_token6] = ACTIONS(1679), + [anon_sym_0b] = ACTIONS(1679), + [anon_sym_0o] = ACTIONS(1679), + [anon_sym_0x] = ACTIONS(1679), + [sym_val_date] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [sym__str_single_quotes] = ACTIONS(1679), + [sym__str_back_ticks] = ACTIONS(1679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [aux_sym_unquoted_token1] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(105), + }, + [1149] = { + [sym_comment] = STATE(1149), + [ts_builtin_sym_end] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_STAR_STAR] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_bit_DASHshl] = ACTIONS(1545), + [anon_sym_bit_DASHshr] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_not_DASHin] = ACTIONS(1545), + [anon_sym_starts_DASHwith] = ACTIONS(1545), + [anon_sym_ends_DASHwith] = ACTIONS(1545), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_BANG_TILDE] = ACTIONS(1545), + [anon_sym_bit_DASHand] = ACTIONS(1545), + [anon_sym_bit_DASHxor] = ACTIONS(1545), + [anon_sym_bit_DASHor] = ACTIONS(1545), + [anon_sym_and] = ACTIONS(1545), + [anon_sym_xor] = ACTIONS(1545), + [anon_sym_or] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [aux_sym_unquoted_token1] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(105), + }, + [1150] = { + [sym_comment] = STATE(1150), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_DOT2] = ACTIONS(2930), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token2] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(105), + }, + [1151] = { + [sym_comment] = STATE(1151), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_alias] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_DASHenv] = ACTIONS(2934), + [anon_sym_mut] = ACTIONS(2934), + [anon_sym_const] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [sym_cmd_identifier] = ACTIONS(2934), + [anon_sym_LF] = ACTIONS(2936), + [anon_sym_def] = ACTIONS(2934), + [anon_sym_export_DASHenv] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_error] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_loop] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_DOT2] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_source] = ACTIONS(2934), + [anon_sym_source_DASHenv] = ACTIONS(2934), + [anon_sym_register] = ACTIONS(2934), + [anon_sym_hide] = ACTIONS(2934), + [anon_sym_hide_DASHenv] = ACTIONS(2934), + [anon_sym_overlay] = ACTIONS(2934), + [anon_sym_where] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_not] = ACTIONS(2934), + [aux_sym__immediate_decimal_token2] = ACTIONS(2941), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [aux_sym__val_number_decimal_token1] = ACTIONS(2934), + [aux_sym__val_number_token1] = ACTIONS(2934), + [aux_sym__val_number_token2] = ACTIONS(2934), + [aux_sym__val_number_token3] = ACTIONS(2934), + [aux_sym__val_number_token4] = ACTIONS(2934), + [aux_sym__val_number_token5] = ACTIONS(2934), + [aux_sym__val_number_token6] = ACTIONS(2934), + [anon_sym_0b] = ACTIONS(2934), + [anon_sym_0o] = ACTIONS(2934), + [anon_sym_0x] = ACTIONS(2934), + [sym_val_date] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym__str_single_quotes] = ACTIONS(2934), + [sym__str_back_ticks] = ACTIONS(2934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(105), + }, + [1152] = { + [sym_path] = STATE(1421), + [sym_comment] = STATE(1152), + [aux_sym_cell_path_repeat1] = STATE(1155), + [ts_builtin_sym_end] = ACTIONS(1409), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_alias] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_let_DASHenv] = ACTIONS(1407), + [anon_sym_mut] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_cmd_identifier] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_def] = ACTIONS(1407), + [anon_sym_export_DASHenv] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_error] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(1409), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_source] = ACTIONS(1407), + [anon_sym_source_DASHenv] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), + [anon_sym_hide_DASHenv] = ACTIONS(1407), + [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_where] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_not] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(105), + }, + [1153] = { + [sym_comment] = STATE(1153), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token3] = ACTIONS(2530), + [anon_sym_POUND] = ACTIONS(105), + }, + [1154] = { + [sym_cell_path] = STATE(1502), + [sym_path] = STATE(1177), + [sym_comment] = STATE(1154), + [ts_builtin_sym_end] = ACTIONS(1465), + [anon_sym_export] = ACTIONS(1463), + [anon_sym_alias] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_let_DASHenv] = ACTIONS(1463), + [anon_sym_mut] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1463), + [sym_cmd_identifier] = ACTIONS(1463), + [anon_sym_LF] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1463), + [anon_sym_export_DASHenv] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_module] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_error] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT2] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_source] = ACTIONS(1463), + [anon_sym_source_DASHenv] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_hide] = ACTIONS(1463), + [anon_sym_hide_DASHenv] = ACTIONS(1463), + [anon_sym_overlay] = ACTIONS(1463), + [anon_sym_where] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_not] = ACTIONS(1463), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1463), + [aux_sym__val_number_token2] = ACTIONS(1463), + [aux_sym__val_number_token3] = ACTIONS(1463), + [aux_sym__val_number_token4] = ACTIONS(1463), + [aux_sym__val_number_token5] = ACTIONS(1463), + [aux_sym__val_number_token6] = ACTIONS(1463), + [anon_sym_0b] = ACTIONS(1463), + [anon_sym_0o] = ACTIONS(1463), + [anon_sym_0x] = ACTIONS(1463), + [sym_val_date] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [sym__str_single_quotes] = ACTIONS(1463), + [sym__str_back_ticks] = ACTIONS(1463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(105), + }, + [1155] = { + [sym_path] = STATE(1421), + [sym_comment] = STATE(1155), + [aux_sym_cell_path_repeat1] = STATE(1155), + [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), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [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(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_DASH] = 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(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT2] = ACTIONS(2945), + [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(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [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_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [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(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [1156] = { + [sym_comment] = STATE(1156), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT2] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_QMARK2] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(105), + }, + [1157] = { + [sym_comment] = STATE(1157), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT2] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_where] = ACTIONS(1441), + [anon_sym_QMARK2] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(105), + }, + [1158] = { + [sym_expr_parenthesized] = STATE(2284), + [sym__immediate_decimal] = STATE(2283), + [sym_val_variable] = STATE(2284), + [sym__var] = STATE(1684), + [sym_comment] = STATE(1158), + [anon_sym_export] = ACTIONS(2050), + [anon_sym_alias] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_let_DASHenv] = ACTIONS(2050), + [anon_sym_mut] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [sym_cmd_identifier] = ACTIONS(2050), + [anon_sym_def] = ACTIONS(2050), + [anon_sym_export_DASHenv] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_module] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_COMMA] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_error] = ACTIONS(2050), + [anon_sym_list] = ACTIONS(2050), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_in] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_make] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_do] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_else] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT2] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2050), + [anon_sym_catch] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_source] = ACTIONS(2050), + [anon_sym_source_DASHenv] = ACTIONS(2050), + [anon_sym_register] = ACTIONS(2050), + [anon_sym_hide] = ACTIONS(2050), + [anon_sym_hide_DASHenv] = ACTIONS(2050), + [anon_sym_overlay] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_as] = ACTIONS(2050), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_EQ2] = ACTIONS(2954), + [aux_sym__immediate_decimal_token1] = ACTIONS(2956), + [anon_sym_DASH2] = ACTIONS(2958), + [anon_sym_PLUS2] = ACTIONS(2960), + [aux_sym__val_number_decimal_token1] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(2052), + [aux_sym__val_number_token2] = ACTIONS(2052), + [aux_sym__val_number_token3] = ACTIONS(2052), + [aux_sym__val_number_token4] = ACTIONS(2050), + [aux_sym__val_number_token5] = ACTIONS(2052), + [aux_sym__val_number_token6] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2052), + [sym__str_single_quotes] = ACTIONS(2052), + [sym__str_back_ticks] = ACTIONS(2052), + [aux_sym__record_key_token2] = ACTIONS(2050), + [anon_sym_POUND] = ACTIONS(3), + }, + [1159] = { + [sym_comment] = STATE(1159), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_where] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [aux_sym_unquoted_token5] = ACTIONS(2962), + [anon_sym_POUND] = ACTIONS(105), + }, + [1160] = { + [sym_comment] = STATE(1160), + [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), + [anon_sym_SEMI] = ACTIONS(1445), + [sym_cmd_identifier] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [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(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_DASH] = 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(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT2] = ACTIONS(2964), + [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(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_not] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(2797), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(2966), + [anon_sym_POUND] = ACTIONS(105), + }, + [1161] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1161), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -189858,11 +193580,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -189874,8 +193596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2970), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -189887,101 +193609,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1139] = { - [sym_expr_parenthesized] = STATE(2122), - [sym__immediate_decimal] = STATE(2121), - [sym_val_variable] = STATE(2122), - [sym__var] = STATE(1667), - [sym_comment] = STATE(1139), - [anon_sym_export] = ACTIONS(2011), - [anon_sym_alias] = ACTIONS(2011), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_let_DASHenv] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [sym_cmd_identifier] = ACTIONS(2011), - [anon_sym_def] = ACTIONS(2011), - [anon_sym_export_DASHenv] = ACTIONS(2011), - [anon_sym_extern] = ACTIONS(2011), - [anon_sym_module] = ACTIONS(2011), - [anon_sym_use] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2841), - [anon_sym_error] = ACTIONS(2011), - [anon_sym_list] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_loop] = ACTIONS(2011), - [anon_sym_make] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2011), - [anon_sym_do] = ACTIONS(2011), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_else] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_DOT] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2011), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_source] = ACTIONS(2011), - [anon_sym_source_DASHenv] = ACTIONS(2011), - [anon_sym_register] = ACTIONS(2011), - [anon_sym_hide] = ACTIONS(2011), - [anon_sym_hide_DASHenv] = ACTIONS(2011), - [anon_sym_overlay] = ACTIONS(2011), - [anon_sym_new] = ACTIONS(2011), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_EQ2] = ACTIONS(2917), - [aux_sym__immediate_decimal_token1] = ACTIONS(2888), - [anon_sym_DASH2] = ACTIONS(2890), - [anon_sym_PLUS2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token1] = ACTIONS(2011), - [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(2011), - [aux_sym__val_number_token5] = ACTIONS(2013), - [aux_sym__val_number_token6] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [aux_sym__record_key_token2] = ACTIONS(2011), + [1162] = { + [sym_expr_parenthesized] = STATE(2287), + [sym__immediate_decimal] = STATE(2286), + [sym_val_variable] = STATE(2287), + [sym__var] = STATE(1684), + [sym_comment] = STATE(1162), + [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), + [sym_cmd_identifier] = 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_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_error] = ACTIONS(2024), + [anon_sym_list] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_in] = 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_DOT] = ACTIONS(2024), + [anon_sym_DOT2] = ACTIONS(2952), + [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_new] = ACTIONS(2024), + [anon_sym_as] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_EQ2] = ACTIONS(2974), + [aux_sym__immediate_decimal_token1] = ACTIONS(2956), + [anon_sym_DASH2] = ACTIONS(2958), + [anon_sym_PLUS2] = ACTIONS(2960), + [aux_sym__val_number_decimal_token1] = ACTIONS(2024), + [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(2026), + [aux_sym__val_number_token6] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym__str_single_quotes] = ACTIONS(2026), + [sym__str_back_ticks] = ACTIONS(2026), + [aux_sym__record_key_token2] = ACTIONS(2024), [anon_sym_POUND] = ACTIONS(3), }, - [1140] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1140), - [aux_sym_val_record_repeat1] = STATE(1171), + [1163] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1163), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -189994,11 +193716,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -190010,8 +193732,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -190023,33 +193745,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1141] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1141), - [aux_sym_val_record_repeat1] = STATE(1138), + [1164] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1164), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -190062,11 +193784,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -190078,8 +193800,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -190091,33 +193813,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1142] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1142), - [aux_sym_val_record_repeat1] = STATE(1171), + [1165] = { + [sym_comment] = STATE(1165), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_alias] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_DASHenv] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [sym_cmd_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2908), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_export_DASHenv] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_error] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_DOT2] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_source] = ACTIONS(2906), + [anon_sym_source_DASHenv] = ACTIONS(2906), + [anon_sym_register] = ACTIONS(2906), + [anon_sym_hide] = ACTIONS(2906), + [anon_sym_hide_DASHenv] = ACTIONS(2906), + [anon_sym_overlay] = ACTIONS(2906), + [anon_sym_where] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_not] = ACTIONS(2906), + [aux_sym__immediate_decimal_token2] = ACTIONS(2912), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym__val_number_decimal_token1] = ACTIONS(2906), + [aux_sym__val_number_token1] = ACTIONS(2906), + [aux_sym__val_number_token2] = ACTIONS(2906), + [aux_sym__val_number_token3] = ACTIONS(2906), + [aux_sym__val_number_token4] = ACTIONS(2906), + [aux_sym__val_number_token5] = ACTIONS(2906), + [aux_sym__val_number_token6] = ACTIONS(2906), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2906), + [anon_sym_0x] = ACTIONS(2906), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym__str_single_quotes] = ACTIONS(2906), + [sym__str_back_ticks] = ACTIONS(2906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(105), + }, + [1166] = { + [sym_expr_parenthesized] = STATE(2291), + [sym__immediate_decimal] = STATE(2290), + [sym_val_variable] = STATE(2291), + [sym__var] = STATE(1684), + [sym_comment] = STATE(1166), + [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), + [sym_cmd_identifier] = 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_COMMA] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_error] = ACTIONS(2004), + [anon_sym_list] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_in] = 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_DOT] = ACTIONS(2004), + [anon_sym_DOT2] = ACTIONS(2952), + [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_new] = ACTIONS(2004), + [anon_sym_as] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_EQ2] = ACTIONS(2982), + [aux_sym__immediate_decimal_token1] = ACTIONS(2956), + [anon_sym_DASH2] = ACTIONS(2958), + [anon_sym_PLUS2] = ACTIONS(2960), + [aux_sym__val_number_decimal_token1] = ACTIONS(2004), + [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(2006), + [aux_sym__val_number_token6] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [aux_sym__record_key_token2] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(3), + }, + [1167] = { + [sym_path] = STATE(1421), + [sym_comment] = STATE(1167), + [aux_sym_cell_path_repeat1] = STATE(1155), + [ts_builtin_sym_end] = ACTIONS(1409), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_alias] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_let_DASHenv] = ACTIONS(1407), + [anon_sym_mut] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_cmd_identifier] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_def] = ACTIONS(1407), + [anon_sym_export_DASHenv] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_error] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT2] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_source] = ACTIONS(1407), + [anon_sym_source_DASHenv] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), + [anon_sym_hide_DASHenv] = ACTIONS(1407), + [anon_sym_overlay] = ACTIONS(1407), + [anon_sym_where] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_not] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [aux_sym__val_number_decimal_token1] = ACTIONS(1407), + [aux_sym__val_number_token1] = ACTIONS(1407), + [aux_sym__val_number_token2] = ACTIONS(1407), + [aux_sym__val_number_token3] = ACTIONS(1407), + [aux_sym__val_number_token4] = ACTIONS(1407), + [aux_sym__val_number_token5] = ACTIONS(1407), + [aux_sym__val_number_token6] = ACTIONS(1407), + [anon_sym_0b] = ACTIONS(1407), + [anon_sym_0o] = ACTIONS(1407), + [anon_sym_0x] = ACTIONS(1407), + [sym_val_date] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(105), + }, + [1168] = { + [sym_comment] = STATE(1168), + [anon_sym_export] = ACTIONS(2984), + [anon_sym_alias] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2984), + [anon_sym_let_DASHenv] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2984), + [sym_cmd_identifier] = ACTIONS(2984), + [anon_sym_LF] = ACTIONS(2986), + [anon_sym_def] = ACTIONS(2984), + [anon_sym_export_DASHenv] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym_module] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_RPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2984), + [anon_sym_error] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_loop] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_DOT2] = ACTIONS(2986), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_source] = ACTIONS(2984), + [anon_sym_source_DASHenv] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_hide] = ACTIONS(2984), + [anon_sym_hide_DASHenv] = ACTIONS(2984), + [anon_sym_overlay] = ACTIONS(2984), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [aux_sym__immediate_decimal_token2] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [aux_sym__val_number_decimal_token1] = ACTIONS(2984), + [aux_sym__val_number_token1] = ACTIONS(2984), + [aux_sym__val_number_token2] = ACTIONS(2984), + [aux_sym__val_number_token3] = ACTIONS(2984), + [aux_sym__val_number_token4] = ACTIONS(2984), + [aux_sym__val_number_token5] = ACTIONS(2984), + [aux_sym__val_number_token6] = ACTIONS(2984), + [anon_sym_0b] = ACTIONS(2984), + [anon_sym_0o] = ACTIONS(2984), + [anon_sym_0x] = ACTIONS(2984), + [sym_val_date] = ACTIONS(2984), + [anon_sym_DQUOTE] = ACTIONS(2984), + [sym__str_single_quotes] = ACTIONS(2984), + [sym__str_back_ticks] = ACTIONS(2984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(105), + }, + [1169] = { + [sym_comment] = STATE(1169), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_DOT2] = ACTIONS(2990), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token2] = ACTIONS(2838), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(105), + }, + [1170] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1170), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -190130,11 +194192,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -190146,8 +194208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -190159,237 +194221,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1143] = { - [sym_cell_path] = STATE(1351), - [sym_path] = STATE(1154), - [sym_comment] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(1397), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [sym_cmd_identifier] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT2] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_where] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [aux_sym__val_number_decimal_token1] = ACTIONS(1395), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1395), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1395), - [anon_sym_0b] = ACTIONS(1395), - [anon_sym_0o] = ACTIONS(1395), - [anon_sym_0x] = ACTIONS(1395), - [sym_val_date] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(105), - }, - [1144] = { - [sym_cell_path] = STATE(1481), - [sym_path] = STATE(1169), - [sym_comment] = STATE(1144), - [ts_builtin_sym_end] = ACTIONS(1424), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_alias] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_let_DASHenv] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [sym_cmd_identifier] = ACTIONS(1422), - [anon_sym_LF] = ACTIONS(1424), - [anon_sym_def] = ACTIONS(1422), - [anon_sym_export_DASHenv] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_error] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT2] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_source] = ACTIONS(1422), - [anon_sym_source_DASHenv] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_hide] = ACTIONS(1422), - [anon_sym_hide_DASHenv] = ACTIONS(1422), - [anon_sym_overlay] = ACTIONS(1422), - [anon_sym_where] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_not] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [aux_sym__val_number_decimal_token1] = ACTIONS(1422), - [aux_sym__val_number_token1] = ACTIONS(1422), - [aux_sym__val_number_token2] = ACTIONS(1422), - [aux_sym__val_number_token3] = ACTIONS(1422), - [aux_sym__val_number_token4] = ACTIONS(1422), - [aux_sym__val_number_token5] = ACTIONS(1422), - [aux_sym__val_number_token6] = ACTIONS(1422), - [anon_sym_0b] = ACTIONS(1422), - [anon_sym_0o] = ACTIONS(1422), - [anon_sym_0x] = ACTIONS(1422), - [sym_val_date] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [sym__str_single_quotes] = ACTIONS(1422), - [sym__str_back_ticks] = ACTIONS(1422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(105), - }, - [1145] = { - [sym_cell_path] = STATE(1598), - [sym_path] = STATE(1169), - [sym_comment] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(1401), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_where] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_not] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), + [1171] = { + [sym_comment] = STATE(1171), + [ts_builtin_sym_end] = ACTIONS(2908), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_alias] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_DASHenv] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [sym_cmd_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2908), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_export_DASHenv] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_error] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_DOT2] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_source] = ACTIONS(2906), + [anon_sym_source_DASHenv] = ACTIONS(2906), + [anon_sym_register] = ACTIONS(2906), + [anon_sym_hide] = ACTIONS(2906), + [anon_sym_hide_DASHenv] = ACTIONS(2906), + [anon_sym_overlay] = ACTIONS(2906), + [anon_sym_where] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_not] = ACTIONS(2906), + [aux_sym__immediate_decimal_token1] = ACTIONS(2995), + [aux_sym__immediate_decimal_token2] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym__val_number_decimal_token1] = ACTIONS(2906), + [aux_sym__val_number_token1] = ACTIONS(2906), + [aux_sym__val_number_token2] = ACTIONS(2906), + [aux_sym__val_number_token3] = ACTIONS(2906), + [aux_sym__val_number_token4] = ACTIONS(2906), + [aux_sym__val_number_token5] = ACTIONS(2906), + [aux_sym__val_number_token6] = ACTIONS(2906), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2906), + [anon_sym_0x] = ACTIONS(2906), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym__str_single_quotes] = ACTIONS(2906), + [sym__str_back_ticks] = ACTIONS(2906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), [anon_sym_POUND] = ACTIONS(105), }, - [1146] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1146), - [aux_sym_val_record_repeat1] = STATE(1171), + [1172] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1172), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -190402,11 +194328,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -190418,8 +194344,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -190431,577 +194357,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1147] = { - [sym_expr_parenthesized] = STATE(2117), - [sym__immediate_decimal] = STATE(2116), - [sym_val_variable] = STATE(2117), - [sym__var] = STATE(1667), - [sym_comment] = STATE(1147), - [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), - [sym_cmd_identifier] = 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_COMMA] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2841), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_list] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in] = 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_DOT] = ACTIONS(1957), - [anon_sym_DOT2] = ACTIONS(2884), - [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_new] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_EQ2] = ACTIONS(2930), - [aux_sym__immediate_decimal_token1] = ACTIONS(2888), - [anon_sym_DASH2] = ACTIONS(2890), - [anon_sym_PLUS2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [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(1959), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [aux_sym__record_key_token2] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(3), - }, - [1148] = { - [sym_comment] = STATE(1148), - [anon_sym_export] = ACTIONS(2904), - [anon_sym_alias] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_DASHenv] = ACTIONS(2904), - [anon_sym_mut] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [sym_cmd_identifier] = ACTIONS(2904), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_def] = ACTIONS(2904), - [anon_sym_export_DASHenv] = ACTIONS(2904), - [anon_sym_extern] = ACTIONS(2904), - [anon_sym_module] = ACTIONS(2904), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_error] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_loop] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_DOT2] = ACTIONS(2932), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_source] = ACTIONS(2904), - [anon_sym_source_DASHenv] = ACTIONS(2904), - [anon_sym_register] = ACTIONS(2904), - [anon_sym_hide] = ACTIONS(2904), - [anon_sym_hide_DASHenv] = ACTIONS(2904), - [anon_sym_overlay] = ACTIONS(2904), - [anon_sym_where] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_not] = ACTIONS(2904), - [aux_sym__immediate_decimal_token2] = ACTIONS(2934), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_true] = ACTIONS(2904), - [anon_sym_false] = ACTIONS(2904), - [aux_sym__val_number_decimal_token1] = ACTIONS(2904), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [aux_sym__val_number_token4] = ACTIONS(2904), - [aux_sym__val_number_token5] = ACTIONS(2904), - [aux_sym__val_number_token6] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2904), - [anon_sym_0o] = ACTIONS(2904), - [anon_sym_0x] = ACTIONS(2904), - [sym_val_date] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [sym__str_single_quotes] = ACTIONS(2904), - [sym__str_back_ticks] = ACTIONS(2904), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_POUND] = ACTIONS(105), - }, - [1149] = { - [sym_expr_parenthesized] = STATE(2111), - [sym__immediate_decimal] = STATE(2107), - [sym_val_variable] = STATE(2111), - [sym__var] = STATE(1667), - [sym_comment] = STATE(1149), - [anon_sym_export] = ACTIONS(1995), - [anon_sym_alias] = ACTIONS(1995), - [anon_sym_let] = ACTIONS(1995), - [anon_sym_let_DASHenv] = ACTIONS(1995), - [anon_sym_mut] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [sym_cmd_identifier] = ACTIONS(1995), - [anon_sym_def] = ACTIONS(1995), - [anon_sym_export_DASHenv] = ACTIONS(1995), - [anon_sym_extern] = ACTIONS(1995), - [anon_sym_module] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2841), - [anon_sym_error] = ACTIONS(1995), - [anon_sym_list] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_in] = ACTIONS(1995), - [anon_sym_loop] = ACTIONS(1995), - [anon_sym_make] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_do] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_else] = ACTIONS(1995), - [anon_sym_match] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_source] = ACTIONS(1995), - [anon_sym_source_DASHenv] = ACTIONS(1995), - [anon_sym_register] = ACTIONS(1995), - [anon_sym_hide] = ACTIONS(1995), - [anon_sym_hide_DASHenv] = ACTIONS(1995), - [anon_sym_overlay] = ACTIONS(1995), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_as] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_EQ2] = ACTIONS(2938), - [aux_sym__immediate_decimal_token1] = ACTIONS(2888), - [anon_sym_DASH2] = ACTIONS(2890), - [anon_sym_PLUS2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1995), - [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(1995), - [aux_sym__val_number_token5] = ACTIONS(1997), - [aux_sym__val_number_token6] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym__str_single_quotes] = ACTIONS(1997), - [sym__str_back_ticks] = ACTIONS(1997), - [aux_sym__record_key_token2] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(3), - }, - [1150] = { - [sym_comment] = STATE(1150), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token1] = ACTIONS(2940), - [aux_sym__immediate_decimal_token2] = ACTIONS(2942), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(105), - }, - [1151] = { - [sym_path] = STATE(1413), - [sym_comment] = STATE(1151), - [aux_sym_cell_path_repeat1] = STATE(1174), - [ts_builtin_sym_end] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1436), - [anon_sym_alias] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_let_DASHenv] = ACTIONS(1436), - [anon_sym_mut] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [sym_cmd_identifier] = ACTIONS(1436), - [anon_sym_LF] = ACTIONS(1438), - [anon_sym_def] = ACTIONS(1436), - [anon_sym_export_DASHenv] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_error] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_source] = ACTIONS(1436), - [anon_sym_source_DASHenv] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_hide] = ACTIONS(1436), - [anon_sym_hide_DASHenv] = ACTIONS(1436), - [anon_sym_overlay] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_not] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym__val_number_decimal_token1] = ACTIONS(1436), - [aux_sym__val_number_token1] = ACTIONS(1436), - [aux_sym__val_number_token2] = ACTIONS(1436), - [aux_sym__val_number_token3] = ACTIONS(1436), - [aux_sym__val_number_token4] = ACTIONS(1436), - [aux_sym__val_number_token5] = ACTIONS(1436), - [aux_sym__val_number_token6] = ACTIONS(1436), - [anon_sym_0b] = ACTIONS(1436), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym__str_single_quotes] = ACTIONS(1436), - [sym__str_back_ticks] = ACTIONS(1436), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1436), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(105), - }, - [1152] = { - [sym_comment] = STATE(1152), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DOT2] = ACTIONS(2944), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token2] = ACTIONS(2942), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(105), - }, - [1153] = { - [sym_comment] = STATE(1153), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_alias] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_let_DASHenv] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [sym_cmd_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_def] = ACTIONS(2782), - [anon_sym_export_DASHenv] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2782), - [anon_sym_error] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_loop] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_source] = ACTIONS(2782), - [anon_sym_source_DASHenv] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_hide] = ACTIONS(2782), - [anon_sym_hide_DASHenv] = ACTIONS(2782), - [anon_sym_overlay] = ACTIONS(2782), - [anon_sym_where] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [aux_sym__immediate_decimal_token1] = ACTIONS(2946), - [aux_sym__immediate_decimal_token2] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2782), - [anon_sym_false] = ACTIONS(2782), - [aux_sym__val_number_decimal_token1] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2782), - [aux_sym__val_number_token2] = ACTIONS(2782), - [aux_sym__val_number_token3] = ACTIONS(2782), - [aux_sym__val_number_token4] = ACTIONS(2782), - [aux_sym__val_number_token5] = ACTIONS(2782), - [aux_sym__val_number_token6] = ACTIONS(2782), - [anon_sym_0b] = ACTIONS(2782), - [anon_sym_0o] = ACTIONS(2782), - [anon_sym_0x] = ACTIONS(2782), - [sym_val_date] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2782), - [sym__str_single_quotes] = ACTIONS(2782), - [sym__str_back_ticks] = ACTIONS(2782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(105), - }, - [1154] = { - [sym_path] = STATE(1413), - [sym_comment] = STATE(1154), - [aux_sym_cell_path_repeat1] = STATE(1151), - [ts_builtin_sym_end] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_where] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_not] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), + [1173] = { + [sym_cell_path] = STATE(1590), + [sym_path] = STATE(1177), + [sym_comment] = STATE(1173), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_where] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, - [1155] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1155), - [aux_sym_val_record_repeat1] = STATE(1171), + [1174] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1174), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -191014,11 +194464,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -191030,8 +194480,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2950), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -191043,33 +194493,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1156] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1156), - [aux_sym_val_record_repeat1] = STATE(1155), + [1175] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1175), + [aux_sym_val_record_repeat1] = STATE(1186), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -191082,11 +194532,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -191098,8 +194548,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -191111,33 +194561,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1157] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1157), - [aux_sym_val_record_repeat1] = STATE(1171), + [1176] = { + [sym__match_pattern_expression] = STATE(3599), + [sym__match_pattern_value] = STATE(3590), + [sym__match_pattern_list] = STATE(3597), + [sym__match_pattern_rest] = STATE(6113), + [sym__match_pattern_ignore_rest] = STATE(6113), + [sym__match_pattern_record] = STATE(3595), + [sym__expr_unary_minus] = STATE(3465), + [sym_expr_parenthesized] = STATE(3399), + [sym_val_range] = STATE(3462), + [sym__value] = STATE(3439), + [sym_val_nothing] = STATE(3466), + [sym_val_bool] = STATE(3466), + [sym_val_variable] = STATE(3339), + [sym__var] = STATE(3192), + [sym_val_number] = STATE(503), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(511), + [sym_val_duration] = STATE(3466), + [sym_val_filesize] = STATE(3466), + [sym_val_binary] = STATE(3466), + [sym_val_string] = STATE(3466), + [sym__str_double_quotes] = STATE(3426), + [sym_val_interpolated] = STATE(3475), + [sym__inter_single_quotes] = STATE(3476), + [sym__inter_double_quotes] = STATE(3477), + [sym_val_list] = STATE(3301), + [sym__list_item_expression] = STATE(3438), + [sym__list_item_starts_with_sign] = STATE(3459), + [sym_val_record] = STATE(3475), + [sym_val_table] = STATE(3466), + [sym_val_closure] = STATE(3475), + [sym_short_flag] = STATE(3459), + [sym_long_flag] = STATE(3459), + [sym__unquoted_in_list] = STATE(3459), + [sym_comment] = STATE(1176), + [aux_sym__match_pattern_list_repeat1] = STATE(2303), + [aux_sym_val_list_repeat1] = STATE(1730), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_RBRACK] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3021), + [anon_sym_true] = ACTIONS(3023), + [anon_sym_false] = ACTIONS(3023), + [aux_sym__val_number_decimal_token1] = ACTIONS(3025), + [aux_sym__val_number_token1] = ACTIONS(3027), + [aux_sym__val_number_token2] = ACTIONS(3027), + [aux_sym__val_number_token3] = ACTIONS(3027), + [aux_sym__val_number_token4] = ACTIONS(3029), + [aux_sym__val_number_token5] = ACTIONS(3029), + [aux_sym__val_number_token6] = ACTIONS(3029), + [anon_sym_0b] = ACTIONS(3031), + [anon_sym_0o] = ACTIONS(3031), + [anon_sym_0x] = ACTIONS(3031), + [sym_val_date] = ACTIONS(3033), + [anon_sym_DQUOTE] = ACTIONS(3035), + [sym__str_single_quotes] = ACTIONS(3037), + [sym__str_back_ticks] = ACTIONS(3037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3041), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3043), + [anon_sym_POUND] = ACTIONS(3), + }, + [1177] = { + [sym_path] = STATE(1421), + [sym_comment] = STATE(1177), + [aux_sym_cell_path_repeat1] = STATE(1167), + [ts_builtin_sym_end] = ACTIONS(1396), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(105), + }, + [1178] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1178), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -191150,11 +194736,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -191166,8 +194752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -191179,237 +194765,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1158] = { - [sym_comment] = STATE(1158), - [ts_builtin_sym_end] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT2] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_not] = ACTIONS(1426), - [aux_sym__immediate_decimal_token1] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [aux_sym_unquoted_token2] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(105), - }, - [1159] = { - [sym_comment] = STATE(1159), - [anon_sym_export] = ACTIONS(2960), - [anon_sym_alias] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_DASHenv] = ACTIONS(2960), - [anon_sym_mut] = ACTIONS(2960), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_SEMI] = ACTIONS(2960), - [sym_cmd_identifier] = ACTIONS(2960), - [sym__long_flag_identifier] = ACTIONS(2962), - [anon_sym_LF] = ACTIONS(2964), - [anon_sym_def] = ACTIONS(2960), - [anon_sym_export_DASHenv] = ACTIONS(2960), - [anon_sym_extern] = ACTIONS(2960), - [anon_sym_module] = ACTIONS(2960), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_RPAREN] = ACTIONS(2960), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_error] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_break] = ACTIONS(2960), - [anon_sym_continue] = ACTIONS(2960), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_loop] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2960), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_source] = ACTIONS(2960), - [anon_sym_source_DASHenv] = ACTIONS(2960), - [anon_sym_register] = ACTIONS(2960), - [anon_sym_hide] = ACTIONS(2960), - [anon_sym_hide_DASHenv] = ACTIONS(2960), - [anon_sym_overlay] = ACTIONS(2960), - [anon_sym_as] = ACTIONS(2960), - [anon_sym_where] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_true] = ACTIONS(2960), - [anon_sym_false] = ACTIONS(2960), - [aux_sym__val_number_decimal_token1] = ACTIONS(2960), - [aux_sym__val_number_token1] = ACTIONS(2960), - [aux_sym__val_number_token2] = ACTIONS(2960), - [aux_sym__val_number_token3] = ACTIONS(2960), - [aux_sym__val_number_token4] = ACTIONS(2960), - [aux_sym__val_number_token5] = ACTIONS(2960), - [aux_sym__val_number_token6] = ACTIONS(2960), - [anon_sym_0b] = ACTIONS(2960), - [anon_sym_0o] = ACTIONS(2960), - [anon_sym_0x] = ACTIONS(2960), - [sym_val_date] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [sym__str_single_quotes] = ACTIONS(2960), - [sym__str_back_ticks] = ACTIONS(2960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_CARET] = ACTIONS(2960), - [anon_sym_POUND] = ACTIONS(105), - }, - [1160] = { - [sym_comment] = STATE(1160), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_alias] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_let_DASHenv] = ACTIONS(1475), - [anon_sym_mut] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [sym_cmd_identifier] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_def] = ACTIONS(1475), - [anon_sym_export_DASHenv] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT2] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_source] = ACTIONS(1475), - [anon_sym_source_DASHenv] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_hide_DASHenv] = ACTIONS(1475), - [anon_sym_overlay] = ACTIONS(1475), - [anon_sym_where] = ACTIONS(1475), - [anon_sym_QMARK2] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(105), - }, - [1161] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1161), - [aux_sym_val_record_repeat1] = STATE(1171), + [1179] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1179), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -191422,11 +194804,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -191438,8 +194820,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -191451,33 +194833,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1162] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1162), - [aux_sym_val_record_repeat1] = STATE(1171), + [1180] = { + [sym_expr_parenthesized] = STATE(1956), + [sym__immediate_decimal] = STATE(1957), + [sym_val_variable] = STATE(1956), + [sym__var] = STATE(1717), + [sym_comment] = STATE(1180), + [anon_sym_export] = ACTIONS(2032), + [anon_sym_alias] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_let_DASHenv] = ACTIONS(2032), + [anon_sym_mut] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [sym_cmd_identifier] = ACTIONS(2032), + [anon_sym_def] = ACTIONS(2032), + [anon_sym_export_DASHenv] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym_module] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_COMMA] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_error] = ACTIONS(2032), + [anon_sym_list] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_make] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_else] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_DOT] = ACTIONS(2032), + [anon_sym_DOT2] = ACTIONS(3053), + [anon_sym_try] = ACTIONS(2032), + [anon_sym_catch] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_source] = ACTIONS(2032), + [anon_sym_source_DASHenv] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_hide] = ACTIONS(2032), + [anon_sym_hide_DASHenv] = ACTIONS(2032), + [anon_sym_overlay] = ACTIONS(2032), + [anon_sym_new] = ACTIONS(2032), + [anon_sym_as] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_EQ2] = ACTIONS(3055), + [aux_sym__immediate_decimal_token1] = ACTIONS(3057), + [anon_sym_DASH2] = ACTIONS(3059), + [anon_sym_PLUS2] = ACTIONS(3061), + [aux_sym__val_number_decimal_token1] = ACTIONS(2032), + [aux_sym__val_number_token1] = ACTIONS(2034), + [aux_sym__val_number_token2] = ACTIONS(2034), + [aux_sym__val_number_token3] = ACTIONS(2034), + [aux_sym__val_number_token4] = ACTIONS(2032), + [aux_sym__val_number_token5] = ACTIONS(2034), + [aux_sym__val_number_token6] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym__str_single_quotes] = ACTIONS(2034), + [sym__str_back_ticks] = ACTIONS(2034), + [aux_sym__record_key_token2] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(3), + }, + [1181] = { + [sym__match_pattern_expression] = STATE(3599), + [sym__match_pattern_value] = STATE(3590), + [sym__match_pattern_list] = STATE(3597), + [sym__match_pattern_rest] = STATE(6113), + [sym__match_pattern_ignore_rest] = STATE(6113), + [sym__match_pattern_record] = STATE(3595), + [sym__expr_unary_minus] = STATE(3465), + [sym_expr_parenthesized] = STATE(3399), + [sym_val_range] = STATE(3462), + [sym__value] = STATE(3439), + [sym_val_nothing] = STATE(3466), + [sym_val_bool] = STATE(3466), + [sym_val_variable] = STATE(3339), + [sym__var] = STATE(3192), + [sym_val_number] = STATE(503), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(511), + [sym_val_duration] = STATE(3466), + [sym_val_filesize] = STATE(3466), + [sym_val_binary] = STATE(3466), + [sym_val_string] = STATE(3466), + [sym__str_double_quotes] = STATE(3426), + [sym_val_interpolated] = STATE(3475), + [sym__inter_single_quotes] = STATE(3476), + [sym__inter_double_quotes] = STATE(3477), + [sym_val_list] = STATE(3301), + [sym__list_item_expression] = STATE(3438), + [sym__list_item_starts_with_sign] = STATE(3459), + [sym_val_record] = STATE(3475), + [sym_val_table] = STATE(3466), + [sym_val_closure] = STATE(3475), + [sym_short_flag] = STATE(3459), + [sym_long_flag] = STATE(3459), + [sym__unquoted_in_list] = STATE(3459), + [sym_comment] = STATE(1181), + [aux_sym__match_pattern_list_repeat1] = STATE(2303), + [aux_sym_val_list_repeat1] = STATE(1710), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_RBRACK] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3021), + [anon_sym_true] = ACTIONS(3023), + [anon_sym_false] = ACTIONS(3023), + [aux_sym__val_number_decimal_token1] = ACTIONS(3025), + [aux_sym__val_number_token1] = ACTIONS(3027), + [aux_sym__val_number_token2] = ACTIONS(3027), + [aux_sym__val_number_token3] = ACTIONS(3027), + [aux_sym__val_number_token4] = ACTIONS(3029), + [aux_sym__val_number_token5] = ACTIONS(3029), + [aux_sym__val_number_token6] = ACTIONS(3029), + [anon_sym_0b] = ACTIONS(3031), + [anon_sym_0o] = ACTIONS(3031), + [anon_sym_0x] = ACTIONS(3031), + [sym_val_date] = ACTIONS(3033), + [anon_sym_DQUOTE] = ACTIONS(3035), + [sym__str_single_quotes] = ACTIONS(3037), + [sym__str_back_ticks] = ACTIONS(3037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3041), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3043), + [anon_sym_POUND] = ACTIONS(3), + }, + [1182] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1182), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -191490,11 +195008,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -191506,8 +195024,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -191519,101 +195037,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1163] = { - [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(2808), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DOT2] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token1] = ACTIONS(2970), - [aux_sym__immediate_decimal_token2] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), + [1183] = { + [sym_expr_parenthesized] = STATE(2280), + [sym__immediate_decimal] = STATE(2279), + [sym_val_variable] = STATE(2280), + [sym__var] = STATE(1684), + [sym_comment] = STATE(1183), + [anon_sym_export] = ACTIONS(2058), + [anon_sym_alias] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_let_DASHenv] = ACTIONS(2058), + [anon_sym_mut] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [sym_cmd_identifier] = ACTIONS(2058), + [anon_sym_def] = ACTIONS(2058), + [anon_sym_export_DASHenv] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_module] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_COMMA] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_error] = ACTIONS(2058), + [anon_sym_list] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_in] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_make] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_DOT] = ACTIONS(2058), + [anon_sym_DOT2] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2058), + [anon_sym_catch] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_source] = ACTIONS(2058), + [anon_sym_source_DASHenv] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_hide] = ACTIONS(2058), + [anon_sym_hide_DASHenv] = ACTIONS(2058), + [anon_sym_overlay] = ACTIONS(2058), + [anon_sym_new] = ACTIONS(2058), + [anon_sym_as] = ACTIONS(2058), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_EQ2] = ACTIONS(3069), + [aux_sym__immediate_decimal_token1] = ACTIONS(2956), + [anon_sym_DASH2] = ACTIONS(2958), + [anon_sym_PLUS2] = ACTIONS(2960), + [aux_sym__val_number_decimal_token1] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(2060), + [aux_sym__val_number_token2] = ACTIONS(2060), + [aux_sym__val_number_token3] = ACTIONS(2060), + [aux_sym__val_number_token4] = ACTIONS(2058), + [aux_sym__val_number_token5] = ACTIONS(2060), + [aux_sym__val_number_token6] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2060), + [sym__str_single_quotes] = ACTIONS(2060), + [sym__str_back_ticks] = ACTIONS(2060), + [aux_sym__record_key_token2] = ACTIONS(2058), + [anon_sym_POUND] = ACTIONS(3), + }, + [1184] = { + [sym_cell_path] = STATE(1420), + [sym_path] = STATE(1201), + [sym_comment] = STATE(1184), + [ts_builtin_sym_end] = ACTIONS(1469), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_where] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_not] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), [anon_sym_POUND] = ACTIONS(105), }, - [1164] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1164), - [aux_sym_val_record_repeat1] = STATE(1171), + [1185] = { + [sym_comment] = STATE(1185), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_where] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(105), + }, + [1186] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1186), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -191626,11 +195280,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -191642,8 +195296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -191655,33 +195309,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1165] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1165), - [aux_sym_val_record_repeat1] = STATE(1171), + [1187] = { + [sym_comment] = STATE(1187), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_where] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(105), + }, + [1188] = { + [sym_comment] = STATE(1188), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token1] = ACTIONS(3078), + [aux_sym__immediate_decimal_token2] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(105), + }, + [1189] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1189), + [aux_sym_val_record_repeat1] = STATE(1189), + [anon_sym_export] = ACTIONS(3080), + [anon_sym_alias] = ACTIONS(3080), + [anon_sym_let] = ACTIONS(3080), + [anon_sym_let_DASHenv] = ACTIONS(3080), + [anon_sym_mut] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [sym_cmd_identifier] = ACTIONS(3080), + [anon_sym_def] = ACTIONS(3080), + [anon_sym_export_DASHenv] = ACTIONS(3080), + [anon_sym_extern] = ACTIONS(3080), + [anon_sym_module] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3086), + [anon_sym_error] = ACTIONS(3080), + [anon_sym_list] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_in] = ACTIONS(3080), + [anon_sym_loop] = ACTIONS(3080), + [anon_sym_make] = ACTIONS(3080), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_do] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_catch] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_source] = ACTIONS(3080), + [anon_sym_source_DASHenv] = ACTIONS(3080), + [anon_sym_register] = ACTIONS(3080), + [anon_sym_hide] = ACTIONS(3080), + [anon_sym_hide_DASHenv] = ACTIONS(3080), + [anon_sym_overlay] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3097), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3103), + [aux_sym__val_number_token2] = ACTIONS(3103), + [aux_sym__val_number_token3] = ACTIONS(3103), + [aux_sym__val_number_token4] = ACTIONS(3106), + [aux_sym__val_number_token5] = ACTIONS(3103), + [aux_sym__val_number_token6] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym__str_single_quotes] = ACTIONS(3112), + [sym__str_back_ticks] = ACTIONS(3112), + [aux_sym__record_key_token2] = ACTIONS(3115), + [anon_sym_POUND] = ACTIONS(3), + }, + [1190] = { + [sym_expr_parenthesized] = STATE(1954), + [sym__immediate_decimal] = STATE(1955), + [sym_val_variable] = STATE(1954), + [sym__var] = STATE(1717), + [sym_comment] = STATE(1190), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [sym_cmd_identifier] = ACTIONS(2066), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_COMMA] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_list] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_make] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DOT2] = ACTIONS(3053), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_new] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_EQ2] = ACTIONS(3120), + [aux_sym__immediate_decimal_token1] = ACTIONS(3057), + [anon_sym_DASH2] = ACTIONS(3059), + [anon_sym_PLUS2] = ACTIONS(3061), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_token1] = ACTIONS(2068), + [aux_sym__val_number_token2] = ACTIONS(2068), + [aux_sym__val_number_token3] = ACTIONS(2068), + [aux_sym__val_number_token4] = ACTIONS(2066), + [aux_sym__val_number_token5] = ACTIONS(2068), + [aux_sym__val_number_token6] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2068), + [sym__str_single_quotes] = ACTIONS(2068), + [sym__str_back_ticks] = ACTIONS(2068), + [aux_sym__record_key_token2] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(3), + }, + [1191] = { + [sym_comment] = STATE(1191), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_alias] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_DASHenv] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [sym_cmd_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2908), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_export_DASHenv] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_error] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_source] = ACTIONS(2906), + [anon_sym_source_DASHenv] = ACTIONS(2906), + [anon_sym_register] = ACTIONS(2906), + [anon_sym_hide] = ACTIONS(2906), + [anon_sym_hide_DASHenv] = ACTIONS(2906), + [anon_sym_overlay] = ACTIONS(2906), + [anon_sym_where] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_not] = ACTIONS(2906), + [aux_sym__immediate_decimal_token1] = ACTIONS(3122), + [aux_sym__immediate_decimal_token2] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym__val_number_decimal_token1] = ACTIONS(2906), + [aux_sym__val_number_token1] = ACTIONS(2906), + [aux_sym__val_number_token2] = ACTIONS(2906), + [aux_sym__val_number_token3] = ACTIONS(2906), + [aux_sym__val_number_token4] = ACTIONS(2906), + [aux_sym__val_number_token5] = ACTIONS(2906), + [aux_sym__val_number_token6] = ACTIONS(2906), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2906), + [anon_sym_0x] = ACTIONS(2906), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym__str_single_quotes] = ACTIONS(2906), + [sym__str_back_ticks] = ACTIONS(2906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(105), + }, + [1192] = { + [sym_cell_path] = STATE(1542), + [sym_path] = STATE(1177), + [sym_comment] = STATE(1192), + [ts_builtin_sym_end] = ACTIONS(1433), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [sym_cmd_identifier] = ACTIONS(1431), + [anon_sym_LF] = ACTIONS(1433), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT2] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_register] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_where] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_not] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [aux_sym__val_number_token4] = ACTIONS(1431), + [aux_sym__val_number_token5] = ACTIONS(1431), + [aux_sym__val_number_token6] = ACTIONS(1431), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), + [sym_val_date] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1431), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(105), + }, + [1193] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1193), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -191694,11 +195756,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -191710,8 +195772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2976), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -191723,33 +195785,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1166] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1166), - [aux_sym_val_record_repeat1] = STATE(1146), + [1194] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1194), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -191762,11 +195824,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -191778,8 +195840,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -191791,373 +195853,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1167] = { - [sym_cell_path] = STATE(1414), - [sym_path] = STATE(1154), - [sym_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(1401), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_cmd_identifier] = ACTIONS(1399), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_DOT2] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_where] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_not] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1399), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1399), - [anon_sym_0b] = ACTIONS(1399), - [anon_sym_0o] = ACTIONS(1399), - [anon_sym_0x] = ACTIONS(1399), - [sym_val_date] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(105), - }, - [1168] = { - [sym_comment] = STATE(1168), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token3] = ACTIONS(2532), - [anon_sym_POUND] = ACTIONS(105), - }, - [1169] = { - [sym_path] = STATE(1413), - [sym_comment] = STATE(1169), - [aux_sym_cell_path_repeat1] = STATE(1134), - [ts_builtin_sym_end] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1440), - [anon_sym_alias] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_let_DASHenv] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [sym_cmd_identifier] = ACTIONS(1440), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_export_DASHenv] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_error] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT2] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_source] = ACTIONS(1440), - [anon_sym_source_DASHenv] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_hide] = ACTIONS(1440), - [anon_sym_hide_DASHenv] = ACTIONS(1440), - [anon_sym_overlay] = ACTIONS(1440), - [anon_sym_where] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_not] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym__val_number_decimal_token1] = ACTIONS(1440), - [aux_sym__val_number_token1] = ACTIONS(1440), - [aux_sym__val_number_token2] = ACTIONS(1440), - [aux_sym__val_number_token3] = ACTIONS(1440), - [aux_sym__val_number_token4] = ACTIONS(1440), - [aux_sym__val_number_token5] = ACTIONS(1440), - [aux_sym__val_number_token6] = ACTIONS(1440), - [anon_sym_0b] = ACTIONS(1440), - [anon_sym_0o] = ACTIONS(1440), - [anon_sym_0x] = ACTIONS(1440), - [sym_val_date] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), + [1195] = { + [sym__terminator] = STATE(1279), + [sym_comment] = STATE(1195), + [aux_sym__block_body_repeat1] = STATE(1195), + [anon_sym_export] = ACTIONS(3130), + [anon_sym_alias] = ACTIONS(3130), + [anon_sym_let] = ACTIONS(3130), + [anon_sym_let_DASHenv] = ACTIONS(3130), + [anon_sym_mut] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [sym_cmd_identifier] = ACTIONS(3130), + [anon_sym_LF] = ACTIONS(3135), + [anon_sym_def] = ACTIONS(3130), + [anon_sym_export_DASHenv] = ACTIONS(3130), + [anon_sym_extern] = ACTIONS(3130), + [anon_sym_module] = ACTIONS(3130), + [anon_sym_use] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_RPAREN] = ACTIONS(3130), + [anon_sym_DOLLAR] = ACTIONS(3130), + [anon_sym_error] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_loop] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_match] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_DOT] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_source] = ACTIONS(3130), + [anon_sym_source_DASHenv] = ACTIONS(3130), + [anon_sym_register] = ACTIONS(3130), + [anon_sym_hide] = ACTIONS(3130), + [anon_sym_hide_DASHenv] = ACTIONS(3130), + [anon_sym_overlay] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_not] = ACTIONS(3130), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [aux_sym__val_number_decimal_token1] = ACTIONS(3130), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3130), + [aux_sym__val_number_token5] = ACTIONS(3130), + [aux_sym__val_number_token6] = ACTIONS(3130), + [anon_sym_0b] = ACTIONS(3130), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(3130), + [sym__str_single_quotes] = ACTIONS(3130), + [sym__str_back_ticks] = ACTIONS(3130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), [anon_sym_POUND] = ACTIONS(105), }, - [1170] = { - [sym_comment] = STATE(1170), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_alias] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_let_DASHenv] = ACTIONS(1454), - [anon_sym_mut] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_cmd_identifier] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_export_DASHenv] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_error] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_source] = ACTIONS(1454), - [anon_sym_source_DASHenv] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_hide_DASHenv] = ACTIONS(1454), - [anon_sym_overlay] = ACTIONS(1454), - [anon_sym_where] = ACTIONS(1454), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_not] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1454), + [1196] = { + [sym_comment] = STATE(1196), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_DOT2] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token2] = ACTIONS(2838), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), [anon_sym_POUND] = ACTIONS(105), }, - [1171] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1171), - [aux_sym_val_record_repeat1] = STATE(1171), - [anon_sym_export] = ACTIONS(2983), - [anon_sym_alias] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_let_DASHenv] = ACTIONS(2983), - [anon_sym_mut] = ACTIONS(2983), - [anon_sym_const] = ACTIONS(2983), - [sym_cmd_identifier] = ACTIONS(2983), - [anon_sym_def] = ACTIONS(2983), - [anon_sym_export_DASHenv] = ACTIONS(2983), - [anon_sym_extern] = ACTIONS(2983), - [anon_sym_module] = ACTIONS(2983), - [anon_sym_use] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2989), - [anon_sym_error] = ACTIONS(2983), - [anon_sym_list] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2983), - [anon_sym_continue] = ACTIONS(2983), - [anon_sym_for] = ACTIONS(2983), - [anon_sym_in] = ACTIONS(2983), - [anon_sym_loop] = ACTIONS(2983), - [anon_sym_make] = ACTIONS(2983), - [anon_sym_while] = ACTIONS(2983), - [anon_sym_do] = ACTIONS(2983), - [anon_sym_if] = ACTIONS(2983), - [anon_sym_else] = ACTIONS(2983), - [anon_sym_match] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2995), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_try] = ACTIONS(2983), - [anon_sym_catch] = ACTIONS(2983), - [anon_sym_return] = ACTIONS(2983), - [anon_sym_source] = ACTIONS(2983), - [anon_sym_source_DASHenv] = ACTIONS(2983), - [anon_sym_register] = ACTIONS(2983), - [anon_sym_hide] = ACTIONS(2983), - [anon_sym_hide_DASHenv] = ACTIONS(2983), - [anon_sym_overlay] = ACTIONS(2983), - [anon_sym_new] = ACTIONS(2983), - [anon_sym_as] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(3000), - [aux_sym__val_number_decimal_token1] = ACTIONS(3003), - [aux_sym__val_number_token1] = ACTIONS(3006), - [aux_sym__val_number_token2] = ACTIONS(3006), - [aux_sym__val_number_token3] = ACTIONS(3006), - [aux_sym__val_number_token4] = ACTIONS(3009), - [aux_sym__val_number_token5] = ACTIONS(3006), - [aux_sym__val_number_token6] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3012), - [sym__str_single_quotes] = ACTIONS(3015), - [sym__str_back_ticks] = ACTIONS(3015), - [aux_sym__record_key_token2] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3), - }, - [1172] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1172), - [aux_sym_val_record_repeat1] = STATE(1171), + [1197] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1197), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -192170,11 +196028,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -192186,8 +196044,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -192199,169 +196057,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1173] = { - [sym_cell_path] = STATE(1551), - [sym_path] = STATE(1169), - [sym_comment] = STATE(1173), - [ts_builtin_sym_end] = ACTIONS(1405), - [anon_sym_export] = ACTIONS(1403), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_let] = ACTIONS(1403), - [anon_sym_let_DASHenv] = ACTIONS(1403), - [anon_sym_mut] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [sym_cmd_identifier] = ACTIONS(1403), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_def] = ACTIONS(1403), - [anon_sym_export_DASHenv] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1403), - [anon_sym_module] = ACTIONS(1403), - [anon_sym_use] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_error] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_loop] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_match] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_DOT2] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_source] = ACTIONS(1403), - [anon_sym_source_DASHenv] = ACTIONS(1403), - [anon_sym_register] = ACTIONS(1403), - [anon_sym_hide] = ACTIONS(1403), - [anon_sym_hide_DASHenv] = ACTIONS(1403), - [anon_sym_overlay] = ACTIONS(1403), - [anon_sym_where] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_not] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1403), - [aux_sym__val_number_token1] = ACTIONS(1403), - [aux_sym__val_number_token2] = ACTIONS(1403), - [aux_sym__val_number_token3] = ACTIONS(1403), - [aux_sym__val_number_token4] = ACTIONS(1403), - [aux_sym__val_number_token5] = ACTIONS(1403), - [aux_sym__val_number_token6] = ACTIONS(1403), - [anon_sym_0b] = ACTIONS(1403), - [anon_sym_0o] = ACTIONS(1403), - [anon_sym_0x] = ACTIONS(1403), - [sym_val_date] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym__str_single_quotes] = ACTIONS(1403), - [sym__str_back_ticks] = ACTIONS(1403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(105), - }, - [1174] = { - [sym_path] = STATE(1413), - [sym_comment] = STATE(1174), - [aux_sym_cell_path_repeat1] = STATE(1174), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_DOT2] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [1198] = { + [sym_comment] = STATE(1198), + [ts_builtin_sym_end] = ACTIONS(2834), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_DOT2] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token1] = ACTIONS(3140), + [aux_sym__immediate_decimal_token2] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), [anon_sym_POUND] = ACTIONS(105), }, - [1175] = { - [sym_expr_parenthesized] = STATE(5858), - [sym_val_variable] = STATE(5858), - [sym__var] = STATE(2682), - [sym_val_number] = STATE(5858), - [sym__val_number_decimal] = STATE(437), - [sym__val_number] = STATE(434), - [sym_val_string] = STATE(5858), - [sym__str_double_quotes] = STATE(2728), - [sym_record_entry] = STATE(2262), - [sym__record_key] = STATE(5797), - [sym_comment] = STATE(1175), - [aux_sym_val_record_repeat1] = STATE(1171), + [1199] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), + [sym_comment] = STATE(1199), + [aux_sym_val_record_repeat1] = STATE(1189), [anon_sym_export] = ACTIONS(309), [anon_sym_alias] = ACTIONS(309), [anon_sym_let] = ACTIONS(309), @@ -192374,11 +196164,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(309), [anon_sym_module] = ACTIONS(309), [anon_sym_use] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), [anon_sym_error] = ACTIONS(309), [anon_sym_list] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2886), [anon_sym_break] = ACTIONS(309), [anon_sym_continue] = ACTIONS(309), [anon_sym_for] = ACTIONS(309), @@ -192390,8 +196180,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(309), [anon_sym_else] = ACTIONS(309), [anon_sym_match] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(2890), [anon_sym_try] = ACTIONS(309), [anon_sym_catch] = ACTIONS(309), [anon_sym_return] = ACTIONS(309), @@ -192403,2635 +196193,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(309), [anon_sym_new] = ACTIONS(309), [anon_sym_as] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(2825), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2829), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym__str_single_quotes] = ACTIONS(2835), - [sym__str_back_ticks] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), [aux_sym__record_key_token2] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(3), }, - [1176] = { - [sym_comment] = STATE(1176), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token2] = ACTIONS(2942), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(105), - }, - [1177] = { - [sym_comment] = STATE(1177), - [anon_sym_export] = ACTIONS(3028), - [anon_sym_alias] = ACTIONS(3028), - [anon_sym_let] = ACTIONS(3028), - [anon_sym_let_DASHenv] = ACTIONS(3028), - [anon_sym_mut] = ACTIONS(3028), - [anon_sym_const] = ACTIONS(3028), - [anon_sym_SEMI] = ACTIONS(3028), - [sym_cmd_identifier] = ACTIONS(3028), - [anon_sym_LF] = ACTIONS(3030), - [anon_sym_def] = ACTIONS(3028), - [anon_sym_export_DASHenv] = ACTIONS(3028), - [anon_sym_extern] = ACTIONS(3028), - [anon_sym_module] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3028), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3028), - [anon_sym_RPAREN] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3028), - [anon_sym_error] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_break] = ACTIONS(3028), - [anon_sym_continue] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3028), - [anon_sym_loop] = ACTIONS(3028), - [anon_sym_while] = ACTIONS(3028), - [anon_sym_do] = ACTIONS(3028), - [anon_sym_if] = ACTIONS(3028), - [anon_sym_match] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3028), - [anon_sym_RBRACE] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3028), - [anon_sym_source] = ACTIONS(3028), - [anon_sym_source_DASHenv] = ACTIONS(3028), - [anon_sym_register] = ACTIONS(3028), - [anon_sym_hide] = ACTIONS(3028), - [anon_sym_hide_DASHenv] = ACTIONS(3028), - [anon_sym_overlay] = ACTIONS(3028), - [anon_sym_where] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_not] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3028), - [anon_sym_true] = ACTIONS(3028), - [anon_sym_false] = ACTIONS(3028), - [aux_sym__val_number_decimal_token1] = ACTIONS(3028), - [aux_sym__val_number_token1] = ACTIONS(3028), - [aux_sym__val_number_token2] = ACTIONS(3028), - [aux_sym__val_number_token3] = ACTIONS(3028), - [aux_sym__val_number_token4] = ACTIONS(3028), - [aux_sym__val_number_token5] = ACTIONS(3028), - [aux_sym__val_number_token6] = ACTIONS(3028), - [anon_sym_0b] = ACTIONS(3028), - [anon_sym_0o] = ACTIONS(3028), - [anon_sym_0x] = ACTIONS(3028), - [sym_val_date] = ACTIONS(3028), - [anon_sym_DQUOTE] = ACTIONS(3028), - [sym__str_single_quotes] = ACTIONS(3028), - [sym__str_back_ticks] = ACTIONS(3028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3028), - [anon_sym_CARET] = ACTIONS(3028), - [anon_sym_POUND] = ACTIONS(105), - }, - [1178] = { - [sym_comment] = STATE(1178), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_alias] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_let_DASHenv] = ACTIONS(1584), - [anon_sym_mut] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1584), - [sym_cmd_identifier] = ACTIONS(1584), - [anon_sym_LF] = ACTIONS(1586), - [anon_sym_def] = ACTIONS(1584), - [anon_sym_export_DASHenv] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_module] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_RPAREN] = ACTIONS(1584), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_error] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_loop] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_try] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_source] = ACTIONS(1584), - [anon_sym_source_DASHenv] = ACTIONS(1584), - [anon_sym_register] = ACTIONS(1584), - [anon_sym_hide] = ACTIONS(1584), - [anon_sym_hide_DASHenv] = ACTIONS(1584), - [anon_sym_overlay] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_where] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_not] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [aux_sym__val_number_decimal_token1] = ACTIONS(1584), - [aux_sym__val_number_token1] = ACTIONS(1584), - [aux_sym__val_number_token2] = ACTIONS(1584), - [aux_sym__val_number_token3] = ACTIONS(1584), - [aux_sym__val_number_token4] = ACTIONS(1584), - [aux_sym__val_number_token5] = ACTIONS(1584), - [aux_sym__val_number_token6] = ACTIONS(1584), - [anon_sym_0b] = ACTIONS(1584), - [anon_sym_0o] = ACTIONS(1584), - [anon_sym_0x] = ACTIONS(1584), - [sym_val_date] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1584), - [sym__str_single_quotes] = ACTIONS(1584), - [sym__str_back_ticks] = ACTIONS(1584), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), - [anon_sym_CARET] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(105), - }, - [1179] = { - [sym_comment] = STATE(1179), - [ts_builtin_sym_end] = ACTIONS(2964), - [anon_sym_export] = ACTIONS(2960), - [anon_sym_alias] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_DASHenv] = ACTIONS(2960), - [anon_sym_mut] = ACTIONS(2960), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_SEMI] = ACTIONS(2960), - [sym_cmd_identifier] = ACTIONS(2960), - [sym__long_flag_identifier] = ACTIONS(3032), - [anon_sym_LF] = ACTIONS(2964), - [anon_sym_def] = ACTIONS(2960), - [anon_sym_export_DASHenv] = ACTIONS(2960), - [anon_sym_extern] = ACTIONS(2960), - [anon_sym_module] = ACTIONS(2960), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_error] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_break] = ACTIONS(2960), - [anon_sym_continue] = ACTIONS(2960), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_loop] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_source] = ACTIONS(2960), - [anon_sym_source_DASHenv] = ACTIONS(2960), - [anon_sym_register] = ACTIONS(2960), - [anon_sym_hide] = ACTIONS(2960), - [anon_sym_hide_DASHenv] = ACTIONS(2960), - [anon_sym_overlay] = ACTIONS(2960), - [anon_sym_as] = ACTIONS(2960), - [anon_sym_where] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_true] = ACTIONS(2960), - [anon_sym_false] = ACTIONS(2960), - [aux_sym__val_number_decimal_token1] = ACTIONS(2960), - [aux_sym__val_number_token1] = ACTIONS(2960), - [aux_sym__val_number_token2] = ACTIONS(2960), - [aux_sym__val_number_token3] = ACTIONS(2960), - [aux_sym__val_number_token4] = ACTIONS(2960), - [aux_sym__val_number_token5] = ACTIONS(2960), - [aux_sym__val_number_token6] = ACTIONS(2960), - [anon_sym_0b] = ACTIONS(2960), - [anon_sym_0o] = ACTIONS(2960), - [anon_sym_0x] = ACTIONS(2960), - [sym_val_date] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [sym__str_single_quotes] = ACTIONS(2960), - [sym__str_back_ticks] = ACTIONS(2960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_CARET] = ACTIONS(2960), - [anon_sym_POUND] = ACTIONS(105), - }, - [1180] = { - [sym_comment] = STATE(1180), - [anon_sym_export] = ACTIONS(3034), - [anon_sym_alias] = ACTIONS(3034), - [anon_sym_let] = ACTIONS(3034), - [anon_sym_let_DASHenv] = ACTIONS(3034), - [anon_sym_mut] = ACTIONS(3034), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_SEMI] = ACTIONS(3034), - [sym_cmd_identifier] = ACTIONS(3034), - [anon_sym_LF] = ACTIONS(3036), - [anon_sym_def] = ACTIONS(3034), - [anon_sym_export_DASHenv] = ACTIONS(3034), - [anon_sym_extern] = ACTIONS(3034), - [anon_sym_module] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_RPAREN] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3034), - [anon_sym_error] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_break] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3034), - [anon_sym_loop] = ACTIONS(3034), - [anon_sym_while] = ACTIONS(3034), - [anon_sym_do] = ACTIONS(3034), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_match] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3034), - [anon_sym_DOT2] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3034), - [anon_sym_source] = ACTIONS(3034), - [anon_sym_source_DASHenv] = ACTIONS(3034), - [anon_sym_register] = ACTIONS(3034), - [anon_sym_hide] = ACTIONS(3034), - [anon_sym_hide_DASHenv] = ACTIONS(3034), - [anon_sym_overlay] = ACTIONS(3034), - [anon_sym_where] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_not] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3034), - [anon_sym_true] = ACTIONS(3034), - [anon_sym_false] = ACTIONS(3034), - [aux_sym__val_number_decimal_token1] = ACTIONS(3034), - [aux_sym__val_number_token1] = ACTIONS(3034), - [aux_sym__val_number_token2] = ACTIONS(3034), - [aux_sym__val_number_token3] = ACTIONS(3034), - [aux_sym__val_number_token4] = ACTIONS(3034), - [aux_sym__val_number_token5] = ACTIONS(3034), - [aux_sym__val_number_token6] = ACTIONS(3034), - [anon_sym_0b] = ACTIONS(3034), - [anon_sym_0o] = ACTIONS(3034), - [anon_sym_0x] = ACTIONS(3034), - [sym_val_date] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3034), - [sym__str_single_quotes] = ACTIONS(3034), - [sym__str_back_ticks] = ACTIONS(3034), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(105), - }, - [1181] = { - [sym_comment] = STATE(1181), - [anon_sym_export] = ACTIONS(2874), - [anon_sym_alias] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_DASHenv] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2874), - [sym_cmd_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_def] = ACTIONS(2874), - [anon_sym_export_DASHenv] = ACTIONS(2874), - [anon_sym_extern] = ACTIONS(2874), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_RPAREN] = ACTIONS(2874), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_error] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_loop] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_DOT2] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_source] = ACTIONS(2874), - [anon_sym_source_DASHenv] = ACTIONS(2874), - [anon_sym_register] = ACTIONS(2874), - [anon_sym_hide] = ACTIONS(2874), - [anon_sym_hide_DASHenv] = ACTIONS(2874), - [anon_sym_overlay] = ACTIONS(2874), - [anon_sym_where] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_not] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [aux_sym__val_number_decimal_token1] = ACTIONS(2874), - [aux_sym__val_number_token1] = ACTIONS(2874), - [aux_sym__val_number_token2] = ACTIONS(2874), - [aux_sym__val_number_token3] = ACTIONS(2874), - [aux_sym__val_number_token4] = ACTIONS(2874), - [aux_sym__val_number_token5] = ACTIONS(2874), - [aux_sym__val_number_token6] = ACTIONS(2874), - [anon_sym_0b] = ACTIONS(2874), - [anon_sym_0o] = ACTIONS(2874), - [anon_sym_0x] = ACTIONS(2874), - [sym_val_date] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym__str_single_quotes] = ACTIONS(2874), - [sym__str_back_ticks] = ACTIONS(2874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(105), - }, - [1182] = { - [sym_comment] = STATE(1182), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_alias] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_let_DASHenv] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [sym_cmd_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_def] = ACTIONS(2782), - [anon_sym_export_DASHenv] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2782), - [anon_sym_error] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_loop] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_DOT2] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_source] = ACTIONS(2782), - [anon_sym_source_DASHenv] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_hide] = ACTIONS(2782), - [anon_sym_hide_DASHenv] = ACTIONS(2782), - [anon_sym_overlay] = ACTIONS(2782), - [anon_sym_where] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2782), - [anon_sym_false] = ACTIONS(2782), - [aux_sym__val_number_decimal_token1] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2782), - [aux_sym__val_number_token2] = ACTIONS(2782), - [aux_sym__val_number_token3] = ACTIONS(2782), - [aux_sym__val_number_token4] = ACTIONS(2782), - [aux_sym__val_number_token5] = ACTIONS(2782), - [aux_sym__val_number_token6] = ACTIONS(2782), - [anon_sym_0b] = ACTIONS(2782), - [anon_sym_0o] = ACTIONS(2782), - [anon_sym_0x] = ACTIONS(2782), - [sym_val_date] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2782), - [sym__str_single_quotes] = ACTIONS(2782), - [sym__str_back_ticks] = ACTIONS(2782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(105), - }, - [1183] = { - [sym_comment] = STATE(1183), - [ts_builtin_sym_end] = ACTIONS(2906), - [anon_sym_export] = ACTIONS(2904), - [anon_sym_alias] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_DASHenv] = ACTIONS(2904), - [anon_sym_mut] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [sym_cmd_identifier] = ACTIONS(2904), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_def] = ACTIONS(2904), - [anon_sym_export_DASHenv] = ACTIONS(2904), - [anon_sym_extern] = ACTIONS(2904), - [anon_sym_module] = ACTIONS(2904), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_error] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_loop] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_DOT2] = ACTIONS(3038), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_source] = ACTIONS(2904), - [anon_sym_source_DASHenv] = ACTIONS(2904), - [anon_sym_register] = ACTIONS(2904), - [anon_sym_hide] = ACTIONS(2904), - [anon_sym_hide_DASHenv] = ACTIONS(2904), - [anon_sym_overlay] = ACTIONS(2904), - [anon_sym_where] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_not] = ACTIONS(2904), - [aux_sym__immediate_decimal_token2] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_true] = ACTIONS(2904), - [anon_sym_false] = ACTIONS(2904), - [aux_sym__val_number_decimal_token1] = ACTIONS(2904), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [aux_sym__val_number_token4] = ACTIONS(2904), - [aux_sym__val_number_token5] = ACTIONS(2904), - [aux_sym__val_number_token6] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2904), - [anon_sym_0o] = ACTIONS(2904), - [anon_sym_0x] = ACTIONS(2904), - [sym_val_date] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [sym__str_single_quotes] = ACTIONS(2904), - [sym__str_back_ticks] = ACTIONS(2904), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_POUND] = ACTIONS(105), - }, - [1184] = { - [sym_comment] = STATE(1184), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DOT2] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(105), - }, - [1185] = { - [sym_comment] = STATE(1185), - [anon_sym_export] = ACTIONS(1668), - [anon_sym_alias] = ACTIONS(1668), - [anon_sym_let] = ACTIONS(1668), - [anon_sym_let_DASHenv] = ACTIONS(1668), - [anon_sym_mut] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [sym_cmd_identifier] = ACTIONS(1668), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_def] = ACTIONS(1668), - [anon_sym_export_DASHenv] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_module] = ACTIONS(1668), - [anon_sym_use] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_error] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_loop] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1668), - [anon_sym_do] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_source] = ACTIONS(1668), - [anon_sym_source_DASHenv] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1668), - [anon_sym_hide] = ACTIONS(1668), - [anon_sym_hide_DASHenv] = ACTIONS(1668), - [anon_sym_overlay] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_where] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_not] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1668), - [anon_sym_0o] = ACTIONS(1668), - [anon_sym_0x] = ACTIONS(1668), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(105), - }, - [1186] = { - [sym_comment] = STATE(1186), - [anon_sym_export] = ACTIONS(1501), - [anon_sym_alias] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_let_DASHenv] = ACTIONS(1501), - [anon_sym_mut] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1501), - [sym_cmd_identifier] = ACTIONS(1501), - [anon_sym_LF] = ACTIONS(1503), - [anon_sym_def] = ACTIONS(1501), - [anon_sym_export_DASHenv] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_module] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1501), - [anon_sym_error] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT2] = ACTIONS(1503), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_source] = ACTIONS(1501), - [anon_sym_source_DASHenv] = ACTIONS(1501), - [anon_sym_register] = ACTIONS(1501), - [anon_sym_hide] = ACTIONS(1501), - [anon_sym_hide_DASHenv] = ACTIONS(1501), - [anon_sym_overlay] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1501), - [aux_sym__val_number_token2] = ACTIONS(1501), - [aux_sym__val_number_token3] = ACTIONS(1501), - [aux_sym__val_number_token4] = ACTIONS(1501), - [aux_sym__val_number_token5] = ACTIONS(1501), - [aux_sym__val_number_token6] = ACTIONS(1501), - [anon_sym_0b] = ACTIONS(1501), - [anon_sym_0o] = ACTIONS(1501), - [anon_sym_0x] = ACTIONS(1501), - [sym_val_date] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(105), - }, - [1187] = { - [sym_comment] = STATE(1187), - [ts_builtin_sym_end] = ACTIONS(2808), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DOT2] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token2] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(105), - }, - [1188] = { - [sym_block] = STATE(1241), - [sym_comment] = STATE(1188), - [anon_sym_export] = ACTIONS(3045), - [anon_sym_alias] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_let_DASHenv] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3045), - [sym_cmd_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3047), - [anon_sym_def] = ACTIONS(3045), - [anon_sym_export_DASHenv] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym_module] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3045), - [anon_sym_error] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_loop] = ACTIONS(3045), - [anon_sym_while] = ACTIONS(3045), - [anon_sym_do] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_source] = ACTIONS(3045), - [anon_sym_source_DASHenv] = ACTIONS(3045), - [anon_sym_register] = ACTIONS(3045), - [anon_sym_hide] = ACTIONS(3045), - [anon_sym_hide_DASHenv] = ACTIONS(3045), - [anon_sym_overlay] = ACTIONS(3045), - [anon_sym_where] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_not] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3045), - [anon_sym_true] = ACTIONS(3045), - [anon_sym_false] = ACTIONS(3045), - [aux_sym__val_number_decimal_token1] = ACTIONS(3045), - [aux_sym__val_number_token1] = ACTIONS(3045), - [aux_sym__val_number_token2] = ACTIONS(3045), - [aux_sym__val_number_token3] = ACTIONS(3045), - [aux_sym__val_number_token4] = ACTIONS(3045), - [aux_sym__val_number_token5] = ACTIONS(3045), - [aux_sym__val_number_token6] = ACTIONS(3045), - [anon_sym_0b] = ACTIONS(3045), - [anon_sym_0o] = ACTIONS(3045), - [anon_sym_0x] = ACTIONS(3045), - [sym_val_date] = ACTIONS(3045), - [anon_sym_DQUOTE] = ACTIONS(3045), - [sym__str_single_quotes] = ACTIONS(3045), - [sym__str_back_ticks] = ACTIONS(3045), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_POUND] = ACTIONS(105), - }, - [1189] = { - [sym_block] = STATE(1242), - [sym_comment] = STATE(1189), - [anon_sym_export] = ACTIONS(3045), - [anon_sym_alias] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_let_DASHenv] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3045), - [sym_cmd_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3047), - [anon_sym_def] = ACTIONS(3045), - [anon_sym_export_DASHenv] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym_module] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3045), - [anon_sym_error] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_loop] = ACTIONS(3045), - [anon_sym_while] = ACTIONS(3045), - [anon_sym_do] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_source] = ACTIONS(3045), - [anon_sym_source_DASHenv] = ACTIONS(3045), - [anon_sym_register] = ACTIONS(3045), - [anon_sym_hide] = ACTIONS(3045), - [anon_sym_hide_DASHenv] = ACTIONS(3045), - [anon_sym_overlay] = ACTIONS(3045), - [anon_sym_where] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_not] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3045), - [anon_sym_true] = ACTIONS(3045), - [anon_sym_false] = ACTIONS(3045), - [aux_sym__val_number_decimal_token1] = ACTIONS(3045), - [aux_sym__val_number_token1] = ACTIONS(3045), - [aux_sym__val_number_token2] = ACTIONS(3045), - [aux_sym__val_number_token3] = ACTIONS(3045), - [aux_sym__val_number_token4] = ACTIONS(3045), - [aux_sym__val_number_token5] = ACTIONS(3045), - [aux_sym__val_number_token6] = ACTIONS(3045), - [anon_sym_0b] = ACTIONS(3045), - [anon_sym_0o] = ACTIONS(3045), - [anon_sym_0x] = ACTIONS(3045), - [sym_val_date] = ACTIONS(3045), - [anon_sym_DQUOTE] = ACTIONS(3045), - [sym__str_single_quotes] = ACTIONS(3045), - [sym__str_back_ticks] = ACTIONS(3045), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_POUND] = ACTIONS(105), - }, - [1190] = { - [sym_comment] = STATE(1190), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_alias] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_let_DASHenv] = ACTIONS(1426), - [anon_sym_mut] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [sym_cmd_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_export_DASHenv] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_error] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_source] = ACTIONS(1426), - [anon_sym_source_DASHenv] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_hide_DASHenv] = ACTIONS(1426), - [anon_sym_overlay] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_not] = ACTIONS(1426), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_token1] = ACTIONS(1426), - [aux_sym__val_number_token2] = ACTIONS(1426), - [aux_sym__val_number_token3] = ACTIONS(1426), - [aux_sym__val_number_token4] = ACTIONS(1426), - [aux_sym__val_number_token5] = ACTIONS(1426), - [aux_sym__val_number_token6] = ACTIONS(1426), - [anon_sym_0b] = ACTIONS(1426), - [anon_sym_0o] = ACTIONS(1426), - [anon_sym_0x] = ACTIONS(1426), - [sym_val_date] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym__str_single_quotes] = ACTIONS(1426), - [sym__str_back_ticks] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(105), - }, - [1191] = { - [sym_comment] = STATE(1191), - [anon_sym_export] = ACTIONS(1485), - [anon_sym_alias] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_let_DASHenv] = ACTIONS(1485), - [anon_sym_mut] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1485), - [sym_cmd_identifier] = ACTIONS(1485), - [anon_sym_LF] = ACTIONS(1487), - [anon_sym_def] = ACTIONS(1485), - [anon_sym_export_DASHenv] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_module] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_error] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_loop] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_DOT2] = ACTIONS(1487), - [anon_sym_try] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_source] = ACTIONS(1485), - [anon_sym_source_DASHenv] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_hide] = ACTIONS(1485), - [anon_sym_hide_DASHenv] = ACTIONS(1485), - [anon_sym_overlay] = ACTIONS(1485), - [anon_sym_where] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_null] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [aux_sym__val_number_decimal_token1] = ACTIONS(1485), - [aux_sym__val_number_token1] = ACTIONS(1485), - [aux_sym__val_number_token2] = ACTIONS(1485), - [aux_sym__val_number_token3] = ACTIONS(1485), - [aux_sym__val_number_token4] = ACTIONS(1485), - [aux_sym__val_number_token5] = ACTIONS(1485), - [aux_sym__val_number_token6] = ACTIONS(1485), - [anon_sym_0b] = ACTIONS(1485), - [anon_sym_0o] = ACTIONS(1485), - [anon_sym_0x] = ACTIONS(1485), - [sym_val_date] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym__str_single_quotes] = ACTIONS(1485), - [sym__str_back_ticks] = ACTIONS(1485), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(105), - }, - [1192] = { - [sym_comment] = STATE(1192), - [anon_sym_export] = ACTIONS(3051), - [anon_sym_alias] = ACTIONS(3051), - [anon_sym_let] = ACTIONS(3051), - [anon_sym_let_DASHenv] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_SEMI] = ACTIONS(3051), - [sym_cmd_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_def] = ACTIONS(3051), - [anon_sym_export_DASHenv] = ACTIONS(3051), - [anon_sym_extern] = ACTIONS(3051), - [anon_sym_module] = ACTIONS(3051), - [anon_sym_use] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_RPAREN] = ACTIONS(3051), - [anon_sym_DOLLAR] = ACTIONS(3051), - [anon_sym_error] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_loop] = ACTIONS(3051), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_do] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_source] = ACTIONS(3051), - [anon_sym_source_DASHenv] = ACTIONS(3051), - [anon_sym_register] = ACTIONS(3051), - [anon_sym_hide] = ACTIONS(3051), - [anon_sym_hide_DASHenv] = ACTIONS(3051), - [anon_sym_overlay] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_null] = ACTIONS(3051), - [anon_sym_true] = ACTIONS(3051), - [anon_sym_false] = ACTIONS(3051), - [aux_sym__val_number_decimal_token1] = ACTIONS(3051), - [aux_sym__val_number_token1] = ACTIONS(3051), - [aux_sym__val_number_token2] = ACTIONS(3051), - [aux_sym__val_number_token3] = ACTIONS(3051), - [aux_sym__val_number_token4] = ACTIONS(3051), - [aux_sym__val_number_token5] = ACTIONS(3051), - [aux_sym__val_number_token6] = ACTIONS(3051), - [anon_sym_0b] = ACTIONS(3051), - [anon_sym_0o] = ACTIONS(3051), - [anon_sym_0x] = ACTIONS(3051), - [sym_val_date] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym__str_single_quotes] = ACTIONS(3051), - [sym__str_back_ticks] = ACTIONS(3051), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3051), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(105), - }, - [1193] = { - [sym_comment] = STATE(1193), - [ts_builtin_sym_end] = ACTIONS(1466), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_where] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_not] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(105), - }, - [1194] = { - [sym_comment] = STATE(1194), - [ts_builtin_sym_end] = ACTIONS(1466), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_alias] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_let_DASHenv] = ACTIONS(1464), - [anon_sym_mut] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [sym_cmd_identifier] = ACTIONS(1464), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1464), - [anon_sym_export_DASHenv] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_error] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_source] = ACTIONS(1464), - [anon_sym_source_DASHenv] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_hide] = ACTIONS(1464), - [anon_sym_hide_DASHenv] = ACTIONS(1464), - [anon_sym_overlay] = ACTIONS(1464), - [anon_sym_where] = ACTIONS(1464), - [anon_sym_QMARK2] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_not] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym__val_number_decimal_token1] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1464), - [aux_sym__val_number_token2] = ACTIONS(1464), - [aux_sym__val_number_token3] = ACTIONS(1464), - [aux_sym__val_number_token4] = ACTIONS(1464), - [aux_sym__val_number_token5] = ACTIONS(1464), - [aux_sym__val_number_token6] = ACTIONS(1464), - [anon_sym_0b] = ACTIONS(1464), - [anon_sym_0o] = ACTIONS(1464), - [anon_sym_0x] = ACTIONS(1464), - [sym_val_date] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym__str_single_quotes] = ACTIONS(1464), - [sym__str_back_ticks] = ACTIONS(1464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(105), - }, - [1195] = { - [sym_comment] = STATE(1195), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_alias] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_let_DASHenv] = ACTIONS(1454), - [anon_sym_mut] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_cmd_identifier] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_export_DASHenv] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_error] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_source] = ACTIONS(1454), - [anon_sym_source_DASHenv] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_hide_DASHenv] = ACTIONS(1454), - [anon_sym_overlay] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_where] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_not] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(105), - }, - [1196] = { - [sym__match_pattern_expression] = STATE(3520), - [sym__match_pattern_value] = STATE(3524), - [sym__match_pattern_list] = STATE(3522), - [sym__match_pattern_rest] = STATE(5998), - [sym__match_pattern_ignore_rest] = STATE(5998), - [sym__expr_unary_minus] = STATE(3387), - [sym_expr_parenthesized] = STATE(3330), - [sym_val_range] = STATE(3383), - [sym__value] = STATE(3423), - [sym_val_nothing] = STATE(3389), - [sym_val_bool] = STATE(3389), - [sym_val_variable] = STATE(3332), - [sym__var] = STATE(3168), - [sym_val_number] = STATE(505), - [sym__val_number_decimal] = STATE(481), - [sym__val_number] = STATE(508), - [sym_val_duration] = STATE(3389), - [sym_val_filesize] = STATE(3389), - [sym_val_binary] = STATE(3389), - [sym_val_string] = STATE(3389), - [sym__str_double_quotes] = STATE(3419), - [sym_val_interpolated] = STATE(3413), - [sym__inter_single_quotes] = STATE(3417), - [sym__inter_double_quotes] = STATE(3418), - [sym_val_list] = STATE(3266), - [sym__list_item_expression] = STATE(3438), - [sym__list_item_starts_with_sign] = STATE(3380), - [sym_val_record] = STATE(3389), - [sym_val_table] = STATE(3389), - [sym_val_closure] = STATE(3413), - [sym_short_flag] = STATE(3380), - [sym_long_flag] = STATE(3380), - [sym__unquoted_in_list] = STATE(3380), - [sym_comment] = STATE(1196), - [aux_sym__match_pattern_list_repeat1] = STATE(2223), - [aux_sym_val_list_repeat1] = STATE(1686), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_RBRACK] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [aux_sym__val_number_decimal_token1] = ACTIONS(3077), - [aux_sym__val_number_token1] = ACTIONS(3079), - [aux_sym__val_number_token2] = ACTIONS(3079), - [aux_sym__val_number_token3] = ACTIONS(3079), - [aux_sym__val_number_token4] = ACTIONS(3081), - [aux_sym__val_number_token5] = ACTIONS(3081), - [aux_sym__val_number_token6] = ACTIONS(3081), - [anon_sym_0b] = ACTIONS(3083), - [anon_sym_0o] = ACTIONS(3083), - [anon_sym_0x] = ACTIONS(3083), - [sym_val_date] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3087), - [sym__str_single_quotes] = ACTIONS(3089), - [sym__str_back_ticks] = ACTIONS(3089), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3095), - [anon_sym_POUND] = ACTIONS(3), - }, - [1197] = { - [sym_comment] = STATE(1197), - [anon_sym_export] = ACTIONS(1511), - [anon_sym_alias] = ACTIONS(1511), - [anon_sym_let] = ACTIONS(1511), - [anon_sym_let_DASHenv] = ACTIONS(1511), - [anon_sym_mut] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1511), - [sym_cmd_identifier] = ACTIONS(1511), - [anon_sym_LF] = ACTIONS(1513), - [anon_sym_def] = ACTIONS(1511), - [anon_sym_export_DASHenv] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym_module] = ACTIONS(1511), - [anon_sym_use] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1511), - [anon_sym_error] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_source] = ACTIONS(1511), - [anon_sym_source_DASHenv] = ACTIONS(1511), - [anon_sym_register] = ACTIONS(1511), - [anon_sym_hide] = ACTIONS(1511), - [anon_sym_hide_DASHenv] = ACTIONS(1511), - [anon_sym_overlay] = ACTIONS(1511), - [anon_sym_where] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [aux_sym__val_number_decimal_token1] = ACTIONS(1511), - [aux_sym__val_number_token1] = ACTIONS(1511), - [aux_sym__val_number_token2] = ACTIONS(1511), - [aux_sym__val_number_token3] = ACTIONS(1511), - [aux_sym__val_number_token4] = ACTIONS(1511), - [aux_sym__val_number_token5] = ACTIONS(1511), - [aux_sym__val_number_token6] = ACTIONS(1511), - [anon_sym_0b] = ACTIONS(1511), - [anon_sym_0o] = ACTIONS(1511), - [anon_sym_0x] = ACTIONS(1511), - [sym_val_date] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [sym__str_single_quotes] = ACTIONS(1511), - [sym__str_back_ticks] = ACTIONS(1511), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(105), - }, - [1198] = { - [sym_comment] = STATE(1198), - [anon_sym_export] = ACTIONS(3097), - [anon_sym_alias] = ACTIONS(3097), - [anon_sym_let] = ACTIONS(3097), - [anon_sym_let_DASHenv] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_SEMI] = ACTIONS(3097), - [sym_cmd_identifier] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3099), - [anon_sym_def] = ACTIONS(3097), - [anon_sym_export_DASHenv] = ACTIONS(3097), - [anon_sym_extern] = ACTIONS(3097), - [anon_sym_module] = ACTIONS(3097), - [anon_sym_use] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_RPAREN] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_error] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_loop] = ACTIONS(3097), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_do] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_DOT2] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_source] = ACTIONS(3097), - [anon_sym_source_DASHenv] = ACTIONS(3097), - [anon_sym_register] = ACTIONS(3097), - [anon_sym_hide] = ACTIONS(3097), - [anon_sym_hide_DASHenv] = ACTIONS(3097), - [anon_sym_overlay] = ACTIONS(3097), - [anon_sym_where] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_not] = ACTIONS(3097), - [anon_sym_null] = ACTIONS(3097), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [aux_sym__val_number_decimal_token1] = ACTIONS(3097), - [aux_sym__val_number_token1] = ACTIONS(3097), - [aux_sym__val_number_token2] = ACTIONS(3097), - [aux_sym__val_number_token3] = ACTIONS(3097), - [aux_sym__val_number_token4] = ACTIONS(3097), - [aux_sym__val_number_token5] = ACTIONS(3097), - [aux_sym__val_number_token6] = ACTIONS(3097), - [anon_sym_0b] = ACTIONS(3097), - [anon_sym_0o] = ACTIONS(3097), - [anon_sym_0x] = ACTIONS(3097), - [sym_val_date] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym__str_single_quotes] = ACTIONS(3097), - [sym__str_back_ticks] = ACTIONS(3097), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(105), - }, - [1199] = { - [sym_comment] = STATE(1199), - [anon_sym_export] = ACTIONS(3103), - [anon_sym_alias] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_let_DASHenv] = ACTIONS(3103), - [anon_sym_mut] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3103), - [sym_cmd_identifier] = ACTIONS(3103), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_def] = ACTIONS(3103), - [anon_sym_export_DASHenv] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_use] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_DOLLAR] = ACTIONS(3103), - [anon_sym_error] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_loop] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_DOT2] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_source] = ACTIONS(3103), - [anon_sym_source_DASHenv] = ACTIONS(3103), - [anon_sym_register] = ACTIONS(3103), - [anon_sym_hide] = ACTIONS(3103), - [anon_sym_hide_DASHenv] = ACTIONS(3103), - [anon_sym_overlay] = ACTIONS(3103), - [anon_sym_where] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_not] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3103), - [anon_sym_false] = ACTIONS(3103), - [aux_sym__val_number_decimal_token1] = ACTIONS(3103), - [aux_sym__val_number_token1] = ACTIONS(3103), - [aux_sym__val_number_token2] = ACTIONS(3103), - [aux_sym__val_number_token3] = ACTIONS(3103), - [aux_sym__val_number_token4] = ACTIONS(3103), - [aux_sym__val_number_token5] = ACTIONS(3103), - [aux_sym__val_number_token6] = ACTIONS(3103), - [anon_sym_0b] = ACTIONS(3103), - [anon_sym_0o] = ACTIONS(3103), - [anon_sym_0x] = ACTIONS(3103), - [sym_val_date] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym__str_single_quotes] = ACTIONS(3103), - [sym__str_back_ticks] = ACTIONS(3103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_POUND] = ACTIONS(105), - }, [1200] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), [sym_comment] = STATE(1200), - [anon_sym_export] = ACTIONS(3109), - [anon_sym_alias] = ACTIONS(3109), - [anon_sym_let] = ACTIONS(3109), - [anon_sym_let_DASHenv] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3109), - [sym_cmd_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3111), - [anon_sym_def] = ACTIONS(3109), - [anon_sym_export_DASHenv] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym_module] = ACTIONS(3109), - [anon_sym_use] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3109), - [anon_sym_error] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_loop] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_DOT2] = ACTIONS(3113), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_source] = ACTIONS(3109), - [anon_sym_source_DASHenv] = ACTIONS(3109), - [anon_sym_register] = ACTIONS(3109), - [anon_sym_hide] = ACTIONS(3109), - [anon_sym_hide_DASHenv] = ACTIONS(3109), - [anon_sym_overlay] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_not] = ACTIONS(3109), - [anon_sym_null] = ACTIONS(3109), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_token1] = ACTIONS(3109), - [aux_sym__val_number_token2] = ACTIONS(3109), - [aux_sym__val_number_token3] = ACTIONS(3109), - [aux_sym__val_number_token4] = ACTIONS(3109), - [aux_sym__val_number_token5] = ACTIONS(3109), - [aux_sym__val_number_token6] = ACTIONS(3109), - [anon_sym_0b] = ACTIONS(3109), - [anon_sym_0o] = ACTIONS(3109), - [anon_sym_0x] = ACTIONS(3109), - [sym_val_date] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym__str_single_quotes] = ACTIONS(3109), - [sym__str_back_ticks] = ACTIONS(3109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_val_record_repeat1] = STATE(1194), + [anon_sym_export] = ACTIONS(309), + [anon_sym_alias] = ACTIONS(309), + [anon_sym_let] = ACTIONS(309), + [anon_sym_let_DASHenv] = ACTIONS(309), + [anon_sym_mut] = ACTIONS(309), + [anon_sym_const] = ACTIONS(309), + [sym_cmd_identifier] = ACTIONS(309), + [anon_sym_def] = ACTIONS(309), + [anon_sym_export_DASHenv] = ACTIONS(309), + [anon_sym_extern] = ACTIONS(309), + [anon_sym_module] = ACTIONS(309), + [anon_sym_use] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), + [anon_sym_error] = ACTIONS(309), + [anon_sym_list] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(309), + [anon_sym_continue] = ACTIONS(309), + [anon_sym_for] = ACTIONS(309), + [anon_sym_in] = ACTIONS(309), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_make] = ACTIONS(309), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(309), + [anon_sym_if] = ACTIONS(309), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_try] = ACTIONS(309), + [anon_sym_catch] = ACTIONS(309), + [anon_sym_return] = ACTIONS(309), + [anon_sym_source] = ACTIONS(309), + [anon_sym_source_DASHenv] = ACTIONS(309), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(309), + [anon_sym_hide_DASHenv] = ACTIONS(309), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(309), + [anon_sym_as] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), + [aux_sym__record_key_token2] = ACTIONS(377), + [anon_sym_POUND] = ACTIONS(3), }, [1201] = { + [sym_path] = STATE(1421), [sym_comment] = STATE(1201), - [anon_sym_export] = ACTIONS(3115), - [anon_sym_alias] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), - [anon_sym_let_DASHenv] = ACTIONS(3115), - [anon_sym_mut] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3115), - [sym_cmd_identifier] = ACTIONS(3115), - [anon_sym_LF] = ACTIONS(3117), - [anon_sym_def] = ACTIONS(3115), - [anon_sym_export_DASHenv] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym_module] = ACTIONS(3115), - [anon_sym_use] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_error] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_break] = ACTIONS(3115), - [anon_sym_continue] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(3115), - [anon_sym_loop] = ACTIONS(3115), - [anon_sym_while] = ACTIONS(3115), - [anon_sym_do] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_match] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_DOT2] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3115), - [anon_sym_return] = ACTIONS(3115), - [anon_sym_source] = ACTIONS(3115), - [anon_sym_source_DASHenv] = ACTIONS(3115), - [anon_sym_register] = ACTIONS(3115), - [anon_sym_hide] = ACTIONS(3115), - [anon_sym_hide_DASHenv] = ACTIONS(3115), - [anon_sym_overlay] = ACTIONS(3115), - [anon_sym_where] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_not] = ACTIONS(3115), - [anon_sym_null] = ACTIONS(3115), - [anon_sym_true] = ACTIONS(3115), - [anon_sym_false] = ACTIONS(3115), - [aux_sym__val_number_decimal_token1] = ACTIONS(3115), - [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(3115), - [aux_sym__val_number_token5] = ACTIONS(3115), - [aux_sym__val_number_token6] = ACTIONS(3115), - [anon_sym_0b] = ACTIONS(3115), - [anon_sym_0o] = ACTIONS(3115), - [anon_sym_0x] = ACTIONS(3115), - [sym_val_date] = ACTIONS(3115), - [anon_sym_DQUOTE] = ACTIONS(3115), - [sym__str_single_quotes] = ACTIONS(3115), - [sym__str_back_ticks] = ACTIONS(3115), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3115), + [aux_sym_cell_path_repeat1] = STATE(1152), + [ts_builtin_sym_end] = ACTIONS(1396), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_alias] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_let_DASHenv] = ACTIONS(1394), + [anon_sym_mut] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [sym_cmd_identifier] = ACTIONS(1394), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_export_DASHenv] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_error] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT2] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_source] = ACTIONS(1394), + [anon_sym_source_DASHenv] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_hide] = ACTIONS(1394), + [anon_sym_hide_DASHenv] = ACTIONS(1394), + [anon_sym_overlay] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_token1] = ACTIONS(1394), + [aux_sym__val_number_token2] = ACTIONS(1394), + [aux_sym__val_number_token3] = ACTIONS(1394), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym__str_single_quotes] = ACTIONS(1394), + [sym__str_back_ticks] = ACTIONS(1394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), [anon_sym_POUND] = ACTIONS(105), }, [1202] = { + [sym_expr_parenthesized] = STATE(5903), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(2688), + [sym_val_number] = STATE(5903), + [sym__val_number_decimal] = STATE(427), + [sym__val_number] = STATE(436), + [sym_val_string] = STATE(5903), + [sym__str_double_quotes] = STATE(2777), + [sym_record_entry] = STATE(2302), + [sym__record_key] = STATE(5871), [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(2876), - [anon_sym_export] = ACTIONS(2874), - [anon_sym_alias] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_DASHenv] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2874), - [sym_cmd_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_def] = ACTIONS(2874), - [anon_sym_export_DASHenv] = ACTIONS(2874), - [anon_sym_extern] = ACTIONS(2874), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_error] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_loop] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_DOT2] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_source] = ACTIONS(2874), - [anon_sym_source_DASHenv] = ACTIONS(2874), - [anon_sym_register] = ACTIONS(2874), - [anon_sym_hide] = ACTIONS(2874), - [anon_sym_hide_DASHenv] = ACTIONS(2874), - [anon_sym_overlay] = ACTIONS(2874), - [anon_sym_where] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_not] = ACTIONS(2874), - [aux_sym__immediate_decimal_token2] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [aux_sym__val_number_decimal_token1] = ACTIONS(2874), - [aux_sym__val_number_token1] = ACTIONS(2874), - [aux_sym__val_number_token2] = ACTIONS(2874), - [aux_sym__val_number_token3] = ACTIONS(2874), - [aux_sym__val_number_token4] = ACTIONS(2874), - [aux_sym__val_number_token5] = ACTIONS(2874), - [aux_sym__val_number_token6] = ACTIONS(2874), - [anon_sym_0b] = ACTIONS(2874), - [anon_sym_0o] = ACTIONS(2874), - [anon_sym_0x] = ACTIONS(2874), - [sym_val_date] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym__str_single_quotes] = ACTIONS(2874), - [sym__str_back_ticks] = ACTIONS(2874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_val_record_repeat1] = STATE(1189), + [anon_sym_export] = ACTIONS(309), + [anon_sym_alias] = ACTIONS(309), + [anon_sym_let] = ACTIONS(309), + [anon_sym_let_DASHenv] = ACTIONS(309), + [anon_sym_mut] = ACTIONS(309), + [anon_sym_const] = ACTIONS(309), + [sym_cmd_identifier] = ACTIONS(309), + [anon_sym_def] = ACTIONS(309), + [anon_sym_export_DASHenv] = ACTIONS(309), + [anon_sym_extern] = ACTIONS(309), + [anon_sym_module] = ACTIONS(309), + [anon_sym_use] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2968), + [anon_sym_error] = ACTIONS(309), + [anon_sym_list] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(309), + [anon_sym_continue] = ACTIONS(309), + [anon_sym_for] = ACTIONS(309), + [anon_sym_in] = ACTIONS(309), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_make] = ACTIONS(309), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(309), + [anon_sym_if] = ACTIONS(309), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_try] = ACTIONS(309), + [anon_sym_catch] = ACTIONS(309), + [anon_sym_return] = ACTIONS(309), + [anon_sym_source] = ACTIONS(309), + [anon_sym_source_DASHenv] = ACTIONS(309), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(309), + [anon_sym_hide_DASHenv] = ACTIONS(309), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(309), + [anon_sym_as] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(2892), + [aux_sym__val_number_decimal_token1] = ACTIONS(2894), + [aux_sym__val_number_token1] = ACTIONS(2896), + [aux_sym__val_number_token2] = ACTIONS(2896), + [aux_sym__val_number_token3] = ACTIONS(2896), + [aux_sym__val_number_token4] = ACTIONS(2898), + [aux_sym__val_number_token5] = ACTIONS(2896), + [aux_sym__val_number_token6] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym__str_single_quotes] = ACTIONS(2902), + [sym__str_back_ticks] = ACTIONS(2902), + [aux_sym__record_key_token2] = ACTIONS(377), + [anon_sym_POUND] = ACTIONS(3), }, [1203] = { + [sym_cell_path] = STATE(1457), + [sym_path] = STATE(1201), [sym_comment] = STATE(1203), - [anon_sym_export] = ACTIONS(1507), - [anon_sym_alias] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_let_DASHenv] = ACTIONS(1507), - [anon_sym_mut] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [sym_cmd_identifier] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1509), - [anon_sym_def] = ACTIONS(1507), - [anon_sym_export_DASHenv] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_module] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_error] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT2] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_source] = ACTIONS(1507), - [anon_sym_source_DASHenv] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_hide] = ACTIONS(1507), - [anon_sym_hide_DASHenv] = ACTIONS(1507), - [anon_sym_overlay] = ACTIONS(1507), - [anon_sym_where] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_not] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1507), - [aux_sym__val_number_token5] = ACTIONS(1507), - [aux_sym__val_number_token6] = ACTIONS(1507), - [anon_sym_0b] = ACTIONS(1507), - [anon_sym_0o] = ACTIONS(1507), - [anon_sym_0x] = ACTIONS(1507), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_alias] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_let_DASHenv] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_cmd_identifier] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1400), + [anon_sym_export_DASHenv] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_error] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT2] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_source] = ACTIONS(1400), + [anon_sym_source_DASHenv] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_hide] = ACTIONS(1400), + [anon_sym_hide_DASHenv] = ACTIONS(1400), + [anon_sym_overlay] = ACTIONS(1400), + [anon_sym_where] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [aux_sym__val_number_decimal_token1] = ACTIONS(1400), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [aux_sym__val_number_token4] = ACTIONS(1400), + [aux_sym__val_number_token5] = ACTIONS(1400), + [aux_sym__val_number_token6] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1400), + [anon_sym_0o] = ACTIONS(1400), + [anon_sym_0x] = ACTIONS(1400), + [sym_val_date] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__str_single_quotes] = ACTIONS(1400), + [sym__str_back_ticks] = ACTIONS(1400), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), [anon_sym_POUND] = ACTIONS(105), }, [1204] = { [sym_comment] = STATE(1204), - [anon_sym_export] = ACTIONS(3123), - [anon_sym_alias] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3123), - [anon_sym_let_DASHenv] = ACTIONS(3123), - [anon_sym_mut] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3123), - [sym_cmd_identifier] = ACTIONS(3123), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_def] = ACTIONS(3123), - [anon_sym_export_DASHenv] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym_module] = ACTIONS(3123), - [anon_sym_use] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_DOLLAR] = ACTIONS(3123), - [anon_sym_error] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_loop] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_do] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_match] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_DOT2] = ACTIONS(3127), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_source] = ACTIONS(3123), - [anon_sym_source_DASHenv] = ACTIONS(3123), - [anon_sym_register] = ACTIONS(3123), - [anon_sym_hide] = ACTIONS(3123), - [anon_sym_hide_DASHenv] = ACTIONS(3123), - [anon_sym_overlay] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_not] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_token1] = ACTIONS(3123), - [aux_sym__val_number_token2] = ACTIONS(3123), - [aux_sym__val_number_token3] = ACTIONS(3123), - [aux_sym__val_number_token4] = ACTIONS(3123), - [aux_sym__val_number_token5] = ACTIONS(3123), - [aux_sym__val_number_token6] = ACTIONS(3123), - [anon_sym_0b] = ACTIONS(3123), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym__str_single_quotes] = ACTIONS(3123), - [sym__str_back_ticks] = ACTIONS(3123), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3123), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3123), - [anon_sym_POUND] = ACTIONS(105), - }, - [1205] = { - [sym_comment] = STATE(1205), - [anon_sym_export] = ACTIONS(3129), - [anon_sym_alias] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_let_DASHenv] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3129), - [sym_cmd_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3131), - [anon_sym_def] = ACTIONS(3129), - [anon_sym_export_DASHenv] = ACTIONS(3129), - [anon_sym_extern] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3129), - [anon_sym_use] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_DOLLAR] = ACTIONS(3129), - [anon_sym_error] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_loop] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_DOT2] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_source] = ACTIONS(3129), - [anon_sym_source_DASHenv] = ACTIONS(3129), - [anon_sym_register] = ACTIONS(3129), - [anon_sym_hide] = ACTIONS(3129), - [anon_sym_hide_DASHenv] = ACTIONS(3129), - [anon_sym_overlay] = ACTIONS(3129), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_not] = ACTIONS(3129), - [anon_sym_null] = ACTIONS(3129), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [aux_sym__val_number_decimal_token1] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3129), - [aux_sym__val_number_token2] = ACTIONS(3129), - [aux_sym__val_number_token3] = ACTIONS(3129), - [aux_sym__val_number_token4] = ACTIONS(3129), - [aux_sym__val_number_token5] = ACTIONS(3129), - [aux_sym__val_number_token6] = ACTIONS(3129), - [anon_sym_0b] = ACTIONS(3129), - [anon_sym_0o] = ACTIONS(3129), - [anon_sym_0x] = ACTIONS(3129), - [sym_val_date] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(105), - }, - [1206] = { - [sym_comment] = STATE(1206), - [ts_builtin_sym_end] = ACTIONS(2784), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_alias] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_let_DASHenv] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [sym_cmd_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_def] = ACTIONS(2782), - [anon_sym_export_DASHenv] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2782), - [anon_sym_error] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_loop] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_DOT2] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_source] = ACTIONS(2782), - [anon_sym_source_DASHenv] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_hide] = ACTIONS(2782), - [anon_sym_hide_DASHenv] = ACTIONS(2782), - [anon_sym_overlay] = ACTIONS(2782), - [anon_sym_where] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [aux_sym__immediate_decimal_token2] = ACTIONS(2898), - [anon_sym_null] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2782), - [anon_sym_false] = ACTIONS(2782), - [aux_sym__val_number_decimal_token1] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2782), - [aux_sym__val_number_token2] = ACTIONS(2782), - [aux_sym__val_number_token3] = ACTIONS(2782), - [aux_sym__val_number_token4] = ACTIONS(2782), - [aux_sym__val_number_token5] = ACTIONS(2782), - [aux_sym__val_number_token6] = ACTIONS(2782), - [anon_sym_0b] = ACTIONS(2782), - [anon_sym_0o] = ACTIONS(2782), - [anon_sym_0x] = ACTIONS(2782), - [sym_val_date] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2782), - [sym__str_single_quotes] = ACTIONS(2782), - [sym__str_back_ticks] = ACTIONS(2782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(105), - }, - [1207] = { - [sym_comment] = STATE(1207), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_alias] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_let_DASHenv] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [sym_cmd_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_def] = ACTIONS(2782), - [anon_sym_export_DASHenv] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2782), - [anon_sym_error] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_loop] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_source] = ACTIONS(2782), - [anon_sym_source_DASHenv] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_hide] = ACTIONS(2782), - [anon_sym_hide_DASHenv] = ACTIONS(2782), - [anon_sym_overlay] = ACTIONS(2782), - [anon_sym_where] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [aux_sym__immediate_decimal_token2] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2782), - [anon_sym_false] = ACTIONS(2782), - [aux_sym__val_number_decimal_token1] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2782), - [aux_sym__val_number_token2] = ACTIONS(2782), - [aux_sym__val_number_token3] = ACTIONS(2782), - [aux_sym__val_number_token4] = ACTIONS(2782), - [aux_sym__val_number_token5] = ACTIONS(2782), - [aux_sym__val_number_token6] = ACTIONS(2782), - [anon_sym_0b] = ACTIONS(2782), - [anon_sym_0o] = ACTIONS(2782), - [anon_sym_0x] = ACTIONS(2782), - [sym_val_date] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2782), - [sym__str_single_quotes] = ACTIONS(2782), - [sym__str_back_ticks] = ACTIONS(2782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(105), - }, - [1208] = { - [sym_comment] = STATE(1208), - [ts_builtin_sym_end] = ACTIONS(2906), - [anon_sym_export] = ACTIONS(2904), - [anon_sym_alias] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_DASHenv] = ACTIONS(2904), - [anon_sym_mut] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [sym_cmd_identifier] = ACTIONS(2904), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_def] = ACTIONS(2904), - [anon_sym_export_DASHenv] = ACTIONS(2904), - [anon_sym_extern] = ACTIONS(2904), - [anon_sym_module] = ACTIONS(2904), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_error] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_loop] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_DOT2] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_source] = ACTIONS(2904), - [anon_sym_source_DASHenv] = ACTIONS(2904), - [anon_sym_register] = ACTIONS(2904), - [anon_sym_hide] = ACTIONS(2904), - [anon_sym_hide_DASHenv] = ACTIONS(2904), - [anon_sym_overlay] = ACTIONS(2904), - [anon_sym_where] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_not] = ACTIONS(2904), - [aux_sym__immediate_decimal_token2] = ACTIONS(3138), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_true] = ACTIONS(2904), - [anon_sym_false] = ACTIONS(2904), - [aux_sym__val_number_decimal_token1] = ACTIONS(2904), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [aux_sym__val_number_token4] = ACTIONS(2904), - [aux_sym__val_number_token5] = ACTIONS(2904), - [aux_sym__val_number_token6] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2904), - [anon_sym_0o] = ACTIONS(2904), - [anon_sym_0x] = ACTIONS(2904), - [sym_val_date] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [sym__str_single_quotes] = ACTIONS(2904), - [sym__str_back_ticks] = ACTIONS(2904), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_POUND] = ACTIONS(105), - }, - [1209] = { - [sym_comment] = STATE(1209), - [anon_sym_export] = ACTIONS(2874), - [anon_sym_alias] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_DASHenv] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2874), - [sym_cmd_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_def] = ACTIONS(2874), - [anon_sym_export_DASHenv] = ACTIONS(2874), - [anon_sym_extern] = ACTIONS(2874), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_RPAREN] = ACTIONS(2874), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_error] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_loop] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_source] = ACTIONS(2874), - [anon_sym_source_DASHenv] = ACTIONS(2874), - [anon_sym_register] = ACTIONS(2874), - [anon_sym_hide] = ACTIONS(2874), - [anon_sym_hide_DASHenv] = ACTIONS(2874), - [anon_sym_overlay] = ACTIONS(2874), - [anon_sym_where] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_not] = ACTIONS(2874), - [aux_sym__immediate_decimal_token2] = ACTIONS(3140), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [aux_sym__val_number_decimal_token1] = ACTIONS(2874), - [aux_sym__val_number_token1] = ACTIONS(2874), - [aux_sym__val_number_token2] = ACTIONS(2874), - [aux_sym__val_number_token3] = ACTIONS(2874), - [aux_sym__val_number_token4] = ACTIONS(2874), - [aux_sym__val_number_token5] = ACTIONS(2874), - [aux_sym__val_number_token6] = ACTIONS(2874), - [anon_sym_0b] = ACTIONS(2874), - [anon_sym_0o] = ACTIONS(2874), - [anon_sym_0x] = ACTIONS(2874), - [sym_val_date] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym__str_single_quotes] = ACTIONS(2874), - [sym__str_back_ticks] = ACTIONS(2874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(105), - }, - [1210] = { - [sym_block] = STATE(1357), - [sym_comment] = STATE(1210), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_alias] = ACTIONS(3142), - [anon_sym_let] = ACTIONS(3142), - [anon_sym_let_DASHenv] = ACTIONS(3142), - [anon_sym_mut] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [sym_cmd_identifier] = ACTIONS(3142), - [anon_sym_LF] = ACTIONS(3144), - [anon_sym_def] = ACTIONS(3142), - [anon_sym_export_DASHenv] = ACTIONS(3142), - [anon_sym_extern] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_use] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_RPAREN] = ACTIONS(3142), - [anon_sym_DOLLAR] = ACTIONS(3142), - [anon_sym_error] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_loop] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_match] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_DOT] = ACTIONS(3142), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_source] = ACTIONS(3142), - [anon_sym_source_DASHenv] = ACTIONS(3142), - [anon_sym_register] = ACTIONS(3142), - [anon_sym_hide] = ACTIONS(3142), - [anon_sym_hide_DASHenv] = ACTIONS(3142), - [anon_sym_overlay] = ACTIONS(3142), - [anon_sym_where] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_not] = ACTIONS(3142), - [anon_sym_null] = ACTIONS(3142), - [anon_sym_true] = ACTIONS(3142), - [anon_sym_false] = ACTIONS(3142), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3142), - [aux_sym__val_number_token5] = ACTIONS(3142), - [aux_sym__val_number_token6] = ACTIONS(3142), - [anon_sym_0b] = ACTIONS(3142), - [anon_sym_0o] = ACTIONS(3142), - [anon_sym_0x] = ACTIONS(3142), - [sym_val_date] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [sym__str_single_quotes] = ACTIONS(3142), - [sym__str_back_ticks] = ACTIONS(3142), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3142), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3142), - [anon_sym_CARET] = ACTIONS(3142), - [anon_sym_POUND] = ACTIONS(105), - }, - [1211] = { - [sym_block] = STATE(1359), - [sym_comment] = STATE(1211), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_alias] = ACTIONS(3142), - [anon_sym_let] = ACTIONS(3142), - [anon_sym_let_DASHenv] = ACTIONS(3142), - [anon_sym_mut] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [sym_cmd_identifier] = ACTIONS(3142), - [anon_sym_LF] = ACTIONS(3144), - [anon_sym_def] = ACTIONS(3142), - [anon_sym_export_DASHenv] = ACTIONS(3142), - [anon_sym_extern] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_use] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_RPAREN] = ACTIONS(3142), - [anon_sym_DOLLAR] = ACTIONS(3142), - [anon_sym_error] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_loop] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_match] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_DOT] = ACTIONS(3142), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_source] = ACTIONS(3142), - [anon_sym_source_DASHenv] = ACTIONS(3142), - [anon_sym_register] = ACTIONS(3142), - [anon_sym_hide] = ACTIONS(3142), - [anon_sym_hide_DASHenv] = ACTIONS(3142), - [anon_sym_overlay] = ACTIONS(3142), - [anon_sym_where] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_not] = ACTIONS(3142), - [anon_sym_null] = ACTIONS(3142), - [anon_sym_true] = ACTIONS(3142), - [anon_sym_false] = ACTIONS(3142), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3142), - [aux_sym__val_number_token5] = ACTIONS(3142), - [aux_sym__val_number_token6] = ACTIONS(3142), - [anon_sym_0b] = ACTIONS(3142), - [anon_sym_0o] = ACTIONS(3142), - [anon_sym_0x] = ACTIONS(3142), - [sym_val_date] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [sym__str_single_quotes] = ACTIONS(3142), - [sym__str_back_ticks] = ACTIONS(3142), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3142), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3142), - [anon_sym_CARET] = ACTIONS(3142), - [anon_sym_POUND] = ACTIONS(105), - }, - [1212] = { - [sym_comment] = STATE(1212), - [ts_builtin_sym_end] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token3] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(105), - }, - [1213] = { - [sym_comment] = STATE(1213), - [ts_builtin_sym_end] = ACTIONS(2808), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DOT2] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token2] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(105), - }, - [1214] = { - [sym_block] = STATE(1377), - [sym_comment] = STATE(1214), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_alias] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_let_DASHenv] = ACTIONS(3146), - [anon_sym_mut] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [sym_cmd_identifier] = ACTIONS(3146), - [anon_sym_LF] = ACTIONS(3148), - [anon_sym_def] = ACTIONS(3146), - [anon_sym_export_DASHenv] = ACTIONS(3146), - [anon_sym_extern] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_use] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_RPAREN] = ACTIONS(3146), - [anon_sym_DOLLAR] = ACTIONS(3146), - [anon_sym_error] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_loop] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_match] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_source] = ACTIONS(3146), - [anon_sym_source_DASHenv] = ACTIONS(3146), - [anon_sym_register] = ACTIONS(3146), - [anon_sym_hide] = ACTIONS(3146), - [anon_sym_hide_DASHenv] = ACTIONS(3146), - [anon_sym_overlay] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_not] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [aux_sym__val_number_decimal_token1] = ACTIONS(3146), - [aux_sym__val_number_token1] = ACTIONS(3146), - [aux_sym__val_number_token2] = ACTIONS(3146), - [aux_sym__val_number_token3] = ACTIONS(3146), - [aux_sym__val_number_token4] = ACTIONS(3146), - [aux_sym__val_number_token5] = ACTIONS(3146), - [aux_sym__val_number_token6] = ACTIONS(3146), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3146), - [anon_sym_0x] = ACTIONS(3146), - [sym_val_date] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [sym__str_single_quotes] = ACTIONS(3146), - [sym__str_back_ticks] = ACTIONS(3146), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3146), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_POUND] = ACTIONS(105), - }, - [1215] = { - [sym_comment] = STATE(1215), [anon_sym_export] = ACTIONS(3153), [anon_sym_alias] = ACTIONS(3153), [anon_sym_let] = ACTIONS(3153), @@ -195040,7 +196489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3153), [anon_sym_SEMI] = ACTIONS(3153), [sym_cmd_identifier] = ACTIONS(3153), - [anon_sym_LF] = ACTIONS(3155), + [sym__long_flag_identifier] = ACTIONS(3155), + [anon_sym_LF] = ACTIONS(3157), [anon_sym_def] = ACTIONS(3153), [anon_sym_export_DASHenv] = ACTIONS(3153), [anon_sym_extern] = ACTIONS(3153), @@ -195097,210 +196547,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(3153), [anon_sym_POUND] = ACTIONS(105), }, - [1216] = { - [sym_comment] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_alias] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_let_DASHenv] = ACTIONS(1454), - [anon_sym_mut] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_cmd_identifier] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_export_DASHenv] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_error] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_source] = ACTIONS(1454), - [anon_sym_source_DASHenv] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_hide_DASHenv] = ACTIONS(1454), - [anon_sym_overlay] = ACTIONS(1454), - [anon_sym_where] = ACTIONS(1454), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_not] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_token1] = ACTIONS(1454), - [aux_sym__val_number_token2] = ACTIONS(1454), - [aux_sym__val_number_token3] = ACTIONS(1454), - [aux_sym__val_number_token4] = ACTIONS(1454), - [aux_sym__val_number_token5] = ACTIONS(1454), - [aux_sym__val_number_token6] = ACTIONS(1454), - [anon_sym_0b] = ACTIONS(1454), - [anon_sym_0o] = ACTIONS(1454), - [anon_sym_0x] = ACTIONS(1454), - [sym_val_date] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__str_single_quotes] = ACTIONS(1454), - [sym__str_back_ticks] = ACTIONS(1454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1454), + [1205] = { + [sym_comment] = STATE(1205), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_alias] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_DASHenv] = ACTIONS(2934), + [anon_sym_mut] = ACTIONS(2934), + [anon_sym_const] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [sym_cmd_identifier] = ACTIONS(2934), + [anon_sym_LF] = ACTIONS(2936), + [anon_sym_def] = ACTIONS(2934), + [anon_sym_export_DASHenv] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_error] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_loop] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_DOT2] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_source] = ACTIONS(2934), + [anon_sym_source_DASHenv] = ACTIONS(2934), + [anon_sym_register] = ACTIONS(2934), + [anon_sym_hide] = ACTIONS(2934), + [anon_sym_hide_DASHenv] = ACTIONS(2934), + [anon_sym_overlay] = ACTIONS(2934), + [anon_sym_where] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_not] = ACTIONS(2934), + [aux_sym__immediate_decimal_token2] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [aux_sym__val_number_decimal_token1] = ACTIONS(2934), + [aux_sym__val_number_token1] = ACTIONS(2934), + [aux_sym__val_number_token2] = ACTIONS(2934), + [aux_sym__val_number_token3] = ACTIONS(2934), + [aux_sym__val_number_token4] = ACTIONS(2934), + [aux_sym__val_number_token5] = ACTIONS(2934), + [aux_sym__val_number_token6] = ACTIONS(2934), + [anon_sym_0b] = ACTIONS(2934), + [anon_sym_0o] = ACTIONS(2934), + [anon_sym_0x] = ACTIONS(2934), + [sym_val_date] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym__str_single_quotes] = ACTIONS(2934), + [sym__str_back_ticks] = ACTIONS(2934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2934), [anon_sym_POUND] = ACTIONS(105), }, - [1217] = { - [sym__match_pattern_expression] = STATE(3520), - [sym__match_pattern_value] = STATE(3524), - [sym__match_pattern_list] = STATE(3522), - [sym__match_pattern_rest] = STATE(5998), - [sym__match_pattern_ignore_rest] = STATE(5998), - [sym__expr_unary_minus] = STATE(3387), - [sym_expr_parenthesized] = STATE(3330), - [sym_val_range] = STATE(3383), - [sym__value] = STATE(3423), - [sym_val_nothing] = STATE(3389), - [sym_val_bool] = STATE(3389), - [sym_val_variable] = STATE(3332), - [sym__var] = STATE(3168), - [sym_val_number] = STATE(505), - [sym__val_number_decimal] = STATE(481), - [sym__val_number] = STATE(508), - [sym_val_duration] = STATE(3389), - [sym_val_filesize] = STATE(3389), - [sym_val_binary] = STATE(3389), - [sym_val_string] = STATE(3389), - [sym__str_double_quotes] = STATE(3419), - [sym_val_interpolated] = STATE(3413), - [sym__inter_single_quotes] = STATE(3417), - [sym__inter_double_quotes] = STATE(3418), - [sym_val_list] = STATE(3266), - [sym__list_item_expression] = STATE(3438), - [sym__list_item_starts_with_sign] = STATE(3380), - [sym_val_record] = STATE(3389), - [sym_val_table] = STATE(3389), - [sym_val_closure] = STATE(3413), - [sym_short_flag] = STATE(3380), - [sym_long_flag] = STATE(3380), - [sym__unquoted_in_list] = STATE(3380), - [sym_comment] = STATE(1217), - [aux_sym__match_pattern_list_repeat1] = STATE(2223), - [aux_sym_val_list_repeat1] = STATE(1666), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_RBRACK] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [aux_sym__val_number_decimal_token1] = ACTIONS(3077), - [aux_sym__val_number_token1] = ACTIONS(3079), - [aux_sym__val_number_token2] = ACTIONS(3079), - [aux_sym__val_number_token3] = ACTIONS(3079), - [aux_sym__val_number_token4] = ACTIONS(3081), - [aux_sym__val_number_token5] = ACTIONS(3081), - [aux_sym__val_number_token6] = ACTIONS(3081), - [anon_sym_0b] = ACTIONS(3083), - [anon_sym_0o] = ACTIONS(3083), - [anon_sym_0x] = ACTIONS(3083), - [sym_val_date] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3087), - [sym__str_single_quotes] = ACTIONS(3089), - [sym__str_back_ticks] = ACTIONS(3089), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3093), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3095), - [anon_sym_POUND] = ACTIONS(3), + [1206] = { + [sym_cell_path] = STATE(1620), + [sym_path] = STATE(1177), + [sym_comment] = STATE(1206), + [ts_builtin_sym_end] = ACTIONS(1469), + [anon_sym_export] = ACTIONS(1467), + [anon_sym_alias] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_let_DASHenv] = ACTIONS(1467), + [anon_sym_mut] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [sym_cmd_identifier] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1469), + [anon_sym_def] = ACTIONS(1467), + [anon_sym_export_DASHenv] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_module] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(1467), + [anon_sym_error] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT2] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_source] = ACTIONS(1467), + [anon_sym_source_DASHenv] = ACTIONS(1467), + [anon_sym_register] = ACTIONS(1467), + [anon_sym_hide] = ACTIONS(1467), + [anon_sym_hide_DASHenv] = ACTIONS(1467), + [anon_sym_overlay] = ACTIONS(1467), + [anon_sym_where] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_not] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [aux_sym__val_number_decimal_token1] = ACTIONS(1467), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [aux_sym__val_number_token4] = ACTIONS(1467), + [aux_sym__val_number_token5] = ACTIONS(1467), + [aux_sym__val_number_token6] = ACTIONS(1467), + [anon_sym_0b] = ACTIONS(1467), + [anon_sym_0o] = ACTIONS(1467), + [anon_sym_0x] = ACTIONS(1467), + [sym_val_date] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym__str_single_quotes] = ACTIONS(1467), + [sym__str_back_ticks] = ACTIONS(1467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(105), }, - [1218] = { - [sym_comment] = STATE(1218), - [anon_sym_export] = ACTIONS(3159), - [anon_sym_alias] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_let_DASHenv] = ACTIONS(3159), - [anon_sym_mut] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3159), - [sym_cmd_identifier] = ACTIONS(3159), - [anon_sym_LF] = ACTIONS(3161), - [anon_sym_def] = ACTIONS(3159), - [anon_sym_export_DASHenv] = ACTIONS(3159), - [anon_sym_extern] = ACTIONS(3159), - [anon_sym_module] = ACTIONS(3159), - [anon_sym_use] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_RPAREN] = ACTIONS(3159), - [anon_sym_DOLLAR] = ACTIONS(3159), - [anon_sym_error] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_loop] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_do] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_source] = ACTIONS(3159), - [anon_sym_source_DASHenv] = ACTIONS(3159), - [anon_sym_register] = ACTIONS(3159), - [anon_sym_hide] = ACTIONS(3159), - [anon_sym_hide_DASHenv] = ACTIONS(3159), - [anon_sym_overlay] = ACTIONS(3159), - [anon_sym_as] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_not] = ACTIONS(3159), - [anon_sym_null] = ACTIONS(3159), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [aux_sym__val_number_decimal_token1] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(3159), - [aux_sym__val_number_token2] = ACTIONS(3159), - [aux_sym__val_number_token3] = ACTIONS(3159), - [aux_sym__val_number_token4] = ACTIONS(3159), - [aux_sym__val_number_token5] = ACTIONS(3159), - [aux_sym__val_number_token6] = ACTIONS(3159), - [anon_sym_0b] = ACTIONS(3159), - [anon_sym_0o] = ACTIONS(3159), - [anon_sym_0x] = ACTIONS(3159), - [sym_val_date] = ACTIONS(3159), - [anon_sym_DQUOTE] = ACTIONS(3159), - [sym__str_single_quotes] = ACTIONS(3159), - [sym__str_back_ticks] = ACTIONS(3159), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), + [1207] = { + [sym_comment] = STATE(1207), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token3] = ACTIONS(2530), [anon_sym_POUND] = ACTIONS(105), }, - [1219] = { - [sym_val_record] = STATE(1280), - [sym_comment] = STATE(1219), + [1208] = { + [sym_comment] = STATE(1208), + [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), + [anon_sym_SEMI] = ACTIONS(1445), + [sym_cmd_identifier] = ACTIONS(1445), + [anon_sym_LF] = ACTIONS(1447), + [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(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_DASH] = 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(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_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_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_not] = ACTIONS(1445), + [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_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [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(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(105), + }, + [1209] = { + [sym_comment] = STATE(1209), [anon_sym_export] = ACTIONS(3163), [anon_sym_alias] = ACTIONS(3163), [anon_sym_let] = ACTIONS(3163), @@ -195332,6 +196850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(3163), [anon_sym_RBRACE] = ACTIONS(3163), [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_DOT2] = ACTIONS(3167), [anon_sym_try] = ACTIONS(3163), [anon_sym_return] = ACTIONS(3163), [anon_sym_source] = ACTIONS(3163), @@ -195365,75 +196884,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(105), }, - [1220] = { - [sym_val_record] = STATE(1243), - [sym_comment] = STATE(1220), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_alias] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_DASHenv] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [sym_cmd_identifier] = ACTIONS(3167), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_def] = ACTIONS(3167), - [anon_sym_export_DASHenv] = ACTIONS(3167), - [anon_sym_extern] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_error] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_loop] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_source] = ACTIONS(3167), - [anon_sym_source_DASHenv] = ACTIONS(3167), - [anon_sym_register] = ACTIONS(3167), - [anon_sym_hide] = ACTIONS(3167), - [anon_sym_hide_DASHenv] = ACTIONS(3167), - [anon_sym_overlay] = ACTIONS(3167), - [anon_sym_where] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_not] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_true] = ACTIONS(3167), - [anon_sym_false] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3167), - [aux_sym__val_number_token1] = ACTIONS(3167), - [aux_sym__val_number_token2] = ACTIONS(3167), - [aux_sym__val_number_token3] = ACTIONS(3167), - [aux_sym__val_number_token4] = ACTIONS(3167), - [aux_sym__val_number_token5] = ACTIONS(3167), - [aux_sym__val_number_token6] = ACTIONS(3167), - [anon_sym_0b] = ACTIONS(3167), - [anon_sym_0o] = ACTIONS(3167), - [anon_sym_0x] = ACTIONS(3167), - [sym_val_date] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym__str_single_quotes] = ACTIONS(3167), - [sym__str_back_ticks] = ACTIONS(3167), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3167), + [1210] = { + [sym_comment] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(1421), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_where] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), [anon_sym_POUND] = ACTIONS(105), }, - [1221] = { - [sym_comment] = STATE(1221), + [1211] = { + [sym_comment] = STATE(1211), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_DOT2] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(105), + }, + [1212] = { + [sym_comment] = STATE(1212), [anon_sym_export] = ACTIONS(3171), [anon_sym_alias] = ACTIONS(3171), [anon_sym_let] = ACTIONS(3171), @@ -195465,6 +197051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(3171), [anon_sym_RBRACE] = ACTIONS(3171), [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_DOT2] = ACTIONS(3175), [anon_sym_try] = ACTIONS(3171), [anon_sym_return] = ACTIONS(3171), [anon_sym_source] = ACTIONS(3171), @@ -195473,7 +197060,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(3171), [anon_sym_hide_DASHenv] = ACTIONS(3171), [anon_sym_overlay] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), [anon_sym_where] = ACTIONS(3171), [anon_sym_PLUS] = ACTIONS(3171), [anon_sym_not] = ACTIONS(3171), @@ -195499,1143 +197085,3689 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(3171), [anon_sym_POUND] = ACTIONS(105), }, + [1213] = { + [sym_comment] = STATE(1213), + [anon_sym_export] = ACTIONS(3177), + [anon_sym_alias] = ACTIONS(3177), + [anon_sym_let] = ACTIONS(3177), + [anon_sym_let_DASHenv] = ACTIONS(3177), + [anon_sym_mut] = ACTIONS(3177), + [anon_sym_const] = ACTIONS(3177), + [anon_sym_SEMI] = ACTIONS(3177), + [sym_cmd_identifier] = ACTIONS(3177), + [anon_sym_LF] = ACTIONS(3179), + [anon_sym_def] = ACTIONS(3177), + [anon_sym_export_DASHenv] = ACTIONS(3177), + [anon_sym_extern] = ACTIONS(3177), + [anon_sym_module] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3177), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_PIPE] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3177), + [anon_sym_error] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_loop] = ACTIONS(3177), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_do] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_match] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3177), + [anon_sym_try] = ACTIONS(3177), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_source] = ACTIONS(3177), + [anon_sym_source_DASHenv] = ACTIONS(3177), + [anon_sym_register] = ACTIONS(3177), + [anon_sym_hide] = ACTIONS(3177), + [anon_sym_hide_DASHenv] = ACTIONS(3177), + [anon_sym_overlay] = ACTIONS(3177), + [anon_sym_where] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_not] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3177), + [anon_sym_false] = ACTIONS(3177), + [aux_sym__val_number_decimal_token1] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(3177), + [aux_sym__val_number_token2] = ACTIONS(3177), + [aux_sym__val_number_token3] = ACTIONS(3177), + [aux_sym__val_number_token4] = ACTIONS(3177), + [aux_sym__val_number_token5] = ACTIONS(3177), + [aux_sym__val_number_token6] = ACTIONS(3177), + [anon_sym_0b] = ACTIONS(3177), + [anon_sym_0o] = ACTIONS(3177), + [anon_sym_0x] = ACTIONS(3177), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym__str_single_quotes] = ACTIONS(3177), + [sym__str_back_ticks] = ACTIONS(3177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), + [anon_sym_CARET] = ACTIONS(3177), + [anon_sym_POUND] = ACTIONS(105), + }, + [1214] = { + [sym_comment] = STATE(1214), + [ts_builtin_sym_end] = ACTIONS(1421), + [anon_sym_export] = ACTIONS(1419), + [anon_sym_alias] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_let_DASHenv] = ACTIONS(1419), + [anon_sym_mut] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_cmd_identifier] = ACTIONS(1419), + [anon_sym_LF] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1419), + [anon_sym_export_DASHenv] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_module] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_error] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT2] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_source] = ACTIONS(1419), + [anon_sym_source_DASHenv] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_hide] = ACTIONS(1419), + [anon_sym_hide_DASHenv] = ACTIONS(1419), + [anon_sym_overlay] = ACTIONS(1419), + [anon_sym_where] = ACTIONS(1419), + [anon_sym_QMARK2] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1419), + [aux_sym__val_number_token5] = ACTIONS(1419), + [aux_sym__val_number_token6] = ACTIONS(1419), + [anon_sym_0b] = ACTIONS(1419), + [anon_sym_0o] = ACTIONS(1419), + [anon_sym_0x] = ACTIONS(1419), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(105), + }, + [1215] = { + [sym_comment] = STATE(1215), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_where] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [aux_sym_unquoted_token5] = ACTIONS(2962), + [anon_sym_POUND] = ACTIONS(105), + }, + [1216] = { + [sym_block] = STATE(1466), + [sym_comment] = STATE(1216), + [anon_sym_export] = ACTIONS(3181), + [anon_sym_alias] = ACTIONS(3181), + [anon_sym_let] = ACTIONS(3181), + [anon_sym_let_DASHenv] = ACTIONS(3181), + [anon_sym_mut] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3181), + [sym_cmd_identifier] = ACTIONS(3181), + [anon_sym_LF] = ACTIONS(3183), + [anon_sym_def] = ACTIONS(3181), + [anon_sym_export_DASHenv] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym_module] = ACTIONS(3181), + [anon_sym_use] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_RPAREN] = ACTIONS(3181), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_error] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_loop] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_match] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3181), + [anon_sym_DOT] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_source] = ACTIONS(3181), + [anon_sym_source_DASHenv] = ACTIONS(3181), + [anon_sym_register] = ACTIONS(3181), + [anon_sym_hide] = ACTIONS(3181), + [anon_sym_hide_DASHenv] = ACTIONS(3181), + [anon_sym_overlay] = ACTIONS(3181), + [anon_sym_where] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3181), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [aux_sym__val_number_decimal_token1] = ACTIONS(3181), + [aux_sym__val_number_token1] = ACTIONS(3181), + [aux_sym__val_number_token2] = ACTIONS(3181), + [aux_sym__val_number_token3] = ACTIONS(3181), + [aux_sym__val_number_token4] = ACTIONS(3181), + [aux_sym__val_number_token5] = ACTIONS(3181), + [aux_sym__val_number_token6] = ACTIONS(3181), + [anon_sym_0b] = ACTIONS(3181), + [anon_sym_0o] = ACTIONS(3181), + [anon_sym_0x] = ACTIONS(3181), + [sym_val_date] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym__str_single_quotes] = ACTIONS(3181), + [sym__str_back_ticks] = ACTIONS(3181), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3181), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3181), + [anon_sym_POUND] = ACTIONS(105), + }, + [1217] = { + [sym_block] = STATE(1465), + [sym_comment] = STATE(1217), + [anon_sym_export] = ACTIONS(3181), + [anon_sym_alias] = ACTIONS(3181), + [anon_sym_let] = ACTIONS(3181), + [anon_sym_let_DASHenv] = ACTIONS(3181), + [anon_sym_mut] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3181), + [sym_cmd_identifier] = ACTIONS(3181), + [anon_sym_LF] = ACTIONS(3183), + [anon_sym_def] = ACTIONS(3181), + [anon_sym_export_DASHenv] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym_module] = ACTIONS(3181), + [anon_sym_use] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_RPAREN] = ACTIONS(3181), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_error] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_loop] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_match] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3181), + [anon_sym_DOT] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_source] = ACTIONS(3181), + [anon_sym_source_DASHenv] = ACTIONS(3181), + [anon_sym_register] = ACTIONS(3181), + [anon_sym_hide] = ACTIONS(3181), + [anon_sym_hide_DASHenv] = ACTIONS(3181), + [anon_sym_overlay] = ACTIONS(3181), + [anon_sym_where] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3181), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [aux_sym__val_number_decimal_token1] = ACTIONS(3181), + [aux_sym__val_number_token1] = ACTIONS(3181), + [aux_sym__val_number_token2] = ACTIONS(3181), + [aux_sym__val_number_token3] = ACTIONS(3181), + [aux_sym__val_number_token4] = ACTIONS(3181), + [aux_sym__val_number_token5] = ACTIONS(3181), + [aux_sym__val_number_token6] = ACTIONS(3181), + [anon_sym_0b] = ACTIONS(3181), + [anon_sym_0o] = ACTIONS(3181), + [anon_sym_0x] = ACTIONS(3181), + [sym_val_date] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym__str_single_quotes] = ACTIONS(3181), + [sym__str_back_ticks] = ACTIONS(3181), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3181), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3181), + [anon_sym_POUND] = ACTIONS(105), + }, + [1218] = { + [sym_comment] = STATE(1218), + [ts_builtin_sym_end] = ACTIONS(2834), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_DOT2] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token2] = ACTIONS(3189), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(105), + }, + [1219] = { + [sym_comment] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(2834), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_DOT2] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token2] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(105), + }, + [1220] = { + [sym_comment] = STATE(1220), + [ts_builtin_sym_end] = ACTIONS(2936), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_alias] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_DASHenv] = ACTIONS(2934), + [anon_sym_mut] = ACTIONS(2934), + [anon_sym_const] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [sym_cmd_identifier] = ACTIONS(2934), + [anon_sym_LF] = ACTIONS(2936), + [anon_sym_def] = ACTIONS(2934), + [anon_sym_export_DASHenv] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_error] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_loop] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_DOT2] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_source] = ACTIONS(2934), + [anon_sym_source_DASHenv] = ACTIONS(2934), + [anon_sym_register] = ACTIONS(2934), + [anon_sym_hide] = ACTIONS(2934), + [anon_sym_hide_DASHenv] = ACTIONS(2934), + [anon_sym_overlay] = ACTIONS(2934), + [anon_sym_where] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_not] = ACTIONS(2934), + [aux_sym__immediate_decimal_token2] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [aux_sym__val_number_decimal_token1] = ACTIONS(2934), + [aux_sym__val_number_token1] = ACTIONS(2934), + [aux_sym__val_number_token2] = ACTIONS(2934), + [aux_sym__val_number_token3] = ACTIONS(2934), + [aux_sym__val_number_token4] = ACTIONS(2934), + [aux_sym__val_number_token5] = ACTIONS(2934), + [aux_sym__val_number_token6] = ACTIONS(2934), + [anon_sym_0b] = ACTIONS(2934), + [anon_sym_0o] = ACTIONS(2934), + [anon_sym_0x] = ACTIONS(2934), + [sym_val_date] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym__str_single_quotes] = ACTIONS(2934), + [sym__str_back_ticks] = ACTIONS(2934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(105), + }, + [1221] = { + [sym_comment] = STATE(1221), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_alias] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_let_DASHenv] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [sym_cmd_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3200), + [anon_sym_def] = ACTIONS(3198), + [anon_sym_export_DASHenv] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_use] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_DOLLAR] = ACTIONS(3198), + [anon_sym_error] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_loop] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_DOT2] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_source] = ACTIONS(3198), + [anon_sym_source_DASHenv] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_hide] = ACTIONS(3198), + [anon_sym_hide_DASHenv] = ACTIONS(3198), + [anon_sym_overlay] = ACTIONS(3198), + [anon_sym_where] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_not] = ACTIONS(3198), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3198), + [aux_sym__val_number_token1] = ACTIONS(3198), + [aux_sym__val_number_token2] = ACTIONS(3198), + [aux_sym__val_number_token3] = ACTIONS(3198), + [aux_sym__val_number_token4] = ACTIONS(3198), + [aux_sym__val_number_token5] = ACTIONS(3198), + [aux_sym__val_number_token6] = ACTIONS(3198), + [anon_sym_0b] = ACTIONS(3198), + [anon_sym_0o] = ACTIONS(3198), + [anon_sym_0x] = ACTIONS(3198), + [sym_val_date] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [sym__str_single_quotes] = ACTIONS(3198), + [sym__str_back_ticks] = ACTIONS(3198), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3198), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(105), + }, [1222] = { [sym_comment] = STATE(1222), - [ts_builtin_sym_end] = ACTIONS(1477), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_alias] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_let_DASHenv] = ACTIONS(1475), - [anon_sym_mut] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [sym_cmd_identifier] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_def] = ACTIONS(1475), - [anon_sym_export_DASHenv] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT2] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_source] = ACTIONS(1475), - [anon_sym_source_DASHenv] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_hide_DASHenv] = ACTIONS(1475), - [anon_sym_overlay] = ACTIONS(1475), - [anon_sym_where] = ACTIONS(1475), - [anon_sym_QMARK2] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), + [ts_builtin_sym_end] = ACTIONS(1547), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_where] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [aux_sym_unquoted_token5] = ACTIONS(3204), [anon_sym_POUND] = ACTIONS(105), }, [1223] = { - [sym_block] = STATE(1443), [sym_comment] = STATE(1223), - [anon_sym_export] = ACTIONS(3175), - [anon_sym_alias] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_let_DASHenv] = ACTIONS(3175), - [anon_sym_mut] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3175), - [sym_cmd_identifier] = ACTIONS(3175), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_def] = ACTIONS(3175), - [anon_sym_export_DASHenv] = ACTIONS(3175), - [anon_sym_extern] = ACTIONS(3175), - [anon_sym_module] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3175), - [anon_sym_error] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_loop] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_source] = ACTIONS(3175), - [anon_sym_source_DASHenv] = ACTIONS(3175), - [anon_sym_register] = ACTIONS(3175), - [anon_sym_hide] = ACTIONS(3175), - [anon_sym_hide_DASHenv] = ACTIONS(3175), - [anon_sym_overlay] = ACTIONS(3175), - [anon_sym_where] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_not] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3175), - [anon_sym_false] = ACTIONS(3175), - [aux_sym__val_number_decimal_token1] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(3175), - [aux_sym__val_number_token2] = ACTIONS(3175), - [aux_sym__val_number_token3] = ACTIONS(3175), - [aux_sym__val_number_token4] = ACTIONS(3175), - [aux_sym__val_number_token5] = ACTIONS(3175), - [aux_sym__val_number_token6] = ACTIONS(3175), - [anon_sym_0b] = ACTIONS(3175), - [anon_sym_0o] = ACTIONS(3175), - [anon_sym_0x] = ACTIONS(3175), - [sym_val_date] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym__str_single_quotes] = ACTIONS(3175), - [sym__str_back_ticks] = ACTIONS(3175), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT2] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_QMARK2] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [1224] = { - [sym_expr_parenthesized] = STATE(2401), - [sym_val_range] = STATE(2465), - [sym__value] = STATE(2465), - [sym_val_nothing] = STATE(2535), - [sym_val_bool] = STATE(2535), - [sym_val_variable] = STATE(2407), - [sym__var] = STATE(2327), - [sym_val_number] = STATE(295), - [sym__val_number_decimal] = STATE(277), - [sym__val_number] = STATE(290), - [sym_val_duration] = STATE(2535), - [sym_val_filesize] = STATE(2535), - [sym_val_binary] = STATE(2535), - [sym_val_string] = STATE(2535), - [sym__str_double_quotes] = STATE(2453), - [sym_val_interpolated] = STATE(2535), - [sym__inter_single_quotes] = STATE(2530), - [sym__inter_double_quotes] = STATE(2525), - [sym_val_list] = STATE(2535), - [sym_val_record] = STATE(2535), - [sym_val_table] = STATE(2535), - [sym_val_closure] = STATE(2535), - [sym__cmd_arg] = STATE(2656), - [sym_redirection] = STATE(2461), - [sym__flag] = STATE(2460), - [sym_short_flag] = STATE(2531), - [sym_long_flag] = STATE(2531), - [sym_unquoted] = STATE(2457), [sym_comment] = STATE(1224), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_null] = ACTIONS(3192), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(3196), - [aux_sym__val_number_token2] = ACTIONS(3196), - [aux_sym__val_number_token3] = ACTIONS(3196), - [aux_sym__val_number_token4] = ACTIONS(3198), - [aux_sym__val_number_token5] = ACTIONS(3198), - [aux_sym__val_number_token6] = ACTIONS(3198), - [anon_sym_0b] = ACTIONS(2173), - [anon_sym_0o] = ACTIONS(2173), - [anon_sym_0x] = ACTIONS(2173), - [sym_val_date] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3202), - [sym__str_single_quotes] = ACTIONS(3204), - [sym__str_back_ticks] = ACTIONS(3204), + [anon_sym_export] = ACTIONS(3206), + [anon_sym_alias] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_let_DASHenv] = ACTIONS(3206), + [anon_sym_mut] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_SEMI] = ACTIONS(3206), + [sym_cmd_identifier] = ACTIONS(3206), + [anon_sym_LF] = ACTIONS(3208), + [anon_sym_def] = ACTIONS(3206), + [anon_sym_export_DASHenv] = ACTIONS(3206), + [anon_sym_extern] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_use] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_DOLLAR] = ACTIONS(3206), + [anon_sym_error] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_loop] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_DOT2] = ACTIONS(3210), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_source] = ACTIONS(3206), + [anon_sym_source_DASHenv] = ACTIONS(3206), + [anon_sym_register] = ACTIONS(3206), + [anon_sym_hide] = ACTIONS(3206), + [anon_sym_hide_DASHenv] = ACTIONS(3206), + [anon_sym_overlay] = ACTIONS(3206), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_not] = ACTIONS(3206), + [anon_sym_null] = ACTIONS(3206), + [anon_sym_true] = ACTIONS(3206), + [anon_sym_false] = ACTIONS(3206), + [aux_sym__val_number_decimal_token1] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(3206), + [aux_sym__val_number_token2] = ACTIONS(3206), + [aux_sym__val_number_token3] = ACTIONS(3206), + [aux_sym__val_number_token4] = ACTIONS(3206), + [aux_sym__val_number_token5] = ACTIONS(3206), + [aux_sym__val_number_token6] = ACTIONS(3206), + [anon_sym_0b] = ACTIONS(3206), + [anon_sym_0o] = ACTIONS(3206), + [anon_sym_0x] = ACTIONS(3206), + [sym_val_date] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(3206), + [sym__str_single_quotes] = ACTIONS(3206), + [sym__str_back_ticks] = ACTIONS(3206), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3206), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3208), - [anon_sym_err_GT] = ACTIONS(3210), - [anon_sym_out_GT] = ACTIONS(3210), - [anon_sym_e_GT] = ACTIONS(3210), - [anon_sym_o_GT] = ACTIONS(3210), - [anon_sym_err_PLUSout_GT] = ACTIONS(3210), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3210), - [anon_sym_o_PLUSe_GT] = ACTIONS(3210), - [anon_sym_e_PLUSo_GT] = ACTIONS(3210), - [aux_sym_unquoted_token1] = ACTIONS(2187), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3206), + [anon_sym_CARET] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(105), }, [1225] = { [sym_comment] = STATE(1225), - [anon_sym_export] = ACTIONS(1369), - [anon_sym_alias] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_let_DASHenv] = ACTIONS(1369), - [anon_sym_mut] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [sym_cmd_identifier] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1369), - [anon_sym_export_DASHenv] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_module] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1369), - [anon_sym_error] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_source] = ACTIONS(1369), - [anon_sym_source_DASHenv] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_hide] = ACTIONS(1369), - [anon_sym_hide_DASHenv] = ACTIONS(1369), - [anon_sym_overlay] = ACTIONS(1369), - [anon_sym_where] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_token1] = ACTIONS(1369), - [aux_sym__val_number_token2] = ACTIONS(1369), - [aux_sym__val_number_token3] = ACTIONS(1369), - [aux_sym__val_number_token4] = ACTIONS(1369), - [aux_sym__val_number_token5] = ACTIONS(1369), - [aux_sym__val_number_token6] = ACTIONS(1369), - [anon_sym_0b] = ACTIONS(1369), - [anon_sym_0o] = ACTIONS(1369), - [anon_sym_0x] = ACTIONS(1369), - [sym_val_date] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1369), - [sym__str_back_ticks] = ACTIONS(1369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [aux_sym_unquoted_token3] = ACTIONS(2532), + [anon_sym_export] = ACTIONS(3212), + [anon_sym_alias] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_DASHenv] = ACTIONS(3212), + [anon_sym_mut] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3212), + [sym_cmd_identifier] = ACTIONS(3212), + [anon_sym_LF] = ACTIONS(3214), + [anon_sym_def] = ACTIONS(3212), + [anon_sym_export_DASHenv] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_RPAREN] = ACTIONS(3212), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_error] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_loop] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_DOT2] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_source] = ACTIONS(3212), + [anon_sym_source_DASHenv] = ACTIONS(3212), + [anon_sym_register] = ACTIONS(3212), + [anon_sym_hide] = ACTIONS(3212), + [anon_sym_hide_DASHenv] = ACTIONS(3212), + [anon_sym_overlay] = ACTIONS(3212), + [anon_sym_where] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_not] = ACTIONS(3212), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3212), + [anon_sym_false] = ACTIONS(3212), + [aux_sym__val_number_decimal_token1] = ACTIONS(3212), + [aux_sym__val_number_token1] = ACTIONS(3212), + [aux_sym__val_number_token2] = ACTIONS(3212), + [aux_sym__val_number_token3] = ACTIONS(3212), + [aux_sym__val_number_token4] = ACTIONS(3212), + [aux_sym__val_number_token5] = ACTIONS(3212), + [aux_sym__val_number_token6] = ACTIONS(3212), + [anon_sym_0b] = ACTIONS(3212), + [anon_sym_0o] = ACTIONS(3212), + [anon_sym_0x] = ACTIONS(3212), + [sym_val_date] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [sym__str_single_quotes] = ACTIONS(3212), + [sym__str_back_ticks] = ACTIONS(3212), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3212), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_CARET] = ACTIONS(3212), [anon_sym_POUND] = ACTIONS(105), }, [1226] = { [sym_comment] = STATE(1226), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_where] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_not] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(3218), + [anon_sym_alias] = ACTIONS(3218), + [anon_sym_let] = ACTIONS(3218), + [anon_sym_let_DASHenv] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3218), + [sym_cmd_identifier] = ACTIONS(3218), + [anon_sym_LF] = ACTIONS(3220), + [anon_sym_def] = ACTIONS(3218), + [anon_sym_export_DASHenv] = ACTIONS(3218), + [anon_sym_extern] = ACTIONS(3218), + [anon_sym_module] = ACTIONS(3218), + [anon_sym_use] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_DOLLAR] = ACTIONS(3218), + [anon_sym_error] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_loop] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_source] = ACTIONS(3218), + [anon_sym_source_DASHenv] = ACTIONS(3218), + [anon_sym_register] = ACTIONS(3218), + [anon_sym_hide] = ACTIONS(3218), + [anon_sym_hide_DASHenv] = ACTIONS(3218), + [anon_sym_overlay] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_not] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [aux_sym__val_number_decimal_token1] = ACTIONS(3218), + [aux_sym__val_number_token1] = ACTIONS(3218), + [aux_sym__val_number_token2] = ACTIONS(3218), + [aux_sym__val_number_token3] = ACTIONS(3218), + [aux_sym__val_number_token4] = ACTIONS(3218), + [aux_sym__val_number_token5] = ACTIONS(3218), + [aux_sym__val_number_token6] = ACTIONS(3218), + [anon_sym_0b] = ACTIONS(3218), + [anon_sym_0o] = ACTIONS(3218), + [anon_sym_0x] = ACTIONS(3218), + [sym_val_date] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [sym__str_single_quotes] = ACTIONS(3218), + [sym__str_back_ticks] = ACTIONS(3218), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3218), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3218), [anon_sym_POUND] = ACTIONS(105), }, [1227] = { [sym_comment] = STATE(1227), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_where] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_not] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [aux_sym_unquoted_token5] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2986), + [anon_sym_export] = ACTIONS(2984), + [anon_sym_alias] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2984), + [anon_sym_let_DASHenv] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2984), + [sym_cmd_identifier] = ACTIONS(2984), + [anon_sym_LF] = ACTIONS(2986), + [anon_sym_def] = ACTIONS(2984), + [anon_sym_export_DASHenv] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym_module] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2984), + [anon_sym_error] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_loop] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_DOT2] = ACTIONS(2986), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_source] = ACTIONS(2984), + [anon_sym_source_DASHenv] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_hide] = ACTIONS(2984), + [anon_sym_hide_DASHenv] = ACTIONS(2984), + [anon_sym_overlay] = ACTIONS(2984), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [aux_sym__immediate_decimal_token2] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [aux_sym__val_number_decimal_token1] = ACTIONS(2984), + [aux_sym__val_number_token1] = ACTIONS(2984), + [aux_sym__val_number_token2] = ACTIONS(2984), + [aux_sym__val_number_token3] = ACTIONS(2984), + [aux_sym__val_number_token4] = ACTIONS(2984), + [aux_sym__val_number_token5] = ACTIONS(2984), + [aux_sym__val_number_token6] = ACTIONS(2984), + [anon_sym_0b] = ACTIONS(2984), + [anon_sym_0o] = ACTIONS(2984), + [anon_sym_0x] = ACTIONS(2984), + [sym_val_date] = ACTIONS(2984), + [anon_sym_DQUOTE] = ACTIONS(2984), + [sym__str_single_quotes] = ACTIONS(2984), + [sym__str_back_ticks] = ACTIONS(2984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), + [anon_sym_CARET] = ACTIONS(2984), [anon_sym_POUND] = ACTIONS(105), }, [1228] = { [sym_comment] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(2784), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_alias] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_let_DASHenv] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [sym_cmd_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_def] = ACTIONS(2782), - [anon_sym_export_DASHenv] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2782), - [anon_sym_error] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_loop] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_source] = ACTIONS(2782), - [anon_sym_source_DASHenv] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_hide] = ACTIONS(2782), - [anon_sym_hide_DASHenv] = ACTIONS(2782), - [anon_sym_overlay] = ACTIONS(2782), - [anon_sym_where] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [aux_sym__immediate_decimal_token1] = ACTIONS(3212), - [aux_sym__immediate_decimal_token2] = ACTIONS(3214), - [anon_sym_null] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2782), - [anon_sym_false] = ACTIONS(2782), - [aux_sym__val_number_decimal_token1] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2782), - [aux_sym__val_number_token2] = ACTIONS(2782), - [aux_sym__val_number_token3] = ACTIONS(2782), - [aux_sym__val_number_token4] = ACTIONS(2782), - [aux_sym__val_number_token5] = ACTIONS(2782), - [aux_sym__val_number_token6] = ACTIONS(2782), - [anon_sym_0b] = ACTIONS(2782), - [anon_sym_0o] = ACTIONS(2782), - [anon_sym_0x] = ACTIONS(2782), - [sym_val_date] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2782), - [sym__str_single_quotes] = ACTIONS(2782), - [sym__str_back_ticks] = ACTIONS(2782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_alias] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_let_DASHenv] = ACTIONS(3224), + [anon_sym_mut] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [sym_cmd_identifier] = ACTIONS(3224), + [anon_sym_LF] = ACTIONS(3226), + [anon_sym_def] = ACTIONS(3224), + [anon_sym_export_DASHenv] = ACTIONS(3224), + [anon_sym_extern] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_use] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_RPAREN] = ACTIONS(3224), + [anon_sym_DOLLAR] = ACTIONS(3224), + [anon_sym_error] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_loop] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_DOT] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_source] = ACTIONS(3224), + [anon_sym_source_DASHenv] = ACTIONS(3224), + [anon_sym_register] = ACTIONS(3224), + [anon_sym_hide] = ACTIONS(3224), + [anon_sym_hide_DASHenv] = ACTIONS(3224), + [anon_sym_overlay] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_where] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_not] = ACTIONS(3224), + [anon_sym_null] = ACTIONS(3224), + [anon_sym_true] = ACTIONS(3224), + [anon_sym_false] = ACTIONS(3224), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_token1] = ACTIONS(3224), + [aux_sym__val_number_token2] = ACTIONS(3224), + [aux_sym__val_number_token3] = ACTIONS(3224), + [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(3224), + [anon_sym_0o] = ACTIONS(3224), + [anon_sym_0x] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [sym__str_single_quotes] = ACTIONS(3224), + [sym__str_back_ticks] = ACTIONS(3224), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3224), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), [anon_sym_POUND] = ACTIONS(105), }, [1229] = { [sym_comment] = STATE(1229), - [ts_builtin_sym_end] = ACTIONS(2808), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token1] = ACTIONS(3216), - [aux_sym__immediate_decimal_token2] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), + [ts_builtin_sym_end] = ACTIONS(2908), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_alias] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_DASHenv] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [sym_cmd_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2908), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_export_DASHenv] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_error] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_DOT2] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_source] = ACTIONS(2906), + [anon_sym_source_DASHenv] = ACTIONS(2906), + [anon_sym_register] = ACTIONS(2906), + [anon_sym_hide] = ACTIONS(2906), + [anon_sym_hide_DASHenv] = ACTIONS(2906), + [anon_sym_overlay] = ACTIONS(2906), + [anon_sym_where] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_not] = ACTIONS(2906), + [aux_sym__immediate_decimal_token2] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym__val_number_decimal_token1] = ACTIONS(2906), + [aux_sym__val_number_token1] = ACTIONS(2906), + [aux_sym__val_number_token2] = ACTIONS(2906), + [aux_sym__val_number_token3] = ACTIONS(2906), + [aux_sym__val_number_token4] = ACTIONS(2906), + [aux_sym__val_number_token5] = ACTIONS(2906), + [aux_sym__val_number_token6] = ACTIONS(2906), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2906), + [anon_sym_0x] = ACTIONS(2906), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym__str_single_quotes] = ACTIONS(2906), + [sym__str_back_ticks] = ACTIONS(2906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), [anon_sym_POUND] = ACTIONS(105), }, [1230] = { [sym_comment] = STATE(1230), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_alias] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_let_DASHenv] = ACTIONS(3220), - [anon_sym_mut] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [sym_cmd_identifier] = ACTIONS(3220), - [anon_sym_LF] = ACTIONS(3222), - [anon_sym_def] = ACTIONS(3220), - [anon_sym_export_DASHenv] = ACTIONS(3220), - [anon_sym_extern] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_use] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_RPAREN] = ACTIONS(3220), - [anon_sym_DOLLAR] = ACTIONS(3220), - [anon_sym_error] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_loop] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_match] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_DOT] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_source] = ACTIONS(3220), - [anon_sym_source_DASHenv] = ACTIONS(3220), - [anon_sym_register] = ACTIONS(3220), - [anon_sym_hide] = ACTIONS(3220), - [anon_sym_hide_DASHenv] = ACTIONS(3220), - [anon_sym_overlay] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3220), - [anon_sym_where] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_not] = ACTIONS(3220), - [anon_sym_null] = ACTIONS(3220), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3220), - [aux_sym__val_number_token1] = ACTIONS(3220), - [aux_sym__val_number_token2] = ACTIONS(3220), - [aux_sym__val_number_token3] = ACTIONS(3220), - [aux_sym__val_number_token4] = ACTIONS(3220), - [aux_sym__val_number_token5] = ACTIONS(3220), - [aux_sym__val_number_token6] = ACTIONS(3220), - [anon_sym_0b] = ACTIONS(3220), - [anon_sym_0o] = ACTIONS(3220), - [anon_sym_0x] = ACTIONS(3220), - [sym_val_date] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [sym__str_single_quotes] = ACTIONS(3220), - [sym__str_back_ticks] = ACTIONS(3220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3220), - [anon_sym_CARET] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_where] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(105), }, [1231] = { [sym_comment] = STATE(1231), - [ts_builtin_sym_end] = ACTIONS(2808), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_alias] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_DASHenv] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [sym_cmd_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_def] = ACTIONS(2806), - [anon_sym_export_DASHenv] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_error] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DOT2] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_source] = ACTIONS(2806), - [anon_sym_source_DASHenv] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_hide] = ACTIONS(2806), - [anon_sym_hide_DASHenv] = ACTIONS(2806), - [anon_sym_overlay] = ACTIONS(2806), - [anon_sym_where] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [aux_sym__immediate_decimal_token2] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [aux_sym__val_number_decimal_token1] = ACTIONS(2806), - [aux_sym__val_number_token1] = ACTIONS(2806), - [aux_sym__val_number_token2] = ACTIONS(2806), - [aux_sym__val_number_token3] = ACTIONS(2806), - [aux_sym__val_number_token4] = ACTIONS(2806), - [aux_sym__val_number_token5] = ACTIONS(2806), - [aux_sym__val_number_token6] = ACTIONS(2806), - [anon_sym_0b] = ACTIONS(2806), - [anon_sym_0o] = ACTIONS(2806), - [anon_sym_0x] = ACTIONS(2806), - [sym_val_date] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_alias] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_DASHenv] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [sym_cmd_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2908), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_export_DASHenv] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_error] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_DOT2] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_source] = ACTIONS(2906), + [anon_sym_source_DASHenv] = ACTIONS(2906), + [anon_sym_register] = ACTIONS(2906), + [anon_sym_hide] = ACTIONS(2906), + [anon_sym_hide_DASHenv] = ACTIONS(2906), + [anon_sym_overlay] = ACTIONS(2906), + [anon_sym_where] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_not] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym__val_number_decimal_token1] = ACTIONS(2906), + [aux_sym__val_number_token1] = ACTIONS(2906), + [aux_sym__val_number_token2] = ACTIONS(2906), + [aux_sym__val_number_token3] = ACTIONS(2906), + [aux_sym__val_number_token4] = ACTIONS(2906), + [aux_sym__val_number_token5] = ACTIONS(2906), + [aux_sym__val_number_token6] = ACTIONS(2906), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2906), + [anon_sym_0x] = ACTIONS(2906), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym__str_single_quotes] = ACTIONS(2906), + [sym__str_back_ticks] = ACTIONS(2906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), [anon_sym_POUND] = ACTIONS(105), }, [1232] = { [sym_comment] = STATE(1232), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_alias] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_let_DASHenv] = ACTIONS(3226), - [anon_sym_mut] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [sym_cmd_identifier] = ACTIONS(3226), - [anon_sym_LF] = ACTIONS(3228), - [anon_sym_def] = ACTIONS(3226), - [anon_sym_export_DASHenv] = ACTIONS(3226), - [anon_sym_extern] = ACTIONS(3226), - [anon_sym_module] = ACTIONS(3226), - [anon_sym_use] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_RPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3226), - [anon_sym_error] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_loop] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_DOT] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_source] = ACTIONS(3226), - [anon_sym_source_DASHenv] = ACTIONS(3226), - [anon_sym_register] = ACTIONS(3226), - [anon_sym_hide] = ACTIONS(3226), - [anon_sym_hide_DASHenv] = ACTIONS(3226), - [anon_sym_overlay] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_where] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_not] = ACTIONS(3226), - [anon_sym_null] = ACTIONS(3226), - [anon_sym_true] = ACTIONS(3226), - [anon_sym_false] = ACTIONS(3226), - [aux_sym__val_number_decimal_token1] = ACTIONS(3226), - [aux_sym__val_number_token1] = ACTIONS(3226), - [aux_sym__val_number_token2] = ACTIONS(3226), - [aux_sym__val_number_token3] = ACTIONS(3226), - [aux_sym__val_number_token4] = ACTIONS(3226), - [aux_sym__val_number_token5] = ACTIONS(3226), - [aux_sym__val_number_token6] = ACTIONS(3226), - [anon_sym_0b] = ACTIONS(3226), - [anon_sym_0o] = ACTIONS(3226), - [anon_sym_0x] = ACTIONS(3226), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym__str_single_quotes] = ACTIONS(3226), - [sym__str_back_ticks] = ACTIONS(3226), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3226), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3226), - [anon_sym_CARET] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_alias] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_let_DASHenv] = ACTIONS(3228), + [anon_sym_mut] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [sym_cmd_identifier] = ACTIONS(3228), + [anon_sym_LF] = ACTIONS(3230), + [anon_sym_def] = ACTIONS(3228), + [anon_sym_export_DASHenv] = ACTIONS(3228), + [anon_sym_extern] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_RPAREN] = ACTIONS(3228), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_error] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_loop] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_source] = ACTIONS(3228), + [anon_sym_source_DASHenv] = ACTIONS(3228), + [anon_sym_register] = ACTIONS(3228), + [anon_sym_hide] = ACTIONS(3228), + [anon_sym_hide_DASHenv] = ACTIONS(3228), + [anon_sym_overlay] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_not] = ACTIONS(3228), + [anon_sym_null] = ACTIONS(3228), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [aux_sym__val_number_decimal_token1] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(3228), + [aux_sym__val_number_token2] = ACTIONS(3228), + [aux_sym__val_number_token3] = ACTIONS(3228), + [aux_sym__val_number_token4] = ACTIONS(3228), + [aux_sym__val_number_token5] = ACTIONS(3228), + [aux_sym__val_number_token6] = ACTIONS(3228), + [anon_sym_0b] = ACTIONS(3228), + [anon_sym_0o] = ACTIONS(3228), + [anon_sym_0x] = ACTIONS(3228), + [sym_val_date] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [sym__str_single_quotes] = ACTIONS(3228), + [sym__str_back_ticks] = ACTIONS(3228), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3228), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3228), + [anon_sym_CARET] = ACTIONS(3228), [anon_sym_POUND] = ACTIONS(105), }, [1233] = { [sym_comment] = STATE(1233), - [anon_sym_export] = ACTIONS(1632), - [anon_sym_alias] = ACTIONS(1632), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_let_DASHenv] = ACTIONS(1632), - [anon_sym_mut] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1632), - [sym_cmd_identifier] = ACTIONS(1632), - [anon_sym_LF] = ACTIONS(1634), - [anon_sym_def] = ACTIONS(1632), - [anon_sym_export_DASHenv] = ACTIONS(1632), - [anon_sym_extern] = ACTIONS(1632), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_use] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_DOLLAR] = ACTIONS(1632), - [anon_sym_error] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_loop] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_try] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_source] = ACTIONS(1632), - [anon_sym_source_DASHenv] = ACTIONS(1632), - [anon_sym_register] = ACTIONS(1632), - [anon_sym_hide] = ACTIONS(1632), - [anon_sym_hide_DASHenv] = ACTIONS(1632), - [anon_sym_overlay] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_where] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_not] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [aux_sym__val_number_decimal_token1] = ACTIONS(1632), - [aux_sym__val_number_token1] = ACTIONS(1632), - [aux_sym__val_number_token2] = ACTIONS(1632), - [aux_sym__val_number_token3] = ACTIONS(1632), - [aux_sym__val_number_token4] = ACTIONS(1632), - [aux_sym__val_number_token5] = ACTIONS(1632), - [aux_sym__val_number_token6] = ACTIONS(1632), - [anon_sym_0b] = ACTIONS(1632), - [anon_sym_0o] = ACTIONS(1632), - [anon_sym_0x] = ACTIONS(1632), - [sym_val_date] = ACTIONS(1632), - [anon_sym_DQUOTE] = ACTIONS(1632), - [sym__str_single_quotes] = ACTIONS(1632), - [sym__str_back_ticks] = ACTIONS(1632), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1632), + [anon_sym_export] = ACTIONS(1524), + [anon_sym_alias] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_let_DASHenv] = ACTIONS(1524), + [anon_sym_mut] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [sym_cmd_identifier] = ACTIONS(1524), + [anon_sym_LF] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1524), + [anon_sym_export_DASHenv] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_module] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_error] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_source] = ACTIONS(1524), + [anon_sym_source_DASHenv] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_hide] = ACTIONS(1524), + [anon_sym_hide_DASHenv] = ACTIONS(1524), + [anon_sym_overlay] = ACTIONS(1524), + [anon_sym_where] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_not] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1524), + [aux_sym__val_number_token5] = ACTIONS(1524), + [aux_sym__val_number_token6] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1524), + [anon_sym_0o] = ACTIONS(1524), + [anon_sym_0x] = ACTIONS(1524), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), [anon_sym_POUND] = ACTIONS(105), }, [1234] = { [sym_comment] = STATE(1234), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_alias] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_let_DASHenv] = ACTIONS(1475), - [anon_sym_mut] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [sym_cmd_identifier] = ACTIONS(1475), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_def] = ACTIONS(1475), - [anon_sym_export_DASHenv] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_source] = ACTIONS(1475), - [anon_sym_source_DASHenv] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_hide_DASHenv] = ACTIONS(1475), - [anon_sym_overlay] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_where] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1475), - [anon_sym_0x] = ACTIONS(1475), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_alias] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_let_DASHenv] = ACTIONS(3232), + [anon_sym_mut] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [sym_cmd_identifier] = ACTIONS(3232), + [anon_sym_LF] = ACTIONS(3234), + [anon_sym_def] = ACTIONS(3232), + [anon_sym_export_DASHenv] = ACTIONS(3232), + [anon_sym_extern] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3232), + [anon_sym_error] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_loop] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_source] = ACTIONS(3232), + [anon_sym_source_DASHenv] = ACTIONS(3232), + [anon_sym_register] = ACTIONS(3232), + [anon_sym_hide] = ACTIONS(3232), + [anon_sym_hide_DASHenv] = ACTIONS(3232), + [anon_sym_overlay] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3232), + [anon_sym_where] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_not] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3232), + [anon_sym_false] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3232), + [aux_sym__val_number_token1] = ACTIONS(3232), + [aux_sym__val_number_token2] = ACTIONS(3232), + [aux_sym__val_number_token3] = ACTIONS(3232), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(3232), + [anon_sym_0o] = ACTIONS(3232), + [anon_sym_0x] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [sym__str_single_quotes] = ACTIONS(3232), + [sym__str_back_ticks] = ACTIONS(3232), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3232), + [anon_sym_CARET] = ACTIONS(3232), [anon_sym_POUND] = ACTIONS(105), }, [1235] = { [sym_comment] = STATE(1235), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_alias] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_let_DASHenv] = ACTIONS(3230), - [anon_sym_mut] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [sym_cmd_identifier] = ACTIONS(3230), - [anon_sym_LF] = ACTIONS(3232), - [anon_sym_def] = ACTIONS(3230), - [anon_sym_export_DASHenv] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_use] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_RPAREN] = ACTIONS(3230), - [anon_sym_PIPE] = ACTIONS(3230), - [anon_sym_DOLLAR] = ACTIONS(3230), - [anon_sym_error] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_loop] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_match] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_source] = ACTIONS(3230), - [anon_sym_source_DASHenv] = ACTIONS(3230), - [anon_sym_register] = ACTIONS(3230), - [anon_sym_hide] = ACTIONS(3230), - [anon_sym_hide_DASHenv] = ACTIONS(3230), - [anon_sym_overlay] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_not] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [aux_sym__val_number_decimal_token1] = ACTIONS(3230), - [aux_sym__val_number_token1] = ACTIONS(3230), - [aux_sym__val_number_token2] = ACTIONS(3230), - [aux_sym__val_number_token3] = ACTIONS(3230), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), - [anon_sym_0b] = ACTIONS(3230), - [anon_sym_0o] = ACTIONS(3230), - [anon_sym_0x] = ACTIONS(3230), - [sym_val_date] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym__str_single_quotes] = ACTIONS(3230), - [sym__str_back_ticks] = ACTIONS(3230), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3230), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), - [anon_sym_CARET] = ACTIONS(3230), + [ts_builtin_sym_end] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3153), + [anon_sym_alias] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_let_DASHenv] = ACTIONS(3153), + [anon_sym_mut] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [sym_cmd_identifier] = ACTIONS(3153), + [sym__long_flag_identifier] = ACTIONS(3236), + [anon_sym_LF] = ACTIONS(3157), + [anon_sym_def] = ACTIONS(3153), + [anon_sym_export_DASHenv] = ACTIONS(3153), + [anon_sym_extern] = ACTIONS(3153), + [anon_sym_module] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3153), + [anon_sym_error] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_loop] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3153), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_source] = ACTIONS(3153), + [anon_sym_source_DASHenv] = ACTIONS(3153), + [anon_sym_register] = ACTIONS(3153), + [anon_sym_hide] = ACTIONS(3153), + [anon_sym_hide_DASHenv] = ACTIONS(3153), + [anon_sym_overlay] = ACTIONS(3153), + [anon_sym_as] = ACTIONS(3153), + [anon_sym_where] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_not] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3153), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_token1] = ACTIONS(3153), + [aux_sym__val_number_token2] = ACTIONS(3153), + [aux_sym__val_number_token3] = ACTIONS(3153), + [aux_sym__val_number_token4] = ACTIONS(3153), + [aux_sym__val_number_token5] = ACTIONS(3153), + [aux_sym__val_number_token6] = ACTIONS(3153), + [anon_sym_0b] = ACTIONS(3153), + [anon_sym_0o] = ACTIONS(3153), + [anon_sym_0x] = ACTIONS(3153), + [sym_val_date] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym__str_single_quotes] = ACTIONS(3153), + [sym__str_back_ticks] = ACTIONS(3153), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3153), + [anon_sym_CARET] = ACTIONS(3153), [anon_sym_POUND] = ACTIONS(105), }, [1236] = { [sym_comment] = STATE(1236), - [ts_builtin_sym_end] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1495), - [anon_sym_alias] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_let_DASHenv] = ACTIONS(1495), - [anon_sym_mut] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [sym_cmd_identifier] = ACTIONS(1495), - [anon_sym_LF] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1495), - [anon_sym_export_DASHenv] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_error] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_source] = ACTIONS(1495), - [anon_sym_source_DASHenv] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_hide] = ACTIONS(1495), - [anon_sym_hide_DASHenv] = ACTIONS(1495), - [anon_sym_overlay] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_where] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_not] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [aux_sym__val_number_decimal_token1] = ACTIONS(1495), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [aux_sym__val_number_token4] = ACTIONS(1495), - [aux_sym__val_number_token5] = ACTIONS(1495), - [aux_sym__val_number_token6] = ACTIONS(1495), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym__str_single_quotes] = ACTIONS(1495), - [sym__str_back_ticks] = ACTIONS(1495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [aux_sym_unquoted_token5] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(1545), + [anon_sym_alias] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_let_DASHenv] = ACTIONS(1545), + [anon_sym_mut] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [sym_cmd_identifier] = ACTIONS(1545), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_export_DASHenv] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_module] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_source] = ACTIONS(1545), + [anon_sym_source_DASHenv] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_hide] = ACTIONS(1545), + [anon_sym_hide_DASHenv] = ACTIONS(1545), + [anon_sym_overlay] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_where] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [aux_sym__val_number_decimal_token1] = ACTIONS(1545), + [aux_sym__val_number_token1] = ACTIONS(1545), + [aux_sym__val_number_token2] = ACTIONS(1545), + [aux_sym__val_number_token3] = ACTIONS(1545), + [aux_sym__val_number_token4] = ACTIONS(1545), + [aux_sym__val_number_token5] = ACTIONS(1545), + [aux_sym__val_number_token6] = ACTIONS(1545), + [anon_sym_0b] = ACTIONS(1545), + [anon_sym_0o] = ACTIONS(1545), + [anon_sym_0x] = ACTIONS(1545), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1545), + [sym__str_single_quotes] = ACTIONS(1545), + [sym__str_back_ticks] = ACTIONS(1545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), [anon_sym_POUND] = ACTIONS(105), }, [1237] = { [sym_comment] = STATE(1237), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_alias] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_let_DASHenv] = ACTIONS(1612), - [anon_sym_mut] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1612), - [sym_cmd_identifier] = ACTIONS(1612), - [anon_sym_LF] = ACTIONS(1614), - [anon_sym_def] = ACTIONS(1612), - [anon_sym_export_DASHenv] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_error] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_DOT] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_source] = ACTIONS(1612), - [anon_sym_source_DASHenv] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_hide] = ACTIONS(1612), - [anon_sym_hide_DASHenv] = ACTIONS(1612), - [anon_sym_overlay] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_where] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_not] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1612), - [aux_sym__val_number_token2] = ACTIONS(1612), - [aux_sym__val_number_token3] = ACTIONS(1612), - [aux_sym__val_number_token4] = ACTIONS(1612), - [aux_sym__val_number_token5] = ACTIONS(1612), - [aux_sym__val_number_token6] = ACTIONS(1612), - [anon_sym_0b] = ACTIONS(1612), - [anon_sym_0o] = ACTIONS(1612), - [anon_sym_0x] = ACTIONS(1612), - [sym_val_date] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__str_single_quotes] = ACTIONS(1612), - [sym__str_back_ticks] = ACTIONS(1612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1612), + [anon_sym_export] = ACTIONS(3238), + [anon_sym_alias] = ACTIONS(3238), + [anon_sym_let] = ACTIONS(3238), + [anon_sym_let_DASHenv] = ACTIONS(3238), + [anon_sym_mut] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3238), + [sym_cmd_identifier] = ACTIONS(3238), + [anon_sym_LF] = ACTIONS(3240), + [anon_sym_def] = ACTIONS(3238), + [anon_sym_export_DASHenv] = ACTIONS(3238), + [anon_sym_extern] = ACTIONS(3238), + [anon_sym_module] = ACTIONS(3238), + [anon_sym_use] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_DOLLAR] = ACTIONS(3238), + [anon_sym_error] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_loop] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_match] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3238), + [anon_sym_DOT2] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_source] = ACTIONS(3238), + [anon_sym_source_DASHenv] = ACTIONS(3238), + [anon_sym_register] = ACTIONS(3238), + [anon_sym_hide] = ACTIONS(3238), + [anon_sym_hide_DASHenv] = ACTIONS(3238), + [anon_sym_overlay] = ACTIONS(3238), + [anon_sym_where] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3238), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3238), + [anon_sym_false] = ACTIONS(3238), + [aux_sym__val_number_decimal_token1] = ACTIONS(3238), + [aux_sym__val_number_token1] = ACTIONS(3238), + [aux_sym__val_number_token2] = ACTIONS(3238), + [aux_sym__val_number_token3] = ACTIONS(3238), + [aux_sym__val_number_token4] = ACTIONS(3238), + [aux_sym__val_number_token5] = ACTIONS(3238), + [aux_sym__val_number_token6] = ACTIONS(3238), + [anon_sym_0b] = ACTIONS(3238), + [anon_sym_0o] = ACTIONS(3238), + [anon_sym_0x] = ACTIONS(3238), + [sym_val_date] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [sym__str_single_quotes] = ACTIONS(3238), + [sym__str_back_ticks] = ACTIONS(3238), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3238), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3238), + [anon_sym_CARET] = ACTIONS(3238), [anon_sym_POUND] = ACTIONS(105), }, [1238] = { [sym_comment] = STATE(1238), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_alias] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_let_DASHenv] = ACTIONS(1491), - [anon_sym_mut] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [sym_cmd_identifier] = ACTIONS(1491), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_def] = ACTIONS(1491), - [anon_sym_export_DASHenv] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_error] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT2] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_source] = ACTIONS(1491), - [anon_sym_source_DASHenv] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_hide] = ACTIONS(1491), - [anon_sym_hide_DASHenv] = ACTIONS(1491), - [anon_sym_overlay] = ACTIONS(1491), - [anon_sym_where] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_not] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [aux_sym__val_number_decimal_token1] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1491), - [aux_sym__val_number_token5] = ACTIONS(1491), - [aux_sym__val_number_token6] = ACTIONS(1491), - [anon_sym_0b] = ACTIONS(1491), - [anon_sym_0o] = ACTIONS(1491), - [anon_sym_0x] = ACTIONS(1491), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [sym_cmd_identifier] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1443), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT2] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_where] = ACTIONS(1441), + [anon_sym_QMARK2] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(105), + }, + [1239] = { + [sym_comment] = STATE(1239), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_not] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(105), + }, + [1240] = { + [sym_val_record] = STATE(1482), + [sym_comment] = STATE(1240), + [anon_sym_export] = ACTIONS(3244), + [anon_sym_alias] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_let_DASHenv] = ACTIONS(3244), + [anon_sym_mut] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [sym_cmd_identifier] = ACTIONS(3244), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_def] = ACTIONS(3244), + [anon_sym_export_DASHenv] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym_module] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3244), + [anon_sym_error] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_loop] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_match] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_source] = ACTIONS(3244), + [anon_sym_source_DASHenv] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_hide] = ACTIONS(3244), + [anon_sym_hide_DASHenv] = ACTIONS(3244), + [anon_sym_overlay] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_not] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [aux_sym__val_number_decimal_token1] = ACTIONS(3244), + [aux_sym__val_number_token1] = ACTIONS(3244), + [aux_sym__val_number_token2] = ACTIONS(3244), + [aux_sym__val_number_token3] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3244), + [aux_sym__val_number_token5] = ACTIONS(3244), + [aux_sym__val_number_token6] = ACTIONS(3244), + [anon_sym_0b] = ACTIONS(3244), + [anon_sym_0o] = ACTIONS(3244), + [anon_sym_0x] = ACTIONS(3244), + [sym_val_date] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [sym__str_single_quotes] = ACTIONS(3244), + [sym__str_back_ticks] = ACTIONS(3244), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(105), + }, + [1241] = { + [sym_comment] = STATE(1241), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_alias] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_let_DASHenv] = ACTIONS(1509), + [anon_sym_mut] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [sym_cmd_identifier] = ACTIONS(1509), + [anon_sym_LF] = ACTIONS(1511), + [anon_sym_def] = ACTIONS(1509), + [anon_sym_export_DASHenv] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1509), + [anon_sym_error] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1511), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_source] = ACTIONS(1509), + [anon_sym_source_DASHenv] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_hide] = ACTIONS(1509), + [anon_sym_hide_DASHenv] = ACTIONS(1509), + [anon_sym_overlay] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [aux_sym__val_number_decimal_token1] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1509), + [aux_sym__val_number_token5] = ACTIONS(1509), + [aux_sym__val_number_token6] = ACTIONS(1509), + [anon_sym_0b] = ACTIONS(1509), + [anon_sym_0o] = ACTIONS(1509), + [anon_sym_0x] = ACTIONS(1509), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(105), + }, + [1242] = { + [sym_val_record] = STATE(1487), + [sym_comment] = STATE(1242), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_alias] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_let_DASHenv] = ACTIONS(3248), + [anon_sym_mut] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [sym_cmd_identifier] = ACTIONS(3248), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_def] = ACTIONS(3248), + [anon_sym_export_DASHenv] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_use] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_DOLLAR] = ACTIONS(3248), + [anon_sym_error] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_loop] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_source] = ACTIONS(3248), + [anon_sym_source_DASHenv] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_hide] = ACTIONS(3248), + [anon_sym_hide_DASHenv] = ACTIONS(3248), + [anon_sym_overlay] = ACTIONS(3248), + [anon_sym_where] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_not] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3248), + [anon_sym_false] = ACTIONS(3248), + [aux_sym__val_number_decimal_token1] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(3248), + [aux_sym__val_number_token2] = ACTIONS(3248), + [aux_sym__val_number_token3] = ACTIONS(3248), + [aux_sym__val_number_token4] = ACTIONS(3248), + [aux_sym__val_number_token5] = ACTIONS(3248), + [aux_sym__val_number_token6] = ACTIONS(3248), + [anon_sym_0b] = ACTIONS(3248), + [anon_sym_0o] = ACTIONS(3248), + [anon_sym_0x] = ACTIONS(3248), + [sym_val_date] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [sym__str_single_quotes] = ACTIONS(3248), + [sym__str_back_ticks] = ACTIONS(3248), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3248), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_POUND] = ACTIONS(105), + }, + [1243] = { + [sym_block] = STATE(1300), + [sym_comment] = STATE(1243), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_alias] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_let_DASHenv] = ACTIONS(3252), + [anon_sym_mut] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [sym_cmd_identifier] = ACTIONS(3252), + [anon_sym_LF] = ACTIONS(3254), + [anon_sym_def] = ACTIONS(3252), + [anon_sym_export_DASHenv] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_use] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_DOLLAR] = ACTIONS(3252), + [anon_sym_error] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_loop] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_match] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_source] = ACTIONS(3252), + [anon_sym_source_DASHenv] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_hide] = ACTIONS(3252), + [anon_sym_hide_DASHenv] = ACTIONS(3252), + [anon_sym_overlay] = ACTIONS(3252), + [anon_sym_where] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_not] = ACTIONS(3252), + [anon_sym_null] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3252), + [anon_sym_false] = ACTIONS(3252), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_token1] = ACTIONS(3252), + [aux_sym__val_number_token2] = ACTIONS(3252), + [aux_sym__val_number_token3] = ACTIONS(3252), + [aux_sym__val_number_token4] = ACTIONS(3252), + [aux_sym__val_number_token5] = ACTIONS(3252), + [aux_sym__val_number_token6] = ACTIONS(3252), + [anon_sym_0b] = ACTIONS(3252), + [anon_sym_0o] = ACTIONS(3252), + [anon_sym_0x] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [sym__str_single_quotes] = ACTIONS(3252), + [sym__str_back_ticks] = ACTIONS(3252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3252), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_POUND] = ACTIONS(105), + }, + [1244] = { + [sym_comment] = STATE(1244), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token2] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(105), + }, + [1245] = { + [sym_comment] = STATE(1245), + [anon_sym_export] = ACTIONS(2984), + [anon_sym_alias] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2984), + [anon_sym_let_DASHenv] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2984), + [sym_cmd_identifier] = ACTIONS(2984), + [anon_sym_LF] = ACTIONS(2986), + [anon_sym_def] = ACTIONS(2984), + [anon_sym_export_DASHenv] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym_module] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_RPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2984), + [anon_sym_error] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_loop] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_DOT2] = ACTIONS(2986), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_source] = ACTIONS(2984), + [anon_sym_source_DASHenv] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_hide] = ACTIONS(2984), + [anon_sym_hide_DASHenv] = ACTIONS(2984), + [anon_sym_overlay] = ACTIONS(2984), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [aux_sym__val_number_decimal_token1] = ACTIONS(2984), + [aux_sym__val_number_token1] = ACTIONS(2984), + [aux_sym__val_number_token2] = ACTIONS(2984), + [aux_sym__val_number_token3] = ACTIONS(2984), + [aux_sym__val_number_token4] = ACTIONS(2984), + [aux_sym__val_number_token5] = ACTIONS(2984), + [aux_sym__val_number_token6] = ACTIONS(2984), + [anon_sym_0b] = ACTIONS(2984), + [anon_sym_0o] = ACTIONS(2984), + [anon_sym_0x] = ACTIONS(2984), + [sym_val_date] = ACTIONS(2984), + [anon_sym_DQUOTE] = ACTIONS(2984), + [sym__str_single_quotes] = ACTIONS(2984), + [sym__str_back_ticks] = ACTIONS(2984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(105), + }, + [1246] = { + [sym_comment] = STATE(1246), + [anon_sym_export] = ACTIONS(1625), + [anon_sym_alias] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_let_DASHenv] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [sym_cmd_identifier] = ACTIONS(1625), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_export_DASHenv] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_module] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_error] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_source] = ACTIONS(1625), + [anon_sym_source_DASHenv] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_hide] = ACTIONS(1625), + [anon_sym_hide_DASHenv] = ACTIONS(1625), + [anon_sym_overlay] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_where] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_not] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1625), + [anon_sym_0x] = ACTIONS(1625), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(105), + }, + [1247] = { + [sym_comment] = STATE(1247), + [anon_sym_export] = ACTIONS(3256), + [anon_sym_alias] = ACTIONS(3256), + [anon_sym_let] = ACTIONS(3256), + [anon_sym_let_DASHenv] = ACTIONS(3256), + [anon_sym_mut] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3256), + [sym_cmd_identifier] = ACTIONS(3256), + [anon_sym_LF] = ACTIONS(3258), + [anon_sym_def] = ACTIONS(3256), + [anon_sym_export_DASHenv] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym_module] = ACTIONS(3256), + [anon_sym_use] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_RPAREN] = ACTIONS(3256), + [anon_sym_DOLLAR] = ACTIONS(3256), + [anon_sym_error] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_loop] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_match] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DOT2] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_source] = ACTIONS(3256), + [anon_sym_source_DASHenv] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_hide] = ACTIONS(3256), + [anon_sym_hide_DASHenv] = ACTIONS(3256), + [anon_sym_overlay] = ACTIONS(3256), + [anon_sym_where] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_not] = ACTIONS(3256), + [anon_sym_null] = ACTIONS(3256), + [anon_sym_true] = ACTIONS(3256), + [anon_sym_false] = ACTIONS(3256), + [aux_sym__val_number_decimal_token1] = ACTIONS(3256), + [aux_sym__val_number_token1] = ACTIONS(3256), + [aux_sym__val_number_token2] = ACTIONS(3256), + [aux_sym__val_number_token3] = ACTIONS(3256), + [aux_sym__val_number_token4] = ACTIONS(3256), + [aux_sym__val_number_token5] = ACTIONS(3256), + [aux_sym__val_number_token6] = ACTIONS(3256), + [anon_sym_0b] = ACTIONS(3256), + [anon_sym_0o] = ACTIONS(3256), + [anon_sym_0x] = ACTIONS(3256), + [sym_val_date] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [sym__str_single_quotes] = ACTIONS(3256), + [sym__str_back_ticks] = ACTIONS(3256), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3256), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_POUND] = ACTIONS(105), + }, + [1248] = { + [sym_block] = STATE(1299), + [sym_comment] = STATE(1248), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_alias] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_let_DASHenv] = ACTIONS(3252), + [anon_sym_mut] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [sym_cmd_identifier] = ACTIONS(3252), + [anon_sym_LF] = ACTIONS(3254), + [anon_sym_def] = ACTIONS(3252), + [anon_sym_export_DASHenv] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_use] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_DOLLAR] = ACTIONS(3252), + [anon_sym_error] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_loop] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_match] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_source] = ACTIONS(3252), + [anon_sym_source_DASHenv] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_hide] = ACTIONS(3252), + [anon_sym_hide_DASHenv] = ACTIONS(3252), + [anon_sym_overlay] = ACTIONS(3252), + [anon_sym_where] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_not] = ACTIONS(3252), + [anon_sym_null] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3252), + [anon_sym_false] = ACTIONS(3252), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_token1] = ACTIONS(3252), + [aux_sym__val_number_token2] = ACTIONS(3252), + [aux_sym__val_number_token3] = ACTIONS(3252), + [aux_sym__val_number_token4] = ACTIONS(3252), + [aux_sym__val_number_token5] = ACTIONS(3252), + [aux_sym__val_number_token6] = ACTIONS(3252), + [anon_sym_0b] = ACTIONS(3252), + [anon_sym_0o] = ACTIONS(3252), + [anon_sym_0x] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [sym__str_single_quotes] = ACTIONS(3252), + [sym__str_back_ticks] = ACTIONS(3252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3252), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_POUND] = ACTIONS(105), + }, + [1249] = { + [sym_comment] = STATE(1249), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_alias] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_let_DASHenv] = ACTIONS(3260), + [anon_sym_mut] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [sym_cmd_identifier] = ACTIONS(3260), + [anon_sym_LF] = ACTIONS(3262), + [anon_sym_def] = ACTIONS(3260), + [anon_sym_export_DASHenv] = ACTIONS(3260), + [anon_sym_extern] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3260), + [anon_sym_error] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_loop] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_match] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_DOT] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_source] = ACTIONS(3260), + [anon_sym_source_DASHenv] = ACTIONS(3260), + [anon_sym_register] = ACTIONS(3260), + [anon_sym_hide] = ACTIONS(3260), + [anon_sym_hide_DASHenv] = ACTIONS(3260), + [anon_sym_overlay] = ACTIONS(3260), + [anon_sym_as] = ACTIONS(3260), + [anon_sym_where] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_not] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3260), + [anon_sym_false] = ACTIONS(3260), + [aux_sym__val_number_decimal_token1] = ACTIONS(3260), + [aux_sym__val_number_token1] = ACTIONS(3260), + [aux_sym__val_number_token2] = ACTIONS(3260), + [aux_sym__val_number_token3] = ACTIONS(3260), + [aux_sym__val_number_token4] = ACTIONS(3260), + [aux_sym__val_number_token5] = ACTIONS(3260), + [aux_sym__val_number_token6] = ACTIONS(3260), + [anon_sym_0b] = ACTIONS(3260), + [anon_sym_0o] = ACTIONS(3260), + [anon_sym_0x] = ACTIONS(3260), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [sym__str_single_quotes] = ACTIONS(3260), + [sym__str_back_ticks] = ACTIONS(3260), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_POUND] = ACTIONS(105), + }, + [1250] = { + [sym_block] = STATE(1469), + [sym_comment] = STATE(1250), + [anon_sym_export] = ACTIONS(3264), + [anon_sym_alias] = ACTIONS(3264), + [anon_sym_let] = ACTIONS(3264), + [anon_sym_let_DASHenv] = ACTIONS(3264), + [anon_sym_mut] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3264), + [sym_cmd_identifier] = ACTIONS(3264), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_def] = ACTIONS(3264), + [anon_sym_export_DASHenv] = ACTIONS(3264), + [anon_sym_extern] = ACTIONS(3264), + [anon_sym_module] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_RPAREN] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3264), + [anon_sym_error] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_loop] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_do] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_source] = ACTIONS(3264), + [anon_sym_source_DASHenv] = ACTIONS(3264), + [anon_sym_register] = ACTIONS(3264), + [anon_sym_hide] = ACTIONS(3264), + [anon_sym_hide_DASHenv] = ACTIONS(3264), + [anon_sym_overlay] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_not] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_token1] = ACTIONS(3264), + [aux_sym__val_number_token2] = ACTIONS(3264), + [aux_sym__val_number_token3] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3264), + [aux_sym__val_number_token5] = ACTIONS(3264), + [aux_sym__val_number_token6] = ACTIONS(3264), + [anon_sym_0b] = ACTIONS(3264), + [anon_sym_0o] = ACTIONS(3264), + [anon_sym_0x] = ACTIONS(3264), + [sym_val_date] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym__str_single_quotes] = ACTIONS(3264), + [sym__str_back_ticks] = ACTIONS(3264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_POUND] = ACTIONS(105), + }, + [1251] = { + [sym_comment] = STATE(1251), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_alias] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_let_DASHenv] = ACTIONS(3271), + [anon_sym_mut] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [sym_cmd_identifier] = ACTIONS(3271), + [anon_sym_LF] = ACTIONS(3273), + [anon_sym_def] = ACTIONS(3271), + [anon_sym_export_DASHenv] = ACTIONS(3271), + [anon_sym_extern] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_use] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_RPAREN] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3271), + [anon_sym_error] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_loop] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_match] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_DOT] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_source] = ACTIONS(3271), + [anon_sym_source_DASHenv] = ACTIONS(3271), + [anon_sym_register] = ACTIONS(3271), + [anon_sym_hide] = ACTIONS(3271), + [anon_sym_hide_DASHenv] = ACTIONS(3271), + [anon_sym_overlay] = ACTIONS(3271), + [anon_sym_as] = ACTIONS(3271), + [anon_sym_where] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_not] = ACTIONS(3271), + [anon_sym_null] = ACTIONS(3271), + [anon_sym_true] = ACTIONS(3271), + [anon_sym_false] = ACTIONS(3271), + [aux_sym__val_number_decimal_token1] = ACTIONS(3271), + [aux_sym__val_number_token1] = ACTIONS(3271), + [aux_sym__val_number_token2] = ACTIONS(3271), + [aux_sym__val_number_token3] = ACTIONS(3271), + [aux_sym__val_number_token4] = ACTIONS(3271), + [aux_sym__val_number_token5] = ACTIONS(3271), + [aux_sym__val_number_token6] = ACTIONS(3271), + [anon_sym_0b] = ACTIONS(3271), + [anon_sym_0o] = ACTIONS(3271), + [anon_sym_0x] = ACTIONS(3271), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [sym__str_single_quotes] = ACTIONS(3271), + [sym__str_back_ticks] = ACTIONS(3271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3271), + [anon_sym_CARET] = ACTIONS(3271), + [anon_sym_POUND] = ACTIONS(105), + }, + [1252] = { + [sym_comment] = STATE(1252), + [ts_builtin_sym_end] = ACTIONS(2936), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_alias] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_DASHenv] = ACTIONS(2934), + [anon_sym_mut] = ACTIONS(2934), + [anon_sym_const] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [sym_cmd_identifier] = ACTIONS(2934), + [anon_sym_LF] = ACTIONS(2936), + [anon_sym_def] = ACTIONS(2934), + [anon_sym_export_DASHenv] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_error] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_loop] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_DOT2] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_source] = ACTIONS(2934), + [anon_sym_source_DASHenv] = ACTIONS(2934), + [anon_sym_register] = ACTIONS(2934), + [anon_sym_hide] = ACTIONS(2934), + [anon_sym_hide_DASHenv] = ACTIONS(2934), + [anon_sym_overlay] = ACTIONS(2934), + [anon_sym_where] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_not] = ACTIONS(2934), + [aux_sym__immediate_decimal_token2] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [aux_sym__val_number_decimal_token1] = ACTIONS(2934), + [aux_sym__val_number_token1] = ACTIONS(2934), + [aux_sym__val_number_token2] = ACTIONS(2934), + [aux_sym__val_number_token3] = ACTIONS(2934), + [aux_sym__val_number_token4] = ACTIONS(2934), + [aux_sym__val_number_token5] = ACTIONS(2934), + [aux_sym__val_number_token6] = ACTIONS(2934), + [anon_sym_0b] = ACTIONS(2934), + [anon_sym_0o] = ACTIONS(2934), + [anon_sym_0x] = ACTIONS(2934), + [sym_val_date] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym__str_single_quotes] = ACTIONS(2934), + [sym__str_back_ticks] = ACTIONS(2934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(105), + }, + [1253] = { + [sym_comment] = STATE(1253), + [ts_builtin_sym_end] = ACTIONS(2834), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token1] = ACTIONS(3280), + [aux_sym__immediate_decimal_token2] = ACTIONS(3189), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(105), + }, + [1254] = { + [sym_comment] = STATE(1254), + [ts_builtin_sym_end] = ACTIONS(1377), + [anon_sym_export] = ACTIONS(1375), + [anon_sym_alias] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_let_DASHenv] = ACTIONS(1375), + [anon_sym_mut] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [sym_cmd_identifier] = ACTIONS(1375), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_def] = ACTIONS(1375), + [anon_sym_export_DASHenv] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_module] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_error] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_source] = ACTIONS(1375), + [anon_sym_source_DASHenv] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), + [anon_sym_hide_DASHenv] = ACTIONS(1375), + [anon_sym_overlay] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_where] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_not] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym__val_number_decimal_token1] = ACTIONS(1375), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1375), + [aux_sym__val_number_token5] = ACTIONS(1375), + [aux_sym__val_number_token6] = ACTIONS(1375), + [anon_sym_0b] = ACTIONS(1375), + [anon_sym_0o] = ACTIONS(1375), + [anon_sym_0x] = ACTIONS(1375), + [sym_val_date] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym__str_single_quotes] = ACTIONS(1375), + [sym__str_back_ticks] = ACTIONS(1375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [aux_sym_unquoted_token3] = ACTIONS(2681), + [anon_sym_POUND] = ACTIONS(105), + }, + [1255] = { + [sym_comment] = STATE(1255), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_alias] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_let_DASHenv] = ACTIONS(1520), + [anon_sym_mut] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [sym_cmd_identifier] = ACTIONS(1520), + [anon_sym_LF] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1520), + [anon_sym_export_DASHenv] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_module] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_source] = ACTIONS(1520), + [anon_sym_source_DASHenv] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_hide] = ACTIONS(1520), + [anon_sym_hide_DASHenv] = ACTIONS(1520), + [anon_sym_overlay] = ACTIONS(1520), + [anon_sym_where] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_not] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1520), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1520), + [anon_sym_0x] = ACTIONS(1520), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(105), + }, + [1256] = { + [sym_comment] = STATE(1256), + [ts_builtin_sym_end] = ACTIONS(2908), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_alias] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_DASHenv] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [sym_cmd_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2908), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_export_DASHenv] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_error] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_source] = ACTIONS(2906), + [anon_sym_source_DASHenv] = ACTIONS(2906), + [anon_sym_register] = ACTIONS(2906), + [anon_sym_hide] = ACTIONS(2906), + [anon_sym_hide_DASHenv] = ACTIONS(2906), + [anon_sym_overlay] = ACTIONS(2906), + [anon_sym_where] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_not] = ACTIONS(2906), + [aux_sym__immediate_decimal_token1] = ACTIONS(3282), + [aux_sym__immediate_decimal_token2] = ACTIONS(3284), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym__val_number_decimal_token1] = ACTIONS(2906), + [aux_sym__val_number_token1] = ACTIONS(2906), + [aux_sym__val_number_token2] = ACTIONS(2906), + [aux_sym__val_number_token3] = ACTIONS(2906), + [aux_sym__val_number_token4] = ACTIONS(2906), + [aux_sym__val_number_token5] = ACTIONS(2906), + [aux_sym__val_number_token6] = ACTIONS(2906), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2906), + [anon_sym_0x] = ACTIONS(2906), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym__str_single_quotes] = ACTIONS(2906), + [sym__str_back_ticks] = ACTIONS(2906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(105), + }, + [1257] = { + [sym_comment] = STATE(1257), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_alias] = ACTIONS(1641), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_let_DASHenv] = ACTIONS(1641), + [anon_sym_mut] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [sym_cmd_identifier] = ACTIONS(1641), + [anon_sym_LF] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_export_DASHenv] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_use] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1641), + [anon_sym_error] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_loop] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_source] = ACTIONS(1641), + [anon_sym_source_DASHenv] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_hide] = ACTIONS(1641), + [anon_sym_hide_DASHenv] = ACTIONS(1641), + [anon_sym_overlay] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_where] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_not] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [aux_sym__val_number_token4] = ACTIONS(1641), + [aux_sym__val_number_token5] = ACTIONS(1641), + [aux_sym__val_number_token6] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1641), + [anon_sym_0x] = ACTIONS(1641), + [sym_val_date] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), + [anon_sym_CARET] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(105), + }, + [1258] = { + [sym_comment] = STATE(1258), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_alias] = ACTIONS(3286), + [anon_sym_let] = ACTIONS(3286), + [anon_sym_let_DASHenv] = ACTIONS(3286), + [anon_sym_mut] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3286), + [sym_cmd_identifier] = ACTIONS(3286), + [anon_sym_LF] = ACTIONS(3288), + [anon_sym_def] = ACTIONS(3286), + [anon_sym_export_DASHenv] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_use] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_PIPE] = ACTIONS(3286), + [anon_sym_DOLLAR] = ACTIONS(3286), + [anon_sym_error] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_loop] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_match] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_source] = ACTIONS(3286), + [anon_sym_source_DASHenv] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_hide] = ACTIONS(3286), + [anon_sym_hide_DASHenv] = ACTIONS(3286), + [anon_sym_overlay] = ACTIONS(3286), + [anon_sym_where] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3286), + [anon_sym_false] = ACTIONS(3286), + [aux_sym__val_number_decimal_token1] = ACTIONS(3286), + [aux_sym__val_number_token1] = ACTIONS(3286), + [aux_sym__val_number_token2] = ACTIONS(3286), + [aux_sym__val_number_token3] = ACTIONS(3286), + [aux_sym__val_number_token4] = ACTIONS(3286), + [aux_sym__val_number_token5] = ACTIONS(3286), + [aux_sym__val_number_token6] = ACTIONS(3286), + [anon_sym_0b] = ACTIONS(3286), + [anon_sym_0o] = ACTIONS(3286), + [anon_sym_0x] = ACTIONS(3286), + [sym_val_date] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(3286), + [sym__str_single_quotes] = ACTIONS(3286), + [sym__str_back_ticks] = ACTIONS(3286), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3286), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_POUND] = ACTIONS(105), + }, + [1259] = { + [sym_comment] = STATE(1259), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = 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(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [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), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(105), + }, + [1260] = { + [sym_comment] = STATE(1260), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_alias] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_let_DASHenv] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [sym_cmd_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2908), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_export_DASHenv] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_error] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_source] = ACTIONS(2906), + [anon_sym_source_DASHenv] = ACTIONS(2906), + [anon_sym_register] = ACTIONS(2906), + [anon_sym_hide] = ACTIONS(2906), + [anon_sym_hide_DASHenv] = ACTIONS(2906), + [anon_sym_overlay] = ACTIONS(2906), + [anon_sym_where] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_not] = ACTIONS(2906), + [aux_sym__immediate_decimal_token2] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym__val_number_decimal_token1] = ACTIONS(2906), + [aux_sym__val_number_token1] = ACTIONS(2906), + [aux_sym__val_number_token2] = ACTIONS(2906), + [aux_sym__val_number_token3] = ACTIONS(2906), + [aux_sym__val_number_token4] = ACTIONS(2906), + [aux_sym__val_number_token5] = ACTIONS(2906), + [aux_sym__val_number_token6] = ACTIONS(2906), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2906), + [anon_sym_0x] = ACTIONS(2906), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym__str_single_quotes] = ACTIONS(2906), + [sym__str_back_ticks] = ACTIONS(2906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(105), + }, + [1261] = { + [sym_comment] = STATE(1261), + [ts_builtin_sym_end] = ACTIONS(2834), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_alias] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_let_DASHenv] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [sym_cmd_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_def] = ACTIONS(2832), + [anon_sym_export_DASHenv] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2832), + [anon_sym_error] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_DOT2] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_source] = ACTIONS(2832), + [anon_sym_source_DASHenv] = ACTIONS(2832), + [anon_sym_register] = ACTIONS(2832), + [anon_sym_hide] = ACTIONS(2832), + [anon_sym_hide_DASHenv] = ACTIONS(2832), + [anon_sym_overlay] = ACTIONS(2832), + [anon_sym_where] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2832), + [aux_sym__immediate_decimal_token2] = ACTIONS(3142), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2832), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [aux_sym__val_number_token4] = ACTIONS(2832), + [aux_sym__val_number_token5] = ACTIONS(2832), + [aux_sym__val_number_token6] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2832), + [anon_sym_0x] = ACTIONS(2832), + [sym_val_date] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(105), + }, + [1262] = { + [sym_comment] = STATE(1262), + [anon_sym_export] = ACTIONS(1583), + [anon_sym_alias] = ACTIONS(1583), + [anon_sym_let] = ACTIONS(1583), + [anon_sym_let_DASHenv] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [sym_cmd_identifier] = ACTIONS(1583), + [anon_sym_LF] = ACTIONS(1585), + [anon_sym_def] = ACTIONS(1583), + [anon_sym_export_DASHenv] = ACTIONS(1583), + [anon_sym_extern] = ACTIONS(1583), + [anon_sym_module] = ACTIONS(1583), + [anon_sym_use] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(1583), + [anon_sym_error] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_loop] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_source] = ACTIONS(1583), + [anon_sym_source_DASHenv] = ACTIONS(1583), + [anon_sym_register] = ACTIONS(1583), + [anon_sym_hide] = ACTIONS(1583), + [anon_sym_hide_DASHenv] = ACTIONS(1583), + [anon_sym_overlay] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_where] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_not] = ACTIONS(1583), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1583), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1583), + [anon_sym_0o] = ACTIONS(1583), + [anon_sym_0x] = ACTIONS(1583), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [anon_sym_CARET] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(105), + }, + [1263] = { + [sym_comment] = STATE(1263), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [sym_cmd_identifier] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_where] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(1513), + [aux_sym__val_number_token2] = ACTIONS(1513), + [aux_sym__val_number_token3] = ACTIONS(1513), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym__str_single_quotes] = ACTIONS(1513), + [sym__str_back_ticks] = ACTIONS(1513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(105), + }, + [1264] = { + [sym_comment] = STATE(1264), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_alias] = ACTIONS(1629), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_let_DASHenv] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [sym_cmd_identifier] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_export_DASHenv] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_use] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_error] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_loop] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_source] = ACTIONS(1629), + [anon_sym_source_DASHenv] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_hide] = ACTIONS(1629), + [anon_sym_hide_DASHenv] = ACTIONS(1629), + [anon_sym_overlay] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_where] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_not] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1629), + [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(1629), + [anon_sym_0o] = ACTIONS(1629), + [anon_sym_0x] = ACTIONS(1629), + [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_CARET] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(105), + }, + [1265] = { + [sym_expr_parenthesized] = STATE(2434), + [sym_val_range] = STATE(2537), + [sym__value] = STATE(2537), + [sym_val_nothing] = STATE(2527), + [sym_val_bool] = STATE(2527), + [sym_val_variable] = STATE(2475), + [sym__var] = STATE(2366), + [sym_val_number] = STATE(296), + [sym__val_number_decimal] = STATE(280), + [sym__val_number] = STATE(295), + [sym_val_duration] = STATE(2527), + [sym_val_filesize] = STATE(2527), + [sym_val_binary] = STATE(2527), + [sym_val_string] = STATE(2527), + [sym__str_double_quotes] = STATE(2489), + [sym_val_interpolated] = STATE(2527), + [sym__inter_single_quotes] = STATE(2525), + [sym__inter_double_quotes] = STATE(2524), + [sym_val_list] = STATE(2527), + [sym_val_record] = STATE(2527), + [sym_val_table] = STATE(2527), + [sym_val_closure] = STATE(2527), + [sym__cmd_arg] = STATE(2715), + [sym_redirection] = STATE(2522), + [sym__flag] = STATE(2521), + [sym_short_flag] = STATE(2535), + [sym_long_flag] = STATE(2535), + [sym_unquoted] = STATE(2519), + [sym_comment] = STATE(1265), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(3294), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_true] = ACTIONS(3302), + [anon_sym_false] = ACTIONS(3302), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(3304), + [aux_sym__val_number_token2] = ACTIONS(3304), + [aux_sym__val_number_token3] = ACTIONS(3304), + [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(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3310), + [sym__str_single_quotes] = ACTIONS(3312), + [sym__str_back_ticks] = ACTIONS(3312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3314), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3316), + [anon_sym_err_GT] = ACTIONS(3318), + [anon_sym_out_GT] = ACTIONS(3318), + [anon_sym_e_GT] = ACTIONS(3318), + [anon_sym_o_GT] = ACTIONS(3318), + [anon_sym_err_PLUSout_GT] = ACTIONS(3318), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3318), + [anon_sym_o_PLUSe_GT] = ACTIONS(3318), + [anon_sym_e_PLUSo_GT] = ACTIONS(3318), + [aux_sym_unquoted_token1] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(3), + }, + [1266] = { + [sym_comment] = STATE(1266), + [anon_sym_export] = ACTIONS(2984), + [anon_sym_alias] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2984), + [anon_sym_let_DASHenv] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2984), + [sym_cmd_identifier] = ACTIONS(2984), + [anon_sym_LF] = ACTIONS(2986), + [anon_sym_def] = ACTIONS(2984), + [anon_sym_export_DASHenv] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym_module] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_RPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2984), + [anon_sym_error] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_loop] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_source] = ACTIONS(2984), + [anon_sym_source_DASHenv] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_hide] = ACTIONS(2984), + [anon_sym_hide_DASHenv] = ACTIONS(2984), + [anon_sym_overlay] = ACTIONS(2984), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [aux_sym__immediate_decimal_token2] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [aux_sym__val_number_decimal_token1] = ACTIONS(2984), + [aux_sym__val_number_token1] = ACTIONS(2984), + [aux_sym__val_number_token2] = ACTIONS(2984), + [aux_sym__val_number_token3] = ACTIONS(2984), + [aux_sym__val_number_token4] = ACTIONS(2984), + [aux_sym__val_number_token5] = ACTIONS(2984), + [aux_sym__val_number_token6] = ACTIONS(2984), + [anon_sym_0b] = ACTIONS(2984), + [anon_sym_0o] = ACTIONS(2984), + [anon_sym_0x] = ACTIONS(2984), + [sym_val_date] = ACTIONS(2984), + [anon_sym_DQUOTE] = ACTIONS(2984), + [sym__str_single_quotes] = ACTIONS(2984), + [sym__str_back_ticks] = ACTIONS(2984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(105), + }, + [1267] = { + [sym_block] = STATE(1290), + [sym_comment] = STATE(1267), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_alias] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_DASHenv] = ACTIONS(3322), + [anon_sym_mut] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3322), + [sym_cmd_identifier] = ACTIONS(3322), + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_def] = ACTIONS(3322), + [anon_sym_export_DASHenv] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_RPAREN] = ACTIONS(3322), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_error] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_loop] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_source] = ACTIONS(3322), + [anon_sym_source_DASHenv] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_hide] = ACTIONS(3322), + [anon_sym_hide_DASHenv] = ACTIONS(3322), + [anon_sym_overlay] = ACTIONS(3322), + [anon_sym_where] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3322), + [anon_sym_false] = ACTIONS(3322), + [aux_sym__val_number_decimal_token1] = ACTIONS(3322), + [aux_sym__val_number_token1] = ACTIONS(3322), + [aux_sym__val_number_token2] = ACTIONS(3322), + [aux_sym__val_number_token3] = ACTIONS(3322), + [aux_sym__val_number_token4] = ACTIONS(3322), + [aux_sym__val_number_token5] = ACTIONS(3322), + [aux_sym__val_number_token6] = ACTIONS(3322), + [anon_sym_0b] = ACTIONS(3322), + [anon_sym_0o] = ACTIONS(3322), + [anon_sym_0x] = ACTIONS(3322), + [sym_val_date] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [sym__str_single_quotes] = ACTIONS(3322), + [sym__str_back_ticks] = ACTIONS(3322), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3322), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), [anon_sym_POUND] = ACTIONS(105), }, }; @@ -196644,11 +200776,11 @@ static const uint16_t ts_small_parse_table[] = { [0] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3238), 1, + ACTIONS(3331), 1, anon_sym_LF, - STATE(1239), 1, + STATE(1268), 1, sym_comment, - ACTIONS(3236), 61, + ACTIONS(3329), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -196713,13 +200845,13 @@ static const uint16_t ts_small_parse_table[] = { [73] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1240), 1, + STATE(1269), 1, sym_comment, - ACTIONS(3036), 3, + ACTIONS(3258), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(3034), 59, + ACTIONS(3256), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -196782,11 +200914,13 @@ static const uint16_t ts_small_parse_table[] = { [146] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3242), 1, - anon_sym_LF, - STATE(1241), 1, + STATE(1270), 1, sym_comment, - ACTIONS(3240), 61, + ACTIONS(2834), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2832), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -196802,7 +200936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -196815,7 +200948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -196851,11 +200983,13 @@ static const uint16_t ts_small_parse_table[] = { [219] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3242), 1, - anon_sym_LF, - STATE(1242), 1, + STATE(1271), 1, sym_comment, - ACTIONS(3240), 61, + ACTIONS(2986), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2984), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -196871,7 +201005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -196884,7 +201017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -196920,11 +201052,11 @@ static const uint16_t ts_small_parse_table[] = { [292] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LF, - STATE(1243), 1, + STATE(1272), 1, sym_comment, - ACTIONS(3244), 61, + ACTIONS(3333), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -196986,70 +201118,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [365] = 13, - ACTIONS(3), 1, + [365] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1244), 1, + ACTIONS(3337), 1, + anon_sym_LBRACE, + STATE(1273), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(2159), 1, - sym__immediate_decimal, - STATE(2160), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2131), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2129), 43, + STATE(1608), 1, + sym_block, + ACTIONS(3183), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3181), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -197057,21 +201166,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [456] = 4, + anon_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_CARET, + [442] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3250), 1, + ACTIONS(3341), 1, anon_sym_LF, - STATE(1245), 1, + STATE(1274), 1, sym_comment, - ACTIONS(3248), 61, + ACTIONS(3339), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -197133,14 +201258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [529] = 4, + [515] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3250), 1, - anon_sym_LF, - STATE(1246), 1, + STATE(1275), 1, sym_comment, - ACTIONS(3248), 61, + ACTIONS(2908), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2906), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -197156,7 +201283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -197169,7 +201295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -197202,70 +201327,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [602] = 13, - ACTIONS(3), 1, + [588] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1247), 1, + ACTIONS(3337), 1, + anon_sym_LBRACE, + STATE(1276), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(2103), 1, - sym__immediate_decimal, - STATE(2104), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2107), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2105), 43, + STATE(1609), 1, + sym_block, + ACTIONS(3183), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3181), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -197273,33 +201375,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [693] = 7, + anon_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_CARET, + [665] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, - anon_sym_LF, - STATE(1248), 1, + STATE(1277), 1, sym_comment, - STATE(1400), 1, - sym__terminator, - STATE(1402), 1, - aux_sym__block_body_repeat1, - ACTIONS(3252), 58, + ACTIONS(3230), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3228), 60, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -197329,6 +201443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_as, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -197352,17 +201467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [772] = 5, + [738] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2675), 1, - aux_sym_unquoted_token3, - STATE(1249), 1, - sym_comment, - ACTIONS(1371), 2, - ts_builtin_sym_end, + ACTIONS(3345), 1, anon_sym_LF, - ACTIONS(1369), 59, + STATE(1278), 1, + sym_comment, + ACTIONS(3343), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -197378,6 +201490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -197390,6 +201503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -197422,15 +201536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [847] = 4, + [811] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1250), 1, - sym_comment, - ACTIONS(3232), 2, - ts_builtin_sym_end, + ACTIONS(3349), 1, anon_sym_LF, - ACTIONS(3230), 60, + STATE(1279), 1, + sym_comment, + ACTIONS(3347), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -197446,7 +201559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -197459,6 +201572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -197491,70 +201605,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [920] = 13, - ACTIONS(3), 1, + [884] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1251), 1, + ACTIONS(3353), 1, + anon_sym_LF, + STATE(1280), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(1992), 1, - sym__immediate_decimal, - STATE(2158), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2087), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2085), 43, + ACTIONS(3351), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -197562,24 +201651,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [1011] = 5, + anon_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_CARET, + [957] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3258), 1, - anon_sym_DOT2, - STATE(1252), 1, - sym_comment, - ACTIONS(3117), 2, - ts_builtin_sym_end, + ACTIONS(1681), 1, anon_sym_LF, - ACTIONS(3115), 59, + STATE(1281), 1, + sym_comment, + ACTIONS(1679), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -197595,6 +201697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -197607,6 +201710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -197639,22 +201743,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1086] = 4, + [1030] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(1253), 1, - sym_comment, - ACTIONS(1614), 2, - ts_builtin_sym_end, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LF, - ACTIONS(1612), 60, + STATE(1195), 1, + aux_sym__block_body_repeat1, + STATE(1279), 1, + sym__terminator, + STATE(1282), 1, + sym_comment, + ACTIONS(3355), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -197684,7 +201792,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -197708,14 +201815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1159] = 4, + [1109] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3262), 1, + ACTIONS(1538), 1, anon_sym_LF, - STATE(1254), 1, + STATE(1283), 1, sym_comment, - ACTIONS(3260), 61, + ACTIONS(1536), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -197777,14 +201884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1232] = 4, + [1182] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3262), 1, - anon_sym_LF, - STATE(1255), 1, + STATE(1284), 1, sym_comment, - ACTIONS(3260), 61, + ACTIONS(3273), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3271), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -197800,7 +201908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -197813,7 +201920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -197823,6 +201929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_as, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -197846,21 +201953,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1305] = 4, + [1255] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3250), 1, + ACTIONS(3363), 1, + anon_sym_SEMI, + ACTIONS(3366), 1, anon_sym_LF, - STATE(1256), 1, + STATE(1285), 1, sym_comment, - ACTIONS(3248), 61, + ACTIONS(3369), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3361), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -197869,7 +201980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -197882,7 +201992,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -197915,14 +202024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1378] = 4, + [1332] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3250), 1, + ACTIONS(3373), 1, anon_sym_LF, - STATE(1257), 1, + STATE(1286), 1, sym_comment, - ACTIONS(3248), 61, + ACTIONS(3371), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -197984,14 +202093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1451] = 4, + [1405] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3266), 1, + ACTIONS(3377), 1, anon_sym_LF, - STATE(1258), 1, + STATE(1287), 1, sym_comment, - ACTIONS(3264), 61, + ACTIONS(3375), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -198053,17 +202162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1524] = 5, + [1478] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_DOT2, - STATE(1259), 1, + STATE(1288), 1, sym_comment, - ACTIONS(3111), 2, + ACTIONS(3288), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3109), 59, + ACTIONS(3286), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -198079,6 +202186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -198123,14 +202231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1599] = 4, + [1551] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3272), 1, + ACTIONS(3381), 1, anon_sym_LF, - STATE(1260), 1, + STATE(1289), 1, sym_comment, - ACTIONS(3270), 61, + ACTIONS(3379), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -198192,14 +202300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1672] = 4, + [1624] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3276), 1, + ACTIONS(3385), 1, anon_sym_LF, - STATE(1261), 1, + STATE(1290), 1, sym_comment, - ACTIONS(3274), 61, + ACTIONS(3383), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -198261,430 +202369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1745] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3280), 1, - anon_sym_LF, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1262), 1, - sym_comment, - STATE(1370), 1, - sym__flag, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4099), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3278), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [1888] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3280), 1, - anon_sym_LF, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1263), 1, - sym_comment, - STATE(1371), 1, - sym__flag, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4099), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3278), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [2031] = 39, + [1697] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3280), 1, + ACTIONS(3389), 1, anon_sym_LF, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1264), 1, - sym_comment, - STATE(1373), 1, - sym__flag, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4099), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3278), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [2174] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3280), 1, - anon_sym_LF, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1265), 1, - sym_comment, - STATE(1374), 1, - sym__flag, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4099), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3278), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [2317] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3288), 1, - anon_sym_LF, - STATE(1266), 1, + STATE(1291), 1, sym_comment, - ACTIONS(3286), 61, + ACTIONS(3387), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -198746,14 +202438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2390] = 4, + [1770] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3292), 1, - anon_sym_LF, - STATE(1267), 1, + STATE(1292), 1, sym_comment, - ACTIONS(3290), 61, + STATE(1490), 1, + sym_val_record, + ACTIONS(3250), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3248), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -198769,7 +202464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -198782,7 +202476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -198815,70 +202508,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2463] = 13, - ACTIONS(3), 1, + [1845] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1268), 1, + STATE(1293), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(2154), 1, - sym__immediate_decimal, - STATE(2155), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2127), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2125), 43, + STATE(1520), 1, + sym_val_record, + ACTIONS(3246), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3244), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -198886,77 +202555,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [2554] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1269), 1, - sym_comment, - STATE(1667), 1, - sym__var, - STATE(2152), 1, - sym__immediate_decimal, - STATE(2153), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2123), 9, - anon_sym_COMMA, - anon_sym_RBRACE, aux_sym__val_number_token1, aux_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(2121), 43, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [1920] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1294), 1, + sym_comment, + ACTIONS(1547), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1545), 60, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -198964,24 +202623,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [2645] = 5, + anon_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_CARET, + [1993] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3294), 1, - anon_sym_DOT2, - STATE(1270), 1, - sym_comment, - ACTIONS(3105), 2, - ts_builtin_sym_end, + ACTIONS(3393), 1, anon_sym_LF, - ACTIONS(3103), 59, + STATE(1295), 1, + sym_comment, + ACTIONS(3391), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -198997,6 +202670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199009,6 +202683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199041,17 +202716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2720] = 5, + [2066] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3296), 1, - anon_sym_DOT2, - STATE(1271), 1, - sym_comment, - ACTIONS(3099), 2, - ts_builtin_sym_end, + ACTIONS(3397), 1, anon_sym_LF, - ACTIONS(3097), 59, + STATE(1296), 1, + sym_comment, + ACTIONS(3395), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199067,6 +202739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199079,6 +202752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199111,16 +202785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2795] = 4, + [2139] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1272), 1, - sym_comment, - ACTIONS(1503), 3, - ts_builtin_sym_end, + ACTIONS(3401), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1501), 59, + STATE(1297), 1, + sym_comment, + ACTIONS(3399), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199136,6 +202808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199148,6 +202821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199180,19 +202854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2868] = 6, + [2212] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3298), 1, - anon_sym_LBRACE, - STATE(1273), 1, - sym_comment, - STATE(1491), 1, - sym_block, - ACTIONS(3177), 2, - ts_builtin_sym_end, + ACTIONS(3393), 1, anon_sym_LF, - ACTIONS(3175), 58, + STATE(1298), 1, + sym_comment, + ACTIONS(3391), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199208,6 +202877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199219,6 +202889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199251,26 +202923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2945] = 7, + [2285] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, + ACTIONS(3405), 1, anon_sym_LF, - STATE(1274), 1, + STATE(1299), 1, sym_comment, - STATE(1400), 1, - sym__terminator, - STATE(1437), 1, - aux_sym__block_body_repeat1, - ACTIONS(3301), 58, + ACTIONS(3403), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -199279,6 +202946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199291,6 +202959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199323,17 +202992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3024] = 5, + [2358] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3218), 1, - aux_sym__immediate_decimal_token2, - STATE(1275), 1, - sym_comment, - ACTIONS(2808), 2, - ts_builtin_sym_end, + ACTIONS(3405), 1, anon_sym_LF, - ACTIONS(2806), 59, + STATE(1300), 1, + sym_comment, + ACTIONS(3403), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199349,6 +203015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199361,6 +203028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199393,14 +203061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3099] = 4, + [2431] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3305), 1, - anon_sym_LF, - STATE(1276), 1, + ACTIONS(3204), 1, + aux_sym_unquoted_token5, + STATE(1301), 1, sym_comment, - ACTIONS(3303), 61, + ACTIONS(1547), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1545), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199416,7 +203087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199429,7 +203099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199462,14 +203131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3172] = 4, + [2506] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_LF, - STATE(1277), 1, + STATE(1302), 1, sym_comment, - ACTIONS(3307), 61, + ACTIONS(3234), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3232), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199485,7 +203155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199498,7 +203167,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199508,6 +203176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_as, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -199531,19 +203200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3245] = 6, + [2579] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3311), 1, - anon_sym_LBRACE, - STATE(1278), 1, - sym_comment, - STATE(1623), 1, - sym_block, - ACTIONS(3047), 2, - ts_builtin_sym_end, + ACTIONS(3409), 1, anon_sym_LF, - ACTIONS(3045), 58, + STATE(1303), 1, + sym_comment, + ACTIONS(3407), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199559,6 +203223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199570,6 +203235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199602,19 +203269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3322] = 6, + [2652] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3311), 1, - anon_sym_LBRACE, - STATE(1279), 1, - sym_comment, - STATE(1622), 1, - sym_block, - ACTIONS(3047), 2, - ts_builtin_sym_end, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3045), 58, + STATE(1304), 1, + sym_comment, + ACTIONS(3411), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199630,6 +203292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -199641,6 +203304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -199673,14 +203338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3399] = 4, + [2725] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3315), 1, + ACTIONS(3417), 1, anon_sym_LF, - STATE(1280), 1, + STATE(1305), 1, sym_comment, - ACTIONS(3313), 61, + ACTIONS(3415), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199742,118 +203407,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3472] = 39, + [2798] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, + ACTIONS(3421), 1, + anon_sym_LF, + STATE(1306), 1, + sym_comment, + ACTIONS(3419), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2645), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(2651), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(2653), 1, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3319), 1, + anon_sym_CARET, + [2871] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3425), 1, anon_sym_LF, - ACTIONS(3321), 1, - anon_sym_DASH, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1281), 1, + STATE(1307), 1, sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4074), 1, - sym__expression, - STATE(4075), 1, - sym__flag, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4440), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3317), 4, + ACTIONS(3423), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(363), 6, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [3615] = 4, + anon_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_CARET, + [2944] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3325), 1, + ACTIONS(3429), 1, anon_sym_LF, - STATE(1282), 1, + STATE(1308), 1, sym_comment, - ACTIONS(3323), 61, + ACTIONS(3427), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199915,14 +203614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3688] = 4, + [3017] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3329), 1, + ACTIONS(3433), 1, anon_sym_LF, - STATE(1283), 1, + STATE(1309), 1, sym_comment, - ACTIONS(3327), 61, + ACTIONS(3431), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -199984,17 +203683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3761] = 5, + [3090] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3214), 1, - aux_sym__immediate_decimal_token2, - STATE(1284), 1, - sym_comment, - ACTIONS(2784), 2, - ts_builtin_sym_end, + ACTIONS(3425), 1, anon_sym_LF, - ACTIONS(2782), 59, + STATE(1310), 1, + sym_comment, + ACTIONS(3423), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200010,6 +203706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -200022,6 +203719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -200054,14 +203752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3836] = 4, + [3163] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3333), 1, - anon_sym_LF, - STATE(1285), 1, + STATE(1311), 1, sym_comment, - ACTIONS(3331), 61, + ACTIONS(1631), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1629), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200077,7 +203776,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -200090,7 +203788,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -200100,6 +203797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -200123,14 +203821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3909] = 4, + [3236] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_LF, - STATE(1286), 1, + ACTIONS(3435), 1, + anon_sym_DOT2, + STATE(1312), 1, sym_comment, - ACTIONS(3335), 61, + ACTIONS(3240), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3238), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200146,7 +203847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -200159,7 +203859,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -200192,17 +203891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3982] = 5, + [3311] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3339), 1, - aux_sym__immediate_decimal_token2, - STATE(1287), 1, - sym_comment, - ACTIONS(2876), 2, - ts_builtin_sym_end, + ACTIONS(3439), 1, anon_sym_LF, - ACTIONS(2874), 59, + STATE(1313), 1, + sym_comment, + ACTIONS(3437), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200218,6 +203914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -200230,6 +203927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -200262,14 +203960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4057] = 4, + [3384] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3343), 1, - anon_sym_LF, - STATE(1288), 1, + ACTIONS(3441), 1, + anon_sym_DOT2, + STATE(1314), 1, sym_comment, - ACTIONS(3341), 61, + ACTIONS(3165), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3163), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200285,7 +203986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -200298,7 +203998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -200331,14 +204030,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4130] = 4, + [3459] = 39, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3347), 1, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3445), 1, anon_sym_LF, - STATE(1289), 1, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1315), 1, + sym_comment, + STATE(1345), 1, + sym__flag, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4128), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3443), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [3602] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LF, + STATE(1316), 1, sym_comment, - ACTIONS(3345), 61, + ACTIONS(3451), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200400,14 +204203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4203] = 4, + [3675] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3351), 1, + ACTIONS(3457), 1, anon_sym_LF, - STATE(1290), 1, + STATE(1317), 1, sym_comment, - ACTIONS(3349), 61, + ACTIONS(3455), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200469,14 +204272,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4276] = 4, + [3748] = 39, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3355), 1, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3445), 1, anon_sym_LF, - STATE(1291), 1, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1318), 1, + sym_comment, + STATE(1483), 1, + sym__flag, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4128), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3443), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [3891] = 39, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3445), 1, + anon_sym_LF, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1319), 1, + sym_comment, + STATE(1480), 1, + sym__flag, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4128), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3443), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [4034] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3461), 1, + anon_sym_LF, + STATE(1320), 1, sym_comment, - ACTIONS(3353), 61, + ACTIONS(3459), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200538,14 +204549,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4349] = 4, + [4107] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3359), 1, + ACTIONS(3465), 1, anon_sym_LF, - STATE(1292), 1, + STATE(1321), 1, sym_comment, - ACTIONS(3357), 61, + ACTIONS(3463), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200607,14 +204618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4422] = 4, + [4180] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3363), 1, + ACTIONS(1515), 1, anon_sym_LF, - STATE(1293), 1, + STATE(1322), 1, sym_comment, - ACTIONS(3361), 61, + ACTIONS(1513), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200676,14 +204687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4495] = 4, + [4253] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3367), 1, - anon_sym_LF, - STATE(1294), 1, + STATE(1323), 1, sym_comment, - ACTIONS(3365), 61, + ACTIONS(1522), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1520), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200699,7 +204712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -200712,7 +204724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -200745,14 +204756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4568] = 4, + [4326] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3371), 1, + ACTIONS(3457), 1, anon_sym_LF, - STATE(1295), 1, + STATE(1324), 1, sym_comment, - ACTIONS(3369), 61, + ACTIONS(3455), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200814,14 +204825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4641] = 4, + [4399] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3469), 1, anon_sym_LF, - STATE(1296), 1, + STATE(1325), 1, sym_comment, - ACTIONS(2806), 61, + ACTIONS(3467), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200883,14 +204894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4714] = 4, + [4472] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3375), 1, + ACTIONS(3473), 1, anon_sym_LF, - STATE(1297), 1, + STATE(1326), 1, sym_comment, - ACTIONS(3373), 61, + ACTIONS(3471), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -200952,7 +204963,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4787] = 39, + [4545] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3477), 1, + anon_sym_LF, + STATE(1327), 1, + sym_comment, + ACTIONS(3475), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [4618] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3481), 1, + anon_sym_LF, + STATE(1328), 1, + sym_comment, + ACTIONS(3479), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [4691] = 39, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(353), 1, @@ -200961,78 +205110,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2643), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - ACTIONS(2645), 1, + ACTIONS(2657), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, + ACTIONS(2659), 1, anon_sym_LBRACE, - ACTIONS(2651), 1, + ACTIONS(2663), 1, anon_sym_PLUS, - ACTIONS(2653), 1, + ACTIONS(2665), 1, sym_val_date, - ACTIONS(2655), 1, + ACTIONS(2667), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + ACTIONS(2671), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, + ACTIONS(3447), 1, anon_sym_DASH, - ACTIONS(3284), 1, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3379), 1, + ACTIONS(3485), 1, anon_sym_LF, - STATE(368), 1, + STATE(389), 1, sym__val_number, - STATE(424), 1, + STATE(419), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(430), 1, sym_val_number, - STATE(1281), 1, - sym__flag, - STATE(1298), 1, + STATE(1329), 1, sym_comment, - STATE(2833), 1, + STATE(1408), 1, + sym__flag, + STATE(2915), 1, sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4078), 1, + STATE(4125), 1, sym__expression, - STATE(4415), 1, + STATE(4471), 1, sym_val_range, ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, + ACTIONS(2669), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3184), 2, + STATE(3209), 2, sym_short_flag, sym_long_flag, ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3041), 3, + STATE(3094), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3377), 4, + ACTIONS(3483), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -201044,7 +205193,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(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -201056,7 +205205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4930] = 39, + [4834] = 39, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(353), 1, @@ -201065,78 +205214,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2643), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - ACTIONS(2645), 1, + ACTIONS(2657), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, + ACTIONS(2659), 1, anon_sym_LBRACE, - ACTIONS(2651), 1, + ACTIONS(2663), 1, anon_sym_PLUS, - ACTIONS(2653), 1, + ACTIONS(2665), 1, sym_val_date, - ACTIONS(2655), 1, + ACTIONS(2667), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + ACTIONS(2671), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3321), 1, + ACTIONS(3447), 1, anon_sym_DASH, - ACTIONS(3379), 1, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3485), 1, anon_sym_LF, - STATE(368), 1, + STATE(389), 1, sym__val_number, - STATE(424), 1, + STATE(419), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(430), 1, sym_val_number, - STATE(1299), 1, + STATE(1330), 1, sym_comment, - STATE(2833), 1, + STATE(1407), 1, + sym__flag, + STATE(2915), 1, sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4078), 1, + STATE(4125), 1, sym__expression, - STATE(4079), 1, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3483), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [4977] = 39, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3485), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1331), 1, + sym_comment, + STATE(1393), 1, sym__flag, - STATE(4415), 1, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4125), 1, + sym__expression, + STATE(4471), 1, sym_val_range, ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, + ACTIONS(2669), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4440), 2, + STATE(3209), 2, sym_short_flag, sym_long_flag, ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3041), 3, + STATE(3094), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3377), 4, + ACTIONS(3483), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -201148,7 +205401,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(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -201160,14 +205413,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5073] = 4, + [5120] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3383), 1, + ACTIONS(3489), 1, anon_sym_LF, - STATE(1300), 1, + STATE(1332), 1, sym_comment, - ACTIONS(3381), 61, + ACTIONS(3487), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201229,14 +205482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5146] = 4, + [5193] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3493), 1, anon_sym_LF, - STATE(1301), 1, + STATE(1333), 1, sym_comment, - ACTIONS(3385), 61, + ACTIONS(3491), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201298,14 +205551,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5219] = 4, + [5266] = 39, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3391), 1, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3485), 1, anon_sym_LF, - STATE(1302), 1, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1334), 1, sym_comment, - ACTIONS(3389), 61, + STATE(1375), 1, + sym__flag, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4125), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3483), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [5409] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LF, + STATE(1335), 1, + sym_comment, + ACTIONS(3495), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201367,14 +205724,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5292] = 4, + [5482] = 39, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3395), 1, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3485), 1, anon_sym_LF, - STATE(1303), 1, + ACTIONS(3499), 1, + anon_sym_DASH, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1336), 1, + sym_comment, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4122), 1, + sym__flag, + STATE(4125), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4427), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3483), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [5625] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3503), 1, + anon_sym_LF, + STATE(1337), 1, sym_comment, - ACTIONS(3393), 61, + ACTIONS(3501), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201436,14 +205897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5365] = 4, + [5698] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3399), 1, + ACTIONS(3507), 1, anon_sym_LF, - STATE(1304), 1, + STATE(1338), 1, sym_comment, - ACTIONS(3397), 61, + ACTIONS(3505), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201505,14 +205966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5438] = 4, + [5771] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3511), 1, anon_sym_LF, - STATE(1305), 1, + STATE(1339), 1, sym_comment, - ACTIONS(3401), 61, + ACTIONS(3509), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201574,14 +206035,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5511] = 4, + [5844] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1509), 1, + ACTIONS(3497), 1, anon_sym_LF, - STATE(1306), 1, + STATE(1340), 1, sym_comment, - ACTIONS(1507), 61, + ACTIONS(3495), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201643,14 +206104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5584] = 4, + [5917] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3407), 1, + ACTIONS(3515), 1, anon_sym_LF, - STATE(1307), 1, + STATE(1341), 1, sym_comment, - ACTIONS(3405), 61, + ACTIONS(3513), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201712,14 +206173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5657] = 4, + [5990] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3411), 1, + ACTIONS(3519), 1, anon_sym_LF, - STATE(1308), 1, + STATE(1342), 1, sym_comment, - ACTIONS(3409), 61, + ACTIONS(3517), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201781,14 +206242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5730] = 4, + [6063] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3415), 1, + ACTIONS(3523), 1, anon_sym_LF, - STATE(1309), 1, + STATE(1343), 1, sym_comment, - ACTIONS(3413), 61, + ACTIONS(3521), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201850,14 +206311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5803] = 4, + [6136] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3419), 1, + ACTIONS(3527), 1, anon_sym_LF, - STATE(1310), 1, + STATE(1344), 1, sym_comment, - ACTIONS(3417), 61, + ACTIONS(3525), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201919,14 +206380,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5876] = 4, + [6209] = 39, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3423), 1, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3531), 1, anon_sym_LF, - STATE(1311), 1, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1336), 1, + sym__flag, + STATE(1345), 1, + sym_comment, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4106), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3529), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [6352] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3535), 1, + anon_sym_LF, + STATE(1346), 1, sym_comment, - ACTIONS(3421), 61, + ACTIONS(3533), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -201988,21 +206553,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5949] = 4, + [6425] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2784), 1, + ACTIONS(3539), 1, + anon_sym_SEMI, + ACTIONS(3542), 1, anon_sym_LF, - STATE(1312), 1, + STATE(1347), 1, sym_comment, - ACTIONS(2782), 61, + ACTIONS(3545), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3537), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -202011,7 +206580,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -202024,7 +206592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -202057,21 +206624,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6022] = 4, + [6502] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3427), 1, + ACTIONS(3549), 1, + anon_sym_SEMI, + ACTIONS(3552), 1, anon_sym_LF, - STATE(1313), 1, + STATE(1348), 1, sym_comment, - ACTIONS(3425), 61, + ACTIONS(3555), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3547), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -202080,7 +206651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -202093,7 +206663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -202126,14 +206695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6095] = 4, + [6579] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3523), 1, anon_sym_LF, - STATE(1314), 1, + STATE(1349), 1, sym_comment, - ACTIONS(3429), 61, + ACTIONS(3521), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202195,14 +206764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6168] = 4, + [6652] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3435), 1, + ACTIONS(3559), 1, anon_sym_LF, - STATE(1315), 1, + STATE(1350), 1, sym_comment, - ACTIONS(3433), 61, + ACTIONS(3557), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202264,14 +206833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6241] = 4, + [6725] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3439), 1, + ACTIONS(3563), 1, anon_sym_LF, - STATE(1316), 1, + STATE(1351), 1, sym_comment, - ACTIONS(3437), 61, + ACTIONS(3561), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202333,14 +206902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6314] = 4, + [6798] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3443), 1, + ACTIONS(2834), 1, anon_sym_LF, - STATE(1317), 1, + STATE(1352), 1, sym_comment, - ACTIONS(3441), 61, + ACTIONS(2832), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202402,14 +206971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6387] = 4, + [6871] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2876), 1, + ACTIONS(3567), 1, anon_sym_LF, - STATE(1318), 1, + STATE(1353), 1, sym_comment, - ACTIONS(2874), 61, + ACTIONS(3565), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202471,14 +207040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6460] = 4, + [6944] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3447), 1, + ACTIONS(3571), 1, anon_sym_LF, - STATE(1319), 1, + STATE(1354), 1, sym_comment, - ACTIONS(3445), 61, + ACTIONS(3569), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202540,14 +207109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6533] = 4, + [7017] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3451), 1, + ACTIONS(3381), 1, anon_sym_LF, - STATE(1320), 1, + STATE(1355), 1, sym_comment, - ACTIONS(3449), 61, + ACTIONS(3379), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202609,25 +207178,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6606] = 6, + [7090] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1356), 1, + sym_comment, + STATE(1684), 1, + sym__var, + STATE(2263), 1, + sym__immediate_decimal, + STATE(2264), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2134), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2132), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [7181] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3455), 1, - anon_sym_SEMI, - ACTIONS(3458), 1, + ACTIONS(3575), 1, anon_sym_LF, - STATE(1321), 1, + STATE(1357), 1, sym_comment, - ACTIONS(3461), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3453), 58, + ACTIONS(3573), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -202636,6 +207279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -202648,6 +207292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -202680,19 +207325,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6683] = 6, - ACTIONS(105), 1, + [7254] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3465), 1, - anon_sym_SEMI, - ACTIONS(3468), 1, - anon_sym_LF, - STATE(1322), 1, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1358), 1, sym_comment, - ACTIONS(3471), 2, - anon_sym_RPAREN, + STATE(1684), 1, + sym__var, + STATE(2216), 1, + sym__immediate_decimal, + STATE(2212), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2162), 9, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3463), 58, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2160), 43, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202705,6 +207372,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [7345] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1359), 1, + sym_comment, + STATE(1684), 1, + sym__var, + STATE(2265), 1, + sym__immediate_decimal, + STATE(2266), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2182), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2180), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [7436] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1360), 1, + sym_comment, + ACTIONS(1585), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1583), 60, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -202728,6 +207526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -202751,15 +207550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6760] = 4, + [7509] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1323), 1, - sym_comment, - ACTIONS(1477), 2, - ts_builtin_sym_end, + ACTIONS(3579), 1, anon_sym_LF, - ACTIONS(1475), 60, + STATE(1361), 1, + sym_comment, + ACTIONS(3577), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202775,6 +207573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -202787,6 +207586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -202796,7 +207596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -202820,14 +207619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6833] = 4, + [7582] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3475), 1, + ACTIONS(3583), 1, anon_sym_LF, - STATE(1324), 1, + STATE(1362), 1, sym_comment, - ACTIONS(3473), 61, + ACTIONS(3581), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202889,14 +207688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6906] = 4, + [7655] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3479), 1, + ACTIONS(3583), 1, anon_sym_LF, - STATE(1325), 1, + STATE(1363), 1, sym_comment, - ACTIONS(3477), 61, + ACTIONS(3581), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -202958,14 +207757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6979] = 4, + [7728] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3483), 1, + ACTIONS(3381), 1, anon_sym_LF, - STATE(1326), 1, + STATE(1364), 1, sym_comment, - ACTIONS(3481), 61, + ACTIONS(3379), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -203027,83 +207826,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7052] = 4, + [7801] = 39, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3487), 1, - anon_sym_LF, - STATE(1327), 1, - sym_comment, - ACTIONS(3485), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, anon_sym_LBRACK, + ACTIONS(2657), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(2659), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(2663), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3499), 1, + anon_sym_DASH, + ACTIONS(3587), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1365), 1, + sym_comment, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4104), 1, + sym__flag, + STATE(4105), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4427), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3585), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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, - anon_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_CARET, - [7125] = 4, + STATE(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [7944] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, + ACTIONS(2908), 1, anon_sym_LF, - STATE(1328), 1, + STATE(1366), 1, sym_comment, - ACTIONS(3489), 61, + ACTIONS(2906), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -203165,14 +207999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7198] = 4, + [8017] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LF, - STATE(1329), 1, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(1367), 1, sym_comment, - ACTIONS(3493), 61, + STATE(1555), 1, + sym_block, + ACTIONS(3324), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3322), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -203188,7 +208027,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -203200,8 +208038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -203234,45 +208070,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7271] = 4, - ACTIONS(105), 1, + [8094] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LF, - STATE(1330), 1, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1368), 1, sym_comment, - ACTIONS(3493), 61, + STATE(1684), 1, + sym__var, + STATE(2223), 1, + sym__immediate_decimal, + STATE(2218), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2174), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2172), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -203280,37 +208141,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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_CARET, - [7344] = 4, + aux_sym__record_key_token2, + [8185] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3499), 1, - anon_sym_LF, - STATE(1331), 1, + STATE(1369), 1, sym_comment, - ACTIONS(3497), 61, + ACTIONS(3226), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3224), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -203326,7 +208172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -203339,7 +208184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -203349,6 +208193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -203372,14 +208217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7417] = 4, + [8258] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3499), 1, - anon_sym_LF, - STATE(1332), 1, + STATE(1370), 1, sym_comment, - ACTIONS(3497), 61, + ACTIONS(3220), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3218), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -203395,7 +208241,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -203408,7 +208253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -203418,6 +208262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -203441,14 +208286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7490] = 4, + [8331] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3503), 1, + ACTIONS(3381), 1, anon_sym_LF, - STATE(1333), 1, + STATE(1371), 1, sym_comment, - ACTIONS(3501), 61, + ACTIONS(3379), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -203510,14 +208355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7563] = 4, + [8404] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3507), 1, - anon_sym_LF, - STATE(1334), 1, + ACTIONS(3592), 1, + anon_sym_DOT2, + STATE(1372), 1, sym_comment, - ACTIONS(3505), 61, + ACTIONS(3214), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3212), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -203533,7 +208381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -203546,7 +208393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -203579,14 +208425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7636] = 4, + [8479] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3036), 1, - anon_sym_LF, - STATE(1335), 1, + ACTIONS(3594), 1, + anon_sym_DOT2, + STATE(1373), 1, sym_comment, - ACTIONS(3034), 61, + ACTIONS(3208), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3206), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -203602,7 +208451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -203615,7 +208463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -203648,15 +208495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7709] = 4, + [8554] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1336), 1, - sym_comment, - ACTIONS(1586), 2, - ts_builtin_sym_end, + ACTIONS(3598), 1, anon_sym_LF, - ACTIONS(1584), 60, + STATE(1374), 1, + sym_comment, + ACTIONS(3596), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -203672,6 +208518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -203684,6 +208531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -203693,7 +208541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -203717,7 +208564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7782] = 39, + [8627] = 39, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(353), 1, @@ -203726,286 +208573,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3511), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1264), 1, - sym__flag, - STATE(1337), 1, - sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4105), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [7925] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2645), 1, + ACTIONS(2657), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3511), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1263), 1, - sym__flag, - STATE(1338), 1, - sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4105), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [8068] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, anon_sym_LBRACE, - ACTIONS(2651), 1, + ACTIONS(2663), 1, anon_sym_PLUS, - ACTIONS(2653), 1, + ACTIONS(2665), 1, sym_val_date, - ACTIONS(2655), 1, + ACTIONS(2667), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + ACTIONS(2671), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3511), 1, + ACTIONS(3499), 1, + anon_sym_DASH, + ACTIONS(3602), 1, anon_sym_LF, - STATE(368), 1, + STATE(389), 1, sym__val_number, - STATE(424), 1, + STATE(419), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(430), 1, sym_val_number, - STATE(1262), 1, - sym__flag, - STATE(1339), 1, + STATE(1375), 1, sym_comment, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4105), 1, + STATE(4119), 1, + sym__flag, + STATE(4120), 1, sym__expression, - STATE(4415), 1, + STATE(4471), 1, sym_val_range, ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, + ACTIONS(2669), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3184), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3041), 3, + STATE(3094), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3509), 4, + ACTIONS(3600), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -204017,7 +208656,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(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -204029,17 +208668,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8211] = 5, + [8770] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1340), 1, - sym_comment, - STATE(1563), 1, - sym_val_record, - ACTIONS(3169), 2, - ts_builtin_sym_end, + ACTIONS(2986), 1, anon_sym_LF, - ACTIONS(3167), 59, + STATE(1376), 1, + sym_comment, + ACTIONS(2984), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204055,6 +208691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -204067,6 +208704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -204099,45 +208737,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8286] = 4, - ACTIONS(105), 1, + [8843] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3515), 1, - anon_sym_LF, - STATE(1341), 1, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1377), 1, sym_comment, - ACTIONS(3513), 61, + STATE(1684), 1, + sym__var, + STATE(2267), 1, + sym__immediate_decimal, + STATE(2268), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2146), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2144), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -204145,37 +208808,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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_CARET, - [8359] = 4, + aux_sym__record_key_token2, + [8934] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(3606), 1, anon_sym_LF, - STATE(1342), 1, + STATE(1378), 1, sym_comment, - ACTIONS(3493), 61, + ACTIONS(3604), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204237,15 +208884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8432] = 4, + [9007] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1343), 1, + STATE(1379), 1, sym_comment, - ACTIONS(3228), 2, + ACTIONS(1447), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3226), 60, + ACTIONS(1445), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204306,15 +208953,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8505] = 4, + [9080] = 39, ACTIONS(105), 1, anon_sym_POUND, - STATE(1344), 1, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3610), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1365), 1, + sym__flag, + STATE(1380), 1, sym_comment, - ACTIONS(3222), 2, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4099), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3608), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [9223] = 39, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3499), 1, + anon_sym_DASH, + ACTIONS(3610), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1381), 1, + sym_comment, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4098), 1, + sym__flag, + STATE(4099), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4427), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3608), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [9366] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1382), 1, + sym_comment, + ACTIONS(1627), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3220), 60, + ACTIONS(1625), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204375,46 +209230,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8578] = 5, - ACTIONS(105), 1, + [9439] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1345), 1, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1383), 1, sym_comment, - STATE(1466), 1, - sym_val_record, - ACTIONS(3165), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3163), 59, + STATE(1684), 1, + sym__var, + STATE(2225), 1, + sym__immediate_decimal, + STATE(2224), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2130), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2128), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -204422,37 +209301,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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_CARET, - [8653] = 4, + aux_sym__record_key_token2, + [9530] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1493), 1, + ACTIONS(3614), 1, anon_sym_LF, - STATE(1346), 1, + STATE(1384), 1, sym_comment, - ACTIONS(1491), 61, + ACTIONS(3612), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204514,14 +209377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8726] = 4, + [9603] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3519), 1, - anon_sym_LF, - STATE(1347), 1, + ACTIONS(3337), 1, + anon_sym_LBRACE, + STATE(1385), 1, sym_comment, - ACTIONS(3517), 61, + STATE(1576), 1, + sym_block, + ACTIONS(3254), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3252), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204537,7 +209405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -204549,8 +209416,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -204583,14 +209448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8799] = 4, + [9680] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(3618), 1, anon_sym_LF, - STATE(1348), 1, + STATE(1386), 1, sym_comment, - ACTIONS(3493), 61, + ACTIONS(3616), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204652,14 +209517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8872] = 4, + [9753] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3523), 1, + ACTIONS(3622), 1, anon_sym_LF, - STATE(1349), 1, + STATE(1387), 1, sym_comment, - ACTIONS(3521), 61, + ACTIONS(3620), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204721,14 +209586,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8945] = 4, + [9826] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1388), 1, + sym_comment, + STATE(1684), 1, + sym__var, + STATE(2238), 1, + sym__immediate_decimal, + STATE(2228), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2142), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2140), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [9917] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3527), 1, - anon_sym_LF, - STATE(1350), 1, + ACTIONS(3624), 1, + anon_sym_DOT2, + STATE(1389), 1, sym_comment, - ACTIONS(3525), 61, + ACTIONS(3200), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3198), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204744,7 +209690,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -204757,7 +209702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -204790,16 +209734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9018] = 4, + [9992] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1351), 1, - sym_comment, - ACTIONS(1493), 3, - ts_builtin_sym_end, + ACTIONS(3628), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1491), 59, + STATE(1390), 1, + sym_comment, + ACTIONS(3626), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204815,6 +209757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -204827,6 +209770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -204859,14 +209803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9091] = 4, + [10065] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3531), 1, - anon_sym_LF, - STATE(1352), 1, + ACTIONS(3630), 1, + anon_sym_DOT2, + STATE(1391), 1, sym_comment, - ACTIONS(3529), 61, + ACTIONS(3173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3171), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204882,7 +209829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -204895,7 +209841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -204928,15 +209873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9164] = 4, + [10140] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1353), 1, - sym_comment, - ACTIONS(1428), 2, - ts_builtin_sym_end, + ACTIONS(3634), 1, anon_sym_LF, - ACTIONS(1426), 60, + STATE(1392), 1, + sym_comment, + ACTIONS(3632), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -204952,6 +209896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -204964,6 +209909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -204973,7 +209919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -204997,7 +209942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9237] = 39, + [10213] = 39, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(353), 1, @@ -205006,182 +209951,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3535), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1298), 1, - sym__flag, - STATE(1354), 1, - sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4082), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3533), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [9380] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2645), 1, + ACTIONS(2657), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, + ACTIONS(2659), 1, anon_sym_LBRACE, - ACTIONS(2651), 1, + ACTIONS(2663), 1, anon_sym_PLUS, - ACTIONS(2653), 1, + ACTIONS(2665), 1, sym_val_date, - ACTIONS(2655), 1, + ACTIONS(2667), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + ACTIONS(2671), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, + ACTIONS(3447), 1, anon_sym_DASH, - ACTIONS(3284), 1, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3535), 1, + ACTIONS(3602), 1, anon_sym_LF, - STATE(368), 1, + STATE(389), 1, sym__val_number, - STATE(424), 1, + STATE(419), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(430), 1, sym_val_number, - STATE(1299), 1, - sym__flag, - STATE(1355), 1, + STATE(1393), 1, sym_comment, - STATE(2833), 1, + STATE(1443), 1, + sym__flag, + STATE(2915), 1, sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4082), 1, + STATE(4120), 1, sym__expression, - STATE(4415), 1, + STATE(4471), 1, sym_val_range, ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, + ACTIONS(2669), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3184), 2, + STATE(3209), 2, sym_short_flag, sym_long_flag, ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3041), 3, + STATE(3094), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3533), 4, + ACTIONS(3600), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -205193,7 +210034,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(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -205205,17 +210046,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9523] = 5, + [10356] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3234), 1, - aux_sym_unquoted_token5, - STATE(1356), 1, + ACTIONS(3636), 1, + aux_sym__immediate_decimal_token2, + STATE(1394), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(2986), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1495), 59, + ACTIONS(2984), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -205275,14 +210116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9598] = 4, + [10431] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3539), 1, + ACTIONS(3640), 1, anon_sym_LF, - STATE(1357), 1, + STATE(1395), 1, sym_comment, - ACTIONS(3537), 61, + ACTIONS(3638), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -205344,118 +210185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9671] = 39, + [10504] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(3535), 1, + ACTIONS(3644), 1, anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1358), 1, - sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4082), 1, - sym__expression, - STATE(4083), 1, - sym__flag, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4440), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3533), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [9814] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3539), 1, - anon_sym_LF, - STATE(1359), 1, + STATE(1396), 1, sym_comment, - ACTIONS(3537), 61, + ACTIONS(3642), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -205517,70 +210254,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9887] = 13, - ACTIONS(3), 1, + [10577] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1360), 1, + ACTIONS(3284), 1, + aux_sym__immediate_decimal_token2, + STATE(1397), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(2105), 1, - sym__immediate_decimal, - STATE(2106), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2119), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2117), 43, + ACTIONS(2908), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2906), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -205588,21 +210301,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [9978] = 4, + anon_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_CARET, + [10652] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3543), 1, + ACTIONS(3648), 1, anon_sym_LF, - STATE(1361), 1, + STATE(1398), 1, sym_comment, - ACTIONS(3541), 61, + ACTIONS(3646), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -205664,14 +210393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10051] = 4, + [10725] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3652), 1, anon_sym_LF, - STATE(1362), 1, + STATE(1399), 1, sym_comment, - ACTIONS(3545), 61, + ACTIONS(3650), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -205733,14 +210462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10124] = 4, + [10798] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3238), 1, + ACTIONS(3656), 1, anon_sym_LF, - STATE(1363), 1, + STATE(1400), 1, sym_comment, - ACTIONS(3236), 61, + ACTIONS(3654), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -205802,21 +210531,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10197] = 4, + [10871] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3551), 1, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LF, - STATE(1364), 1, + STATE(1279), 1, + sym__terminator, + STATE(1401), 1, sym_comment, - ACTIONS(3549), 61, + STATE(1438), 1, + aux_sym__block_body_repeat1, + ACTIONS(3658), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -205825,7 +210559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -205838,7 +210571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -205871,14 +210603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10270] = 4, + [10950] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3527), 1, + ACTIONS(3258), 1, anon_sym_LF, - STATE(1365), 1, + STATE(1402), 1, sym_comment, - ACTIONS(3525), 61, + ACTIONS(3256), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -205940,44 +210672,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10343] = 4, - ACTIONS(105), 1, + [11023] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1366), 1, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1403), 1, sym_comment, - ACTIONS(1497), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1495), 60, + STATE(1684), 1, + sym__var, + STATE(2269), 1, + sym__immediate_decimal, + STATE(2270), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2138), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2136), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -205985,38 +210743,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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_CARET, - [10416] = 4, + aux_sym__record_key_token2, + [11114] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3555), 1, + ACTIONS(3662), 1, anon_sym_LF, - STATE(1367), 1, + STATE(1404), 1, sym_comment, - ACTIONS(3553), 61, + ACTIONS(3660), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -206078,14 +210819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10489] = 4, + [11187] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3559), 1, + ACTIONS(3666), 1, anon_sym_LF, - STATE(1368), 1, + STATE(1405), 1, sym_comment, - ACTIONS(3557), 61, + ACTIONS(3664), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -206147,85 +210888,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10562] = 13, - ACTIONS(3), 1, + [11260] = 39, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2841), 1, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1369), 1, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3670), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1406), 1, sym_comment, - STATE(1667), 1, + STATE(1488), 1, + sym__flag, + STATE(2915), 1, sym__var, - STATE(2101), 1, - sym__immediate_decimal, - STATE(2102), 2, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, sym_expr_parenthesized, + STATE(3008), 1, sym_val_variable, - ACTIONS(2091), 9, - anon_sym_COMMA, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4124), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3668), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, + ACTIONS(363), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2089), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [10653] = 39, + STATE(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [11403] = 39, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(353), 1, @@ -206234,78 +211001,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2643), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - ACTIONS(2645), 1, + ACTIONS(2657), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, + ACTIONS(2659), 1, anon_sym_LBRACE, - ACTIONS(2651), 1, + ACTIONS(2663), 1, anon_sym_PLUS, - ACTIONS(2653), 1, + ACTIONS(2665), 1, sym_val_date, - ACTIONS(2655), 1, + ACTIONS(2667), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + ACTIONS(2671), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3321), 1, + ACTIONS(3447), 1, anon_sym_DASH, - ACTIONS(3563), 1, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3602), 1, anon_sym_LF, - STATE(368), 1, + STATE(389), 1, sym__val_number, - STATE(424), 1, + STATE(419), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(430), 1, sym_val_number, - STATE(1370), 1, + STATE(1407), 1, sym_comment, - STATE(2833), 1, + STATE(1442), 1, + sym__flag, + STATE(2915), 1, sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4091), 1, + STATE(4120), 1, sym__expression, - STATE(4092), 1, - sym__flag, - STATE(4415), 1, + STATE(4471), 1, sym_val_range, ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, + ACTIONS(2669), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4440), 2, + STATE(3209), 2, sym_short_flag, sym_long_flag, ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3041), 3, + STATE(3094), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3561), 4, + ACTIONS(3600), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -206317,7 +211084,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(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -206329,7 +211096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10796] = 39, + [11546] = 39, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(353), 1, @@ -206338,78 +211105,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2643), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - ACTIONS(2645), 1, + ACTIONS(2657), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, + ACTIONS(2659), 1, anon_sym_LBRACE, - ACTIONS(2651), 1, + ACTIONS(2663), 1, anon_sym_PLUS, - ACTIONS(2653), 1, + ACTIONS(2665), 1, sym_val_date, - ACTIONS(2655), 1, + ACTIONS(2667), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + ACTIONS(2671), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, + ACTIONS(3447), 1, anon_sym_DASH, - ACTIONS(3284), 1, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3563), 1, + ACTIONS(3602), 1, anon_sym_LF, - STATE(368), 1, + STATE(389), 1, sym__val_number, - STATE(424), 1, + STATE(419), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(430), 1, sym_val_number, - STATE(1371), 1, + STATE(1408), 1, sym_comment, - STATE(1424), 1, + STATE(1441), 1, sym__flag, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4091), 1, + STATE(4120), 1, sym__expression, - STATE(4415), 1, + STATE(4471), 1, sym_val_range, ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, + ACTIONS(2669), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3184), 2, + STATE(3209), 2, sym_short_flag, sym_long_flag, ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3041), 3, + STATE(3094), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3561), 4, + ACTIONS(3600), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -206421,7 +211188,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(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -206433,14 +211200,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10939] = 4, + [11689] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3567), 1, + ACTIONS(3674), 1, anon_sym_LF, - STATE(1372), 1, + STATE(1409), 1, sym_comment, - ACTIONS(3565), 61, + ACTIONS(3672), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -206502,222 +211269,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11012] = 39, + [11762] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, + ACTIONS(3678), 1, + anon_sym_LF, + STATE(1410), 1, + sym_comment, + ACTIONS(3676), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2645), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_error, anon_sym_DASH, - ACTIONS(3284), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(3563), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1373), 1, - sym_comment, - STATE(1423), 1, - sym__flag, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4091), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3561), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [11155] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1374), 1, - sym_comment, - STATE(1422), 1, - sym__flag, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4091), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3561), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [11298] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [11835] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3571), 1, + ACTIONS(3682), 1, anon_sym_LF, - STATE(1375), 1, + STATE(1411), 1, sym_comment, - ACTIONS(3569), 61, + ACTIONS(3680), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -206779,14 +211407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11371] = 4, + [11908] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3575), 1, + ACTIONS(3686), 1, anon_sym_LF, - STATE(1376), 1, + STATE(1412), 1, sym_comment, - ACTIONS(3573), 61, + ACTIONS(3684), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -206848,14 +211476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11444] = 4, + [11981] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3579), 1, + ACTIONS(3690), 1, anon_sym_LF, - STATE(1377), 1, + STATE(1413), 1, sym_comment, - ACTIONS(3577), 61, + ACTIONS(3688), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -206917,14 +211545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11517] = 4, + [12054] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3583), 1, - anon_sym_LF, - STATE(1378), 1, + ACTIONS(3189), 1, + aux_sym__immediate_decimal_token2, + STATE(1414), 1, sym_comment, - ACTIONS(3581), 61, + ACTIONS(2834), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2832), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -206940,7 +211571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -206953,7 +211583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -206986,31 +211615,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11590] = 13, + [12129] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2841), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2948), 1, anon_sym_LPAREN, - ACTIONS(2884), 1, + ACTIONS(2952), 1, anon_sym_DOT2, - ACTIONS(2888), 1, + ACTIONS(2956), 1, aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, + ACTIONS(2958), 1, anon_sym_DASH2, - ACTIONS(2892), 1, + ACTIONS(2960), 1, anon_sym_PLUS2, - STATE(1379), 1, + STATE(1415), 1, sym_comment, - STATE(1667), 1, + STATE(1684), 1, sym__var, - STATE(2098), 1, + STATE(2271), 1, sym__immediate_decimal, - STATE(2100), 2, + STATE(2272), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2135), 9, + ACTIONS(2150), 9, anon_sym_COMMA, anon_sym_RBRACE, aux_sym__val_number_token1, @@ -207020,7 +211649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2133), 43, + ACTIONS(2148), 43, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -207064,118 +211693,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [11681] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3587), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1380), 1, - sym_comment, - STATE(1459), 1, - sym__flag, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4071), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3585), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [11824] = 4, + [12220] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3591), 1, + ACTIONS(1657), 1, anon_sym_LF, - STATE(1381), 1, + STATE(1416), 1, sym_comment, - ACTIONS(3589), 61, + ACTIONS(1655), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -207237,14 +211762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11897] = 4, + [12293] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3575), 1, + ACTIONS(3694), 1, anon_sym_LF, - STATE(1382), 1, + STATE(1417), 1, sym_comment, - ACTIONS(3573), 61, + ACTIONS(3692), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -207306,25 +211831,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11970] = 6, + [12366] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3595), 1, - anon_sym_SEMI, - ACTIONS(3598), 1, + ACTIONS(3698), 1, anon_sym_LF, - STATE(1383), 1, + STATE(1418), 1, sym_comment, - ACTIONS(3601), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3593), 58, + ACTIONS(3696), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -207333,6 +211854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -207345,6 +211867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -207377,45 +211900,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12047] = 4, - ACTIONS(105), 1, + [12439] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1517), 1, - anon_sym_LF, - STATE(1384), 1, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1419), 1, sym_comment, - ACTIONS(1515), 61, + STATE(1684), 1, + sym__var, + STATE(2273), 1, + sym__immediate_decimal, + STATE(2274), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2154), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2152), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -207423,141 +211971,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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_CARET, - [12120] = 39, + aux_sym__record_key_token2, + [12530] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1385), 1, + STATE(1420), 1, sym_comment, - STATE(1421), 1, - sym__flag, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4091), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3561), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [12263] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3605), 1, + ACTIONS(1534), 3, + ts_builtin_sym_end, anon_sym_LF, - STATE(1386), 1, - sym_comment, - ACTIONS(3603), 61, + anon_sym_DOT2, + ACTIONS(1532), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -207573,7 +212003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -207586,7 +212015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -207619,14 +212047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12336] = 4, + [12603] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3609), 1, - anon_sym_LF, - STATE(1387), 1, + STATE(1421), 1, sym_comment, - ACTIONS(3607), 61, + ACTIONS(1526), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1524), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -207642,7 +212072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -207655,7 +212084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -207688,14 +212116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12409] = 4, + [12676] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3613), 1, - anon_sym_LF, - STATE(1388), 1, + ACTIONS(3700), 1, + anon_sym_LBRACE, + STATE(1422), 1, sym_comment, - ACTIONS(3611), 61, + STATE(1498), 1, + sym_block, + ACTIONS(3266), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3264), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -207711,7 +212144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -207723,8 +212155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -207757,14 +212187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12482] = 4, + [12753] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3617), 1, + ACTIONS(3705), 1, anon_sym_LF, - STATE(1389), 1, + STATE(1423), 1, sym_comment, - ACTIONS(3615), 61, + ACTIONS(3703), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -207826,14 +212256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12555] = 4, + [12826] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3621), 1, + ACTIONS(3709), 1, anon_sym_LF, - STATE(1390), 1, + STATE(1424), 1, sym_comment, - ACTIONS(3619), 61, + ACTIONS(3707), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -207895,14 +212325,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12628] = 4, + [12899] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3625), 1, + ACTIONS(3713), 1, anon_sym_LF, - STATE(1391), 1, + STATE(1425), 1, sym_comment, - ACTIONS(3623), 61, + ACTIONS(3711), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -207964,14 +212394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12701] = 4, + [12972] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3629), 1, + ACTIONS(3717), 1, anon_sym_LF, - STATE(1392), 1, + STATE(1426), 1, sym_comment, - ACTIONS(3627), 61, + ACTIONS(3715), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -208033,14 +212463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12774] = 4, + [13045] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3633), 1, - anon_sym_LF, - STATE(1393), 1, + STATE(1427), 1, sym_comment, - ACTIONS(3631), 61, + ACTIONS(1511), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1509), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -208056,7 +212488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -208069,7 +212500,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -208102,14 +212532,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12847] = 4, + [13118] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3637), 1, + ACTIONS(3721), 1, anon_sym_LF, - STATE(1394), 1, + STATE(1428), 1, sym_comment, - ACTIONS(3635), 61, + ACTIONS(3719), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -208171,14 +212601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12920] = 4, + [13191] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3641), 1, + ACTIONS(3725), 1, anon_sym_LF, - STATE(1395), 1, + STATE(1429), 1, sym_comment, - ACTIONS(3639), 61, + ACTIONS(3723), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -208240,14 +212670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12993] = 4, + [13264] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3645), 1, + ACTIONS(3729), 1, anon_sym_LF, - STATE(1396), 1, + STATE(1430), 1, sym_comment, - ACTIONS(3643), 61, + ACTIONS(3727), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -208309,45 +212739,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13066] = 4, - ACTIONS(105), 1, + [13337] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3649), 1, - anon_sym_LF, - STATE(1397), 1, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1431), 1, sym_comment, - ACTIONS(3647), 61, + STATE(1684), 1, + sym__var, + STATE(2275), 1, + sym__immediate_decimal, + STATE(2276), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2158), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2156), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -208355,39 +212810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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_CARET, - [13139] = 4, + aux_sym__record_key_token2, + [13428] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1398), 1, - sym_comment, - ACTIONS(2808), 3, - ts_builtin_sym_end, + ACTIONS(3733), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2806), 59, + STATE(1432), 1, + sym_comment, + ACTIONS(3731), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -208403,6 +212840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -208415,6 +212853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -208447,45 +212886,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13212] = 4, - ACTIONS(105), 1, + [13501] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3653), 1, - anon_sym_LF, - STATE(1399), 1, + ACTIONS(2884), 1, + anon_sym_DOLLAR, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(2956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(2958), 1, + anon_sym_DASH2, + ACTIONS(2960), 1, + anon_sym_PLUS2, + STATE(1433), 1, sym_comment, - ACTIONS(3651), 61, + STATE(1684), 1, + sym__var, + STATE(2277), 1, + sym__immediate_decimal, + STATE(2278), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2178), 9, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2176), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -208493,44 +212957,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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_CARET, - [13285] = 4, + aux_sym__record_key_token2, + [13592] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3657), 1, + ACTIONS(3737), 1, + anon_sym_SEMI, + ACTIONS(3740), 1, anon_sym_LF, - STATE(1400), 1, + STATE(1434), 1, sym_comment, - ACTIONS(3655), 61, + ACTIONS(3743), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3735), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -208539,7 +212991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -208552,7 +213003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -208585,14 +213035,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13358] = 4, + [13669] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3661), 1, + ACTIONS(1534), 1, anon_sym_LF, - STATE(1401), 1, + STATE(1435), 1, sym_comment, - ACTIONS(3659), 61, + ACTIONS(1532), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -208654,26 +213104,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13431] = 7, + [13742] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, + ACTIONS(3747), 1, anon_sym_LF, - STATE(1128), 1, - aux_sym__block_body_repeat1, - STATE(1400), 1, - sym__terminator, - STATE(1402), 1, + STATE(1436), 1, sym_comment, - ACTIONS(3663), 58, + ACTIONS(3745), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -208682,6 +213127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -208694,6 +213140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -208726,15 +213173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13510] = 4, + [13815] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1403), 1, - sym_comment, - ACTIONS(3161), 2, - ts_builtin_sym_end, + ACTIONS(3751), 1, anon_sym_LF, - ACTIONS(3159), 60, + STATE(1437), 1, + sym_comment, + ACTIONS(3749), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -208750,6 +213196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -208762,6 +213209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -208771,7 +213219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_as, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -208795,99 +213242,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13583] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1404), 1, - sym_comment, - STATE(1667), 1, - sym__var, - STATE(2096), 1, - sym__immediate_decimal, - STATE(2097), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2103), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2101), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [13674] = 4, + [13888] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3667), 1, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LF, - STATE(1405), 1, + STATE(1195), 1, + aux_sym__block_body_repeat1, + STATE(1279), 1, + sym__terminator, + STATE(1438), 1, sym_comment, - ACTIONS(3665), 61, + ACTIONS(3753), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -208896,7 +213270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -208909,7 +213282,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -208942,14 +213314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13747] = 4, + [13967] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3671), 1, + ACTIONS(3757), 1, anon_sym_LF, - STATE(1406), 1, + STATE(1439), 1, sym_comment, - ACTIONS(3669), 61, + ACTIONS(3755), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209011,14 +213383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13820] = 4, + [14040] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3675), 1, + ACTIONS(3761), 1, anon_sym_LF, - STATE(1407), 1, + STATE(1440), 1, sym_comment, - ACTIONS(3673), 61, + ACTIONS(3759), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209080,25 +213452,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13893] = 6, + [14113] = 39, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3679), 1, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3765), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1380), 1, + sym__flag, + STATE(1441), 1, + sym_comment, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4088), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3763), 4, anon_sym_SEMI, - ACTIONS(3682), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [14256] = 39, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3765), 1, anon_sym_LF, - STATE(1408), 1, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1381), 1, + sym__flag, + STATE(1442), 1, sym_comment, - ACTIONS(3685), 2, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4088), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3763), 4, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3677), 58, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [14399] = 39, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3499), 1, + anon_sym_DASH, + ACTIONS(3765), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1443), 1, + sym_comment, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4088), 1, + sym__expression, + STATE(4112), 1, + sym__flag, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4427), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3763), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [14542] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3769), 1, + anon_sym_LF, + STATE(1444), 1, + sym_comment, + ACTIONS(3767), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -209107,6 +213787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -209119,6 +213800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -209151,70 +213833,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13970] = 13, - ACTIONS(3), 1, + [14615] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1409), 1, + STATE(1445), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(2094), 1, - sym__immediate_decimal, - STATE(2095), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2099), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2097), 43, + ACTIONS(1443), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1441), 60, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -209222,21 +213878,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [14061] = 4, + anon_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_CARET, + [14688] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3689), 1, + ACTIONS(3773), 1, anon_sym_LF, - STATE(1410), 1, + STATE(1446), 1, sym_comment, - ACTIONS(3687), 61, + ACTIONS(3771), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209298,19 +213971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14134] = 6, + [14761] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3691), 1, - anon_sym_LBRACE, - STATE(1411), 1, - sym_comment, - STATE(1556), 1, - sym_block, - ACTIONS(3148), 2, - ts_builtin_sym_end, + ACTIONS(3777), 1, anon_sym_LF, - ACTIONS(3146), 58, + STATE(1447), 1, + sym_comment, + ACTIONS(3775), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209326,6 +213994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -209337,6 +214006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -209369,15 +214040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14211] = 4, + [14834] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1412), 1, - sym_comment, - ACTIONS(1456), 2, - ts_builtin_sym_end, + ACTIONS(3781), 1, anon_sym_LF, - ACTIONS(1454), 60, + STATE(1448), 1, + sym_comment, + ACTIONS(3779), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209393,6 +214063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -209405,6 +214076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -209414,7 +214086,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -209438,16 +214109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14284] = 4, + [14907] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1413), 1, - sym_comment, - ACTIONS(1487), 3, - ts_builtin_sym_end, + ACTIONS(3785), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1485), 59, + STATE(1449), 1, + sym_comment, + ACTIONS(3783), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209463,6 +214132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -209475,6 +214145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -209507,16 +214178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14357] = 4, + [14980] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1414), 1, - sym_comment, - ACTIONS(1509), 3, - ts_builtin_sym_end, + ACTIONS(3789), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1507), 59, + STATE(1450), 1, + sym_comment, + ACTIONS(3787), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209532,6 +214201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -209544,6 +214214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -209576,14 +214247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14430] = 4, + [15053] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3696), 1, + ACTIONS(3789), 1, anon_sym_LF, - STATE(1415), 1, + STATE(1451), 1, sym_comment, - ACTIONS(3694), 61, + ACTIONS(3787), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209645,14 +214316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14503] = 4, + [15126] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3700), 1, - anon_sym_LF, - STATE(1416), 1, + ACTIONS(2681), 1, + aux_sym_unquoted_token3, + STATE(1452), 1, sym_comment, - ACTIONS(3698), 61, + ACTIONS(1377), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1375), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209668,7 +214342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -209681,7 +214354,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -209714,14 +214386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14576] = 4, + [15201] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3704), 1, + ACTIONS(3793), 1, anon_sym_LF, - STATE(1417), 1, + STATE(1453), 1, sym_comment, - ACTIONS(3702), 61, + ACTIONS(3791), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209783,14 +214455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14649] = 4, + [15274] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3708), 1, + ACTIONS(3797), 1, anon_sym_LF, - STATE(1418), 1, + STATE(1454), 1, sym_comment, - ACTIONS(3706), 61, + ACTIONS(3795), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209852,14 +214524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14722] = 4, + [15347] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(3801), 1, anon_sym_LF, - STATE(1419), 1, + STATE(1455), 1, sym_comment, - ACTIONS(1580), 61, + ACTIONS(3799), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -209921,70 +214593,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14795] = 13, - ACTIONS(3), 1, + [15420] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1420), 1, + STATE(1456), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(2092), 1, - sym__immediate_decimal, - STATE(2093), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2083), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2081), 43, + ACTIONS(3262), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3260), 60, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -209992,326 +214638,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, anon_sym_as, + anon_sym_where, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [14886] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, anon_sym_not, - ACTIONS(355), 1, anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3712), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1354), 1, - sym__flag, - STATE(1421), 1, - sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4087), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3710), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [15029] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, + anon_sym_CARET, + [15493] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1457), 1, + sym_comment, + ACTIONS(1515), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1513), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, anon_sym_DASH, - ACTIONS(3284), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(3712), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1355), 1, - sym__flag, - STATE(1422), 1, - sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4087), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3710), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [15172] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3712), 1, + anon_sym_CARET, + [15566] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1358), 1, - sym__flag, - STATE(1423), 1, + STATE(1279), 1, + sym__terminator, + STATE(1282), 1, + aux_sym__block_body_repeat1, + STATE(1458), 1, sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4087), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, + ACTIONS(3803), 58, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3710), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [15315] = 39, + anon_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_CARET, + [15645] = 39, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(353), 1, @@ -210320,78 +214812,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2643), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - ACTIONS(2645), 1, + ACTIONS(2657), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, + ACTIONS(2659), 1, anon_sym_LBRACE, - ACTIONS(2651), 1, + ACTIONS(2663), 1, anon_sym_PLUS, - ACTIONS(2653), 1, + ACTIONS(2665), 1, sym_val_date, - ACTIONS(2655), 1, + ACTIONS(2667), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, + ACTIONS(2671), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3321), 1, + ACTIONS(3447), 1, anon_sym_DASH, - ACTIONS(3712), 1, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3531), 1, anon_sym_LF, - STATE(368), 1, + STATE(389), 1, sym__val_number, - STATE(424), 1, + STATE(419), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(430), 1, sym_val_number, - STATE(1424), 1, + STATE(1330), 1, + sym__flag, + STATE(1459), 1, sym_comment, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4087), 1, + STATE(4106), 1, sym__expression, - STATE(4088), 1, - sym__flag, - STATE(4415), 1, + STATE(4471), 1, sym_val_range, ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, + ACTIONS(2669), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4440), 2, + STATE(3209), 2, sym_short_flag, sym_long_flag, ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3041), 3, + STATE(3094), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3710), 4, + ACTIONS(3529), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -210403,7 +214895,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(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -210415,70 +214907,45 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [15458] = 13, - ACTIONS(3), 1, + [15788] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(2888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2890), 1, - anon_sym_DASH2, - ACTIONS(2892), 1, - anon_sym_PLUS2, - STATE(1425), 1, + ACTIONS(3807), 1, + anon_sym_LF, + STATE(1460), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(2088), 1, - sym__immediate_decimal, - STATE(2091), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2095), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2093), 43, + ACTIONS(3805), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -210486,22 +214953,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [15549] = 4, + anon_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_CARET, + [15861] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1426), 1, - sym_comment, - ACTIONS(3030), 2, - ts_builtin_sym_end, + ACTIONS(3811), 1, anon_sym_LF, - ACTIONS(3028), 60, + STATE(1461), 1, + sym_comment, + ACTIONS(3809), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -210517,7 +214999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -210530,6 +215012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -210562,19 +215045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15622] = 6, + [15934] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3311), 1, - anon_sym_LBRACE, - STATE(1427), 1, - sym_comment, - STATE(1465), 1, - sym_block, - ACTIONS(3144), 2, - ts_builtin_sym_end, + ACTIONS(3815), 1, anon_sym_LF, - ACTIONS(3142), 58, + STATE(1462), 1, + sym_comment, + ACTIONS(3813), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -210590,6 +215068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -210601,6 +215080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -210633,19 +215114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15699] = 6, + [16007] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3311), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - STATE(1428), 1, + STATE(1463), 1, sym_comment, - STATE(1464), 1, + STATE(1575), 1, sym_block, - ACTIONS(3144), 2, + ACTIONS(3254), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3142), 58, + ACTIONS(3252), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -210704,16 +215185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15776] = 4, + [16084] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1429), 1, - sym_comment, - ACTIONS(2784), 3, - ts_builtin_sym_end, + ACTIONS(3815), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2782), 59, + STATE(1464), 1, + sym_comment, + ACTIONS(3813), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -210729,6 +215208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -210741,6 +215221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -210773,15 +215254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15849] = 4, + [16157] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1430), 1, - sym_comment, - ACTIONS(3053), 2, - ts_builtin_sym_end, + ACTIONS(3819), 1, anon_sym_LF, - ACTIONS(3051), 60, + STATE(1465), 1, + sym_comment, + ACTIONS(3817), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -210797,6 +215277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -210809,6 +215290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -210818,7 +215300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_as, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -210842,17 +215323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15922] = 5, + [16230] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3714), 1, - anon_sym_DOT2, - STATE(1431), 1, - sym_comment, - ACTIONS(3125), 2, - ts_builtin_sym_end, + ACTIONS(3819), 1, anon_sym_LF, - ACTIONS(3123), 59, + STATE(1466), 1, + sym_comment, + ACTIONS(3817), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -210868,6 +215346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -210880,6 +215359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -210912,15 +215392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15997] = 4, + [16303] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1432), 1, + STATE(1467), 1, sym_comment, - ACTIONS(1634), 2, + ACTIONS(1643), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1632), 60, + ACTIONS(1641), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -210981,14 +215461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16070] = 4, + [16376] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1574), 1, + ACTIONS(3823), 1, anon_sym_LF, - STATE(1433), 1, + STATE(1468), 1, sym_comment, - ACTIONS(1572), 61, + ACTIONS(3821), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211050,17 +215530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16143] = 5, + [16449] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3716), 1, - anon_sym_DOT2, - STATE(1434), 1, - sym_comment, - ACTIONS(3131), 2, - ts_builtin_sym_end, + ACTIONS(3827), 1, anon_sym_LF, - ACTIONS(3129), 59, + STATE(1469), 1, + sym_comment, + ACTIONS(3825), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211076,6 +215553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -211088,6 +215566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -211120,14 +215599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16218] = 4, + [16522] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3720), 1, + ACTIONS(3823), 1, anon_sym_LF, - STATE(1435), 1, + STATE(1470), 1, sym_comment, - ACTIONS(3718), 61, + ACTIONS(3821), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211189,14 +215668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16291] = 4, + [16595] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3724), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(1436), 1, + STATE(1471), 1, sym_comment, - ACTIONS(3722), 61, + ACTIONS(3829), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211258,26 +215737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16364] = 7, + [16668] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, + ACTIONS(3835), 1, anon_sym_LF, - STATE(1128), 1, - aux_sym__block_body_repeat1, - STATE(1400), 1, - sym__terminator, - STATE(1437), 1, + STATE(1472), 1, sym_comment, - ACTIONS(3726), 58, + ACTIONS(3833), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -211286,6 +215760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -211298,6 +215773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -211330,14 +215806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16443] = 4, + [16741] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3730), 1, + ACTIONS(3839), 1, anon_sym_LF, - STATE(1438), 1, + STATE(1473), 1, sym_comment, - ACTIONS(3728), 61, + ACTIONS(3837), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211399,15 +215875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16516] = 4, + [16814] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1439), 1, - sym_comment, - ACTIONS(3173), 2, - ts_builtin_sym_end, + ACTIONS(3843), 1, anon_sym_LF, - ACTIONS(3171), 60, + STATE(1474), 1, + sym_comment, + ACTIONS(3841), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211423,6 +215898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -211435,6 +215911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -211444,7 +215921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_as, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -211468,14 +215944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16589] = 4, + [16887] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3730), 1, + ACTIONS(3847), 1, anon_sym_LF, - STATE(1440), 1, + STATE(1475), 1, sym_comment, - ACTIONS(3728), 61, + ACTIONS(3845), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211537,15 +216013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16662] = 4, + [16960] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1441), 1, - sym_comment, - ACTIONS(3155), 2, - ts_builtin_sym_end, + ACTIONS(3815), 1, anon_sym_LF, - ACTIONS(3153), 60, + STATE(1476), 1, + sym_comment, + ACTIONS(3813), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211561,6 +216036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -211573,6 +216049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -211582,7 +216059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_as, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -211606,14 +216082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16735] = 4, + [17033] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3734), 1, - anon_sym_LF, - STATE(1442), 1, + STATE(1477), 1, sym_comment, - ACTIONS(3732), 61, + ACTIONS(3179), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3177), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211629,7 +216106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -211642,7 +216119,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -211675,14 +216151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16808] = 4, + [17106] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3738), 1, + ACTIONS(3815), 1, anon_sym_LF, - STATE(1443), 1, + STATE(1478), 1, sym_comment, - ACTIONS(3736), 61, + ACTIONS(3813), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211744,14 +216220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16881] = 4, + [17179] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3734), 1, + ACTIONS(3851), 1, anon_sym_LF, - STATE(1444), 1, + STATE(1479), 1, sym_comment, - ACTIONS(3732), 61, + ACTIONS(3849), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211813,83 +216289,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16954] = 4, + [17252] = 39, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3742), 1, - anon_sym_LF, - STATE(1445), 1, - sym_comment, - ACTIONS(3740), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, anon_sym_LBRACK, + ACTIONS(2657), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(2659), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(2663), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3531), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1331), 1, + sym__flag, + STATE(1480), 1, + sym_comment, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4106), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3529), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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, - anon_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_CARET, - [17027] = 4, + STATE(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [17395] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3746), 1, + ACTIONS(3855), 1, anon_sym_LF, - STATE(1446), 1, + STATE(1481), 1, sym_comment, - ACTIONS(3744), 61, + ACTIONS(3853), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -211951,14 +216462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17100] = 4, + [17468] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3859), 1, anon_sym_LF, - STATE(1447), 1, + STATE(1482), 1, sym_comment, - ACTIONS(3748), 61, + ACTIONS(3857), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212020,14 +216531,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17173] = 4, + [17541] = 39, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3754), 1, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3531), 1, anon_sym_LF, - STATE(1448), 1, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1334), 1, + sym__flag, + STATE(1483), 1, sym_comment, - ACTIONS(3752), 61, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4106), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3529), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [17684] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1484), 1, + sym_comment, + ACTIONS(1439), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1437), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212043,7 +216659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -212056,7 +216671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -212066,6 +216680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -212089,14 +216704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17246] = 4, + [17757] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3758), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(1449), 1, + STATE(1485), 1, sym_comment, - ACTIONS(3756), 61, + ACTIONS(3861), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212158,14 +216773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17319] = 4, + [17830] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3867), 1, anon_sym_LF, - STATE(1450), 1, + STATE(1486), 1, sym_comment, - ACTIONS(3760), 61, + ACTIONS(3865), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212227,14 +216842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17392] = 4, + [17903] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3871), 1, anon_sym_LF, - STATE(1451), 1, + STATE(1487), 1, sym_comment, - ACTIONS(3764), 61, + ACTIONS(3869), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212296,83 +216911,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17465] = 4, + [17976] = 39, ACTIONS(105), 1, anon_sym_POUND, - STATE(1452), 1, - sym_comment, - ACTIONS(2876), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2874), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, anon_sym_LBRACK, + ACTIONS(2657), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(2659), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(2663), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(2665), 1, + sym_val_date, + ACTIONS(2667), 1, + anon_sym_DQUOTE, + ACTIONS(2671), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3875), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1315), 1, + sym__flag, + STATE(1488), 1, + sym_comment, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4139), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3873), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [18119] = 39, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_PLUS, + ACTIONS(2665), 1, sym_val_date, + ACTIONS(2667), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2671), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2673), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [17538] = 4, + ACTIONS(3447), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3875), 1, + anon_sym_LF, + STATE(389), 1, + sym__val_number, + STATE(419), 1, + sym__val_number_decimal, + STATE(430), 1, + sym_val_number, + STATE(1318), 1, + sym__flag, + STATE(1489), 1, + sym_comment, + STATE(2915), 1, + sym__var, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3006), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4139), 1, + sym__expression, + STATE(4471), 1, + sym_val_range, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2669), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3209), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3094), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3873), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(363), 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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [18262] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3770), 1, - anon_sym_LF, - STATE(1453), 1, + STATE(1490), 1, sym_comment, - ACTIONS(3768), 61, + ACTIONS(3871), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3869), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212388,7 +217143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -212401,7 +217155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -212434,14 +217187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17611] = 4, + [18334] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3770), 1, - anon_sym_LF, - STATE(1454), 1, + STATE(1491), 1, sym_comment, - ACTIONS(3768), 61, + ACTIONS(3461), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3459), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212457,7 +217211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -212470,7 +217223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -212503,14 +217255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17684] = 4, + [18406] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_LF, - STATE(1455), 1, + STATE(1492), 1, sym_comment, - ACTIONS(3772), 61, + ACTIONS(3481), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3479), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212526,7 +217279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -212539,7 +217291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -212572,16 +217323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17757] = 4, + [18478] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1456), 1, + STATE(1493), 1, sym_comment, - ACTIONS(1513), 3, + ACTIONS(3847), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1511), 59, + ACTIONS(3845), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212641,14 +217391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17830] = 4, + [18550] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LF, - STATE(1457), 1, + STATE(1494), 1, sym_comment, - ACTIONS(3776), 61, + ACTIONS(3843), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3841), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212664,7 +217415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -212677,7 +217427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -212710,15 +217459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17903] = 4, + [18622] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1458), 1, + STATE(1495), 1, sym_comment, - ACTIONS(1670), 2, + ACTIONS(3839), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1668), 60, + ACTIONS(3837), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -212755,7 +217504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -212779,223 +217527,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17976] = 39, + [18694] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, + STATE(1496), 1, + sym_comment, + ACTIONS(3835), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3833), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2645), 1, anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, - sym_val_date, - ACTIONS(2655), 1, - anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, + anon_sym_DOLLAR, + anon_sym_error, anon_sym_DASH, - ACTIONS(3284), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(3782), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1339), 1, - sym__flag, - STATE(1459), 1, - sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4102), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3780), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [18119] = 39, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2643), 1, - anon_sym_LBRACK, - ACTIONS(2645), 1, - anon_sym_LPAREN, - ACTIONS(2647), 1, - anon_sym_LBRACE, - ACTIONS(2651), 1, - anon_sym_PLUS, - ACTIONS(2653), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2659), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2661), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3282), 1, - anon_sym_DASH, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3782), 1, - anon_sym_LF, - STATE(368), 1, - sym__val_number, - STATE(424), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(1338), 1, - sym__flag, - STATE(1460), 1, - sym_comment, - STATE(2833), 1, - sym__var, - STATE(2951), 1, - sym_val_variable, - STATE(2975), 1, - sym_expr_parenthesized, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4102), 1, - sym__expression, - STATE(4415), 1, - sym_val_range, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2657), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3184), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3041), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3780), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(363), 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(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [18262] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [18766] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1461), 1, + STATE(1497), 1, sym_comment, - ACTIONS(3276), 2, + ACTIONS(3831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3274), 59, + ACTIONS(3829), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213055,15 +217663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18334] = 4, + [18838] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1462), 1, + STATE(1498), 1, sym_comment, - ACTIONS(3447), 2, + ACTIONS(3827), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3445), 59, + ACTIONS(3825), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213123,15 +217731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18406] = 4, + [18910] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1463), 1, + STATE(1499), 1, sym_comment, - ACTIONS(3531), 2, + ACTIONS(2986), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3529), 59, + ACTIONS(2984), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213191,15 +217799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18478] = 4, + [18982] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1464), 1, + STATE(1500), 1, sym_comment, - ACTIONS(3539), 2, + ACTIONS(3503), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3537), 59, + ACTIONS(3501), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213259,15 +217867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18550] = 4, + [19054] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1465), 1, + STATE(1501), 1, sym_comment, - ACTIONS(3539), 2, + ACTIONS(3507), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3537), 59, + ACTIONS(3505), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213327,15 +217935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18622] = 4, + [19126] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1466), 1, + STATE(1502), 1, sym_comment, - ACTIONS(3315), 2, + ACTIONS(1681), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3313), 59, + ACTIONS(1679), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213395,15 +218003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18694] = 4, + [19198] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1467), 1, + STATE(1503), 1, sym_comment, - ACTIONS(3435), 2, + ACTIONS(3793), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3433), 59, + ACTIONS(3791), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213463,15 +218071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18766] = 4, + [19270] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1468), 1, + STATE(1504), 1, sym_comment, - ACTIONS(3238), 2, + ACTIONS(3511), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3236), 59, + ACTIONS(3509), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213531,22 +218139,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18838] = 4, + [19342] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(1469), 1, - sym_comment, - ACTIONS(3696), 2, - ts_builtin_sym_end, + ACTIONS(3879), 1, + anon_sym_SEMI, + ACTIONS(3882), 1, anon_sym_LF, - ACTIONS(3694), 59, + ACTIONS(3885), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym_comment, + ACTIONS(3877), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -213599,15 +218209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18910] = 4, + [19418] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1470), 1, + STATE(1506), 1, sym_comment, - ACTIONS(3495), 2, + ACTIONS(3341), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3493), 59, + ACTIONS(3339), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213667,15 +218277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18982] = 4, + [19490] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1471), 1, + STATE(1507), 1, sym_comment, - ACTIONS(3547), 2, + ACTIONS(3477), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3545), 59, + ACTIONS(3475), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -213735,7 +218345,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19054] = 39, + [19562] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1508), 1, + sym_comment, + ACTIONS(3855), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3853), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [19634] = 39, ACTIONS(79), 1, anon_sym_not, ACTIONS(81), 1, @@ -213744,78 +218422,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(2760), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2762), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + ACTIONS(2764), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_PLUS, - ACTIONS(2709), 1, + ACTIONS(2770), 1, sym_val_date, - ACTIONS(2711), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3784), 1, + ACTIONS(3887), 1, anon_sym_DASH, - ACTIONS(3786), 1, + ACTIONS(3889), 1, anon_sym_DOT, - STATE(426), 1, + STATE(422), 1, sym__val_number, - STATE(435), 1, + STATE(431), 1, sym__val_number_decimal, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(1472), 1, + STATE(1509), 1, sym_comment, - STATE(2893), 1, + STATE(1652), 1, + sym__flag, + STATE(2955), 1, sym__var, - STATE(3002), 1, + STATE(3069), 1, sym_expr_parenthesized, - STATE(3018), 1, + STATE(3080), 1, sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4108), 1, - sym__flag, - STATE(4158), 1, + STATE(4179), 1, sym__expression, - STATE(4469), 1, + STATE(4590), 1, sym_val_range, ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3710), 2, + ACTIONS(3529), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3712), 2, + ACTIONS(3531), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(3282), 2, sym_short_flag, sym_long_flag, ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3214), 3, + STATE(3205), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -213826,7 +218504,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(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -213838,151 +218516,118 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19196] = 4, + [19776] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1473), 1, - sym_comment, - ACTIONS(2808), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2806), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, anon_sym_LBRACK, + ACTIONS(2762), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(2764), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(2768), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2770), 1, sym_val_date, + ACTIONS(2772), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [19268] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(1474), 1, - sym_comment, - ACTIONS(3591), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3589), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, + ACTIONS(3887), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, + ACTIONS(3889), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1510), 1, + sym_comment, + STATE(1653), 1, + sym__flag, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4179), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3529), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3531), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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, - anon_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_CARET, - [19340] = 4, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [19918] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1475), 1, + STATE(1511), 1, sym_comment, - ACTIONS(3633), 2, + ACTIONS(3863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3631), 59, + ACTIONS(3861), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214042,75 +218687,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19412] = 4, + [19990] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1476), 1, - sym_comment, - ACTIONS(3499), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3497), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, anon_sym_LBRACK, + ACTIONS(2762), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(2764), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(2768), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1512), 1, + sym_comment, + STATE(1601), 1, + sym__flag, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4163), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3873), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3875), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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, - anon_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_CARET, - [19484] = 39, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [20132] = 39, ACTIONS(79), 1, anon_sym_not, ACTIONS(81), 1, @@ -214119,78 +218799,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(2760), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2762), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + ACTIONS(2764), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_PLUS, - ACTIONS(2709), 1, + ACTIONS(2770), 1, sym_val_date, - ACTIONS(2711), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, + ACTIONS(3887), 1, anon_sym_DASH, - STATE(426), 1, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, sym__val_number, - STATE(435), 1, + STATE(431), 1, sym__val_number_decimal, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(1477), 1, + STATE(1513), 1, sym_comment, - STATE(1504), 1, + STATE(1602), 1, sym__flag, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3002), 1, + STATE(3069), 1, sym_expr_parenthesized, - STATE(3018), 1, + STATE(3080), 1, sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4158), 1, + STATE(4163), 1, sym__expression, - STATE(4469), 1, + STATE(4590), 1, sym_val_range, ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3710), 2, + ACTIONS(3873), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3712), 2, + ACTIONS(3875), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(3232), 2, + STATE(3282), 2, sym_short_flag, sym_long_flag, ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3214), 3, + STATE(3205), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -214201,7 +218881,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(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -214213,15 +218893,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19626] = 4, + [20274] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1478), 1, + STATE(1514), 1, sym_comment, - ACTIONS(3575), 2, + ACTIONS(3515), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3573), 59, + ACTIONS(3513), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214281,24 +218961,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19698] = 6, + [20346] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3792), 1, - anon_sym_SEMI, - ACTIONS(3795), 1, - anon_sym_LF, - ACTIONS(3798), 1, - anon_sym_RPAREN, - STATE(1479), 1, + STATE(1515), 1, sym_comment, - ACTIONS(3790), 58, + ACTIONS(3535), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3533), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -214351,15 +219029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19774] = 4, + [20418] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1480), 1, + STATE(1516), 1, sym_comment, - ACTIONS(3499), 2, + ACTIONS(3397), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3497), 59, + ACTIONS(3395), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214419,15 +219097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19846] = 4, + [20490] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1481), 1, + STATE(1517), 1, sym_comment, - ACTIONS(1582), 2, + ACTIONS(3401), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1580), 59, + ACTIONS(3399), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214487,15 +219165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19918] = 4, + [20562] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1482), 1, + STATE(1518), 1, sym_comment, - ACTIONS(3288), 2, + ACTIONS(3527), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3286), 59, + ACTIONS(3525), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214555,7 +219233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19990] = 39, + [20634] = 39, ACTIONS(79), 1, anon_sym_not, ACTIONS(81), 1, @@ -214564,78 +219242,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(2760), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2762), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + ACTIONS(2764), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_PLUS, - ACTIONS(2709), 1, + ACTIONS(2770), 1, sym_val_date, - ACTIONS(2711), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, + ACTIONS(3887), 1, anon_sym_DASH, - STATE(426), 1, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, sym__val_number, - STATE(435), 1, + STATE(431), 1, sym__val_number_decimal, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(1483), 1, + STATE(1519), 1, sym_comment, - STATE(1505), 1, + STATE(1654), 1, sym__flag, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3002), 1, + STATE(3069), 1, sym_expr_parenthesized, - STATE(3018), 1, + STATE(3080), 1, sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4158), 1, + STATE(4179), 1, sym__expression, - STATE(4469), 1, + STATE(4590), 1, sym_val_range, ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3710), 2, + ACTIONS(3529), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3712), 2, + ACTIONS(3531), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(3232), 2, + STATE(3282), 2, sym_short_flag, sym_long_flag, ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3214), 3, + STATE(3205), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -214646,7 +219324,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(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -214658,15 +219336,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20132] = 4, + [20776] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1484), 1, + STATE(1520), 1, sym_comment, - ACTIONS(3730), 2, + ACTIONS(3859), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3728), 59, + ACTIONS(3857), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214726,15 +219404,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20204] = 4, + [20848] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1485), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1521), 1, + sym_comment, + STATE(1573), 1, + sym__flag, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4179), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3529), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3531), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [20990] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1522), 1, sym_comment, - ACTIONS(3758), 2, + ACTIONS(3801), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3756), 59, + ACTIONS(3799), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214794,15 +219575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20276] = 4, + [21062] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1486), 1, + STATE(1523), 1, sym_comment, - ACTIONS(3754), 2, + ACTIONS(3811), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3752), 59, + ACTIONS(3809), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214862,15 +219643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20348] = 4, + [21134] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1487), 1, + STATE(1524), 1, sym_comment, - ACTIONS(3750), 2, + ACTIONS(3473), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3748), 59, + ACTIONS(3471), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214930,15 +219711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20420] = 4, + [21206] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1488), 1, + STATE(1525), 1, sym_comment, - ACTIONS(3746), 2, + ACTIONS(3797), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3744), 59, + ACTIONS(3795), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -214998,15 +219779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20492] = 4, + [21278] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1489), 1, + STATE(1526), 1, sym_comment, - ACTIONS(3774), 2, + ACTIONS(3469), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3772), 59, + ACTIONS(3467), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -215066,15 +219847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20564] = 4, + [21350] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1490), 1, + STATE(1527), 1, sym_comment, - ACTIONS(3742), 2, + ACTIONS(3575), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3740), 59, + ACTIONS(3573), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -215134,83 +219915,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20636] = 4, + [21422] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1491), 1, - sym_comment, - ACTIONS(3738), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3736), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, anon_sym_LBRACK, + ACTIONS(2762), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(2764), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(2768), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3889), 1, + anon_sym_DOT, + ACTIONS(3891), 1, + anon_sym_DASH, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1528), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4141), 1, + sym__flag, + STATE(4215), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3585), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3587), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4624), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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, - anon_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_CARET, - [20708] = 4, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [21564] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1492), 1, + STATE(1529), 1, sym_comment, - ACTIONS(3395), 2, + ACTIONS(3465), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3393), 59, + ACTIONS(3463), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -215270,151 +220086,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20780] = 4, + [21636] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1493), 1, - sym_comment, - ACTIONS(3575), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3573), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, anon_sym_LBRACK, + ACTIONS(2762), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(2764), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(2768), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1528), 1, + sym__flag, + STATE(1530), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4219), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3608), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3610), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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, - anon_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_CARET, - [20852] = 4, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [21778] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1494), 1, - sym_comment, - ACTIONS(3730), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3728), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, anon_sym_LBRACK, + ACTIONS(2762), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(2764), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(2768), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3889), 1, + anon_sym_DOT, + ACTIONS(3891), 1, + anon_sym_DASH, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1531), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4218), 1, + sym__flag, + STATE(4219), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3608), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3610), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4624), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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, - anon_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_CARET, - [20924] = 4, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [21920] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1495), 1, + STATE(1532), 1, sym_comment, - ACTIONS(3495), 2, + ACTIONS(3851), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3493), 59, + ACTIONS(3849), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -215474,22 +220360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20996] = 4, + [21992] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(1496), 1, - sym_comment, - ACTIONS(3495), 2, - ts_builtin_sym_end, + ACTIONS(3539), 1, + anon_sym_SEMI, + ACTIONS(3542), 1, anon_sym_LF, - ACTIONS(3493), 59, + ACTIONS(3893), 1, + ts_builtin_sym_end, + STATE(1533), 1, + sym_comment, + ACTIONS(3537), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -215542,15 +220430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21068] = 4, + [22068] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1497), 1, + STATE(1534), 1, sym_comment, - ACTIONS(3762), 2, + ACTIONS(3648), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3760), 59, + ACTIONS(3646), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -215610,22 +220498,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21140] = 4, + [22140] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(1498), 1, - sym_comment, - ACTIONS(3567), 2, - ts_builtin_sym_end, + ACTIONS(3549), 1, + anon_sym_SEMI, + ACTIONS(3552), 1, anon_sym_LF, - ACTIONS(3565), 59, + ACTIONS(3895), 1, + ts_builtin_sym_end, + STATE(1535), 1, + sym_comment, + ACTIONS(3547), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -215678,22 +220568,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21212] = 4, + [22216] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(1499), 1, - sym_comment, - ACTIONS(3387), 2, - ts_builtin_sym_end, + ACTIONS(3737), 1, + anon_sym_SEMI, + ACTIONS(3740), 1, anon_sym_LF, - ACTIONS(3385), 59, + ACTIONS(3897), 1, + ts_builtin_sym_end, + STATE(1536), 1, + sym_comment, + ACTIONS(3735), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -215746,15 +220638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21284] = 4, + [22292] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1500), 1, + STATE(1537), 1, sym_comment, - ACTIONS(3238), 2, + ACTIONS(3258), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3236), 59, + ACTIONS(3256), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -215814,7 +220706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21356] = 39, + [22364] = 39, ACTIONS(79), 1, anon_sym_not, ACTIONS(81), 1, @@ -215823,181 +220715,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(2760), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2762), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + ACTIONS(2764), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_PLUS, - ACTIONS(2709), 1, + ACTIONS(2770), 1, sym_val_date, - ACTIONS(2711), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, + ACTIONS(3887), 1, anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1501), 1, - sym_comment, - STATE(1547), 1, - sym__flag, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4134), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3780), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3782), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 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(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [21498] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, + ACTIONS(3889), 1, anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, + STATE(422), 1, sym__val_number, - STATE(435), 1, + STATE(431), 1, sym__val_number_decimal, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(1502), 1, - sym_comment, - STATE(1545), 1, + STATE(1530), 1, sym__flag, - STATE(2893), 1, + STATE(1538), 1, + sym_comment, + STATE(2955), 1, sym__var, - STATE(3002), 1, + STATE(3069), 1, sym_expr_parenthesized, - STATE(3018), 1, + STATE(3080), 1, sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4134), 1, + STATE(4210), 1, sym__expression, - STATE(4469), 1, + STATE(4590), 1, sym_val_range, ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3780), 2, + ACTIONS(3763), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3782), 2, + ACTIONS(3765), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(3232), 2, + STATE(3282), 2, sym_short_flag, sym_long_flag, ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3214), 3, + STATE(3205), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -216008,7 +220797,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(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -216020,7 +220809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21640] = 39, + [22506] = 39, ACTIONS(79), 1, anon_sym_not, ACTIONS(81), 1, @@ -216029,181 +220818,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(2760), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2762), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + ACTIONS(2764), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_PLUS, - ACTIONS(2709), 1, + ACTIONS(2770), 1, sym_val_date, - ACTIONS(2711), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3784), 1, + ACTIONS(3887), 1, anon_sym_DASH, - ACTIONS(3786), 1, + ACTIONS(3889), 1, anon_sym_DOT, - STATE(426), 1, + STATE(422), 1, sym__val_number, - STATE(435), 1, + STATE(431), 1, sym__val_number_decimal, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(1503), 1, - sym_comment, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4138), 1, - sym__expression, - STATE(4176), 1, + STATE(1531), 1, sym__flag, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3533), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3535), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4842), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 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(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [21782] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1504), 1, + STATE(1539), 1, sym_comment, - STATE(1586), 1, - sym__flag, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3002), 1, + STATE(3069), 1, sym_expr_parenthesized, - STATE(3018), 1, + STATE(3080), 1, sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4138), 1, + STATE(4210), 1, sym__expression, - STATE(4469), 1, + STATE(4590), 1, sym_val_range, ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3533), 2, + ACTIONS(3763), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3535), 2, + ACTIONS(3765), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(3232), 2, + STATE(3282), 2, sym_short_flag, sym_long_flag, ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3214), 3, + STATE(3205), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -216214,7 +220900,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(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -216226,7 +220912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21924] = 39, + [22648] = 39, ACTIONS(79), 1, anon_sym_not, ACTIONS(81), 1, @@ -216235,78 +220921,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(2760), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2762), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + ACTIONS(2764), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_PLUS, - ACTIONS(2709), 1, + ACTIONS(2770), 1, sym_val_date, - ACTIONS(2711), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, + ACTIONS(3889), 1, anon_sym_DOT, - ACTIONS(3788), 1, + ACTIONS(3891), 1, anon_sym_DASH, - STATE(426), 1, + STATE(422), 1, sym__val_number, - STATE(435), 1, + STATE(431), 1, sym__val_number_decimal, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(1505), 1, + STATE(1540), 1, sym_comment, - STATE(1588), 1, - sym__flag, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3002), 1, + STATE(3069), 1, sym_expr_parenthesized, - STATE(3018), 1, + STATE(3080), 1, sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4138), 1, + STATE(4209), 1, + sym__flag, + STATE(4210), 1, sym__expression, - STATE(4469), 1, + STATE(4590), 1, sym_val_range, ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3533), 2, + ACTIONS(3763), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3535), 2, + ACTIONS(3765), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(3232), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3214), 3, + STATE(3205), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -216317,7 +221003,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(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -216329,15 +221015,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22066] = 4, + [22790] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1506), 1, + STATE(1541), 1, sym_comment, - ACTIONS(3766), 2, + ACTIONS(3559), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3764), 59, + ACTIONS(3557), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -216397,24 +221083,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22138] = 6, + [22862] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3455), 1, - anon_sym_SEMI, - ACTIONS(3458), 1, - anon_sym_LF, - ACTIONS(3800), 1, - ts_builtin_sym_end, - STATE(1507), 1, + STATE(1542), 1, sym_comment, - ACTIONS(3453), 58, + ACTIONS(1657), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1655), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -216467,15 +221151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22214] = 4, + [22934] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1508), 1, + STATE(1543), 1, sym_comment, - ACTIONS(3770), 2, + ACTIONS(3785), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3768), 59, + ACTIONS(3783), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -216535,15 +221219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22286] = 4, + [23006] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1509), 1, + STATE(1544), 1, sym_comment, - ACTIONS(3770), 2, + ACTIONS(3789), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3768), 59, + ACTIONS(3787), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -216603,24 +221287,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22358] = 6, + [23078] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3465), 1, - anon_sym_SEMI, - ACTIONS(3468), 1, - anon_sym_LF, - ACTIONS(3802), 1, - ts_builtin_sym_end, - STATE(1510), 1, + STATE(1545), 1, sym_comment, - ACTIONS(3463), 58, + ACTIONS(3567), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3565), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -216673,15 +221355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22434] = 4, + [23150] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1511), 1, + STATE(1546), 1, sym_comment, - ACTIONS(3503), 2, + ACTIONS(3571), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3501), 59, + ACTIONS(3569), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -216741,15 +221423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22506] = 4, + [23222] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1512), 1, + STATE(1547), 1, sym_comment, - ACTIONS(3399), 2, + ACTIONS(3579), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3397), 59, + ACTIONS(3577), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -216809,15 +221491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22578] = 4, + [23294] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1513), 1, + STATE(1548), 1, sym_comment, - ACTIONS(3475), 2, + ACTIONS(3789), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3473), 59, + ACTIONS(3787), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -216877,15 +221559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22650] = 4, + [23366] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1514), 1, + STATE(1549), 1, sym_comment, - ACTIONS(3487), 2, + ACTIONS(3807), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3485), 59, + ACTIONS(3805), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -216945,15 +221627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22722] = 4, + [23438] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1515), 1, + STATE(1550), 1, sym_comment, - ACTIONS(3407), 2, + ACTIONS(3598), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3405), 59, + ACTIONS(3596), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217013,15 +221695,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22794] = 4, + [23510] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(1516), 1, + ACTIONS(3363), 1, + anon_sym_SEMI, + ACTIONS(3366), 1, + anon_sym_LF, + ACTIONS(3899), 1, + ts_builtin_sym_end, + STATE(1551), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(3361), 58, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [23586] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1552), 1, + sym_comment, + ACTIONS(3606), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1515), 59, + ACTIONS(3604), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217081,15 +221833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22866] = 4, + [23658] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1517), 1, + STATE(1553), 1, sym_comment, - ACTIONS(3491), 2, + ACTIONS(3614), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3489), 59, + ACTIONS(3612), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217149,15 +221901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22938] = 4, + [23730] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1518), 1, + STATE(1554), 1, sym_comment, - ACTIONS(2784), 2, + ACTIONS(3867), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2782), 59, + ACTIONS(3865), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217217,15 +221969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23010] = 4, + [23802] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1519), 1, + STATE(1555), 1, sym_comment, - ACTIONS(3383), 2, + ACTIONS(3385), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3381), 59, + ACTIONS(3383), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217285,15 +222037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23082] = 4, + [23874] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1520), 1, + STATE(1556), 1, sym_comment, - ACTIONS(3427), 2, + ACTIONS(3389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3425), 59, + ACTIONS(3387), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217353,15 +222105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23154] = 4, + [23946] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1521), 1, + STATE(1557), 1, sym_comment, - ACTIONS(3667), 2, + ACTIONS(3331), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3665), 59, + ACTIONS(3329), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217421,24 +222173,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23226] = 6, + [24018] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3679), 1, + STATE(1558), 1, + sym_comment, + ACTIONS(3618), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3616), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, - ACTIONS(3682), 1, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [24090] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1559), 1, + sym_comment, + ACTIONS(3373), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3804), 1, + ACTIONS(3371), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [24162] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1560), 1, + sym_comment, + ACTIONS(3815), 2, ts_builtin_sym_end, - STATE(1522), 1, + anon_sym_LF, + ACTIONS(3813), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [24234] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1561), 1, sym_comment, - ACTIONS(3677), 58, + ACTIONS(3815), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3813), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -217491,15 +222445,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23302] = 4, + [24306] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1523), 1, + STATE(1562), 1, sym_comment, - ACTIONS(3375), 2, + ACTIONS(3823), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3373), 59, + ACTIONS(3821), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217559,24 +222513,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23374] = 6, + [24378] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3595), 1, - anon_sym_SEMI, - ACTIONS(3598), 1, - anon_sym_LF, - ACTIONS(3806), 1, - ts_builtin_sym_end, - STATE(1524), 1, + STATE(1563), 1, sym_comment, - ACTIONS(3593), 58, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3821), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -217629,15 +222581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23450] = 4, + [24450] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1525), 1, + STATE(1564), 1, sym_comment, - ACTIONS(3371), 2, + ACTIONS(3622), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3369), 59, + ACTIONS(3620), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217697,15 +222649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23522] = 4, + [24522] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1526), 1, + STATE(1565), 1, sym_comment, - ACTIONS(3367), 2, + ACTIONS(3634), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3365), 59, + ACTIONS(3632), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217765,15 +222717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23594] = 4, + [24594] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1527), 1, + STATE(1566), 1, sym_comment, - ACTIONS(3036), 2, + ACTIONS(3393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3034), 59, + ACTIONS(3391), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217833,15 +222785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23666] = 4, + [24666] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1528), 1, + STATE(1567), 1, sym_comment, - ACTIONS(3483), 2, + ACTIONS(3393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3481), 59, + ACTIONS(3391), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217901,15 +222853,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23738] = 4, + [24738] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1529), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1538), 1, + sym__flag, + STATE(1568), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4204), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3600), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3602), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [24880] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1539), 1, + sym__flag, + STATE(1569), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4204), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3600), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3602), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [25022] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1540), 1, + sym__flag, + STATE(1570), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4204), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3600), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3602), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [25164] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1571), 1, sym_comment, - ACTIONS(3645), 2, + ACTIONS(3698), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3643), 59, + ACTIONS(3696), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -217969,15 +223230,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23810] = 4, + [25236] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1530), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3889), 1, + anon_sym_DOT, + ACTIONS(3891), 1, + anon_sym_DASH, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1572), 1, sym_comment, - ACTIONS(3479), 2, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4203), 1, + sym__flag, + STATE(4204), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3600), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3602), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3477), 59, + STATE(4624), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [25378] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3889), 1, + anon_sym_DOT, + ACTIONS(3891), 1, + anon_sym_DASH, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1573), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4151), 1, + sym__flag, + STATE(4206), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3483), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3485), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4624), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [25520] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1574), 1, + sym_comment, + ACTIONS(3694), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3692), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218037,15 +223504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23882] = 4, + [25592] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1531), 1, + STATE(1575), 1, sym_comment, - ACTIONS(3411), 2, + ACTIONS(3405), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3409), 59, + ACTIONS(3403), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218105,15 +223572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23954] = 4, + [25664] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1532), 1, + STATE(1576), 1, sym_comment, - ACTIONS(3363), 2, + ACTIONS(3405), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3361), 59, + ACTIONS(3403), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218173,15 +223640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24026] = 4, + [25736] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1533), 1, + STATE(1577), 1, sym_comment, - ACTIONS(3551), 2, + ACTIONS(3409), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3549), 59, + ACTIONS(3407), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218241,15 +223708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24098] = 4, + [25808] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1534), 1, + STATE(1578), 1, sym_comment, - ACTIONS(3523), 2, + ACTIONS(3497), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3521), 59, + ACTIONS(3495), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218309,15 +223776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24170] = 4, + [25880] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1535), 1, + STATE(1579), 1, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3497), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3525), 59, + ACTIONS(3495), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218377,15 +223844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24242] = 4, + [25952] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1536), 1, + STATE(1580), 1, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3493), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3525), 59, + ACTIONS(3491), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218445,15 +223912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24314] = 4, + [26024] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1537), 1, + STATE(1581), 1, sym_comment, - ACTIONS(3431), 2, + ACTIONS(3489), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3429), 59, + ACTIONS(3487), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218513,118 +223980,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24386] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, + [26096] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, + STATE(1582), 1, + sym_comment, + ACTIONS(3457), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3455), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2701), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1538), 1, - sym_comment, - STATE(1566), 1, - sym__flag, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4177), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3280), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [24528] = 4, + anon_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_CARET, + [26168] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1539), 1, + STATE(1583), 1, sym_comment, - ACTIONS(3555), 2, + ACTIONS(3457), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3553), 59, + ACTIONS(3455), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218684,15 +224116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24600] = 4, + [26240] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1540), 1, + STATE(1584), 1, sym_comment, - ACTIONS(3451), 2, + ACTIONS(3433), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3449), 59, + ACTIONS(3431), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218752,15 +224184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24672] = 4, + [26312] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1541), 1, + STATE(1585), 1, sym_comment, - ACTIONS(3415), 2, + ACTIONS(3640), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3413), 59, + ACTIONS(3638), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218820,15 +224252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24744] = 4, + [26384] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1542), 1, + STATE(1586), 1, sym_comment, - ACTIONS(1493), 2, + ACTIONS(3690), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1491), 59, + ACTIONS(3688), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -218888,331 +224320,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24816] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, + [26456] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, + STATE(1587), 1, + sym_comment, + ACTIONS(3686), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3684), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2701), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1543), 1, - sym_comment, - STATE(1561), 1, - sym__flag, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4177), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3280), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [24958] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(2711), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1543), 1, - sym__flag, - STATE(1544), 1, + anon_sym_CARET, + [26528] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1588), 1, sym_comment, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4159), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3509), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3511), 2, + ACTIONS(3381), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 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(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [25100] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(3379), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2701), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1545), 1, - sym_comment, - STATE(1589), 1, - sym__flag, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4159), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3509), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3511), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [25242] = 4, + anon_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_CARET, + [26600] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(1546), 1, - sym_comment, - ACTIONS(3625), 2, - ts_builtin_sym_end, + ACTIONS(3903), 1, + anon_sym_SEMI, + ACTIONS(3906), 1, anon_sym_LF, - ACTIONS(3623), 59, + ACTIONS(3909), 1, + anon_sym_RPAREN, + STATE(1589), 1, + sym_comment, + ACTIONS(3901), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -219265,118 +224526,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25314] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, + [26676] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, + STATE(1590), 1, + sym_comment, + ACTIONS(1515), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1513), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2701), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1547), 1, - sym_comment, - STATE(1557), 1, - sym__flag, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4159), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3509), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3511), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [25456] = 4, + anon_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_CARET, + [26748] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1548), 1, + STATE(1591), 1, sym_comment, - ACTIONS(3359), 2, + ACTIONS(3381), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3357), 59, + ACTIONS(3379), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -219436,15 +224662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25528] = 4, + [26820] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1549), 1, + STATE(1592), 1, sym_comment, - ACTIONS(3419), 2, + ACTIONS(3421), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3417), 59, + ACTIONS(3419), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -219504,24 +224730,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25600] = 6, + [26892] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3810), 1, - anon_sym_SEMI, - ACTIONS(3813), 1, - anon_sym_LF, - ACTIONS(3816), 1, - anon_sym_RPAREN, - STATE(1550), 1, + STATE(1593), 1, sym_comment, - ACTIONS(3808), 58, + ACTIONS(3413), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3411), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -219574,15 +224798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25676] = 4, + [26964] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1551), 1, + STATE(1594), 1, sym_comment, - ACTIONS(1574), 2, + ACTIONS(3439), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1572), 59, + ACTIONS(3437), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -219642,15 +224866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25748] = 4, + [27036] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1552), 1, + STATE(1595), 1, sym_comment, - ACTIONS(3571), 2, + ACTIONS(3453), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3569), 59, + ACTIONS(3451), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -219710,24 +224934,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25820] = 6, + [27108] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3820), 1, - anon_sym_SEMI, - ACTIONS(3823), 1, - anon_sym_LF, - ACTIONS(3826), 1, - anon_sym_RPAREN, - STATE(1553), 1, + STATE(1596), 1, sym_comment, - ACTIONS(3818), 58, + ACTIONS(3583), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3581), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -219780,15 +225002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25896] = 4, + [27180] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1554), 1, + STATE(1597), 1, sym_comment, - ACTIONS(3583), 2, + ACTIONS(3628), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3581), 59, + ACTIONS(3626), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -219848,15 +225070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25968] = 4, + [27252] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1555), 1, + STATE(1598), 1, sym_comment, - ACTIONS(2876), 2, + ACTIONS(3429), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2874), 59, + ACTIONS(3427), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -219916,15 +225138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26040] = 4, + [27324] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1556), 1, + STATE(1599), 1, sym_comment, - ACTIONS(3579), 2, + ACTIONS(3425), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3577), 59, + ACTIONS(3423), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -219984,110 +225206,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26112] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, + [27396] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, + STATE(1600), 1, + sym_comment, + ACTIONS(3425), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3423), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2701), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1557), 1, - sym_comment, - STATE(1558), 1, - sym__flag, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4177), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3280), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [26254] = 39, + anon_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_CARET, + [27468] = 39, ACTIONS(79), 1, anon_sym_not, ACTIONS(81), 1, @@ -220096,78 +225283,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(2760), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2762), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + ACTIONS(2764), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_PLUS, - ACTIONS(2709), 1, + ACTIONS(2770), 1, sym_val_date, - ACTIONS(2711), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3784), 1, + ACTIONS(3887), 1, anon_sym_DASH, - ACTIONS(3786), 1, + ACTIONS(3889), 1, anon_sym_DOT, - STATE(426), 1, + STATE(422), 1, sym__val_number, - STATE(435), 1, + STATE(431), 1, sym__val_number_decimal, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(1558), 1, + STATE(1521), 1, + sym__flag, + STATE(1601), 1, sym_comment, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3002), 1, + STATE(3069), 1, sym_expr_parenthesized, - STATE(3018), 1, + STATE(3080), 1, sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4116), 1, - sym__flag, - STATE(4154), 1, + STATE(4185), 1, sym__expression, - STATE(4469), 1, + STATE(4590), 1, sym_val_range, ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3561), 2, + ACTIONS(3443), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3563), 2, + ACTIONS(3445), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(3282), 2, sym_short_flag, sym_long_flag, ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3214), 3, + STATE(3205), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -220178,7 +225365,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(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -220190,7 +225377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26396] = 39, + [27610] = 39, ACTIONS(79), 1, anon_sym_not, ACTIONS(81), 1, @@ -220199,78 +225386,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(2760), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2762), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + ACTIONS(2764), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_PLUS, - ACTIONS(2709), 1, + ACTIONS(2770), 1, sym_val_date, - ACTIONS(2711), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, + ACTIONS(3887), 1, anon_sym_DASH, - STATE(426), 1, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, sym__val_number, - STATE(435), 1, + STATE(431), 1, sym__val_number_decimal, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(1472), 1, + STATE(1519), 1, sym__flag, - STATE(1559), 1, + STATE(1602), 1, sym_comment, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3002), 1, + STATE(3069), 1, sym_expr_parenthesized, - STATE(3018), 1, + STATE(3080), 1, sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4154), 1, + STATE(4185), 1, sym__expression, - STATE(4469), 1, + STATE(4590), 1, sym_val_range, ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3561), 2, + ACTIONS(3443), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3563), 2, + ACTIONS(3445), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(3232), 2, + STATE(3282), 2, sym_short_flag, sym_long_flag, ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3214), 3, + STATE(3205), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -220281,7 +225468,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(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -220293,15 +225480,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26538] = 4, + [27752] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1560), 1, + STATE(1603), 1, sym_comment, - ACTIONS(3661), 2, + ACTIONS(3583), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3659), 59, + ACTIONS(3581), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -220361,7 +225548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26610] = 39, + [27824] = 39, ACTIONS(79), 1, anon_sym_not, ACTIONS(81), 1, @@ -220370,78 +225557,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2699), 1, + ACTIONS(2760), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2762), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + ACTIONS(2764), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_PLUS, - ACTIONS(2709), 1, + ACTIONS(2770), 1, sym_val_date, - ACTIONS(2711), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, + ACTIONS(3887), 1, anon_sym_DASH, - STATE(426), 1, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, sym__val_number, - STATE(435), 1, + STATE(431), 1, sym__val_number_decimal, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(1561), 1, - sym_comment, - STATE(1621), 1, + STATE(1510), 1, sym__flag, - STATE(2893), 1, + STATE(1604), 1, + sym_comment, + STATE(2955), 1, sym__var, - STATE(3002), 1, + STATE(3069), 1, sym_expr_parenthesized, - STATE(3018), 1, + STATE(3080), 1, sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4154), 1, + STATE(4185), 1, sym__expression, - STATE(4469), 1, + STATE(4590), 1, sym_val_range, ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3561), 2, + ACTIONS(3443), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3563), 2, + ACTIONS(3445), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(3232), 2, + STATE(3282), 2, sym_short_flag, sym_long_flag, ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3214), 3, + STATE(3205), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -220452,7 +225639,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(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -220464,15 +225651,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26752] = 4, + [27966] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1562), 1, + STATE(1605), 1, sym_comment, - ACTIONS(3629), 2, + ACTIONS(3644), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3627), 59, + ACTIONS(3642), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -220532,15 +225719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26824] = 4, + [28038] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1563), 1, + STATE(1606), 1, sym_comment, - ACTIONS(3246), 2, + ACTIONS(1538), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3244), 59, + ACTIONS(1536), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -220600,118 +225787,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26896] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, + [28110] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, + STATE(1607), 1, + sym_comment, + ACTIONS(3652), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3650), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2701), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1501), 1, - sym__flag, - STATE(1564), 1, - sym_comment, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4183), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3585), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3587), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [27038] = 4, + anon_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_CARET, + [28182] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1565), 1, + STATE(1608), 1, sym_comment, - ACTIONS(3543), 2, + ACTIONS(3819), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3541), 59, + ACTIONS(3817), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -220771,221 +225923,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27110] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, + [28254] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, + STATE(1609), 1, + sym_comment, + ACTIONS(3819), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3817), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2701), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, + anon_sym_DOLLAR, + anon_sym_error, anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1477), 1, - sym__flag, - STATE(1566), 1, - sym_comment, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4154), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3561), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3563), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [27252] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, + anon_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_CARET, + [28326] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, + STATE(1610), 1, + sym_comment, + ACTIONS(3815), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3813), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(2701), 1, anon_sym_LPAREN, - ACTIONS(2703), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1483), 1, - sym__flag, - STATE(1567), 1, - sym_comment, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4154), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3561), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3563), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [27394] = 4, + anon_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_CARET, + [28398] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1568), 1, + STATE(1611), 1, sym_comment, - ACTIONS(3391), 2, + ACTIONS(3815), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3389), 59, + ACTIONS(3813), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221045,15 +226127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27466] = 4, + [28470] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1569), 1, + STATE(1612), 1, sym_comment, - ACTIONS(3403), 2, + ACTIONS(3656), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3401), 59, + ACTIONS(3654), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221113,15 +226195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27538] = 4, + [28542] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1570), 1, + STATE(1613), 1, sym_comment, - ACTIONS(3423), 2, + ACTIONS(3381), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3421), 59, + ACTIONS(3379), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221181,15 +226263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27610] = 4, + [28614] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1571), 1, + STATE(1614), 1, sym_comment, - ACTIONS(3653), 2, + ACTIONS(3381), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3651), 59, + ACTIONS(3379), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221249,15 +226331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27682] = 4, + [28686] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1572), 1, + STATE(1615), 1, sym_comment, - ACTIONS(3724), 2, + ACTIONS(2908), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3722), 59, + ACTIONS(2906), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221317,15 +226399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27754] = 4, + [28758] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1573), 1, + STATE(1616), 1, sym_comment, - ACTIONS(3355), 2, + ACTIONS(3563), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3353), 59, + ACTIONS(3561), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221385,15 +226467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27826] = 4, + [28830] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1574), 1, + STATE(1617), 1, sym_comment, - ACTIONS(3720), 2, + ACTIONS(3781), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3718), 59, + ACTIONS(3779), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221453,15 +226535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27898] = 4, + [28902] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1575), 1, + STATE(1618), 1, sym_comment, - ACTIONS(3519), 2, + ACTIONS(3523), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3517), 59, + ACTIONS(3521), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221521,24 +226603,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27970] = 6, + [28974] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3830), 1, - anon_sym_SEMI, - ACTIONS(3833), 1, - anon_sym_LF, - ACTIONS(3836), 1, - anon_sym_RPAREN, - STATE(1576), 1, + STATE(1619), 1, sym_comment, - ACTIONS(3828), 58, + ACTIONS(3523), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3521), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -221591,15 +226671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28046] = 4, + [29046] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1577), 1, + STATE(1620), 1, sym_comment, - ACTIONS(3351), 2, + ACTIONS(1534), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3349), 59, + ACTIONS(1532), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221659,15 +226739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28118] = 4, + [29118] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1578), 1, + STATE(1621), 1, sym_comment, - ACTIONS(3347), 2, + ACTIONS(3777), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3345), 59, + ACTIONS(3775), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221727,22 +226807,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28190] = 4, + [29190] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(1579), 1, - sym_comment, - ACTIONS(3343), 2, - ts_builtin_sym_end, + ACTIONS(3913), 1, + anon_sym_SEMI, + ACTIONS(3916), 1, anon_sym_LF, - ACTIONS(3341), 59, + ACTIONS(3919), 1, + anon_sym_RPAREN, + STATE(1622), 1, + sym_comment, + ACTIONS(3911), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -221795,15 +226877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28262] = 4, + [29266] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1580), 1, + STATE(1623), 1, sym_comment, - ACTIONS(3337), 2, + ACTIONS(3773), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3335), 59, + ACTIONS(3771), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221863,22 +226945,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28334] = 4, + [29338] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(1581), 1, - sym_comment, - ACTIONS(3649), 2, - ts_builtin_sym_end, + ACTIONS(3923), 1, + anon_sym_SEMI, + ACTIONS(3926), 1, anon_sym_LF, - ACTIONS(3647), 59, + ACTIONS(3929), 1, + anon_sym_RPAREN, + STATE(1624), 1, + sym_comment, + ACTIONS(3921), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -221931,15 +227015,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28406] = 4, + [29414] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1582), 1, + STATE(1625), 1, sym_comment, - ACTIONS(3272), 2, + ACTIONS(3666), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3270), 59, + ACTIONS(3664), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -221999,15 +227083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28478] = 4, + [29486] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1583), 1, + STATE(1626), 1, sym_comment, - ACTIONS(3641), 2, + ACTIONS(3674), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3639), 59, + ACTIONS(3672), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222067,15 +227151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28550] = 4, + [29558] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1584), 1, + STATE(1627), 1, sym_comment, - ACTIONS(3292), 2, + ACTIONS(3519), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3290), 59, + ACTIONS(3517), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222135,15 +227219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28622] = 4, + [29630] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1585), 1, + STATE(1628), 1, sym_comment, - ACTIONS(3495), 2, + ACTIONS(3417), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3493), 59, + ACTIONS(3415), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222203,118 +227287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28694] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3784), 1, - anon_sym_DASH, - ACTIONS(3786), 1, - anon_sym_DOT, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1586), 1, - sym_comment, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4123), 1, - sym__flag, - STATE(4153), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3379), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4842), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 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(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [28836] = 4, + [29702] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1587), 1, + STATE(1629), 1, sym_comment, - ACTIONS(3507), 2, + ACTIONS(3769), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3505), 59, + ACTIONS(3767), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222374,221 +227355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28908] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, + [29774] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1588), 1, - sym_comment, - STATE(1610), 1, - sym__flag, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4153), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3379), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 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(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [29050] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1559), 1, - sym__flag, - STATE(1589), 1, - sym_comment, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4177), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3280), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 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(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [29192] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(1590), 1, + STATE(1630), 1, sym_comment, - ACTIONS(3609), 2, + ACTIONS(3761), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3607), 59, + ACTIONS(3759), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222648,15 +227423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29264] = 4, + [29846] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1591), 1, + STATE(1631), 1, sym_comment, - ACTIONS(3605), 2, + ACTIONS(3757), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3603), 59, + ACTIONS(3755), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222716,15 +227491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29336] = 4, + [29918] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1592), 1, + STATE(1632), 1, sym_comment, - ACTIONS(3637), 2, + ACTIONS(3751), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3635), 59, + ACTIONS(3749), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222784,15 +227559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29408] = 4, + [29990] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1593), 1, + STATE(1633), 1, sym_comment, - ACTIONS(3439), 2, + ACTIONS(3747), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3437), 59, + ACTIONS(3745), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222852,15 +227627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29480] = 4, + [30062] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1594), 1, + STATE(1634), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(3733), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3732), 59, + ACTIONS(3731), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222920,15 +227695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29552] = 4, + [30134] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1595), 1, + STATE(1635), 1, sym_comment, - ACTIONS(3329), 2, + ACTIONS(3729), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3327), 59, + ACTIONS(3727), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -222988,15 +227763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29624] = 4, + [30206] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1596), 1, + STATE(1636), 1, sym_comment, - ACTIONS(3325), 2, + ACTIONS(3725), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3323), 59, + ACTIONS(3723), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223056,15 +227831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29696] = 4, + [30278] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1597), 1, + STATE(1637), 1, sym_comment, - ACTIONS(3617), 2, + ACTIONS(3353), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3615), 59, + ACTIONS(3351), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223124,15 +227899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29768] = 4, + [30350] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1598), 1, + STATE(1638), 1, sym_comment, - ACTIONS(1509), 2, + ACTIONS(3335), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1507), 59, + ACTIONS(3333), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223192,15 +227967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29840] = 4, + [30422] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1599), 1, + STATE(1639), 1, sym_comment, - ACTIONS(3266), 2, + ACTIONS(3721), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3264), 59, + ACTIONS(3719), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223260,219 +228035,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29912] = 4, + [30494] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1600), 1, - sym_comment, - ACTIONS(3250), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3248), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, anon_sym_LBRACK, + ACTIONS(2762), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(2764), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(2768), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2770), 1, sym_val_date, + ACTIONS(2772), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2776), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [29984] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(1601), 1, - sym_comment, - ACTIONS(3250), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3248), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, + ACTIONS(3887), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, + ACTIONS(3889), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1512), 1, + sym__flag, + STATE(1640), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4190), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2774), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [30056] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(1602), 1, - sym_comment, - ACTIONS(3309), 2, + ACTIONS(3668), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3670), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3307), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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, - anon_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_CARET, - [30128] = 4, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [30636] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1603), 1, + STATE(1641), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(3662), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3732), 59, + ACTIONS(3660), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223532,15 +228206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30200] = 4, + [30708] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1604), 1, + STATE(1642), 1, sym_comment, - ACTIONS(3708), 2, + ACTIONS(3717), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3706), 59, + ACTIONS(3715), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223600,15 +228274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30272] = 4, + [30780] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1605), 1, + STATE(1643), 1, sym_comment, - ACTIONS(3305), 2, + ACTIONS(3345), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3303), 59, + ACTIONS(3343), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223668,15 +228342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30344] = 4, + [30852] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1606), 1, + STATE(1644), 1, sym_comment, - ACTIONS(3262), 2, + ACTIONS(3377), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3260), 59, + ACTIONS(3375), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223736,15 +228410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30416] = 4, + [30924] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1607), 1, + STATE(1645), 1, sym_comment, - ACTIONS(3621), 2, + ACTIONS(3713), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3619), 59, + ACTIONS(3711), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223804,15 +228478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30488] = 4, + [30996] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1608), 1, + STATE(1646), 1, sym_comment, - ACTIONS(3613), 2, + ACTIONS(3709), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3611), 59, + ACTIONS(3707), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223872,15 +228546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30560] = 4, + [31068] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1609), 1, + STATE(1647), 1, sym_comment, - ACTIONS(3262), 2, + ACTIONS(3705), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3260), 59, + ACTIONS(3703), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -223940,118 +228614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30632] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3784), 1, - anon_sym_DASH, - ACTIONS(3786), 1, - anon_sym_DOT, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1610), 1, - sym_comment, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4162), 1, - sym__flag, - STATE(4163), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3317), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3319), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4842), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 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(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [30774] = 4, + [31140] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1611), 1, + STATE(1648), 1, sym_comment, - ACTIONS(3704), 2, + ACTIONS(3682), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3702), 59, + ACTIONS(3680), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224111,15 +228682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30846] = 4, + [31212] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1612), 1, + STATE(1649), 1, sym_comment, - ACTIONS(3515), 2, + ACTIONS(2834), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3513), 59, + ACTIONS(2832), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224179,15 +228750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30918] = 4, + [31284] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1613), 1, + STATE(1650), 1, sym_comment, - ACTIONS(3559), 2, + ACTIONS(3678), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3557), 59, + ACTIONS(3676), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224247,15 +228818,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30990] = 4, + [31356] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, ACTIONS(105), 1, anon_sym_POUND, - STATE(1614), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1568), 1, + sym__flag, + STATE(1651), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4206), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3483), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3485), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [31498] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1569), 1, + sym__flag, + STATE(1652), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4206), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3483), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3485), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [31640] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1570), 1, + sym__flag, + STATE(1653), 1, + sym_comment, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4206), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3483), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3485), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [31782] = 39, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_PLUS, + ACTIONS(2770), 1, + sym_val_date, + ACTIONS(2772), 1, + anon_sym_DQUOTE, + ACTIONS(2776), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(3889), 1, + anon_sym_DOT, + STATE(422), 1, + sym__val_number, + STATE(431), 1, + sym__val_number_decimal, + STATE(451), 1, + sym_val_number, + STATE(1572), 1, + sym__flag, + STATE(1654), 1, sym_comment, - ACTIONS(3689), 2, + STATE(2955), 1, + sym__var, + STATE(3069), 1, + sym_expr_parenthesized, + STATE(3080), 1, + sym_val_variable, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4206), 1, + sym__expression, + STATE(4590), 1, + sym_val_range, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2774), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3483), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3485), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3687), 59, + STATE(3282), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3205), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(89), 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(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [31924] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3933), 1, + anon_sym_LF, + STATE(1655), 1, + sym_comment, + ACTIONS(3931), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224315,15 +229297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31062] = 4, + [31995] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1615), 1, - sym_comment, - ACTIONS(3700), 2, - ts_builtin_sym_end, + ACTIONS(3937), 1, anon_sym_LF, - ACTIONS(3698), 59, + STATE(1656), 1, + sym_comment, + ACTIONS(3935), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224383,15 +229364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31134] = 4, + [32066] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1616), 1, - sym_comment, - ACTIONS(3778), 2, - ts_builtin_sym_end, + ACTIONS(3939), 1, anon_sym_LF, - ACTIONS(3776), 59, + STATE(1657), 1, + sym_comment, + ACTIONS(3361), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224451,15 +229431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31206] = 4, + [32137] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1617), 1, - sym_comment, - ACTIONS(3443), 2, - ts_builtin_sym_end, + ACTIONS(3943), 1, anon_sym_LF, - ACTIONS(3441), 59, + STATE(1658), 1, + sym_comment, + ACTIONS(3941), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224519,15 +229498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31278] = 4, + [32208] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1618), 1, - sym_comment, - ACTIONS(3333), 2, - ts_builtin_sym_end, + ACTIONS(3947), 1, anon_sym_LF, - ACTIONS(3331), 59, + STATE(1659), 1, + sym_comment, + ACTIONS(3945), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224587,15 +229565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31350] = 4, + [32279] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1619), 1, - sym_comment, - ACTIONS(3250), 2, - ts_builtin_sym_end, + ACTIONS(3951), 1, anon_sym_LF, - ACTIONS(3248), 59, + STATE(1660), 1, + sym_comment, + ACTIONS(3949), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224655,15 +229632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31422] = 4, + [32350] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1620), 1, - sym_comment, - ACTIONS(3250), 2, - ts_builtin_sym_end, + ACTIONS(3955), 1, anon_sym_LF, - ACTIONS(3248), 59, + STATE(1661), 1, + sym_comment, + ACTIONS(3953), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224723,118 +229699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31494] = 39, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, + [32421] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(2699), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_PLUS, - ACTIONS(2709), 1, - sym_val_date, - ACTIONS(2711), 1, - anon_sym_DQUOTE, - ACTIONS(2715), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3786), 1, - anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_DASH, - STATE(426), 1, - sym__val_number, - STATE(435), 1, - sym__val_number_decimal, - STATE(464), 1, - sym_val_number, - STATE(1503), 1, - sym__flag, - STATE(1621), 1, - sym_comment, - STATE(2893), 1, - sym__var, - STATE(3002), 1, - sym_expr_parenthesized, - STATE(3018), 1, - sym_val_variable, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4158), 1, - sym__expression, - STATE(4469), 1, - sym_val_range, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3710), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3712), 2, - ts_builtin_sym_end, + ACTIONS(3957), 1, anon_sym_LF, - STATE(3232), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3214), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(89), 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(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [31636] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(1622), 1, + STATE(1662), 1, sym_comment, - ACTIONS(3242), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3240), 59, + ACTIONS(3877), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224894,15 +229766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31708] = 4, + [32492] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1623), 1, - sym_comment, - ACTIONS(3242), 2, - ts_builtin_sym_end, + ACTIONS(3961), 1, anon_sym_LF, - ACTIONS(3240), 59, + STATE(1663), 1, + sym_comment, + ACTIONS(3959), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -224962,15 +229833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31780] = 4, + [32563] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1624), 1, - sym_comment, - ACTIONS(3671), 2, - ts_builtin_sym_end, + ACTIONS(3965), 1, anon_sym_LF, - ACTIONS(3669), 59, + STATE(1664), 1, + sym_comment, + ACTIONS(3963), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225030,15 +229900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31852] = 4, + [32634] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1625), 1, - sym_comment, - ACTIONS(3675), 2, - ts_builtin_sym_end, + ACTIONS(3969), 1, anon_sym_LF, - ACTIONS(3673), 59, + STATE(1665), 1, + sym_comment, + ACTIONS(3967), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225098,14 +229967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31924] = 4, + [32705] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3838), 1, + ACTIONS(3973), 1, anon_sym_LF, - STATE(1626), 1, + STATE(1666), 1, sym_comment, - ACTIONS(3463), 59, + ACTIONS(3971), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225165,14 +230034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31995] = 4, + [32776] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3842), 1, + ACTIONS(3977), 1, anon_sym_LF, - STATE(1627), 1, + STATE(1667), 1, sym_comment, - ACTIONS(3840), 59, + ACTIONS(3975), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225232,14 +230101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32066] = 4, + [32847] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3846), 1, + ACTIONS(3979), 1, anon_sym_LF, - STATE(1628), 1, + STATE(1668), 1, sym_comment, - ACTIONS(3844), 59, + ACTIONS(3537), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225299,14 +230168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32137] = 4, + [32918] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3850), 1, + ACTIONS(3981), 1, anon_sym_LF, - STATE(1629), 1, + STATE(1669), 1, sym_comment, - ACTIONS(3848), 59, + ACTIONS(3921), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225366,14 +230235,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32208] = 4, + [32989] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3983), 1, anon_sym_LF, - STATE(1630), 1, + STATE(1670), 1, sym_comment, - ACTIONS(3852), 59, + ACTIONS(3547), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225433,14 +230302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32279] = 4, + [33060] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3858), 1, + ACTIONS(3987), 1, anon_sym_LF, - STATE(1631), 1, + STATE(1671), 1, sym_comment, - ACTIONS(3856), 59, + ACTIONS(3985), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225500,14 +230369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32350] = 4, + [33131] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3860), 1, + ACTIONS(3991), 1, anon_sym_LF, - STATE(1632), 1, + STATE(1672), 1, sym_comment, - ACTIONS(3593), 59, + ACTIONS(3989), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225567,14 +230436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32421] = 4, + [33202] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3862), 1, + ACTIONS(3993), 1, anon_sym_LF, - STATE(1633), 1, + STATE(1673), 1, sym_comment, - ACTIONS(3677), 59, + ACTIONS(3901), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225634,14 +230503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32492] = 4, + [33273] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3995), 1, anon_sym_LF, - STATE(1634), 1, + STATE(1674), 1, sym_comment, - ACTIONS(3864), 59, + ACTIONS(3735), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225701,14 +230570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32563] = 4, + [33344] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3999), 1, anon_sym_LF, - STATE(1635), 1, + STATE(1675), 1, sym_comment, - ACTIONS(3868), 59, + ACTIONS(3997), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225768,14 +230637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32634] = 4, + [33415] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3874), 1, + ACTIONS(4001), 1, anon_sym_LF, - STATE(1636), 1, + STATE(1676), 1, sym_comment, - ACTIONS(3872), 59, + ACTIONS(3911), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225835,14 +230704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32705] = 4, + [33486] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3876), 1, + ACTIONS(4005), 1, anon_sym_LF, - STATE(1637), 1, + STATE(1677), 1, sym_comment, - ACTIONS(3808), 59, + ACTIONS(4003), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225902,14 +230771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32776] = 4, + [33557] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3880), 1, + ACTIONS(4009), 1, anon_sym_LF, - STATE(1638), 1, + STATE(1678), 1, sym_comment, - ACTIONS(3878), 59, + ACTIONS(4007), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -225969,14 +230838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32847] = 4, + [33628] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3884), 1, + ACTIONS(4013), 1, anon_sym_LF, - STATE(1639), 1, + STATE(1679), 1, sym_comment, - ACTIONS(3882), 59, + ACTIONS(4011), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -226036,14 +230905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32918] = 4, + [33699] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(4017), 1, anon_sym_LF, - STATE(1640), 1, + STATE(1680), 1, sym_comment, - ACTIONS(3453), 59, + ACTIONS(4015), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -226103,66 +230972,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32989] = 4, - ACTIONS(105), 1, + [33770] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, - anon_sym_LF, - STATE(1641), 1, + STATE(1681), 1, sym_comment, - ACTIONS(3888), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(4019), 17, + ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226170,29 +230995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33060] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LF, - STATE(1642), 1, - sym_comment, - ACTIONS(3892), 59, + ACTIONS(4021), 42, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -226204,8 +231019,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, anon_sym_try, anon_sym_return, anon_sym_source, @@ -226215,199 +231028,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide_DASHenv, anon_sym_overlay, anon_sym_where, - anon_sym_PLUS, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, anon_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_CARET, - [33131] = 4, - ACTIONS(105), 1, + [33840] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LF, - STATE(1643), 1, + ACTIONS(4025), 1, + anon_sym_DOT2, + ACTIONS(4027), 1, + aux_sym_unquoted_token4, + ACTIONS(4029), 1, + aux_sym_unquoted_token6, + STATE(1682), 1, sym_comment, - ACTIONS(3896), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(4023), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(1375), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1377), 40, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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_CARET, - [33202] = 4, - ACTIONS(105), 1, + [33918] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3902), 1, - anon_sym_LF, - STATE(1644), 1, + ACTIONS(4031), 1, + anon_sym_DOT2, + STATE(1683), 1, sym_comment, - ACTIONS(3900), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, + STATE(1687), 1, + aux_sym_cell_path_repeat1, + STATE(1928), 1, + sym_path, + ACTIONS(1409), 13, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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_CARET, - [33273] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LF, - STATE(1645), 1, - sym_comment, - ACTIONS(3904), 59, + ACTIONS(1407), 42, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -226415,66 +231170,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [33993] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4031), 1, + anon_sym_DOT2, + STATE(1684), 1, + sym_comment, + STATE(1685), 1, + sym_path, + STATE(1945), 1, + sym_cell_path, + ACTIONS(1402), 13, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, aux_sym__val_number_token1, aux_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_CARET, - [33344] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3910), 1, - anon_sym_LF, - STATE(1646), 1, - sym_comment, - ACTIONS(3908), 59, + ACTIONS(1400), 42, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -226482,66 +231238,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [34068] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4031), 1, + anon_sym_DOT2, + STATE(1683), 1, + aux_sym_cell_path_repeat1, + STATE(1685), 1, + sym_comment, + STATE(1928), 1, + sym_path, + ACTIONS(1396), 13, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, aux_sym__val_number_token1, aux_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_CARET, - [33415] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3912), 1, - anon_sym_LF, - STATE(1647), 1, - sym_comment, - ACTIONS(3828), 59, + ACTIONS(1394), 42, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -226549,89 +231306,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [33486] = 4, - ACTIONS(105), 1, + aux_sym__record_key_token2, + [34143] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3916), 1, - anon_sym_LF, - STATE(1648), 1, + STATE(1686), 1, sym_comment, - ACTIONS(3914), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(4035), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226639,29 +231334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33557] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_LF, - STATE(1649), 1, - sym_comment, - ACTIONS(3790), 59, + ACTIONS(4033), 42, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -226673,8 +231358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, anon_sym_try, anon_sym_return, anon_sym_source, @@ -226684,132 +231367,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide_DASHenv, anon_sym_overlay, anon_sym_where, - anon_sym_PLUS, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, anon_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_CARET, - [33628] = 4, - ACTIONS(105), 1, + [34212] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3922), 1, - anon_sym_LF, - STATE(1650), 1, + ACTIONS(4037), 1, + anon_sym_DOT2, + STATE(1928), 1, + sym_path, + STATE(1687), 2, sym_comment, - ACTIONS(3920), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, + aux_sym_cell_path_repeat1, + ACTIONS(1389), 13, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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_CARET, - [33699] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_LF, - STATE(1651), 1, - sym_comment, - ACTIONS(3818), 59, + ACTIONS(1387), 42, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -226817,36 +231438,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [33770] = 4, + aux_sym__record_key_token2, + [34285] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1652), 1, + STATE(1688), 1, sym_comment, - ACTIONS(3926), 17, - ts_builtin_sym_end, + ACTIONS(4042), 16, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -226863,7 +231466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3928), 42, + ACTIONS(4040), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -226906,86 +231509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [33840] = 4, + [34354] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1653), 1, - sym_comment, - ACTIONS(3932), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3930), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [33909] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(4044), 1, anon_sym_DOT2, - ACTIONS(3938), 1, - aux_sym_unquoted_token4, - ACTIONS(3940), 1, - aux_sym_unquoted_token6, - STATE(1654), 1, + STATE(1940), 1, + sym_path, + STATE(1689), 2, sym_comment, - ACTIONS(3934), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(1369), 13, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -226999,7 +231533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1371), 40, + aux_sym_unquoted_token1, + ACTIONS(1389), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -227040,157 +231575,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [33986] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1655), 1, - sym_comment, - ACTIONS(3944), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3942), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [34055] = 37, + [34426] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3948), 1, + ACTIONS(4049), 1, anon_sym_RBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1656), 1, + STATE(511), 1, + sym__val_number, + STATE(1690), 1, sym_comment, - STATE(1694), 1, + STATE(1753), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -227202,21 +231672,22 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34189] = 6, + [34560] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1657), 1, + ACTIONS(4057), 1, + anon_sym_DOT2, + STATE(1691), 1, sym_comment, - STATE(1690), 1, - aux_sym_cell_path_repeat1, - STATE(1908), 1, + STATE(1707), 1, sym_path, - ACTIONS(1438), 13, + STATE(1947), 1, + sym_cell_path, + ACTIONS(1469), 12, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -227225,7 +231696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1436), 42, + ACTIONS(1467), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -227268,156 +231739,447 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [34261] = 7, + [34634] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(3013), 1, + anon_sym_DASH, + ACTIONS(3019), 1, + anon_sym_PLUS, + ACTIONS(3021), 1, + anon_sym_null, + ACTIONS(3025), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3035), 1, + anon_sym_DQUOTE, + ACTIONS(3039), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3041), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3043), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_DOT, + ACTIONS(4055), 1, + sym_val_date, + ACTIONS(4060), 1, + anon_sym_RBRACK, + STATE(484), 1, + sym__val_number_decimal, + STATE(507), 1, + sym_val_number, + STATE(511), 1, + sym__val_number, + STATE(1692), 1, + sym_comment, + STATE(1753), 1, + aux_sym_val_list_repeat1, + STATE(3192), 1, + sym__var, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, + sym__str_double_quotes, + STATE(3438), 1, + sym__list_item_expression, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3037), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3439), 2, + sym_val_range, + sym__value, + ACTIONS(3027), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3029), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(3031), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3432), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(3475), 11, + sym_val_nothing, + sym_val_bool, + 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, + [34768] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(4062), 1, anon_sym_DOT2, - STATE(1658), 1, + STATE(1689), 1, + aux_sym_cell_path_repeat1, + STATE(1693), 1, sym_comment, - STATE(1660), 1, + STATE(1940), 1, sym_path, - STATE(1907), 1, - sym_cell_path, - ACTIONS(1401), 12, + ACTIONS(1407), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1409), 40, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(1399), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + [34842] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(3013), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(3019), 1, + anon_sym_PLUS, + ACTIONS(3021), 1, + anon_sym_null, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3035), 1, + anon_sym_DQUOTE, + ACTIONS(3039), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3041), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3043), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_DOT, + ACTIONS(4055), 1, + sym_val_date, + ACTIONS(4064), 1, + anon_sym_RBRACK, + STATE(484), 1, + sym__val_number_decimal, + STATE(507), 1, + sym_val_number, + STATE(511), 1, + sym__val_number, + STATE(1694), 1, + sym_comment, + STATE(1696), 1, + aux_sym_val_list_repeat1, + STATE(3192), 1, + sym__var, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3358), 1, + sym_val_list, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, + sym__str_double_quotes, + STATE(3438), 1, + sym__list_item_expression, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3037), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3439), 2, + sym_val_range, + sym__value, + ACTIONS(3027), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3029), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [34335] = 7, + ACTIONS(3031), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3432), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(3475), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [34978] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3957), 1, + ACTIONS(4062), 1, anon_sym_DOT2, - STATE(1659), 1, + STATE(1695), 1, sym_comment, - STATE(1660), 1, + STATE(1708), 1, sym_path, - STATE(1915), 1, + STATE(2248), 1, sym_cell_path, - ACTIONS(1397), 12, + ACTIONS(1455), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1457), 40, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(1395), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + [35052] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(3013), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(3019), 1, + anon_sym_PLUS, + ACTIONS(3021), 1, + anon_sym_null, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3035), 1, + anon_sym_DQUOTE, + ACTIONS(3039), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3041), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3043), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_DOT, + ACTIONS(4055), 1, + sym_val_date, + ACTIONS(4066), 1, + anon_sym_RBRACK, + STATE(484), 1, + sym__val_number_decimal, + STATE(507), 1, + sym_val_number, + STATE(511), 1, + sym__val_number, + STATE(1696), 1, + sym_comment, + STATE(1753), 1, + aux_sym_val_list_repeat1, + STATE(3192), 1, + sym__var, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, + sym__str_double_quotes, + STATE(3438), 1, + sym__list_item_expression, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3037), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3439), 2, + sym_val_range, + sym__value, + ACTIONS(3027), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3029), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [34409] = 7, + ACTIONS(3031), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3432), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(3475), 11, + sym_val_nothing, + sym_val_bool, + 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, + [35186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3960), 1, - anon_sym_DOT2, - STATE(1657), 1, - aux_sym_cell_path_repeat1, - STATE(1660), 1, + ACTIONS(4068), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4070), 1, + aux_sym__immediate_decimal_token2, + STATE(1697), 1, sym_comment, - STATE(1908), 1, - sym_path, - ACTIONS(1442), 12, + ACTIONS(2908), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -227426,7 +232188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1440), 42, + ACTIONS(2906), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -227469,94 +232231,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [34483] = 38, + [35258] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(3962), 1, + ACTIONS(4072), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1661), 1, + STATE(511), 1, + sym__val_number, + STATE(1698), 1, sym_comment, - STATE(1673), 1, + STATE(1753), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3271), 1, - sym_val_list, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -227564,97 +232324,194 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [34619] = 38, + [35392] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(3964), 1, + ACTIONS(4074), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1662), 1, - sym_comment, - STATE(1663), 1, + STATE(511), 1, + sym__val_number, + STATE(1692), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(1699), 1, + sym_comment, + STATE(3192), 1, sym__var, - STATE(3315), 1, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3385), 1, sym_val_list, - STATE(3331), 1, + STATE(3415), 1, sym_val_variable, - STATE(3371), 1, - sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, + STATE(3475), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [35528] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4082), 1, + anon_sym_DASH, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4086), 1, + anon_sym_DOT, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(436), 1, + sym__val_number, + STATE(471), 1, + sym_val_number, + STATE(502), 1, + sym__val_number_decimal, + STATE(1700), 1, + sym_comment, + STATE(2079), 1, + sym__flag, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4435), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + STATE(3604), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3473), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -227662,95 +232519,193 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [34755] = 37, + [35662] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(4082), 1, anon_sym_DASH, - ACTIONS(3067), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(4086), 1, + anon_sym_DOT, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(436), 1, + sym__val_number, + STATE(471), 1, + sym_val_number, + STATE(502), 1, + sym__val_number_decimal, + STATE(1701), 1, + sym_comment, + STATE(2077), 1, + sym__flag, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4436), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + STATE(3604), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3473), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2896), 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(3129), 11, + sym_val_nothing, + sym_val_bool, + 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, + [35796] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(3013), 1, + anon_sym_DASH, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(3966), 1, + ACTIONS(4106), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1663), 1, + STATE(511), 1, + sym__val_number, + STATE(1702), 1, sym_comment, - STATE(1694), 1, + STATE(1753), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -227762,92 +232717,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34889] = 37, + [35930] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(3968), 1, + ACTIONS(4108), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1664), 1, - sym_comment, - STATE(1694), 1, + STATE(511), 1, + sym__val_number, + STATE(1698), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(1703), 1, + sym_comment, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3380), 1, + sym_val_list, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -227855,96 +232812,95 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [35023] = 37, + [36066] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3976), 1, + ACTIONS(4082), 1, anon_sym_DASH, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, + ACTIONS(4086), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3990), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, + STATE(471), 1, sym_val_number, - STATE(498), 1, + STATE(502), 1, sym__val_number_decimal, - STATE(1665), 1, + STATE(1704), 1, sym_comment, - STATE(1930), 1, + STATE(2026), 1, sym__flag, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, sym_val_variable, - STATE(3485), 1, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4351), 1, + STATE(4326), 1, sym__expression, - STATE(4514), 1, + STATE(4782), 1, sym_val_range, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - STATE(3537), 2, + STATE(3604), 2, sym_short_flag, sym_long_flag, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3421), 3, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 6, + ACTIONS(2896), 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(3219), 11, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -227956,92 +232912,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35157] = 37, + [36200] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4000), 1, + ACTIONS(4110), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1666), 1, + STATE(511), 1, + sym__val_number, + STATE(1705), 1, sym_comment, - STATE(1694), 1, + STATE(1730), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -228053,22 +233009,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35291] = 7, + [36334] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3960), 1, - anon_sym_DOT2, - STATE(1667), 1, + STATE(1706), 1, sym_comment, - STATE(1698), 1, - sym_path, - STATE(2022), 1, - sym_cell_path, - ACTIONS(1397), 12, + ACTIONS(1439), 15, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -228077,7 +233030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1395), 42, + ACTIONS(1437), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -228120,18 +233073,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [35365] = 7, + [36402] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3960), 1, + ACTIONS(4031), 1, anon_sym_DOT2, - STATE(1668), 1, + STATE(1707), 1, sym_comment, - STATE(1690), 1, + STATE(1713), 1, aux_sym_cell_path_repeat1, - STATE(1908), 1, + STATE(1928), 1, sym_path, - ACTIONS(1438), 12, + ACTIONS(1396), 12, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -228144,7 +233097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1436), 42, + ACTIONS(1394), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -228187,190 +233140,161 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [35439] = 38, + [36476] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4062), 1, + anon_sym_DOT2, + STATE(1693), 1, + aux_sym_cell_path_repeat1, + STATE(1708), 1, + sym_comment, + STATE(1940), 1, + sym_path, + ACTIONS(1394), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1396), 40, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [36550] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4002), 1, + ACTIONS(4112), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1669), 1, + STATE(511), 1, + sym__val_number, + STATE(1709), 1, sym_comment, - STATE(1676), 1, + STATE(1710), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3259), 1, + STATE(3301), 1, sym_val_list, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [35575] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3976), 1, - anon_sym_DASH, - ACTIONS(3978), 1, - anon_sym_LBRACE, - ACTIONS(3980), 1, - anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(1670), 1, - sym_comment, - STATE(2183), 1, - sym__flag, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4410), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - STATE(3537), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 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(3219), 11, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -228378,98 +233302,95 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [35709] = 38, + [36686] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4004), 1, + ACTIONS(4114), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1656), 1, - aux_sym_val_list_repeat1, - STATE(1671), 1, + STATE(511), 1, + sym__val_number, + STATE(1710), 1, sym_comment, - STATE(3168), 1, + STATE(1753), 1, + aux_sym_val_list_repeat1, + STATE(3192), 1, sym__var, - STATE(3300), 1, - sym_val_list, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -228477,213 +233398,154 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [35845] = 37, + [36820] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3976), 1, + ACTIONS(4116), 1, + anon_sym_DOT2, + ACTIONS(4118), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4120), 1, + aux_sym_unquoted_token2, + STATE(1711), 1, + sym_comment, + ACTIONS(1445), 14, + anon_sym_GT, anon_sym_DASH, - ACTIONS(3978), 1, - anon_sym_LBRACE, - ACTIONS(3980), 1, + anon_sym_in, + anon_sym__, anon_sym_DOT, - ACTIONS(3982), 1, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(1672), 1, - sym_comment, - STATE(2003), 1, - sym__flag, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4337), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - STATE(3537), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3992), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 6, + aux_sym_unquoted_token1, + ACTIONS(1447), 40, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, - STATE(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [35979] = 37, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [36894] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, - anon_sym_LPAREN, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(4062), 1, + anon_sym_DOT2, + STATE(1708), 1, + sym_path, + STATE(1712), 1, + sym_comment, + STATE(2140), 1, + sym_cell_path, + ACTIONS(1459), 14, + anon_sym_GT, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3073), 1, - anon_sym_null, - ACTIONS(3077), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, - anon_sym_DQUOTE, - ACTIONS(3091), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1461), 40, anon_sym_LBRACK, - ACTIONS(3950), 1, - anon_sym_DOT, - ACTIONS(3952), 1, - sym_val_date, - ACTIONS(4006), 1, - anon_sym_RBRACK, - STATE(481), 1, - sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, - sym_val_number, - STATE(1673), 1, - sym_comment, - STATE(1694), 1, - aux_sym_val_list_repeat1, - STATE(3168), 1, - sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, - sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, - sym__str_double_quotes, - STATE(3438), 1, - sym__list_item_expression, - ACTIONS(3075), 2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3423), 2, - sym_val_range, - sym__value, - ACTIONS(3079), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3442), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(3413), 11, - sym_val_nothing, - sym_val_bool, - 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, - [36113] = 6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [36968] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4010), 1, - aux_sym__immediate_decimal_token2, - STATE(1674), 1, + STATE(1687), 1, + aux_sym_cell_path_repeat1, + STATE(1713), 1, sym_comment, - ACTIONS(2808), 13, + STATE(1928), 1, + sym_path, + ACTIONS(1409), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -228697,7 +233559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2806), 42, + ACTIONS(1407), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -228740,92 +233602,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [36185] = 37, + [37040] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4012), 1, + ACTIONS(4122), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1675), 1, + STATE(511), 1, + sym__val_number, + STATE(1714), 1, sym_comment, - STATE(1694), 1, + STATE(1737), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3370), 1, + sym_val_list, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -228833,96 +233697,97 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [36319] = 37, + [37176] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4014), 1, + ACTIONS(4124), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1676), 1, + STATE(511), 1, + sym__val_number, + STATE(1715), 1, sym_comment, - STATE(1694), 1, + STATE(1718), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3337), 1, + sym_val_list, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -228930,98 +233795,95 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [36453] = 38, + [37312] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(4082), 1, anon_sym_DASH, - ACTIONS(3067), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(4086), 1, + anon_sym_DOT, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, - anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3950), 1, - anon_sym_DOT, - ACTIONS(3952), 1, - sym_val_date, - ACTIONS(4016), 1, - anon_sym_RBRACK, - STATE(481), 1, - sym__val_number_decimal, - STATE(508), 1, + STATE(436), 1, sym__val_number, - STATE(511), 1, + STATE(471), 1, sym_val_number, - STATE(1677), 1, + STATE(502), 1, + sym__val_number_decimal, + STATE(1716), 1, sym_comment, - STATE(1689), 1, - aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(2032), 1, + sym__flag, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, sym__var, - STATE(3296), 1, - sym_val_list, - STATE(3331), 1, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, sym_val_variable, - STATE(3371), 1, + STATE(3381), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, - sym__str_double_quotes, - STATE(3438), 1, - sym__list_item_expression, - ACTIONS(3075), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3089), 2, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4336), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, - sym_val_range, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + STATE(3604), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3473), 3, + sym_expr_unary, + sym_expr_binary, sym__value, - ACTIONS(3079), 3, + ACTIONS(2896), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3442), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(3413), 10, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -229029,97 +233891,163 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [36589] = 38, + [37446] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4126), 1, + anon_sym_DOT2, + STATE(1707), 1, + sym_path, + STATE(1717), 1, + sym_comment, + STATE(1951), 1, + sym_cell_path, + ACTIONS(1402), 12, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1400), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [37520] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4018), 1, + ACTIONS(4129), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1678), 1, + STATE(511), 1, + sym__val_number, + STATE(1718), 1, sym_comment, - STATE(1682), 1, + STATE(1753), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3257), 1, - sym_val_list, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -229127,194 +234055,365 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [36725] = 37, + [37654] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4062), 1, + anon_sym_DOT2, + STATE(1719), 1, + sym_comment, + STATE(1720), 1, + aux_sym_cell_path_repeat1, + STATE(1940), 1, + sym_path, + ACTIONS(1394), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1396), 40, anon_sym_LBRACK, - ACTIONS(3972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(3976), 1, - anon_sym_DASH, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [37728] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1689), 1, + aux_sym_cell_path_repeat1, + STATE(1720), 1, + sym_comment, + STATE(1940), 1, + sym_path, + ACTIONS(1407), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, anon_sym_DOT, - ACTIONS(3982), 1, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1409), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(1679), 1, - sym_comment, - STATE(2008), 1, - sym__flag, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4348), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + [37800] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4131), 1, + anon_sym_DOT2, + STATE(1719), 1, + sym_path, + STATE(1721), 1, + sym_comment, + STATE(1950), 1, + sym_cell_path, + ACTIONS(1400), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1402), 40, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - STATE(3537), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3992), 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, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37874] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4062), 1, + anon_sym_DOT2, + STATE(1708), 1, + sym_path, + STATE(1722), 1, + sym_comment, + STATE(1974), 1, + sym_cell_path, + ACTIONS(1400), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 6, + aux_sym_unquoted_token1, + ACTIONS(1402), 40, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, - STATE(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [36859] = 38, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37948] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4020), 1, + ACTIONS(4134), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1675), 1, + STATE(511), 1, + sym__val_number, + STATE(1702), 1, aux_sym_val_list_repeat1, - STATE(1680), 1, + STATE(1723), 1, sym_comment, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3316), 1, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3379), 1, sym_val_list, - STATE(3331), 1, + STATE(3415), 1, sym_val_variable, - STATE(3371), 1, - sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -229325,94 +234424,161 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36995] = 38, + [38084] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(4062), 1, + anon_sym_DOT2, + STATE(1708), 1, + sym_path, + STATE(1724), 1, + sym_comment, + STATE(2080), 1, + sym_cell_path, + ACTIONS(1478), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1480), 40, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3063), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, - anon_sym_DASH, - ACTIONS(3067), 1, anon_sym_LBRACE, - ACTIONS(3071), 1, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [38158] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(3013), 1, + anon_sym_DASH, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4022), 1, + ACTIONS(4136), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1681), 1, + STATE(511), 1, + sym__val_number, + STATE(1725), 1, sym_comment, - STATE(1688), 1, + STATE(1726), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3256), 1, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3344), 1, sym_val_list, - STATE(3331), 1, + STATE(3415), 1, sym_val_variable, - STATE(3371), 1, - sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -229423,92 +234589,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37131] = 37, + [38294] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4024), 1, + ACTIONS(4138), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1682), 1, + STATE(511), 1, + sym__val_number, + STATE(1726), 1, sym_comment, - STATE(1694), 1, + STATE(1753), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -229520,94 +234686,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37265] = 38, + [38428] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4026), 1, + ACTIONS(4140), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1683), 1, + STATE(511), 1, + sym__val_number, + STATE(1727), 1, sym_comment, - STATE(1692), 1, + STATE(1741), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3254), 1, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3367), 1, sym_val_list, - STATE(3331), 1, + STATE(3415), 1, sym_val_variable, - STATE(3371), 1, - sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -229618,94 +234784,226 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37401] = 38, + [38564] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(4062), 1, + anon_sym_DOT2, + STATE(1708), 1, + sym_path, + STATE(1728), 1, + sym_comment, + STATE(2131), 1, + sym_cell_path, + ACTIONS(1463), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1465), 40, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3063), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, - anon_sym_DASH, - ACTIONS(3067), 1, anon_sym_LBRACE, - ACTIONS(3071), 1, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [38638] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4031), 1, + anon_sym_DOT2, + STATE(1685), 1, + sym_path, + STATE(1729), 1, + sym_comment, + STATE(2084), 1, + sym_cell_path, + ACTIONS(1469), 12, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1467), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [38712] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(3013), 1, + anon_sym_DASH, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4028), 1, + ACTIONS(4142), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1664), 1, - aux_sym_val_list_repeat1, - STATE(1684), 1, + STATE(511), 1, + sym__val_number, + STATE(1730), 1, sym_comment, - STATE(3168), 1, + STATE(1753), 1, + aux_sym_val_list_repeat1, + STATE(3192), 1, sym__var, - STATE(3260), 1, - sym_val_list, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -229713,95 +235011,98 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [37537] = 37, + [38846] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3976), 1, - anon_sym_DASH, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, - anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3990), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - STATE(434), 1, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4148), 1, + anon_sym_DOT, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + STATE(436), 1, sym__val_number, - STATE(465), 1, + STATE(471), 1, sym_val_number, - STATE(498), 1, + STATE(476), 1, sym__val_number_decimal, - STATE(1685), 1, + STATE(1731), 1, sym_comment, - STATE(2004), 1, - sym__flag, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, + STATE(3253), 1, sym_val_variable, - STATE(3485), 1, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4354), 1, - sym__expression, - STATE(4514), 1, + STATE(4782), 1, sym_val_range, - ACTIONS(2835), 2, + STATE(5869), 1, + sym__expression, + STATE(5870), 1, + sym_unquoted, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - STATE(3537), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 6, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4150), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3219), 11, + STATE(3258), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -229813,287 +235114,291 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37671] = 37, + [38984] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, - anon_sym_LPAREN, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(4154), 1, + anon_sym_DOT2, + STATE(1719), 1, + sym_path, + STATE(1732), 1, + sym_comment, + STATE(1944), 1, + sym_cell_path, + ACTIONS(1467), 14, + anon_sym_GT, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3073), 1, - anon_sym_null, - ACTIONS(3077), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, - anon_sym_DQUOTE, - ACTIONS(3091), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1469), 40, anon_sym_LBRACK, - ACTIONS(3950), 1, - anon_sym_DOT, - ACTIONS(3952), 1, - sym_val_date, - ACTIONS(4030), 1, - anon_sym_RBRACK, - STATE(481), 1, - sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, - sym_val_number, - STATE(1686), 1, - sym_comment, - STATE(1694), 1, - aux_sym_val_list_repeat1, - STATE(3168), 1, - sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, - sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, - sym__str_double_quotes, - STATE(3438), 1, - sym__list_item_expression, - ACTIONS(3075), 2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3423), 2, - sym_val_range, - sym__value, - ACTIONS(3079), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [39058] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4062), 1, + anon_sym_DOT2, + STATE(1708), 1, + sym_path, + STATE(1733), 1, + sym_comment, + STATE(2037), 1, + sym_cell_path, + ACTIONS(1467), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(3413), 11, - sym_val_nothing, - sym_val_bool, - 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, - [37805] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3061), 1, + aux_sym_unquoted_token1, + ACTIONS(1469), 40, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3063), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, - anon_sym_DASH, - ACTIONS(3067), 1, anon_sym_LBRACE, - ACTIONS(3071), 1, - anon_sym_PLUS, - ACTIONS(3073), 1, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(3077), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, - anon_sym_DQUOTE, - ACTIONS(3091), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3950), 1, - anon_sym_DOT, - ACTIONS(3952), 1, - sym_val_date, - ACTIONS(4032), 1, - anon_sym_RBRACK, - STATE(481), 1, - sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, - sym_val_number, - STATE(1686), 1, - aux_sym_val_list_repeat1, - STATE(1687), 1, - sym_comment, - STATE(3168), 1, - sym__var, - STATE(3266), 1, - sym_val_list, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, - sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, - sym__str_double_quotes, - STATE(3438), 1, - sym__list_item_expression, - ACTIONS(3075), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 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, - STATE(3423), 2, - sym_val_range, - sym__value, - ACTIONS(3079), 3, + [39132] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4157), 1, + anon_sym_QMARK2, + STATE(1734), 1, + sym_comment, + ACTIONS(1421), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1419), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(3083), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3442), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(3413), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [37941] = 37, + aux_sym__record_key_token2, + [39202] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4034), 1, + ACTIONS(4159), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1688), 1, + STATE(511), 1, + sym__val_number, + STATE(1735), 1, sym_comment, - STATE(1694), 1, + STATE(1753), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -230105,92 +235410,157 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38075] = 37, + [39336] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(4157), 1, + anon_sym_QMARK2, + STATE(1736), 1, + sym_comment, + ACTIONS(1421), 14, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3063), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1419), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [39406] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(3013), 1, + anon_sym_DASH, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4036), 1, + ACTIONS(4161), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1689), 1, + STATE(511), 1, + sym__val_number, + STATE(1737), 1, sym_comment, - STATE(1694), 1, + STATE(1753), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -230202,21 +235572,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38209] = 6, + [39540] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4038), 1, + ACTIONS(4062), 1, anon_sym_DOT2, - STATE(1908), 1, + STATE(1708), 1, sym_path, - STATE(1690), 2, + STATE(1738), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1413), 12, + STATE(2074), 1, + sym_cell_path, + ACTIONS(1431), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1433), 40, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [39614] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4163), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4165), 1, + aux_sym__immediate_decimal_token2, + STATE(1739), 1, + sym_comment, + ACTIONS(2834), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -230225,7 +235662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1411), 42, + ACTIONS(2832), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -230268,92 +235705,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [38281] = 37, + [39686] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3976), 1, + ACTIONS(4082), 1, anon_sym_DASH, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, + ACTIONS(4086), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3990), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, + STATE(471), 1, sym_val_number, - STATE(498), 1, + STATE(502), 1, sym__val_number_decimal, - STATE(1691), 1, + STATE(1740), 1, sym_comment, - STATE(2190), 1, + STATE(2297), 1, sym__flag, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, sym_val_variable, - STATE(3485), 1, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4314), 1, + STATE(4341), 1, sym__expression, - STATE(4514), 1, + STATE(4782), 1, sym_val_range, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - STATE(3537), 2, + STATE(3604), 2, sym_short_flag, sym_long_flag, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3421), 3, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 6, + ACTIONS(2896), 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(3219), 11, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -230365,92 +235802,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38415] = 37, + [39820] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4041), 1, + ACTIONS(4167), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1692), 1, + STATE(511), 1, + sym__val_number, + STATE(1741), 1, sym_comment, - STATE(1694), 1, + STATE(1753), 1, aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -230462,158 +235899,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38549] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3960), 1, - anon_sym_DOT2, - STATE(1693), 1, - sym_comment, - STATE(1698), 1, - sym_path, - STATE(2020), 1, - sym_cell_path, - ACTIONS(1401), 12, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1399), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [38623] = 36, + [39954] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_LBRACK, - ACTIONS(4046), 1, - anon_sym_RBRACK, - ACTIONS(4048), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(4051), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(4054), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(4057), 1, - anon_sym_LBRACE, - ACTIONS(4060), 1, - anon_sym_DOT, - ACTIONS(4063), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(4066), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(4072), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4084), 1, - sym_val_date, - ACTIONS(4087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(4093), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4096), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4099), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - STATE(481), 1, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_DOT, + ACTIONS(4055), 1, + sym_val_date, + ACTIONS(4169), 1, + anon_sym_RBRACK, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(3168), 1, + STATE(511), 1, + sym__val_number, + STATE(1690), 1, + aux_sym_val_list_repeat1, + STATE(1742), 1, + sym_comment, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3371), 1, + sym_val_list, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(4069), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(4090), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1694), 2, - sym_comment, - aux_sym_val_list_repeat1, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(4075), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4078), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4081), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -230621,96 +235994,97 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [38755] = 37, + [40090] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4102), 1, + ACTIONS(4171), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1666), 1, - aux_sym_val_list_repeat1, - STATE(1695), 1, + STATE(511), 1, + sym__val_number, + STATE(1743), 1, sym_comment, - STATE(3168), 1, + STATE(1744), 1, + aux_sym_val_list_repeat1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3368), 1, + sym_val_list, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -230718,96 +236092,95 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [38889] = 37, + [40226] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4104), 1, + ACTIONS(4173), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1694), 1, - aux_sym_val_list_repeat1, - STATE(1696), 1, + STATE(511), 1, + sym__val_number, + STATE(1744), 1, sym_comment, - STATE(3168), 1, + STATE(1753), 1, + aux_sym_val_list_repeat1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -230819,94 +236192,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39023] = 38, + [40360] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(4082), 1, anon_sym_DASH, - ACTIONS(3067), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(4086), 1, + anon_sym_DOT, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, - anon_sym_DQUOTE, - ACTIONS(3091), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3950), 1, - anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4106), 1, - anon_sym_RBRACK, - STATE(481), 1, - sym__val_number_decimal, - STATE(508), 1, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(436), 1, sym__val_number, - STATE(511), 1, + STATE(471), 1, sym_val_number, - STATE(1697), 1, + STATE(502), 1, + sym__val_number_decimal, + STATE(1745), 1, sym_comment, - STATE(1700), 1, - aux_sym_val_list_repeat1, - STATE(3168), 1, + STATE(2000), 1, + sym__flag, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, sym__var, - STATE(3317), 1, - sym_val_list, - STATE(3331), 1, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, sym_val_variable, - STATE(3371), 1, + STATE(3381), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, - sym__str_double_quotes, - STATE(3438), 1, - sym__list_item_expression, - ACTIONS(3075), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3089), 2, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4338), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, - sym_val_range, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + STATE(3604), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3473), 3, + sym_expr_unary, + sym_expr_binary, sym__value, - ACTIONS(3079), 3, + ACTIONS(2896), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3442), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(3413), 10, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -230914,25 +236285,23 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [39159] = 7, + [40494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3960), 1, - anon_sym_DOT2, - STATE(1668), 1, - aux_sym_cell_path_repeat1, - STATE(1698), 1, + STATE(1746), 1, sym_comment, - STATE(1908), 1, - sym_path, - ACTIONS(1442), 12, + ACTIONS(1443), 15, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -230941,7 +236310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1440), 42, + ACTIONS(1441), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -230984,94 +236353,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [39233] = 38, + [40562] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4108), 1, + ACTIONS(4175), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1696), 1, - aux_sym_val_list_repeat1, - STATE(1699), 1, + STATE(511), 1, + sym__val_number, + STATE(1747), 1, sym_comment, - STATE(3168), 1, + STATE(1748), 1, + aux_sym_val_list_repeat1, + STATE(3192), 1, sym__var, - STATE(3269), 1, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3369), 1, sym_val_list, - STATE(3331), 1, + STATE(3415), 1, sym_val_variable, - STATE(3371), 1, - sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 10, + STATE(3475), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -231082,92 +236451,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39369] = 37, + [40698] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(3065), 1, + ACTIONS(3013), 1, anon_sym_DASH, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_PLUS, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3077), 1, + ACTIONS(3025), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3039), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3093), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3946), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_val_date, - ACTIONS(4110), 1, + ACTIONS(4177), 1, anon_sym_RBRACK, - STATE(481), 1, + STATE(484), 1, sym__val_number_decimal, - STATE(508), 1, - sym__val_number, - STATE(511), 1, + STATE(507), 1, sym_val_number, - STATE(1694), 1, - aux_sym_val_list_repeat1, - STATE(1700), 1, + STATE(511), 1, + sym__val_number, + STATE(1748), 1, sym_comment, - STATE(3168), 1, + STATE(1753), 1, + aux_sym_val_list_repeat1, + STATE(3192), 1, sym__var, - STATE(3331), 1, - sym_val_variable, - STATE(3371), 1, + STATE(3320), 1, sym_expr_parenthesized, - STATE(3375), 1, - sym__expr_unary_minus, - STATE(3417), 1, - sym__inter_single_quotes, - STATE(3418), 1, - sym__inter_double_quotes, - STATE(3419), 1, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, sym__str_double_quotes, STATE(3438), 1, sym__list_item_expression, - ACTIONS(3075), 2, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3423), 2, + STATE(3439), 2, sym_val_range, sym__value, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3081), 3, + ACTIONS(3029), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3442), 4, + STATE(3432), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3413), 11, + STATE(3475), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -231179,92 +236548,161 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39503] = 37, + [40832] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4062), 1, + anon_sym_DOT2, + STATE(1708), 1, + sym_path, + STATE(1749), 1, + sym_comment, + STATE(2074), 1, + sym_cell_path, + ACTIONS(1431), 5, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT2, + ACTIONS(4182), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(4179), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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(1433), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [40910] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3976), 1, + ACTIONS(4082), 1, anon_sym_DASH, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, + ACTIONS(4086), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3990), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, + STATE(471), 1, sym_val_number, - STATE(498), 1, + STATE(502), 1, sym__val_number_decimal, - STATE(1701), 1, + STATE(1750), 1, sym_comment, - STATE(2010), 1, + STATE(2011), 1, sym__flag, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, sym_val_variable, - STATE(3485), 1, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4366), 1, + STATE(4321), 1, sym__expression, - STATE(4514), 1, + STATE(4782), 1, sym_val_range, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - STATE(3537), 2, + STATE(3604), 2, sym_short_flag, sym_long_flag, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3421), 3, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 6, + ACTIONS(2896), 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(3219), 11, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -231276,158 +236714,353 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39637] = 6, + [41044] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4112), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4114), 1, - aux_sym__immediate_decimal_token2, - STATE(1702), 1, + ACTIONS(4062), 1, + anon_sym_DOT2, + STATE(1708), 1, + sym_path, + STATE(1751), 1, sym_comment, - ACTIONS(2784), 13, + STATE(2157), 1, + sym_cell_path, + ACTIONS(1474), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1476), 40, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(2782), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + [41118] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(3013), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + ACTIONS(3019), 1, + anon_sym_PLUS, + ACTIONS(3021), 1, + anon_sym_null, + ACTIONS(3025), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3035), 1, + anon_sym_DQUOTE, + ACTIONS(3039), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3041), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3043), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(4055), 1, + sym_val_date, + ACTIONS(4185), 1, + anon_sym_RBRACK, + STATE(484), 1, + sym__val_number_decimal, + STATE(507), 1, + sym_val_number, + STATE(511), 1, + sym__val_number, + STATE(1735), 1, + aux_sym_val_list_repeat1, + STATE(1752), 1, + sym_comment, + STATE(3192), 1, + sym__var, + STATE(3318), 1, + sym_val_list, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, + sym__str_double_quotes, + STATE(3438), 1, + sym__list_item_expression, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(3023), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3037), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3439), 2, + sym_val_range, + sym__value, + ACTIONS(3027), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3029), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(3031), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3432), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(3475), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [41254] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4187), 1, + anon_sym_LBRACK, + ACTIONS(4190), 1, + anon_sym_RBRACK, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4198), 1, + anon_sym_DASH, + ACTIONS(4201), 1, + anon_sym_LBRACE, + ACTIONS(4204), 1, + anon_sym_DOT, + ACTIONS(4207), 1, + anon_sym_PLUS, + ACTIONS(4210), 1, + anon_sym_null, + ACTIONS(4216), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4228), 1, + sym_val_date, + ACTIONS(4231), 1, + anon_sym_DQUOTE, + ACTIONS(4237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4240), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4243), 1, + aux_sym__unquoted_in_list_token1, + STATE(484), 1, + sym__val_number_decimal, + STATE(507), 1, + sym_val_number, + STATE(511), 1, + sym__val_number, + STATE(3192), 1, + sym__var, + STATE(3320), 1, + sym_expr_parenthesized, + STATE(3415), 1, + sym_val_variable, + STATE(3426), 1, + sym__str_double_quotes, + STATE(3438), 1, + sym__list_item_expression, + STATE(3445), 1, + sym__expr_unary_minus, + STATE(3476), 1, + sym__inter_single_quotes, + STATE(3477), 1, + sym__inter_double_quotes, + ACTIONS(4213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4234), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1753), 2, + sym_comment, + aux_sym_val_list_repeat1, + STATE(3439), 2, + sym_val_range, + sym__value, + ACTIONS(4219), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4222), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [39709] = 37, + ACTIONS(4225), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3432), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(3475), 11, + sym_val_nothing, + sym_val_bool, + 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, + [41386] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3976), 1, + ACTIONS(4082), 1, anon_sym_DASH, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, + ACTIONS(4086), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3990), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, + STATE(471), 1, sym_val_number, - STATE(498), 1, + STATE(502), 1, sym__val_number_decimal, - STATE(1703), 1, + STATE(1754), 1, sym_comment, - STATE(2006), 1, + STATE(2025), 1, sym__flag, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, sym_val_variable, - STATE(3485), 1, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4355), 1, + STATE(4325), 1, sym__expression, - STATE(4514), 1, + STATE(4782), 1, sym_val_range, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - STATE(3537), 2, + STATE(3604), 2, sym_short_flag, sym_long_flag, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3421), 3, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 6, + ACTIONS(2896), 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(3219), 11, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -231439,7 +237072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39843] = 38, + [41520] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -231464,44 +237097,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1704), 1, + STATE(389), 1, + sym__val_number, + STATE(1755), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4648), 1, - sym__where_predicate, - STATE(4649), 1, + STATE(4780), 1, sym__expression, + STATE(4783), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -231515,7 +237148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -231524,7 +237157,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -231536,7 +237169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39978] = 38, + [41655] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -231561,44 +237194,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1705), 1, + STATE(389), 1, + sym__val_number, + STATE(1756), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4850), 1, - sym__where_predicate, - STATE(4859), 1, + STATE(4619), 1, sym__expression, + STATE(4621), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -231612,7 +237245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -231621,7 +237254,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -231633,92 +237266,286 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40113] = 38, + [41790] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4148), 1, + anon_sym_DOT, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + STATE(436), 1, sym__val_number, - STATE(428), 1, + STATE(471), 1, + sym_val_number, + STATE(476), 1, sym__val_number_decimal, - STATE(1706), 1, + STATE(1757), 1, sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, sym__var, - STATE(3003), 1, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3253), 1, sym_val_variable, - STATE(3029), 1, + STATE(3254), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4782), 1, + sym_val_range, + STATE(5895), 1, + sym_unquoted, + STATE(5896), 1, + sym__expression, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4150), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3258), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(3129), 11, + sym_val_nothing, + sym_val_bool, + 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, + [41925] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4148), 1, + anon_sym_DOT, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + STATE(436), 1, + sym__val_number, + STATE(471), 1, + sym_val_number, + STATE(476), 1, + sym__val_number_decimal, + STATE(1758), 1, + sym_comment, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3253), 1, + sym_val_variable, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4888), 1, - sym__where_predicate, - STATE(4951), 1, + STATE(4782), 1, + sym_val_range, + STATE(5869), 1, sym__expression, - ACTIONS(83), 2, + STATE(5870), 1, + sym_unquoted, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(2896), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4150), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(97), 2, + STATE(3258), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(3129), 11, + sym_val_nothing, + sym_val_bool, + 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, + [42060] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4248), 1, + sym_identifier, + ACTIONS(4250), 1, + anon_sym_DOT, + ACTIONS(4252), 1, + anon_sym_not, + ACTIONS(4254), 1, + anon_sym_null, + STATE(436), 1, + sym__val_number, + STATE(448), 1, + sym__val_number_decimal, + STATE(471), 1, + sym_val_number, + STATE(1759), 1, + sym_comment, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3253), 1, + sym_val_variable, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4782), 1, + sym_val_range, + STATE(5562), 1, + sym__expression, + ACTIONS(2898), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(4256), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3258), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(2896), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -231730,7 +237557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40248] = 38, + [42195] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -231759,40 +237586,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1707), 1, + STATE(422), 1, + sym__val_number, + STATE(1760), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5173), 1, - sym__expression, - STATE(5176), 1, + STATE(5253), 1, sym__where_predicate, + STATE(5254), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -231806,7 +237633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -231815,7 +237642,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -231827,7 +237654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40383] = 38, + [42330] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -231856,39 +237683,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1708), 1, + STATE(422), 1, + sym__val_number, + STATE(1761), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4954), 1, + STATE(5255), 1, sym__where_predicate, - STATE(4962), 1, + STATE(5256), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -231903,7 +237730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -231912,7 +237739,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -231924,92 +237751,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40518] = 38, + [42465] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1709), 1, + STATE(389), 1, + sym__val_number, + STATE(1762), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4974), 1, - sym__where_predicate, - STATE(4975), 1, + STATE(4738), 1, sym__expression, - ACTIONS(83), 2, + STATE(4739), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232021,92 +237848,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40653] = 38, + [42600] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1710), 1, + STATE(389), 1, + sym__val_number, + STATE(1763), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4981), 1, - sym__where_predicate, - STATE(4983), 1, + STATE(4729), 1, sym__expression, - ACTIONS(83), 2, + STATE(4730), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232118,158 +237945,286 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40788] = 7, + [42735] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4120), 1, - anon_sym_DOT2, - STATE(1711), 1, - sym_comment, - STATE(1813), 1, - sym_path, - STATE(1932), 1, - sym_cell_path, - ACTIONS(1399), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1401), 40, + ACTIONS(299), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(301), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(329), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(333), 1, + anon_sym_DOT, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(367), 1, + sym_val_date, + ACTIONS(369), 1, + anon_sym_DQUOTE, + ACTIONS(373), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(375), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4246), 1, + sym_identifier, + STATE(350), 1, + sym_val_number, + STATE(374), 1, + sym__val_number_decimal, + STATE(389), 1, + sym__val_number, + STATE(1764), 1, + sym_comment, + STATE(2531), 1, + sym_val_range, + STATE(2915), 1, + sym__var, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4719), 1, + sym__expression, + STATE(4724), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, + ACTIONS(363), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(371), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3101), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_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(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [42870] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(299), 1, + anon_sym_LBRACK, + ACTIONS(301), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(333), 1, + anon_sym_DOT, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(367), 1, sym_val_date, + ACTIONS(369), 1, anon_sym_DQUOTE, + ACTIONS(373), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(375), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4246), 1, + sym_identifier, + STATE(350), 1, + sym_val_number, + STATE(374), 1, + sym__val_number_decimal, + STATE(389), 1, + sym__val_number, + STATE(1765), 1, + sym_comment, + STATE(2531), 1, + sym_val_range, + STATE(2915), 1, + sym__var, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4712), 1, + sym__expression, + STATE(4716), 1, + sym__where_predicate, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(363), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - [40861] = 38, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3101), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(361), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [43005] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1712), 1, + STATE(389), 1, + sym__val_number, + STATE(1766), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5177), 1, + STATE(4849), 1, sym__expression, - STATE(5178), 1, + STATE(4852), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232281,7 +238236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40996] = 38, + [43140] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -232310,40 +238265,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1713), 1, + STATE(422), 1, + sym__val_number, + STATE(1767), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4984), 1, - sym__expression, - STATE(5082), 1, + STATE(5257), 1, sym__where_predicate, + STATE(5258), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -232357,7 +238312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -232366,7 +238321,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232378,7 +238333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41131] = 38, + [43275] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -232407,39 +238362,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1714), 1, + STATE(422), 1, + sym__val_number, + STATE(1768), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4993), 1, + STATE(5259), 1, sym__where_predicate, - STATE(4995), 1, + STATE(5260), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -232454,7 +238409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -232463,7 +238418,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232475,7 +238430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41266] = 38, + [43410] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -232504,40 +238459,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1715), 1, + STATE(422), 1, + sym__val_number, + STATE(1769), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5027), 1, - sym__expression, - STATE(5096), 1, + STATE(5262), 1, sym__where_predicate, + STATE(5263), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -232551,7 +238506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -232560,7 +238515,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232572,7 +238527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41401] = 38, + [43545] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -232601,39 +238556,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1716), 1, + STATE(422), 1, + sym__val_number, + STATE(1770), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5038), 1, + STATE(5264), 1, sym__where_predicate, - STATE(5046), 1, + STATE(5265), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -232648,7 +238603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -232657,7 +238612,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232669,7 +238624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41536] = 38, + [43680] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -232698,39 +238653,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1717), 1, + STATE(422), 1, + sym__val_number, + STATE(1771), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5047), 1, + STATE(5266), 1, sym__where_predicate, - STATE(5052), 1, + STATE(5267), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -232745,7 +238700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -232754,7 +238709,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232766,7 +238721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41671] = 38, + [43815] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -232795,40 +238750,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1718), 1, + STATE(422), 1, + sym__val_number, + STATE(1772), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5128), 1, - sym__expression, - STATE(5131), 1, + STATE(5268), 1, sym__where_predicate, + STATE(5269), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -232842,7 +238797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -232851,7 +238806,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232863,92 +238818,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41806] = 38, + [43950] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1719), 1, + STATE(422), 1, + sym__val_number, + STATE(1773), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4790), 1, + STATE(5270), 1, sym__where_predicate, - STATE(4792), 1, + STATE(5271), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -232960,92 +238915,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41941] = 38, + [44085] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1720), 1, + STATE(422), 1, + sym__val_number, + STATE(1774), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4783), 1, + STATE(5274), 1, sym__where_predicate, - STATE(4784), 1, + STATE(5277), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233057,92 +239012,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42076] = 38, + [44220] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1721), 1, + STATE(422), 1, + sym__val_number, + STATE(1775), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4781), 1, + STATE(5278), 1, sym__where_predicate, - STATE(4782), 1, + STATE(5279), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233154,7 +239109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42211] = 38, + [44355] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -233183,39 +239138,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1722), 1, + STATE(422), 1, + sym__val_number, + STATE(1776), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5055), 1, + STATE(5280), 1, sym__where_predicate, - STATE(5060), 1, + STATE(5281), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -233230,7 +239185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -233239,7 +239194,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233251,7 +239206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42346] = 38, + [44490] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -233280,40 +239235,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1723), 1, + STATE(422), 1, + sym__val_number, + STATE(1777), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5180), 1, - sym__expression, - STATE(5187), 1, + STATE(5282), 1, sym__where_predicate, + STATE(5284), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -233327,7 +239282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -233336,7 +239291,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233348,92 +239303,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42481] = 38, + [44625] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1724), 1, + STATE(422), 1, + sym__val_number, + STATE(1778), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4779), 1, + STATE(5285), 1, sym__where_predicate, - STATE(4780), 1, + STATE(5286), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233445,92 +239400,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42616] = 38, + [44760] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1725), 1, + STATE(422), 1, + sym__val_number, + STATE(1779), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4777), 1, + STATE(5287), 1, sym__where_predicate, - STATE(4778), 1, + STATE(5288), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233542,92 +239497,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42751] = 38, + [44895] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1726), 1, + STATE(389), 1, + sym__val_number, + STATE(1780), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5191), 1, + STATE(4533), 1, sym__expression, - STATE(5192), 1, + STATE(4537), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233639,7 +239594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42886] = 38, + [45030] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -233668,40 +239623,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1727), 1, + STATE(422), 1, + sym__val_number, + STATE(1781), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5193), 1, - sym__expression, - STATE(5200), 1, + STATE(5289), 1, sym__where_predicate, + STATE(5294), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -233715,7 +239670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -233724,7 +239679,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233736,7 +239691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43021] = 38, + [45165] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -233765,40 +239720,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1728), 1, + STATE(422), 1, + sym__val_number, + STATE(1782), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5201), 1, - sym__expression, - STATE(5207), 1, + STATE(5301), 1, sym__where_predicate, + STATE(5302), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -233812,7 +239767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -233821,7 +239776,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233833,7 +239788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43156] = 38, + [45300] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -233858,44 +239813,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1729), 1, + STATE(389), 1, + sym__val_number, + STATE(1783), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4775), 1, - sym__where_predicate, - STATE(4776), 1, + STATE(4538), 1, sym__expression, + STATE(4540), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -233909,7 +239864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -233918,7 +239873,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -233930,7 +239885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43291] = 38, + [45435] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -233955,43 +239910,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1730), 1, + STATE(389), 1, + sym__val_number, + STATE(1784), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4774), 1, + STATE(4544), 1, sym__expression, - STATE(4840), 1, + STATE(4545), 1, sym__where_predicate, ACTIONS(357), 2, anon_sym_true, @@ -234006,7 +239961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -234015,7 +239970,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234027,92 +239982,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43426] = 38, + [45570] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1731), 1, + STATE(422), 1, + sym__val_number, + STATE(1785), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4772), 1, + STATE(5307), 1, sym__where_predicate, - STATE(4773), 1, + STATE(5308), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234124,92 +240079,189 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43561] = 38, + [45705] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1786), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5309), 1, + sym__where_predicate, + STATE(5310), 1, + sym__expression, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [45840] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1732), 1, + STATE(422), 1, + sym__val_number, + STATE(1787), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4770), 1, + STATE(5312), 1, sym__where_predicate, - STATE(4771), 1, + STATE(5313), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234221,7 +240273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43696] = 38, + [45975] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -234246,44 +240298,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1733), 1, + STATE(389), 1, + sym__val_number, + STATE(1788), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4768), 1, - sym__where_predicate, - STATE(4769), 1, + STATE(4546), 1, sym__expression, + STATE(4662), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -234297,7 +240349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -234306,7 +240358,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234318,92 +240370,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43831] = 38, + [46110] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1734), 1, + STATE(422), 1, + sym__val_number, + STATE(1789), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4765), 1, + STATE(5314), 1, sym__where_predicate, - STATE(4766), 1, + STATE(5315), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234415,7 +240467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43966] = 38, + [46245] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -234440,44 +240492,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1735), 1, + STATE(389), 1, + sym__val_number, + STATE(1790), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4763), 1, - sym__where_predicate, - STATE(4764), 1, + STATE(4553), 1, sym__expression, + STATE(4554), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -234491,7 +240543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -234500,7 +240552,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234512,7 +240564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44101] = 38, + [46380] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -234537,44 +240589,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1736), 1, + STATE(389), 1, + sym__val_number, + STATE(1791), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4761), 1, - sym__where_predicate, - STATE(4762), 1, + STATE(4555), 1, sym__expression, + STATE(4557), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -234588,7 +240640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -234597,7 +240649,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234609,7 +240661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44236] = 38, + [46515] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -234638,40 +240690,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1737), 1, + STATE(422), 1, + sym__val_number, + STATE(1792), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5111), 1, - sym__expression, - STATE(5121), 1, + STATE(5316), 1, sym__where_predicate, + STATE(5317), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -234685,7 +240737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -234694,7 +240746,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234706,91 +240758,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44371] = 37, + [46650] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(4125), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(4127), 1, - anon_sym_DOLLAR, - ACTIONS(4129), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(4131), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(4133), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(77), 1, anon_sym_PLUS, - ACTIONS(4137), 1, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(4143), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4149), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(4151), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - STATE(254), 1, - sym__val_number_decimal, - STATE(260), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, sym_val_number, - STATE(262), 1, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, sym__val_number, - STATE(1738), 1, + STATE(1793), 1, sym_comment, - STATE(1752), 1, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, sym__var, - STATE(2146), 1, + STATE(3043), 1, sym_val_variable, - STATE(2174), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(2211), 1, - sym__inter_single_quotes, - STATE(2213), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(2215), 1, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, sym__inter_double_quotes, - STATE(2242), 1, - sym__str_double_quotes, - STATE(3481), 1, + STATE(3553), 1, sym__expr_binary_expression, - STATE(3531), 1, + STATE(5321), 1, + sym__where_predicate, + STATE(5322), 1, sym__expression, - STATE(3532), 1, - sym_block, - STATE(3549), 1, - sym__match_expression, - STATE(3554), 1, - sym_val_range, - ACTIONS(4141), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4147), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2209), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(4145), 6, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_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(2208), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234802,92 +240855,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44504] = 38, + [46785] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1739), 1, + STATE(389), 1, + sym__val_number, + STATE(1794), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5211), 1, + STATE(4558), 1, sym__expression, - STATE(5212), 1, + STATE(4560), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234899,7 +240952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44639] = 38, + [46920] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -234924,44 +240977,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1740), 1, + STATE(389), 1, + sym__val_number, + STATE(1795), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, STATE(4563), 1, - sym__where_predicate, - STATE(4573), 1, sym__expression, + STATE(4569), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -234975,7 +241028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -234984,7 +241037,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -234996,92 +241049,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44774] = 38, + [47055] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3990), 1, + ACTIONS(333), 1, + anon_sym_DOT, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(369), 1, + anon_sym_DQUOTE, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4159), 1, - sym_identifier, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(4163), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(4165), 1, - anon_sym_DOT, - ACTIONS(4167), 1, - anon_sym_not, - ACTIONS(4169), 1, - anon_sym_null, - STATE(434), 1, - sym__val_number, - STATE(465), 1, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4246), 1, + sym_identifier, + STATE(350), 1, sym_val_number, - STATE(469), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1741), 1, + STATE(389), 1, + sym__val_number, + STATE(1796), 1, sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, + STATE(2531), 1, + sym_val_range, + STATE(2915), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3159), 1, + STATE(2993), 1, sym_val_variable, - STATE(3202), 1, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3485), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4514), 1, - sym_val_range, - STATE(5472), 1, + STATE(4570), 1, sym__expression, - ACTIONS(2831), 2, + STATE(4588), 1, + sym__where_predicate, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(2835), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4171), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3992), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3121), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3219), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -235093,7 +241146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44909] = 38, + [47190] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -235118,44 +241171,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1742), 1, + STATE(389), 1, + sym__val_number, + STATE(1797), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4574), 1, - sym__where_predicate, - STATE(4578), 1, + STATE(4592), 1, sym__expression, + STATE(4603), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -235169,7 +241222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -235178,7 +241231,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -235190,91 +241243,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45044] = 37, + [47325] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3984), 1, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(333), 1, + anon_sym_DOT, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(369), 1, + anon_sym_DQUOTE, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4165), 1, - anon_sym_DOT, - ACTIONS(4173), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4177), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(4179), 1, - aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(465), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4246), 1, + sym_identifier, + STATE(350), 1, sym_val_number, - STATE(469), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1743), 1, + STATE(389), 1, + sym__val_number, + STATE(1798), 1, sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, + STATE(2531), 1, + sym_val_range, + STATE(2915), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3159), 1, + STATE(2993), 1, sym_val_variable, - STATE(3202), 1, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3478), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(3531), 1, + STATE(4605), 1, sym__expression, - STATE(3532), 1, - sym_block, - STATE(4514), 1, - sym_val_range, - STATE(5492), 1, - sym__match_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(4606), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, + ACTIONS(363), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(371), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3121), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 6, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_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(3219), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -235286,92 +241340,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45177] = 38, + [47460] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1744), 1, + STATE(389), 1, + sym__val_number, + STATE(1799), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5213), 1, + STATE(4524), 1, sym__expression, - STATE(5218), 1, + STATE(4525), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -235383,70 +241437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45312] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1745), 1, - sym_comment, - ACTIONS(1477), 14, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1475), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [45379] = 38, + [47595] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -235471,44 +241462,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1746), 1, + STATE(389), 1, + sym__val_number, + STATE(1800), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4583), 1, - sym__where_predicate, - STATE(4587), 1, + STATE(4522), 1, sym__expression, + STATE(4523), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -235522,7 +241513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -235531,7 +241522,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -235543,155 +241534,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45514] = 4, + [47730] = 38, ACTIONS(3), 1, anon_sym_POUND, - STATE(1747), 1, - sym_comment, - ACTIONS(1456), 14, - anon_sym_COMMA, + ACTIONS(299), 1, + anon_sym_LBRACK, + ACTIONS(301), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1454), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [45581] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1748), 1, + STATE(389), 1, + sym__val_number, + STATE(1801), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5148), 1, + STATE(4520), 1, sym__expression, - STATE(5161), 1, + STATE(4521), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -235703,138 +241631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45716] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1749), 1, - sym_comment, - STATE(1796), 1, - sym_path, - STATE(2276), 1, - sym_cell_path, - ACTIONS(1399), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1401), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [45789] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4183), 1, - anon_sym_DOT2, - STATE(2173), 1, - sym_path, - STATE(1750), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [45860] = 38, + [47865] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -235859,44 +241656,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1751), 1, + STATE(389), 1, + sym__val_number, + STATE(1802), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4588), 1, - sym__where_predicate, - STATE(4589), 1, + STATE(4516), 1, sym__expression, + STATE(4517), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -235910,7 +241707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -235919,7 +241716,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -235931,158 +241728,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45995] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4186), 1, - anon_sym_DOT2, - STATE(1752), 1, - sym_comment, - STATE(1813), 1, - sym_path, - STATE(2024), 1, - sym_cell_path, - ACTIONS(1395), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1397), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [46068] = 38, + [48000] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1753), 1, + STATE(389), 1, + sym__val_number, + STATE(1803), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5219), 1, + STATE(4514), 1, sym__expression, - STATE(5229), 1, + STATE(4515), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236094,92 +241825,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46203] = 38, + [48135] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1754), 1, + STATE(389), 1, + sym__val_number, + STATE(1804), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5204), 1, + STATE(4510), 1, sym__expression, - STATE(5240), 1, + STATE(4512), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236191,92 +241922,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46338] = 38, + [48270] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1755), 1, + STATE(389), 1, + sym__val_number, + STATE(1805), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5258), 1, + STATE(4507), 1, sym__expression, - STATE(5270), 1, + STATE(4509), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236288,92 +242019,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46473] = 38, + [48405] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1756), 1, + STATE(389), 1, + sym__val_number, + STATE(1806), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5277), 1, + STATE(4504), 1, sym__expression, - STATE(5284), 1, + STATE(4506), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236385,92 +242116,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46608] = 38, + [48540] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1757), 1, + STATE(389), 1, + sym__val_number, + STATE(1807), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5283), 1, + STATE(4551), 1, sym__where_predicate, - STATE(5287), 1, + STATE(4578), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236482,92 +242213,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46743] = 38, + [48675] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1758), 1, + STATE(389), 1, + sym__val_number, + STATE(1808), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5281), 1, + STATE(4618), 1, sym__where_predicate, - STATE(5282), 1, + STATE(4632), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236579,92 +242310,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46878] = 38, + [48810] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1759), 1, + STATE(389), 1, + sym__val_number, + STATE(1809), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5269), 1, + STATE(4637), 1, sym__where_predicate, - STATE(5271), 1, + STATE(4655), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236676,92 +242407,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47013] = 38, + [48945] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1760), 1, + STATE(389), 1, + sym__val_number, + STATE(1810), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5267), 1, - sym__where_predicate, - STATE(5268), 1, + STATE(4659), 1, sym__expression, - ACTIONS(83), 2, + STATE(4762), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236773,92 +242504,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47148] = 38, + [49080] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1761), 1, + STATE(389), 1, + sym__val_number, + STATE(1811), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5265), 1, + STATE(4661), 1, sym__where_predicate, - STATE(5266), 1, + STATE(4680), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236870,92 +242601,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47283] = 38, + [49215] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1762), 1, + STATE(389), 1, + sym__val_number, + STATE(1812), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5261), 1, - sym__where_predicate, - STATE(5263), 1, + STATE(4611), 1, sym__expression, - ACTIONS(83), 2, + STATE(4612), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -236967,92 +242698,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47418] = 38, + [49350] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1763), 1, + STATE(389), 1, + sym__val_number, + STATE(1813), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5255), 1, - sym__where_predicate, - STATE(5259), 1, + STATE(4613), 1, sym__expression, - ACTIONS(83), 2, + STATE(4617), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -237064,7 +242795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47553] = 38, + [49485] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -237093,39 +242824,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1764), 1, + STATE(422), 1, + sym__val_number, + STATE(1814), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5248), 1, + STATE(5324), 1, sym__where_predicate, - STATE(5249), 1, + STATE(5325), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -237140,7 +242871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -237149,7 +242880,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -237161,7 +242892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47688] = 38, + [49620] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -237190,40 +242921,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1765), 1, + STATE(422), 1, + sym__val_number, + STATE(1815), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5245), 1, - sym__where_predicate, - STATE(5247), 1, + STATE(5326), 1, sym__expression, + STATE(5331), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -237237,7 +242968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -237246,7 +242977,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -237258,157 +242989,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47823] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1750), 1, - aux_sym_cell_path_repeat1, - STATE(1766), 1, - sym_comment, - STATE(2173), 1, - sym_path, - ACTIONS(1436), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1438), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [47894] = 38, + [49755] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1767), 1, + STATE(422), 1, + sym__val_number, + STATE(1816), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4590), 1, - sym__where_predicate, - STATE(4591), 1, + STATE(5216), 1, sym__expression, - ACTIONS(357), 2, + STATE(5330), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -237420,7 +243086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48029] = 38, + [49890] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -237445,44 +243111,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1768), 1, + STATE(389), 1, + sym__val_number, + STATE(1817), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4592), 1, - sym__where_predicate, - STATE(4593), 1, + STATE(4705), 1, sym__expression, + STATE(4711), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -237496,7 +243162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -237505,7 +243171,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -237517,7 +243183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48164] = 38, + [50025] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -237542,44 +243208,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1769), 1, + STATE(389), 1, + sym__val_number, + STATE(1818), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4795), 1, - sym__where_predicate, - STATE(4799), 1, + STATE(4703), 1, sym__expression, + STATE(4704), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -237593,7 +243259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -237602,7 +243268,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -237614,7 +243280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48299] = 38, + [50160] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -237639,44 +243305,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1770), 1, + STATE(389), 1, + sym__val_number, + STATE(1819), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4800), 1, - sym__where_predicate, - STATE(4802), 1, + STATE(4846), 1, sym__expression, + STATE(4848), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -237690,7 +243356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -237699,7 +243365,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -237711,7 +243377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48434] = 38, + [50295] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -237736,44 +243402,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1771), 1, + STATE(389), 1, + sym__val_number, + STATE(1820), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4804), 1, - sym__where_predicate, - STATE(4805), 1, + STATE(4844), 1, sym__expression, + STATE(4845), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -237787,7 +243453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -237796,7 +243462,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -237808,7 +243474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48569] = 38, + [50430] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -237833,44 +243499,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1772), 1, + STATE(389), 1, + sym__val_number, + STATE(1821), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4806), 1, - sym__where_predicate, - STATE(4807), 1, + STATE(4853), 1, sym__expression, + STATE(4854), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -237884,7 +243550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -237893,7 +243559,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -237905,7 +243571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48704] = 38, + [50565] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -237930,44 +243596,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1773), 1, + STATE(389), 1, + sym__val_number, + STATE(1822), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4810), 1, - sym__where_predicate, - STATE(4811), 1, + STATE(4841), 1, sym__expression, + STATE(4843), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -237981,7 +243647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -237990,7 +243656,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -238002,7 +243668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48839] = 38, + [50700] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -238027,43 +243693,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1774), 1, + STATE(389), 1, + sym__val_number, + STATE(1823), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4812), 1, + STATE(4701), 1, sym__where_predicate, - STATE(4813), 1, + STATE(4840), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -238078,7 +243744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -238087,7 +243753,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -238099,92 +243765,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48974] = 38, + [50835] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1775), 1, + STATE(422), 1, + sym__val_number, + STATE(1824), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4814), 1, - sym__where_predicate, - STATE(4816), 1, + STATE(5198), 1, sym__expression, - ACTIONS(357), 2, + STATE(5201), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -238196,92 +243862,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49109] = 38, + [50970] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1776), 1, + STATE(422), 1, + sym__val_number, + STATE(1825), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4817), 1, - sym__where_predicate, - STATE(4820), 1, + STATE(5192), 1, sym__expression, - ACTIONS(357), 2, + STATE(5197), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -238293,92 +243959,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49244] = 38, + [51105] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1777), 1, + STATE(422), 1, + sym__val_number, + STATE(1826), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4823), 1, + STATE(5066), 1, sym__where_predicate, - STATE(4824), 1, + STATE(5189), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -238390,92 +244056,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49379] = 38, + [51240] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1778), 1, + STATE(422), 1, + sym__val_number, + STATE(1827), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4825), 1, - sym__where_predicate, - STATE(4828), 1, + STATE(5184), 1, sym__expression, - ACTIONS(357), 2, + STATE(5188), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -238487,92 +244153,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49514] = 38, + [51375] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1779), 1, + STATE(422), 1, + sym__val_number, + STATE(1828), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4831), 1, - sym__where_predicate, - STATE(4832), 1, + STATE(5182), 1, sym__expression, - ACTIONS(357), 2, + STATE(5183), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -238584,92 +244250,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49649] = 38, + [51510] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1780), 1, + STATE(422), 1, + sym__val_number, + STATE(1829), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4833), 1, - sym__where_predicate, - STATE(4834), 1, + STATE(5178), 1, sym__expression, - ACTIONS(357), 2, + STATE(5179), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -238681,92 +244347,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49784] = 38, + [51645] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1781), 1, + STATE(422), 1, + sym__val_number, + STATE(1830), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4835), 1, + STATE(5176), 1, sym__where_predicate, - STATE(4836), 1, + STATE(5235), 1, sym__expression, - ACTIONS(357), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -238778,84 +244444,594 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49919] = 7, + [51780] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1782), 1, - sym_comment, - STATE(1796), 1, - sym_path, - STATE(2237), 1, - sym_cell_path, - ACTIONS(1395), 13, - anon_sym_GT, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(77), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1831), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5171), 1, + sym__expression, + STATE(5172), 1, + sym__where_predicate, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1397), 40, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [51915] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(33), 1, anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1832), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5161), 1, + sym__expression, + STATE(5163), 1, + sym__where_predicate, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [52050] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1833), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5156), 1, + sym__expression, + STATE(5159), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [52185] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1834), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5154), 1, + sym__expression, + STATE(5155), 1, + sym__where_predicate, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [52320] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1835), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5149), 1, + sym__expression, + STATE(5151), 1, + sym__where_predicate, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, + aux_sym__val_number_token4, aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [52455] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, sym_val_date, + ACTIONS(95), 1, anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1836), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5133), 1, + sym__expression, + STATE(5139), 1, + sym__where_predicate, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - [49992] = 7, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [52590] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1750), 1, - aux_sym_cell_path_repeat1, - STATE(1783), 1, + STATE(1837), 1, sym_comment, - STATE(2173), 1, - sym_path, - ACTIONS(1436), 13, + ACTIONS(1437), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -238869,13 +245045,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1438), 40, + aux_sym_unquoted_token1, + ACTIONS(1439), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -238910,7 +245089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [50065] = 38, + [52657] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -238935,43 +245114,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1784), 1, + STATE(389), 1, + sym__val_number, + STATE(1838), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4598), 1, + STATE(4690), 1, sym__where_predicate, - STATE(4601), 1, + STATE(4706), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -238986,7 +245165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -238995,7 +245174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239007,7 +245186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50200] = 38, + [52792] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -239032,43 +245211,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1785), 1, + STATE(389), 1, + sym__val_number, + STATE(1839), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4604), 1, + STATE(4720), 1, sym__where_predicate, - STATE(4605), 1, + STATE(4721), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -239083,7 +245262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -239092,7 +245271,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239104,7 +245283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50335] = 38, + [52927] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -239129,43 +245308,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1786), 1, + STATE(389), 1, + sym__val_number, + STATE(1840), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4759), 1, + STATE(4734), 1, sym__where_predicate, - STATE(4760), 1, + STATE(4749), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -239180,7 +245359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -239189,7 +245368,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239201,7 +245380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50470] = 38, + [53062] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -239226,43 +245405,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1787), 1, + STATE(389), 1, + sym__val_number, + STATE(1841), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4757), 1, + STATE(4811), 1, sym__where_predicate, - STATE(4758), 1, + STATE(4821), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -239277,7 +245456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -239286,7 +245465,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239298,7 +245477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50605] = 38, + [53197] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -239323,43 +245502,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1788), 1, + STATE(389), 1, + sym__val_number, + STATE(1842), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4755), 1, + STATE(4526), 1, sym__where_predicate, - STATE(4756), 1, + STATE(4850), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -239374,7 +245553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -239383,7 +245562,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239395,7 +245574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50740] = 38, + [53332] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -239420,43 +245599,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1789), 1, + STATE(389), 1, + sym__val_number, + STATE(1843), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4753), 1, + STATE(4867), 1, sym__where_predicate, - STATE(4754), 1, + STATE(4870), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -239471,7 +245650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -239480,7 +245659,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239492,7 +245671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50875] = 38, + [53467] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -239517,43 +245696,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1790), 1, + STATE(389), 1, + sym__val_number, + STATE(1844), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4751), 1, + STATE(4878), 1, sym__where_predicate, - STATE(4752), 1, + STATE(4879), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -239568,7 +245747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -239577,7 +245756,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239589,7 +245768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51010] = 38, + [53602] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -239614,44 +245793,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1791), 1, + STATE(389), 1, + sym__val_number, + STATE(1845), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4746), 1, - sym__where_predicate, - STATE(4750), 1, + STATE(4904), 1, sym__expression, + STATE(4906), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -239665,7 +245844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -239674,7 +245853,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239686,92 +245865,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51145] = 38, + [53737] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1792), 1, + STATE(389), 1, + sym__val_number, + STATE(1846), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4887), 1, + STATE(4895), 1, sym__expression, - STATE(4890), 1, + STATE(4897), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239783,92 +245962,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51280] = 38, + [53872] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1793), 1, + STATE(389), 1, + sym__val_number, + STATE(1847), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4876), 1, + STATE(4889), 1, sym__expression, - STATE(4877), 1, + STATE(4890), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239880,7 +246059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51415] = 38, + [54007] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -239905,44 +246084,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1794), 1, + STATE(389), 1, + sym__val_number, + STATE(1848), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4742), 1, - sym__where_predicate, - STATE(4743), 1, + STATE(4824), 1, sym__expression, + STATE(4825), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -239956,7 +246135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -239965,7 +246144,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -239977,7 +246156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51550] = 38, + [54142] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -240002,43 +246181,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1795), 1, + STATE(389), 1, + sym__val_number, + STATE(1849), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4667), 1, + STATE(4815), 1, sym__expression, - STATE(4740), 1, + STATE(4816), 1, sym__where_predicate, ACTIONS(357), 2, anon_sym_true, @@ -240053,7 +246232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -240062,7 +246241,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -240074,158 +246253,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51685] = 7, + [54277] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1783), 1, - aux_sym_cell_path_repeat1, - STATE(1796), 1, - sym_comment, - STATE(2173), 1, - sym_path, - ACTIONS(1440), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1442), 40, + ACTIONS(299), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [51758] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1797), 1, + STATE(389), 1, + sym__val_number, + STATE(1850), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4879), 1, + STATE(4801), 1, sym__expression, - STATE(4881), 1, + STATE(4809), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -240237,7 +246350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51893] = 38, + [54412] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -240262,44 +246375,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1798), 1, + STATE(389), 1, + sym__val_number, + STATE(1851), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4738), 1, - sym__where_predicate, - STATE(4739), 1, + STATE(4837), 1, sym__expression, + STATE(4839), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -240313,7 +246426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -240322,7 +246435,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -240334,7 +246447,70 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52028] = 38, + [54547] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1852), 1, + sym_comment, + ACTIONS(1441), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1443), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [54614] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -240359,44 +246535,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1799), 1, + STATE(389), 1, + sym__val_number, + STATE(1853), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4736), 1, - sym__where_predicate, - STATE(4737), 1, + STATE(4818), 1, sym__expression, + STATE(4820), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -240410,7 +246586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -240419,7 +246595,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -240431,221 +246607,189 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52163] = 5, + [54749] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4189), 1, - anon_sym_QMARK2, - STATE(1800), 1, - sym_comment, - ACTIONS(1466), 13, - anon_sym_COMMA, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1464), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1854), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5131), 1, + sym__expression, + STATE(5132), 1, + sym__where_predicate, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [52232] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4191), 1, - anon_sym_DOT2, - ACTIONS(4193), 1, - aux_sym__immediate_decimal_token2, - STATE(1801), 1, - sym_comment, - ACTIONS(2808), 12, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2806), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [52303] = 38, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [54884] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1802), 1, + STATE(422), 1, + sym__val_number, + STATE(1855), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4734), 1, - sym__where_predicate, - STATE(4735), 1, + STATE(5122), 1, sym__expression, - ACTIONS(357), 2, + STATE(5124), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -240657,92 +246801,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52438] = 38, + [55019] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1803), 1, + STATE(422), 1, + sym__val_number, + STATE(1856), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4732), 1, - sym__where_predicate, - STATE(4733), 1, + STATE(5113), 1, sym__expression, - ACTIONS(357), 2, + STATE(5120), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -240754,92 +246898,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52573] = 38, + [55154] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1804), 1, + STATE(422), 1, + sym__val_number, + STATE(1857), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4610), 1, - sym__where_predicate, - STATE(4613), 1, + STATE(5106), 1, sym__expression, - ACTIONS(357), 2, + STATE(5107), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -240851,72 +246995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52708] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4193), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4195), 1, - aux_sym__immediate_decimal_token1, - STATE(1805), 1, - sym_comment, - ACTIONS(2808), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2806), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [52779] = 38, + [55289] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -240941,44 +247020,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1806), 1, + STATE(389), 1, + sym__val_number, + STATE(1858), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4727), 1, - sym__where_predicate, - STATE(4731), 1, + STATE(4799), 1, sym__expression, + STATE(4855), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -240992,7 +247071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -241001,7 +247080,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -241013,157 +247092,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52914] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4197), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4199), 1, - aux_sym__immediate_decimal_token2, - STATE(1807), 1, - sym_comment, - ACTIONS(2784), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2782), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [52985] = 38, + [55424] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1808), 1, + STATE(422), 1, + sym__val_number, + STATE(1859), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4837), 1, - sym__where_predicate, - STATE(4839), 1, + STATE(5104), 1, sym__expression, - ACTIONS(357), 2, + STATE(5105), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -241175,7 +247189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53120] = 38, + [55559] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -241200,44 +247214,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1809), 1, + STATE(389), 1, + sym__val_number, + STATE(1860), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4794), 1, - sym__where_predicate, - STATE(4843), 1, + STATE(4742), 1, sym__expression, + STATE(4748), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -241251,7 +247265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -241260,7 +247274,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -241272,7 +247286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53255] = 38, + [55694] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -241297,44 +247311,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1810), 1, + STATE(389), 1, + sym__val_number, + STATE(1861), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4844), 1, - sym__where_predicate, - STATE(4845), 1, + STATE(4623), 1, sym__expression, + STATE(4625), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -241348,7 +247362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -241357,7 +247371,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -241369,7 +247383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53390] = 38, + [55829] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -241394,43 +247408,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1811), 1, + STATE(389), 1, + sym__val_number, + STATE(1862), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4846), 1, + STATE(4497), 1, sym__where_predicate, - STATE(4847), 1, + STATE(4641), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -241445,7 +247459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -241454,7 +247468,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -241466,7 +247480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53525] = 38, + [55964] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -241491,44 +247505,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1812), 1, + STATE(389), 1, + sym__val_number, + STATE(1863), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4848), 1, - sym__where_predicate, - STATE(4849), 1, + STATE(4634), 1, sym__expression, + STATE(4635), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -241542,7 +247556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -241551,7 +247565,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -241563,73 +247577,104 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53660] = 7, + [56099] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1766), 1, - aux_sym_cell_path_repeat1, - STATE(1813), 1, - sym_comment, - STATE(2173), 1, - sym_path, - ACTIONS(1440), 13, - anon_sym_GT, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(77), 1, anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1442), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1864), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5099), 1, + sym__expression, + STATE(5103), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(89), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - [53733] = 38, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [56234] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -241654,44 +247699,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1814), 1, + STATE(389), 1, + sym__val_number, + STATE(1865), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4860), 1, - sym__where_predicate, - STATE(4861), 1, + STATE(4642), 1, sym__expression, + STATE(4643), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -241705,7 +247750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -241714,7 +247759,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -241726,7 +247771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53868] = 38, + [56369] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -241751,44 +247796,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1815), 1, + STATE(389), 1, + sym__val_number, + STATE(1866), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4862), 1, - sym__where_predicate, - STATE(4863), 1, + STATE(4644), 1, sym__expression, + STATE(4647), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -241802,7 +247847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -241811,7 +247856,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -241823,92 +247868,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54003] = 38, + [56504] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1816), 1, + STATE(422), 1, + sym__val_number, + STATE(1867), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4864), 1, - sym__where_predicate, - STATE(4865), 1, + STATE(5090), 1, sym__expression, - ACTIONS(357), 2, + STATE(5094), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -241920,7 +247965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54138] = 38, + [56639] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -241945,44 +247990,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1817), 1, + STATE(389), 1, + sym__val_number, + STATE(1868), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4866), 1, - sym__where_predicate, - STATE(4867), 1, + STATE(4650), 1, sym__expression, + STATE(4651), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -241996,7 +248041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -242005,7 +248050,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -242017,7 +248062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54273] = 38, + [56774] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -242042,43 +248087,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1818), 1, + STATE(389), 1, + sym__val_number, + STATE(1869), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4868), 1, + STATE(4667), 1, sym__where_predicate, - STATE(4869), 1, + STATE(4800), 1, sym__expression, ACTIONS(357), 2, anon_sym_true, @@ -242093,7 +248138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -242102,7 +248147,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [56909] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1870), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5088), 1, + sym__expression, + STATE(5089), 1, + sym__where_predicate, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -242114,7 +248256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54408] = 38, + [57044] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -242139,43 +248281,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1819), 1, + STATE(389), 1, + sym__val_number, + STATE(1871), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4681), 1, + STATE(4672), 1, sym__expression, - STATE(4870), 1, + STATE(4675), 1, sym__where_predicate, ACTIONS(357), 2, anon_sym_true, @@ -242190,7 +248332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -242199,7 +248341,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -242211,7 +248353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54543] = 38, + [57179] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -242236,43 +248378,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1820), 1, + STATE(389), 1, + sym__val_number, + STATE(1872), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4744), 1, + STATE(4676), 1, sym__expression, - STATE(4785), 1, + STATE(4684), 1, sym__where_predicate, ACTIONS(357), 2, anon_sym_true, @@ -242287,7 +248429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -242296,7 +248438,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -242308,92 +248450,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54678] = 38, + [57314] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1821), 1, + STATE(389), 1, + sym__val_number, + STATE(1873), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5062), 1, - sym__where_predicate, - STATE(5063), 1, + STATE(4685), 1, sym__expression, - ACTIONS(83), 2, + STATE(4687), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -242405,7 +248547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54813] = 38, + [57449] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -242430,44 +248572,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1822), 1, + STATE(389), 1, + sym__val_number, + STATE(1874), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4616), 1, - sym__where_predicate, - STATE(4617), 1, + STATE(4688), 1, sym__expression, + STATE(4689), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -242481,7 +248623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -242490,7 +248632,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -242502,7 +248644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54948] = 38, + [57584] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -242527,44 +248669,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1823), 1, + STATE(389), 1, + sym__val_number, + STATE(1875), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4619), 1, - sym__where_predicate, - STATE(4620), 1, + STATE(4692), 1, sym__expression, + STATE(4694), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -242578,7 +248720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -242587,7 +248729,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -242599,7 +248741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55083] = 38, + [57719] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -242628,39 +248770,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1824), 1, + STATE(422), 1, + sym__val_number, + STATE(1876), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5093), 1, + STATE(5085), 1, sym__expression, - STATE(5232), 1, + STATE(5087), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -242675,7 +248817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -242684,7 +248826,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -242696,140 +248838,201 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55218] = 6, + [57854] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4201), 1, - anon_sym_DOT2, - ACTIONS(4203), 1, - aux_sym__immediate_decimal_token2, - STATE(1825), 1, - sym_comment, - ACTIONS(2906), 12, - anon_sym_COMMA, + ACTIONS(299), 1, + anon_sym_LBRACK, + ACTIONS(301), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(333), 1, + anon_sym_DOT, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(367), 1, + sym_val_date, + ACTIONS(369), 1, + anon_sym_DQUOTE, + ACTIONS(373), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(375), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, anon_sym_PLUS, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4246), 1, + sym_identifier, + STATE(350), 1, + sym_val_number, + STATE(374), 1, + sym__val_number_decimal, + STATE(389), 1, + sym__val_number, + STATE(1877), 1, + sym_comment, + STATE(2531), 1, + sym_val_range, + STATE(2915), 1, + sym__var, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, + sym__inter_double_quotes, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, + sym__expr_binary_expression, + STATE(4790), 1, + sym__expression, + STATE(4791), 1, + sym__where_predicate, + ACTIONS(357), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(363), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(371), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3101), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2904), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [55289] = 9, + STATE(3057), 11, + sym_val_nothing, + sym_val_bool, + 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, + [57989] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1796), 1, - sym_path, - STATE(1826), 1, - sym_comment, - STATE(2206), 1, - sym_cell_path, - ACTIONS(1403), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(4208), 8, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym__, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, anon_sym_DOT, + ACTIONS(77), 1, anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4205), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1878), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5082), 1, + sym__expression, + STATE(5084), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(89), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1405), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [55366] = 38, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [58124] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -242858,39 +249061,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1827), 1, + STATE(422), 1, + sym__val_number, + STATE(1879), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5067), 1, + STATE(5075), 1, sym__where_predicate, - STATE(5068), 1, + STATE(5173), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -242905,7 +249108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -242914,7 +249117,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -242926,7 +249129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55501] = 38, + [58259] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -242955,39 +249158,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1828), 1, + STATE(422), 1, + sym__val_number, + STATE(1880), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4943), 1, + STATE(5072), 1, sym__expression, - STATE(4944), 1, + STATE(5074), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -243002,7 +249205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -243011,7 +249214,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -243023,7 +249226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55636] = 38, + [58394] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -243052,39 +249255,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1829), 1, + STATE(422), 1, + sym__val_number, + STATE(1881), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5168), 1, + STATE(5070), 1, sym__expression, - STATE(5170), 1, + STATE(5071), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -243099,7 +249302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -243108,7 +249311,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -243120,7 +249323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55771] = 38, + [58529] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -243145,44 +249348,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1830), 1, + STATE(389), 1, + sym__val_number, + STATE(1882), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4622), 1, - sym__where_predicate, - STATE(4623), 1, + STATE(4788), 1, sym__expression, + STATE(4789), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -243196,7 +249399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -243205,7 +249408,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -243217,7 +249420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55906] = 38, + [58664] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -243242,44 +249445,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1831), 1, + STATE(389), 1, + sym__val_number, + STATE(1883), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4625), 1, - sym__where_predicate, - STATE(4626), 1, + STATE(4778), 1, sym__expression, + STATE(4779), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -243293,7 +249496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -243302,7 +249505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -243314,92 +249517,348 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56041] = 38, + [58799] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(4260), 1, + aux_sym__immediate_decimal_token2, + STATE(1884), 1, + sym_comment, + ACTIONS(2986), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2984), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [58868] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4262), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(4264), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(4266), 1, anon_sym_DOT, - ACTIONS(77), 1, + ACTIONS(4268), 1, anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(4270), 1, + aux_sym__val_number_decimal_token1, + STATE(436), 1, + sym__val_number, + STATE(448), 1, + sym__val_number_decimal, + STATE(471), 1, + sym_val_number, + STATE(1885), 1, + sym_comment, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3253), 1, + sym_val_variable, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3566), 1, + sym__expression, + STATE(3567), 1, + sym__expr_binary_expression, + STATE(3568), 1, + sym_block, + STATE(4782), 1, + sym_val_range, + STATE(5551), 1, + sym__match_expression, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3258), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2896), 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(3129), 11, + sym_val_nothing, + sym_val_bool, + 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, + [59001] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4274), 1, + anon_sym_LPAREN, + ACTIONS(4276), 1, + anon_sym_DOLLAR, + ACTIONS(4278), 1, + anon_sym_DASH, + ACTIONS(4280), 1, + anon_sym_LBRACE, + ACTIONS(4282), 1, + anon_sym_DOT, + ACTIONS(4284), 1, + anon_sym_PLUS, + ACTIONS(4286), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(4288), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(4292), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(4298), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(4300), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(4304), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4306), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(255), 1, + sym__val_number_decimal, + STATE(261), 1, + sym__val_number, + STATE(262), 1, + sym_val_number, + STATE(1721), 1, + sym__var, + STATE(1886), 1, + sym_comment, + STATE(1948), 1, + sym_expr_parenthesized, + STATE(1949), 1, + sym_val_variable, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, + sym__inter_single_quotes, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2167), 1, + sym__expr_unary_minus, + STATE(3557), 1, + sym__expr_binary_expression, + STATE(3559), 1, + sym_val_range, + STATE(3562), 1, + sym__match_expression, + STATE(3566), 1, + sym__expression, + STATE(3568), 1, + sym_block, + ACTIONS(4290), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4296), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2009), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(4294), 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(2007), 11, + sym_val_nothing, + sym_val_bool, + 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, + [59134] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(299), 1, + anon_sym_LBRACK, + ACTIONS(301), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(333), 1, + anon_sym_DOT, + ACTIONS(353), 1, + anon_sym_not, + ACTIONS(355), 1, + anon_sym_null, + ACTIONS(359), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(367), 1, + sym_val_date, + ACTIONS(369), 1, + anon_sym_DQUOTE, + ACTIONS(373), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1832), 1, + STATE(389), 1, + sym__val_number, + STATE(1887), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4898), 1, + STATE(4772), 1, sym__expression, - STATE(4899), 1, + STATE(4776), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -243411,92 +249870,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56176] = 38, + [59269] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1833), 1, + STATE(389), 1, + sym__val_number, + STATE(1888), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4940), 1, + STATE(4766), 1, sym__expression, - STATE(4942), 1, + STATE(4769), 1, sym__where_predicate, - ACTIONS(83), 2, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -243508,7 +249967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56311] = 38, + [59404] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -243537,39 +249996,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1834), 1, + STATE(422), 1, + sym__val_number, + STATE(1889), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4935), 1, + STATE(5034), 1, sym__expression, - STATE(4939), 1, + STATE(5039), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -243584,7 +250043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -243593,7 +250052,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -243605,335 +250064,104 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56446] = 7, + [59539] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1796), 1, - sym_path, - STATE(1835), 1, - sym_comment, - STATE(2258), 1, - sym_cell_path, - ACTIONS(1418), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1420), 40, + ACTIONS(31), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(33), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [56519] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4211), 1, - anon_sym_DOT2, - ACTIONS(4213), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4215), 1, - aux_sym_unquoted_token2, - STATE(1836), 1, - sym_comment, - ACTIONS(1426), 13, - anon_sym_GT, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(77), 1, anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1428), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, 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, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, sym_val_date, + ACTIONS(95), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [56592] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4010), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4217), 1, - anon_sym_DOT2, - STATE(1837), 1, - sym_comment, - ACTIONS(2808), 12, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2806), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1890), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(5029), 1, + sym__expression, + STATE(5030), 1, + sym__where_predicate, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [56663] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4220), 1, - anon_sym_DOT2, - ACTIONS(4223), 1, - aux_sym__immediate_decimal_token2, - STATE(1838), 1, - sym_comment, - ACTIONS(2906), 12, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2904), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [56734] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1796), 1, - sym_path, - STATE(1839), 1, - sym_comment, - STATE(2219), 1, - sym_cell_path, - ACTIONS(1422), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1424), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [56807] = 38, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [59674] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -243962,40 +250190,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1840), 1, + STATE(422), 1, + sym__val_number, + STATE(1891), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5165), 1, - sym__where_predicate, - STATE(5166), 1, + STATE(5027), 1, sym__expression, + STATE(5028), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -244009,7 +250237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244018,7 +250246,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244030,7 +250258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56942] = 38, + [59809] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244059,39 +250287,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1841), 1, + STATE(422), 1, + sym__val_number, + STATE(1892), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4929), 1, + STATE(5023), 1, sym__expression, - STATE(4930), 1, + STATE(5024), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -244106,7 +250334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244115,7 +250343,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244127,7 +250355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57077] = 38, + [59944] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244156,39 +250384,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1842), 1, + STATE(422), 1, + sym__val_number, + STATE(1893), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4922), 1, + STATE(5019), 1, sym__expression, - STATE(4928), 1, + STATE(5021), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -244203,7 +250431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244212,7 +250440,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244224,7 +250452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57212] = 38, + [60079] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244253,40 +250481,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1843), 1, + STATE(422), 1, + sym__val_number, + STATE(1894), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5163), 1, - sym__where_predicate, - STATE(5164), 1, + STATE(5016), 1, sym__expression, + STATE(5017), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -244300,7 +250528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244309,7 +250537,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244321,7 +250549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57347] = 38, + [60214] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244350,40 +250578,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1844), 1, + STATE(422), 1, + sym__val_number, + STATE(1895), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5159), 1, - sym__where_predicate, - STATE(5160), 1, + STATE(5014), 1, sym__expression, + STATE(5015), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -244397,7 +250625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244406,7 +250634,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244418,7 +250646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57482] = 38, + [60349] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244447,39 +250675,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1845), 1, + STATE(422), 1, + sym__val_number, + STATE(1896), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4917), 1, + STATE(5011), 1, sym__expression, - STATE(4918), 1, + STATE(5013), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -244494,7 +250722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244503,7 +250731,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244515,14 +250743,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57617] = 5, + [60484] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4225), 1, + ACTIONS(4070), 1, aux_sym__immediate_decimal_token2, - STATE(1846), 1, + STATE(1897), 1, sym_comment, - ACTIONS(2876), 13, + ACTIONS(2908), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -244536,7 +250764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2874), 42, + ACTIONS(2906), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244579,7 +250807,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [57686] = 38, + [60553] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244608,40 +250836,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1847), 1, + STATE(422), 1, + sym__val_number, + STATE(1898), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5154), 1, - sym__where_predicate, - STATE(5158), 1, + STATE(5005), 1, sym__expression, + STATE(5008), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -244655,7 +250883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244664,7 +250892,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244676,7 +250904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57821] = 38, + [60688] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244705,39 +250933,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1848), 1, + STATE(422), 1, + sym__val_number, + STATE(1899), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4914), 1, - sym__expression, - STATE(4916), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4941), 1, + sym__expression, + STATE(5004), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -244752,7 +250980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244761,7 +250989,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244773,7 +251001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57956] = 38, + [60823] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244802,40 +251030,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1849), 1, + STATE(422), 1, + sym__val_number, + STATE(1900), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5152), 1, - sym__where_predicate, - STATE(5153), 1, + STATE(5002), 1, sym__expression, + STATE(5003), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -244849,7 +251077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244858,7 +251086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244870,7 +251098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58091] = 38, + [60958] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244899,40 +251127,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(422), 1, + sym__val_number, + STATE(1901), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5149), 1, - sym__where_predicate, - STATE(5151), 1, + STATE(5000), 1, sym__expression, + STATE(5001), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -244946,7 +251174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -244955,7 +251183,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -244967,7 +251195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58226] = 38, + [61093] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -244996,40 +251224,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1851), 1, + STATE(422), 1, + sym__val_number, + STATE(1902), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5143), 1, - sym__where_predicate, - STATE(5146), 1, + STATE(4999), 1, sym__expression, + STATE(5061), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -245043,7 +251271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -245052,7 +251280,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -245064,92 +251292,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58361] = 38, + [61228] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1852), 1, + STATE(389), 1, + sym__val_number, + STATE(1903), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5137), 1, - sym__where_predicate, - STATE(5139), 1, + STATE(4763), 1, sym__expression, - ACTIONS(83), 2, + STATE(4765), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -245161,73 +251389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58496] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1796), 1, - sym_path, - STATE(1853), 1, - sym_comment, - STATE(2268), 1, - sym_cell_path, - ACTIONS(1389), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1391), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [58569] = 38, + [61363] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -245256,40 +251418,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1854), 1, + STATE(422), 1, + sym__val_number, + STATE(1904), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5135), 1, - sym__where_predicate, - STATE(5136), 1, + STATE(4997), 1, sym__expression, + STATE(4998), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -245303,7 +251465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -245312,7 +251474,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -245324,7 +251486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58704] = 38, + [61498] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -245353,40 +251515,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1855), 1, + STATE(422), 1, + sym__val_number, + STATE(1905), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5133), 1, - sym__where_predicate, - STATE(5134), 1, + STATE(4993), 1, sym__expression, + STATE(4994), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -245400,7 +251562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -245409,7 +251571,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -245421,7 +251583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58839] = 38, + [61633] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -245450,40 +251612,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1856), 1, + STATE(422), 1, + sym__val_number, + STATE(1906), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5127), 1, - sym__where_predicate, - STATE(5167), 1, + STATE(4989), 1, sym__expression, + STATE(4991), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -245497,7 +251659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -245506,7 +251668,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -245518,7 +251680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58974] = 38, + [61768] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -245547,40 +251709,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1857), 1, + STATE(422), 1, + sym__val_number, + STATE(1907), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5125), 1, - sym__where_predicate, - STATE(5126), 1, + STATE(4987), 1, sym__expression, + STATE(4988), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -245594,7 +251756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -245603,7 +251765,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -245615,7 +251777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59109] = 38, + [61903] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -245644,39 +251806,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1858), 1, + STATE(422), 1, + sym__val_number, + STATE(1908), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4909), 1, + STATE(4978), 1, sym__expression, - STATE(4910), 1, + STATE(4986), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -245691,7 +251853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -245700,7 +251862,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -245712,7 +251874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59244] = 38, + [62038] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -245741,39 +251903,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1859), 1, + STATE(422), 1, + sym__val_number, + STATE(1909), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4906), 1, + STATE(4969), 1, sym__expression, - STATE(4908), 1, + STATE(4972), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -245788,7 +251950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -245797,7 +251959,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -245809,7 +251971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59379] = 38, + [62173] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -245838,40 +252000,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1860), 1, + STATE(422), 1, + sym__val_number, + STATE(1910), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5123), 1, - sym__where_predicate, - STATE(5124), 1, + STATE(4967), 1, sym__expression, + STATE(4968), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -245885,7 +252047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -245894,7 +252056,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -245906,7 +252068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59514] = 38, + [62308] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -245935,40 +252097,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1861), 1, + STATE(422), 1, + sym__val_number, + STATE(1911), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5110), 1, - sym__where_predicate, - STATE(5120), 1, + STATE(4964), 1, sym__expression, + STATE(4965), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -245982,7 +252144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -245991,7 +252153,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -246003,92 +252165,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59649] = 38, + [62443] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1862), 1, + STATE(422), 1, + sym__val_number, + STATE(1912), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4632), 1, - sym__where_predicate, - STATE(4634), 1, + STATE(4956), 1, sym__expression, - ACTIONS(357), 2, + STATE(4959), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -246100,7 +252262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59784] = 38, + [62578] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -246129,40 +252291,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1863), 1, + STATE(422), 1, + sym__val_number, + STATE(1913), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(5107), 1, - sym__where_predicate, - STATE(5109), 1, + STATE(4947), 1, sym__expression, + STATE(4955), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -246176,7 +252338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -246185,7 +252347,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -246197,156 +252359,189 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59919] = 5, + [62713] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4114), 1, - aux_sym__immediate_decimal_token2, - STATE(1864), 1, - sym_comment, - ACTIONS(2784), 13, - anon_sym_COMMA, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2782), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + sym_identifier, + STATE(381), 1, + sym_val_number, + STATE(408), 1, + sym__val_number_decimal, + STATE(422), 1, + sym__val_number, + STATE(1914), 1, + sym_comment, + STATE(2745), 1, + sym_val_range, + STATE(2955), 1, + sym__var, + STATE(3043), 1, + sym_val_variable, + STATE(3074), 1, + sym_expr_parenthesized, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, + sym__expr_binary_expression, + STATE(4951), 1, + sym__expression, + STATE(4952), 1, + sym__where_predicate, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [59988] = 38, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3244), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(3230), 11, + sym_val_nothing, + sym_val_bool, + 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, + [62848] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(355), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(359), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(369), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(358), 1, + STATE(381), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1865), 1, + STATE(422), 1, + sym__val_number, + STATE(1915), 1, sym_comment, - STATE(2472), 1, + STATE(2745), 1, sym_val_range, - STATE(2833), 1, + STATE(2955), 1, sym__var, - STATE(2985), 1, + STATE(3043), 1, sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4642), 1, - sym__where_predicate, - STATE(4644), 1, + STATE(4931), 1, sym__expression, - ACTIONS(357), 2, + STATE(4948), 1, + sym__where_predicate, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(363), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(371), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(365), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(361), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -246358,7 +252553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60123] = 38, + [62983] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -246387,40 +252582,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4258), 1, sym_identifier, - STATE(373), 1, + STATE(381), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(408), 1, sym__val_number_decimal, - STATE(1866), 1, + STATE(422), 1, + sym__val_number, + STATE(1916), 1, sym_comment, - STATE(2605), 1, + STATE(2745), 1, sym_val_range, - STATE(2893), 1, + STATE(2955), 1, sym__var, - STATE(3003), 1, + STATE(3043), 1, sym_val_variable, - STATE(3029), 1, + STATE(3074), 1, sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, - STATE(3484), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + STATE(3553), 1, sym__expr_binary_expression, - STATE(4903), 1, - sym__expression, - STATE(4905), 1, + STATE(4919), 1, sym__where_predicate, + STATE(4920), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -246434,7 +252629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3244), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -246443,7 +252638,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3230), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -246455,7 +252650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60258] = 38, + [63118] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(299), 1, @@ -246480,44 +252675,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, + ACTIONS(497), 1, anon_sym_DASH, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4116), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(358), 1, + STATE(350), 1, sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1867), 1, + STATE(389), 1, + sym__val_number, + STATE(1917), 1, sym_comment, - STATE(2472), 1, + STATE(2531), 1, sym_val_range, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(2985), 1, + STATE(2981), 1, + sym_expr_parenthesized, + STATE(2993), 1, sym_val_variable, - STATE(2990), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3493), 1, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3513), 1, sym__expr_binary_expression, - STATE(4645), 1, - sym__where_predicate, - STATE(4647), 1, + STATE(4758), 1, sym__expression, + STATE(4760), 1, + sym__where_predicate, ACTIONS(357), 2, anon_sym_true, anon_sym_false, @@ -246531,7 +252726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3004), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -246540,7 +252735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3047), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -246552,18 +252747,143 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60393] = 7, + [63253] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4308), 1, anon_sym_DOT2, - STATE(1796), 1, - sym_path, - STATE(1868), 1, + ACTIONS(4310), 1, + aux_sym__immediate_decimal_token2, + STATE(1918), 1, sym_comment, - STATE(2210), 1, - sym_cell_path, - ACTIONS(1407), 13, + ACTIONS(2834), 12, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2832), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [63324] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4165), 1, + aux_sym__immediate_decimal_token2, + STATE(1919), 1, + sym_comment, + ACTIONS(2834), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2832), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [63393] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4312), 1, + anon_sym_QMARK2, + STATE(1920), 1, + sym_comment, + ACTIONS(1419), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -246577,13 +252897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1409), 40, + aux_sym_unquoted_token1, + ACTIONS(1421), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -246618,92 +252940,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [60466] = 38, + [63462] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(4312), 1, + anon_sym_QMARK2, + STATE(1921), 1, + sym_comment, + ACTIONS(1419), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1421), 41, anon_sym_LBRACK, - ACTIONS(33), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(39), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [63531] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4314), 1, + anon_sym_DOT2, + ACTIONS(4316), 1, + aux_sym__immediate_decimal_token2, + STATE(1922), 1, + sym_comment, + ACTIONS(2936), 12, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2934), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(57), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [63602] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(299), 1, + anon_sym_LBRACK, + ACTIONS(301), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(333), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1869), 1, + STATE(389), 1, + sym__val_number, + STATE(1923), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5105), 1, - sym__where_predicate, - STATE(5106), 1, + STATE(4755), 1, sym__expression, - ACTIONS(83), 2, + STATE(4757), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3190), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3212), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -246715,2193 +253166,222 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60601] = 38, + [63737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(4318), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4320), 1, + aux_sym__immediate_decimal_token2, + STATE(1924), 1, + sym_comment, + ACTIONS(2908), 13, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(39), 1, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2906), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [63808] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4310), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4322), 1, + aux_sym__immediate_decimal_token1, + STATE(1925), 1, + sym_comment, + ACTIONS(2834), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(77), 1, anon_sym_PLUS, - ACTIONS(79), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2832), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [63879] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(299), 1, + anon_sym_LBRACK, + ACTIONS(301), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(333), 1, + anon_sym_DOT, + ACTIONS(353), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(355), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(497), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_PLUS, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(4118), 1, + ACTIONS(4246), 1, sym_identifier, - STATE(373), 1, + STATE(350), 1, sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, + STATE(374), 1, sym__val_number_decimal, - STATE(1870), 1, + STATE(389), 1, + sym__val_number, + STATE(1926), 1, sym_comment, - STATE(2605), 1, + STATE(2531), 1, sym_val_range, - STATE(2893), 1, + STATE(2915), 1, sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, + STATE(2981), 1, sym_expr_parenthesized, - STATE(3179), 1, + STATE(2993), 1, + sym_val_variable, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, + STATE(3513), 1, sym__expr_binary_expression, - STATE(5102), 1, - sym__where_predicate, - STATE(5103), 1, + STATE(4750), 1, sym__expression, - ACTIONS(83), 2, + STATE(4752), 1, + sym__where_predicate, + ACTIONS(357), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(363), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [60736] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, - sym__val_number_decimal, - STATE(1871), 1, - sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, - sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, - sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4901), 1, - sym__expression, - STATE(4902), 1, - sym__where_predicate, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [60871] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, - sym__val_number_decimal, - STATE(1872), 1, - sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, - sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, - sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(5100), 1, - sym__where_predicate, - STATE(5101), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [61006] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, - sym__val_number_decimal, - STATE(1873), 1, - sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, - sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, - sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(5098), 1, - sym__where_predicate, - STATE(5099), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [61141] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, - sym__val_number_decimal, - STATE(1874), 1, - sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, - sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, - sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(5094), 1, - sym__where_predicate, - STATE(5095), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [61276] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, - sym__val_number_decimal, - STATE(1875), 1, - sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, - sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, - sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(5088), 1, - sym__where_predicate, - STATE(5090), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [61411] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, - sym__val_number_decimal, - STATE(1876), 1, - sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, - sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, - sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(5077), 1, - sym__where_predicate, - STATE(5086), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [61546] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, - sym__val_number_decimal, - STATE(1877), 1, - sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, - sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, - sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(5073), 1, - sym__where_predicate, - STATE(5074), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [61681] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, - sym__val_number_decimal, - STATE(1878), 1, - sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, - sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, - sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(5069), 1, - sym__where_predicate, - STATE(5070), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [61816] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4189), 1, - anon_sym_QMARK2, - STATE(1879), 1, - sym_comment, - ACTIONS(1466), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1464), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [61885] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4118), 1, - sym_identifier, - STATE(373), 1, - sym_val_number, - STATE(426), 1, - sym__val_number, - STATE(428), 1, - sym__val_number_decimal, - STATE(1880), 1, - sym_comment, - STATE(2605), 1, - sym_val_range, - STATE(2893), 1, - sym__var, - STATE(3003), 1, - sym_val_variable, - STATE(3029), 1, - sym_expr_parenthesized, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - STATE(3484), 1, - sym__expr_binary_expression, - STATE(4875), 1, - sym__where_predicate, - STATE(5019), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3190), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3212), 11, - sym_val_nothing, - sym_val_bool, - 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, - [62020] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4116), 1, - sym_identifier, - STATE(358), 1, - sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, - sym__val_number_decimal, - STATE(1881), 1, - sym_comment, - STATE(2472), 1, - sym_val_range, - STATE(2833), 1, - sym__var, - STATE(2985), 1, - sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4541), 1, - sym__expression, - STATE(4655), 1, - sym__where_predicate, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(363), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3004), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(361), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [62155] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4116), 1, - sym_identifier, - STATE(358), 1, - sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, - sym__val_number_decimal, - STATE(1882), 1, - sym_comment, - STATE(2472), 1, - sym_val_range, - STATE(2833), 1, - sym__var, - STATE(2985), 1, - sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4689), 1, - sym__where_predicate, - STATE(4690), 1, - sym__expression, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(363), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3004), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(361), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [62290] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1796), 1, - sym_path, - STATE(1883), 1, - sym_comment, - STATE(2206), 1, - sym_cell_path, - ACTIONS(1403), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1405), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [62363] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4116), 1, - sym_identifier, - STATE(358), 1, - sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, - sym__val_number_decimal, - STATE(1884), 1, - sym_comment, - STATE(2472), 1, - sym_val_range, - STATE(2833), 1, - sym__var, - STATE(2985), 1, - sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4687), 1, - sym__where_predicate, - STATE(4688), 1, - sym__expression, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(363), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3004), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(361), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [62498] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4116), 1, - sym_identifier, - STATE(358), 1, - sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, - sym__val_number_decimal, - STATE(1885), 1, - sym_comment, - STATE(2472), 1, - sym_val_range, - STATE(2833), 1, - sym__var, - STATE(2985), 1, - sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4685), 1, - sym__where_predicate, - STATE(4686), 1, - sym__expression, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(363), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3004), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(361), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [62633] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4010), 1, - aux_sym__immediate_decimal_token2, - STATE(1886), 1, - sym_comment, - ACTIONS(2808), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2806), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [62702] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4116), 1, - sym_identifier, - STATE(358), 1, - sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, - sym__val_number_decimal, - STATE(1887), 1, - sym_comment, - STATE(2472), 1, - sym_val_range, - STATE(2833), 1, - sym__var, - STATE(2985), 1, - sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4683), 1, - sym__where_predicate, - STATE(4684), 1, - sym__expression, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(363), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3004), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(361), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [62837] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4116), 1, - sym_identifier, - STATE(358), 1, - sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, - sym__val_number_decimal, - STATE(1888), 1, - sym_comment, - STATE(2472), 1, - sym_val_range, - STATE(2833), 1, - sym__var, - STATE(2985), 1, - sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4677), 1, - sym__where_predicate, - STATE(4678), 1, - sym__expression, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(363), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3004), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(361), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [62972] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4116), 1, - sym_identifier, - STATE(358), 1, - sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, - sym__val_number_decimal, - STATE(1889), 1, - sym_comment, - STATE(2472), 1, - sym_val_range, - STATE(2833), 1, - sym__var, - STATE(2985), 1, - sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4675), 1, - sym__where_predicate, - STATE(4676), 1, - sym__expression, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(363), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3004), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(361), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [63107] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4116), 1, - sym_identifier, - STATE(358), 1, - sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, - sym__val_number_decimal, - STATE(1890), 1, - sym_comment, - STATE(2472), 1, - sym_val_range, - STATE(2833), 1, - sym__var, - STATE(2985), 1, - sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4673), 1, - sym__expression, - STATE(4700), 1, - sym__where_predicate, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(363), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3004), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(361), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [63242] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - anon_sym_LPAREN, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(353), 1, - anon_sym_not, - ACTIONS(355), 1, - anon_sym_null, - ACTIONS(359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(493), 1, - anon_sym_DASH, - ACTIONS(527), 1, - anon_sym_PLUS, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4116), 1, - sym_identifier, - STATE(358), 1, - sym_val_number, - STATE(368), 1, - sym__val_number, - STATE(387), 1, - sym__val_number_decimal, - STATE(1891), 1, - sym_comment, - STATE(2472), 1, - sym_val_range, - STATE(2833), 1, - sym__var, - STATE(2985), 1, - sym_val_variable, - STATE(2990), 1, - sym__str_double_quotes, - STATE(2994), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3493), 1, - sym__expr_binary_expression, - STATE(4670), 1, - sym__where_predicate, - STATE(4672), 1, - sym__expression, - ACTIONS(357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(363), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3004), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(361), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(3047), 11, - sym_val_nothing, - sym_val_bool, - 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, - [63377] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DOT2, - STATE(1796), 1, - sym_path, - STATE(1892), 1, - sym_comment, - STATE(2275), 1, - sym_cell_path, - ACTIONS(1447), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1449), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [63450] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4227), 1, - sym_cmd_identifier, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4231), 1, - anon_sym_LPAREN, - ACTIONS(4233), 1, - anon_sym_DOLLAR, - ACTIONS(4235), 1, - anon_sym_DASH, - ACTIONS(4237), 1, - anon_sym_LBRACE, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_PLUS, - ACTIONS(4243), 1, - anon_sym_not, - ACTIONS(4245), 1, - anon_sym_null, - ACTIONS(4249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4257), 1, - sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(78), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, - sym__val_number, - STATE(715), 1, - sym__var, - STATE(733), 1, - sym_expr_parenthesized, - STATE(735), 1, - sym_val_variable, - STATE(776), 1, - sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, - sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(1893), 1, - sym_comment, - STATE(1942), 1, - sym_val_range, - STATE(2062), 1, - sym__expression, - STATE(3489), 1, - sym__expr_binary_expression, - ACTIONS(4247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4253), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(4261), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4255), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(768), 3, + STATE(3101), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(4251), 4, + ACTIONS(361), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(759), 11, + STATE(3057), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -248913,19 +253393,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63582] = 5, + [64014] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4193), 1, - aux_sym__immediate_decimal_token2, - STATE(1894), 1, + STATE(1927), 1, sym_comment, - ACTIONS(2808), 13, + ACTIONS(1522), 14, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -248934,7 +253413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2806), 41, + ACTIONS(1520), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248961,6 +253440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -248976,19 +253456,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [63650] = 5, + [64081] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4199), 1, - aux_sym__immediate_decimal_token2, - STATE(1895), 1, + STATE(1928), 1, sym_comment, - ACTIONS(2784), 13, + ACTIONS(1526), 14, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -248997,7 +253476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2782), 41, + ACTIONS(1524), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249024,6 +253503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -249039,19 +253519,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [63718] = 5, + [64148] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4267), 1, - aux_sym__immediate_decimal_token2, - STATE(1896), 1, + STATE(1929), 1, sym_comment, - ACTIONS(2876), 13, + ACTIONS(1511), 14, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249060,7 +253539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2874), 41, + ACTIONS(1509), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249087,6 +253566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -249102,17 +253582,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [63786] = 4, + [64215] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1897), 1, + ACTIONS(4324), 1, + anon_sym_DOT2, + ACTIONS(4327), 1, + aux_sym__immediate_decimal_token2, + STATE(1930), 1, sym_comment, - ACTIONS(2808), 13, + ACTIONS(2936), 12, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249121,7 +253604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2806), 42, + ACTIONS(2934), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249164,17 +253647,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [63852] = 4, + [64286] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + ACTIONS(4165), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4329), 1, + anon_sym_DOT2, + STATE(1931), 1, sym_comment, - ACTIONS(2784), 13, + ACTIONS(2834), 12, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249183,7 +253669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2782), 42, + ACTIONS(2832), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249226,12 +253712,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [63918] = 4, + [64357] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1932), 1, sym_comment, - ACTIONS(2876), 13, + ACTIONS(2834), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -249245,7 +253731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2874), 42, + ACTIONS(2832), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249288,12 +253774,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [63984] = 4, + [64423] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1900), 1, + ACTIONS(4332), 1, + aux_sym_unquoted_token5, + STATE(1933), 1, + sym_comment, + ACTIONS(1545), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1547), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [64491] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1934), 1, sym_comment, - ACTIONS(3036), 13, + ACTIONS(3258), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -249307,7 +253856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3034), 42, + ACTIONS(3256), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249350,18 +253899,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [64050] = 5, + [64557] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4269), 1, - anon_sym_DOT2, - STATE(1901), 1, + STATE(1935), 1, sym_comment, - ACTIONS(3099), 12, + ACTIONS(2908), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249370,7 +253918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3097), 42, + ACTIONS(2906), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249413,18 +253961,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [64118] = 5, + [64623] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4271), 1, - anon_sym_DOT2, - STATE(1902), 1, + STATE(1936), 1, sym_comment, - ACTIONS(3105), 12, + ACTIONS(2986), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249433,7 +253980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3103), 42, + ACTIONS(2984), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249476,18 +254023,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [64186] = 5, + [64689] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4273), 1, - anon_sym_DOT2, - STATE(1903), 1, + ACTIONS(4334), 1, + aux_sym__immediate_decimal_token2, + STATE(1937), 1, sym_comment, - ACTIONS(3111), 12, + ACTIONS(2986), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249496,7 +254044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3109), 42, + ACTIONS(2984), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249523,7 +254071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -249539,113 +254086,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [64254] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4231), 1, - anon_sym_LPAREN, - ACTIONS(4233), 1, - anon_sym_DOLLAR, - ACTIONS(4235), 1, - anon_sym_DASH, - ACTIONS(4237), 1, - anon_sym_LBRACE, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_PLUS, - ACTIONS(4243), 1, - anon_sym_not, - ACTIONS(4245), 1, - anon_sym_null, - ACTIONS(4249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4257), 1, - sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4275), 1, - sym_cmd_identifier, - STATE(78), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, - sym__val_number, - STATE(715), 1, - sym__var, - STATE(733), 1, - sym_expr_parenthesized, - STATE(735), 1, - sym_val_variable, - STATE(776), 1, - sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, - sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(1904), 1, - sym_comment, - STATE(1942), 1, - sym_val_range, - STATE(2083), 1, - sym__expression, - STATE(3489), 1, - sym__expr_binary_expression, - ACTIONS(4247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4253), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(4261), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4255), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(768), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(4251), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(759), 11, - sym_val_nothing, - sym_val_bool, - 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, - [64386] = 5, + [64757] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4277), 1, - anon_sym_DOT2, - STATE(1905), 1, + ACTIONS(4320), 1, + aux_sym__immediate_decimal_token2, + STATE(1938), 1, sym_comment, - ACTIONS(3117), 12, + ACTIONS(2908), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249654,7 +254107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3115), 42, + ACTIONS(2906), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249681,7 +254134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -249697,17 +254149,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [64454] = 4, + [64825] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + ACTIONS(4310), 1, + aux_sym__immediate_decimal_token2, + STATE(1939), 1, sym_comment, - ACTIONS(1503), 13, + ACTIONS(2834), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249716,7 +254170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1501), 42, + ACTIONS(2832), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249743,7 +254197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -249759,79 +254212,329 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [64520] = 4, + [64893] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1907), 1, + STATE(1940), 1, sym_comment, - ACTIONS(1509), 13, + ACTIONS(1524), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1526), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [64959] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1941), 1, + sym_comment, + ACTIONS(1509), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1511), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(1507), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + [65025] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1942), 1, + sym_comment, + ACTIONS(1520), 14, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + anon_sym__, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1522), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, - aux_sym__record_key_token2, - [64586] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65091] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4029), 1, + aux_sym_unquoted_token3, + STATE(1943), 1, + sym_comment, + ACTIONS(1377), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1375), 47, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + aux_sym_unquoted_token1, + [65159] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1944), 1, sym_comment, - ACTIONS(1487), 13, + ACTIONS(1532), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1534), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [65225] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1945), 1, + sym_comment, + ACTIONS(1515), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249840,7 +254543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1485), 42, + ACTIONS(1513), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249867,7 +254570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -249883,18 +254585,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [64652] = 5, + [65291] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4279), 1, - anon_sym_DOT2, - STATE(1909), 1, - sym_comment, - ACTIONS(3125), 12, + ACTIONS(4336), 1, + anon_sym_COLON, + ACTIONS(4338), 1, anon_sym_COMMA, + STATE(1946), 1, + sym_comment, + ACTIONS(4340), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249903,7 +254607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3123), 42, + ACTIONS(1492), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249930,7 +254634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -249946,18 +254649,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [64720] = 5, + [65361] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4281), 1, - anon_sym_DOT2, - STATE(1910), 1, + STATE(1947), 1, sym_comment, - ACTIONS(3131), 12, + ACTIONS(1534), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -249966,7 +254668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3129), 42, + ACTIONS(1532), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250009,34 +254711,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [64788] = 4, + [65427] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1911), 1, + ACTIONS(4342), 1, + anon_sym_DOT2, + STATE(1948), 1, sym_comment, - ACTIONS(1454), 13, - anon_sym_GT, + ACTIONS(1542), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1540), 5, + anon_sym_GT, anon_sym_in, - anon_sym__, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, + ACTIONS(1536), 7, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1456), 42, + aux_sym_unquoted_token1, + ACTIONS(1538), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, + 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(1623), 21, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -250058,25 +254777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - 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, - [64854] = 4, + [65501] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1912), 1, + ACTIONS(4342), 1, + anon_sym_DOT2, + STATE(1949), 1, sym_comment, - ACTIONS(1475), 13, + ACTIONS(213), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -250090,15 +254798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1477), 42, + aux_sym_unquoted_token1, + ACTIONS(215), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -250133,14 +254840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64920] = 5, + [65569] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4283), 1, - anon_sym_QMARK2, - STATE(1913), 1, + STATE(1950), 1, sym_comment, - ACTIONS(1464), 13, + ACTIONS(1513), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -250154,7 +254859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1466), 41, + aux_sym_unquoted_token1, + ACTIONS(1515), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -250196,12 +254902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64988] = 4, + [65635] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1951), 1, sym_comment, - ACTIONS(1513), 13, + ACTIONS(1515), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -250215,7 +254921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1511), 42, + ACTIONS(1513), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250258,17 +254964,270 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [65054] = 4, + [65701] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1915), 1, + ACTIONS(4344), 1, + anon_sym_DOT2, + STATE(1952), 1, + sym_comment, + ACTIONS(3240), 12, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3238), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [65769] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4346), 1, + anon_sym_DOT2, + STATE(1953), 1, + sym_comment, + ACTIONS(3165), 12, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3163), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [65837] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4348), 1, + anon_sym_DOT2, + STATE(1954), 1, + sym_comment, + ACTIONS(3214), 12, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3212), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [65905] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4350), 1, + anon_sym_DOT2, + STATE(1955), 1, sym_comment, - ACTIONS(1493), 13, + ACTIONS(3208), 12, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3206), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [65973] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4352), 1, anon_sym_DOT2, + STATE(1956), 1, + sym_comment, + ACTIONS(3200), 12, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -250277,7 +255236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1491), 42, + ACTIONS(3198), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250320,89 +255279,248 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [65120] = 36, + [66041] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(4354), 1, + anon_sym_DOT2, + STATE(1957), 1, + sym_comment, + ACTIONS(3173), 12, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, - ACTIONS(3970), 1, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3171), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [66109] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4356), 1, + sym_cmd_identifier, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4360), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4364), 1, + anon_sym_DASH, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(3982), 1, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, anon_sym_PLUS, - ACTIONS(3984), 1, + ACTIONS(4372), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4374), 1, anon_sym_null, - ACTIONS(3990), 1, + ACTIONS(4378), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(4163), 1, + STATE(82), 1, + sym__val_number_decimal, + STATE(84), 1, + sym__val_number, + STATE(85), 1, + sym_val_number, + STATE(746), 1, + sym__var, + STATE(760), 1, + sym_val_variable, + STATE(767), 1, + sym_expr_parenthesized, + STATE(792), 1, + sym__expr_unary_minus, + STATE(814), 1, + sym__str_double_quotes, + STATE(831), 1, + sym__inter_single_quotes, + STATE(832), 1, + sym__inter_double_quotes, + STATE(1958), 1, + sym_comment, + STATE(1980), 1, + sym__expression, + STATE(1988), 1, + sym_val_range, + STATE(3518), 1, + sym__expr_binary_expression, + ACTIONS(4376), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4382), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(4390), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4384), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(819), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(4380), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(818), 11, + sym_val_nothing, + sym_val_bool, + 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, + [66241] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4358), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_LPAREN, + ACTIONS(4362), 1, + anon_sym_DOLLAR, + ACTIONS(4364), 1, anon_sym_DASH, - ACTIONS(4165), 1, + ACTIONS(4366), 1, + anon_sym_LBRACE, + ACTIONS(4368), 1, anon_sym_DOT, - STATE(434), 1, + ACTIONS(4370), 1, + anon_sym_PLUS, + ACTIONS(4372), 1, + anon_sym_not, + ACTIONS(4374), 1, + anon_sym_null, + ACTIONS(4378), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4386), 1, + sym_val_date, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4394), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4396), 1, + sym_cmd_identifier, + STATE(82), 1, + sym__val_number_decimal, + STATE(84), 1, sym__val_number, - STATE(465), 1, + STATE(85), 1, sym_val_number, - STATE(469), 1, - sym__val_number_decimal, - STATE(1916), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, + STATE(746), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, - sym_expr_parenthesized, - STATE(3159), 1, + STATE(760), 1, sym_val_variable, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(767), 1, + sym_expr_parenthesized, + STATE(792), 1, + sym__expr_unary_minus, + STATE(814), 1, + sym__str_double_quotes, + STATE(831), 1, sym__inter_single_quotes, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4514), 1, - sym_val_range, - STATE(5793), 1, + STATE(832), 1, + sym__inter_double_quotes, + STATE(1959), 1, + sym_comment, + STATE(1976), 1, sym__expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(1988), 1, + sym_val_range, + STATE(3518), 1, + sym__expr_binary_expression, + ACTIONS(4376), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, + ACTIONS(4382), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(4390), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3121), 3, + STATE(819), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 6, + ACTIONS(4380), 4, aux_sym__val_number_token1, aux_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(3219), 11, + STATE(818), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -250414,89 +255532,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65250] = 36, + [66373] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3982), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3990), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4161), 1, + ACTIONS(4144), 1, anon_sym_COLON, - ACTIONS(4163), 1, + ACTIONS(4146), 1, anon_sym_DASH, - ACTIONS(4165), 1, + ACTIONS(4250), 1, anon_sym_DOT, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(469), 1, + STATE(448), 1, sym__val_number_decimal, - STATE(1917), 1, + STATE(471), 1, + sym_val_number, + STATE(1960), 1, sym_comment, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, - sym_expr_parenthesized, - STATE(3159), 1, - sym_val_variable, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3485), 1, + STATE(3253), 1, + sym_val_variable, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4514), 1, + STATE(4782), 1, sym_val_range, - STATE(5471), 1, + STATE(5564), 1, sym__expression, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3121), 3, + STATE(3258), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 6, + ACTIONS(2896), 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(3219), 11, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -250508,90 +255626,90 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65380] = 37, + [66503] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3982), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3990), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4159), 1, - sym_identifier, - ACTIONS(4163), 1, + ACTIONS(4146), 1, anon_sym_DASH, - ACTIONS(4165), 1, + ACTIONS(4248), 1, + sym_identifier, + ACTIONS(4250), 1, anon_sym_DOT, - ACTIONS(4167), 1, + ACTIONS(4252), 1, anon_sym_not, - ACTIONS(4169), 1, + ACTIONS(4254), 1, anon_sym_null, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(469), 1, + STATE(448), 1, sym__val_number_decimal, - STATE(1918), 1, + STATE(471), 1, + sym_val_number, + STATE(1961), 1, sym_comment, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, - sym_expr_parenthesized, - STATE(3159), 1, - sym_val_variable, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3485), 1, + STATE(3253), 1, + sym_val_variable, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4514), 1, + STATE(4782), 1, sym_val_range, - STATE(5472), 1, + STATE(5562), 1, sym__expression, - ACTIONS(2831), 2, + ACTIONS(2898), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4171), 2, + ACTIONS(4256), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3121), 3, + STATE(3258), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 4, + ACTIONS(2896), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3219), 11, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -250603,90 +255721,90 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65512] = 37, + [66635] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3982), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3990), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, + ACTIONS(4146), 1, anon_sym_DASH, - ACTIONS(4165), 1, + ACTIONS(4250), 1, anon_sym_DOT, - ACTIONS(4167), 1, + ACTIONS(4252), 1, anon_sym_not, - ACTIONS(4169), 1, + ACTIONS(4254), 1, anon_sym_null, - ACTIONS(4285), 1, + ACTIONS(4398), 1, sym_identifier, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(469), 1, + STATE(448), 1, sym__val_number_decimal, - STATE(1919), 1, + STATE(471), 1, + sym_val_number, + STATE(1962), 1, sym_comment, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, - sym_expr_parenthesized, - STATE(3159), 1, - sym_val_variable, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3485), 1, + STATE(3253), 1, + sym_val_variable, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4514), 1, + STATE(4782), 1, sym_val_range, - STATE(5548), 1, + STATE(5622), 1, sym__expression, - ACTIONS(2831), 2, + ACTIONS(2898), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4171), 2, + ACTIONS(4256), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3121), 3, + STATE(3258), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 4, + ACTIONS(2896), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3219), 11, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -250698,90 +255816,90 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65644] = 37, + [66767] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3982), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(3990), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, + ACTIONS(4146), 1, anon_sym_DASH, - ACTIONS(4165), 1, + ACTIONS(4250), 1, anon_sym_DOT, - ACTIONS(4167), 1, + ACTIONS(4252), 1, anon_sym_not, - ACTIONS(4169), 1, + ACTIONS(4254), 1, anon_sym_null, - ACTIONS(4287), 1, + ACTIONS(4400), 1, sym_identifier, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(469), 1, + STATE(448), 1, sym__val_number_decimal, - STATE(1920), 1, + STATE(471), 1, + sym_val_number, + STATE(1963), 1, sym_comment, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, - sym_expr_parenthesized, - STATE(3159), 1, - sym_val_variable, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3485), 1, + STATE(3253), 1, + sym_val_variable, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3556), 1, sym__expr_binary_expression, - STATE(4514), 1, + STATE(4782), 1, sym_val_range, - STATE(5527), 1, + STATE(5609), 1, sym__expression, - ACTIONS(2831), 2, + ACTIONS(2898), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4171), 2, + ACTIONS(4256), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3121), 3, + STATE(3258), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2829), 4, + ACTIONS(2896), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(3219), 11, + STATE(3129), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -250793,244 +255911,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65776] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4283), 1, - anon_sym_QMARK2, - STATE(1921), 1, - sym_comment, - ACTIONS(1464), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1466), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [65844] = 36, + [66899] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, - anon_sym_LPAREN, - ACTIONS(3073), 1, - anon_sym_null, - ACTIONS(3087), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3095), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(4289), 1, - anon_sym_LBRACK, - ACTIONS(4291), 1, - anon_sym_RBRACK, - ACTIONS(4293), 1, - anon_sym_DOLLAR, - ACTIONS(4295), 1, - anon_sym_DASH, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4299), 1, - anon_sym_DOT, - ACTIONS(4301), 1, - anon_sym_PLUS, - ACTIONS(4303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4307), 1, - sym_val_date, - STATE(508), 1, - sym__val_number, - STATE(510), 1, - sym__val_number_decimal, - STATE(513), 1, - sym_val_number, - STATE(1922), 1, - sym_comment, - STATE(2263), 1, - aux_sym__match_pattern_list_repeat1, - STATE(3168), 1, - sym__var, - STATE(3419), 1, - sym__str_double_quotes, - STATE(3486), 1, - sym_val_variable, - STATE(3487), 1, - sym_expr_parenthesized, - STATE(3517), 1, - sym__expr_unary_minus, - STATE(3520), 1, - sym__match_pattern_expression, - STATE(3522), 1, - sym__match_pattern_list, - STATE(6079), 1, - sym_val_list, - ACTIONS(3075), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3089), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3524), 2, - sym__match_pattern_value, - sym_val_range, - STATE(6078), 2, - sym__match_pattern_rest, - sym__match_pattern_ignore_rest, - ACTIONS(3079), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3083), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4305), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3521), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(3527), 8, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_record, - sym_val_table, - [65973] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4319), 1, - anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_PLUS, - ACTIONS(4323), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4262), 1, + anon_sym_DASH, + ACTIONS(4268), 1, + anon_sym_PLUS, + ACTIONS(4270), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4402), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(385), 1, + STATE(471), 1, + sym_val_number, + STATE(494), 1, sym__val_number_decimal, - STATE(1923), 1, + STATE(1964), 1, sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2797), 1, + STATE(2865), 1, + sym__var, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2805), 1, - sym_unquoted, - STATE(2811), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2962), 1, + STATE(3322), 1, + sym_val_variable, + STATE(3335), 1, + sym_expr_parenthesized, + STATE(3589), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(4782), 1, + sym_val_range, + STATE(6002), 1, + sym__expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2761), 4, + STATE(3258), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(2807), 12, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -251040,85 +256003,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66098] = 34, + [67026] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, - anon_sym_not, - ACTIONS(4139), 1, - anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4366), 1, + anon_sym_LBRACE, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(4151), 1, + ACTIONS(4388), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + ACTIONS(4422), 1, aux_sym_unquoted_token1, - STATE(252), 1, + STATE(77), 1, sym__val_number_decimal, - STATE(260), 1, - sym_val_number, - STATE(262), 1, + STATE(84), 1, sym__val_number, - STATE(1782), 1, + STATE(85), 1, + sym_val_number, + STATE(741), 1, sym__var, - STATE(1924), 1, - sym_comment, - STATE(2211), 1, - sym__inter_single_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2227), 1, + STATE(777), 1, sym__expr_binary_expression, - STATE(2228), 1, + STATE(778), 1, sym_unquoted, - STATE(2242), 1, + STATE(792), 1, + sym__expr_unary_minus, + STATE(814), 1, sym__str_double_quotes, - ACTIONS(4141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4153), 2, + STATE(831), 1, + sym__inter_single_quotes, + STATE(832), 1, + sym__inter_double_quotes, + STATE(1965), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4416), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -251131,677 +256094,519 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66223] = 34, + [67151] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(4127), 1, - anon_sym_DOLLAR, - ACTIONS(4137), 1, - anon_sym_not, - ACTIONS(4139), 1, - anon_sym_null, - ACTIONS(4149), 1, - sym_val_date, - ACTIONS(4151), 1, - anon_sym_DQUOTE, - ACTIONS(4155), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, - anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4428), 1, + anon_sym_in, + ACTIONS(4444), 1, + anon_sym_bit_DASHand, + ACTIONS(4446), 1, + anon_sym_bit_DASHxor, + STATE(1966), 1, + sym_comment, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4426), 2, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, - anon_sym_DOT, - ACTIONS(4357), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4442), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4440), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 6, + anon_sym__, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - STATE(252), 1, - sym__val_number_decimal, - STATE(260), 1, - sym_val_number, - STATE(262), 1, - sym__val_number, - STATE(1782), 1, - sym__var, - STATE(1925), 1, - sym_comment, - STATE(2211), 1, - sym__inter_single_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2225), 1, - sym__expr_binary_expression, - STATE(2226), 1, - sym_unquoted, - STATE(2242), 1, - sym__str_double_quotes, - ACTIONS(4141), 2, + ACTIONS(1553), 24, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4145), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4361), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2208), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [66348] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(4127), 1, - anon_sym_DOLLAR, - ACTIONS(4137), 1, - anon_sym_not, - ACTIONS(4139), 1, - anon_sym_null, - ACTIONS(4149), 1, sym_val_date, - ACTIONS(4151), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, - anon_sym_LPAREN, - ACTIONS(4351), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [67240] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4428), 1, + anon_sym_in, + ACTIONS(4444), 1, + anon_sym_bit_DASHand, + STATE(1967), 1, + sym_comment, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4426), 2, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, - anon_sym_DOT, - ACTIONS(4357), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4442), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4440), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 6, + anon_sym__, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - STATE(252), 1, - sym__val_number_decimal, - STATE(260), 1, - sym_val_number, - STATE(262), 1, - sym__val_number, - STATE(1782), 1, - sym__var, - STATE(1926), 1, - sym_comment, - STATE(2211), 1, - sym__inter_single_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2222), 1, - sym__expr_binary_expression, - STATE(2224), 1, - sym_unquoted, - STATE(2242), 1, - sym__str_double_quotes, - ACTIONS(4141), 2, + ACTIONS(1553), 25, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4145), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4361), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2208), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [66473] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67327] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4428), 1, + anon_sym_in, + STATE(1968), 1, + sym_comment, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4426), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4442), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4440), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1553), 26, anon_sym_LBRACK, - ACTIONS(4311), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, - anon_sym_DASH, - ACTIONS(4367), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4369), 1, - anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, - sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1927), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2805), 1, - sym_unquoted, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2838), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4373), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [66598] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67412] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + STATE(1969), 1, + sym_comment, + ACTIONS(4426), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1551), 9, + anon_sym_GT, + anon_sym_in, + anon_sym__, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1553), 35, anon_sym_LBRACK, - ACTIONS(4311), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, - anon_sym_DASH, - ACTIONS(4367), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4369), 1, - anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, - sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1928), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2795), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2839), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4373), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [66723] = 35, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + STATE(1970), 1, + sym_comment, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1551), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1553), 39, anon_sym_LBRACK, - ACTIONS(3972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - ACTIONS(4165), 1, + anon_sym_RBRACE, anon_sym_DOT, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(469), 1, - sym__val_number_decimal, - STATE(1929), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, - sym_expr_parenthesized, - STATE(3159), 1, - sym_val_variable, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4514), 1, - sym_val_range, - STATE(5793), 1, - sym__expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3121), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 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(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [66850] = 35, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67554] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + STATE(1971), 1, + sym_comment, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1553), 37, anon_sym_LBRACK, - ACTIONS(3972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(1930), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4429), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 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(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [66977] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, - anon_sym_LBRACE, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - ACTIONS(4165), 1, - anon_sym_DOT, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(469), 1, - sym__val_number_decimal, - STATE(1931), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, - sym_expr_parenthesized, - STATE(3159), 1, - sym_val_variable, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4514), 1, - sym_val_range, - STATE(5524), 1, - sym__expression, - ACTIONS(2835), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3992), 3, + [67625] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4428), 1, + anon_sym_in, + STATE(1972), 1, + sym_comment, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4426), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4440), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3121), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 6, + aux_sym_unquoted_token1, + ACTIONS(1553), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + 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_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, - STATE(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [67104] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67708] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1932), 1, + STATE(1973), 1, sym_comment, - ACTIONS(1507), 13, - anon_sym_GT, + ACTIONS(4426), 2, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, + anon_sym_PLUS, + ACTIONS(4430), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 9, + anon_sym_GT, + anon_sym_in, + anon_sym__, anon_sym_LT2, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1509), 41, + aux_sym_unquoted_token1, + ACTIONS(1553), 37, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -251832,635 +256637,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67169] = 34, + [67781] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, + STATE(1974), 1, + sym_comment, + ACTIONS(1513), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(4367), 1, - anon_sym_DOT, - ACTIONS(4369), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(4371), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - STATE(325), 1, - sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1933), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2785), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2841), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4373), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [67294] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4309), 1, + aux_sym_unquoted_token1, + ACTIONS(1515), 41, anon_sym_LBRACK, - ACTIONS(4311), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, - anon_sym_DASH, - ACTIONS(4367), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4369), 1, - anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, - sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1934), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2770), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2842), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4373), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [67419] = 35, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67846] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + STATE(1975), 1, + sym_comment, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4426), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 7, + anon_sym_in, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1553), 31, anon_sym_LBRACK, - ACTIONS(3972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - ACTIONS(4165), 1, + anon_sym_RBRACE, anon_sym_DOT, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(469), 1, - sym__val_number_decimal, - STATE(1935), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, - sym_expr_parenthesized, - STATE(3159), 1, - sym_val_variable, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4514), 1, - sym_val_range, - STATE(5825), 1, - sym__expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3121), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 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(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [67546] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67925] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4450), 1, + anon_sym_COMMA, + STATE(1976), 1, + sym_comment, + ACTIONS(4452), 12, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, - anon_sym_DASH, - ACTIONS(4367), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4369), 1, anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, - sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1936), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2800), 1, - sym_unquoted, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2844), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4373), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4448), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [67671] = 34, + aux_sym__record_key_token2, + [67992] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4456), 1, + anon_sym_COMMA, + STATE(1977), 1, + sym_comment, + ACTIONS(4458), 12, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, - anon_sym_DASH, - ACTIONS(4367), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4369), 1, anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, - sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1937), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2763), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2845), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4373), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4454), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [67796] = 34, + aux_sym__record_key_token2, + [68059] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4462), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4466), 1, + anon_sym_DASH, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4470), 1, + anon_sym_DOT, + ACTIONS(4472), 1, + anon_sym_PLUS, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4480), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, - anon_sym_DASH, - ACTIONS(4367), 1, - anon_sym_DOT, - ACTIONS(4369), 1, - anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, + STATE(321), 1, sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(353), 1, sym__val_number, - STATE(1938), 1, + STATE(358), 1, + sym_val_number, + STATE(1978), 1, sym_comment, - STATE(2532), 1, + STATE(2559), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2758), 1, + sym_val_variable, + STATE(2759), 1, + sym_expr_parenthesized, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, STATE(2815), 1, - sym_unquoted, - STATE(2846), 1, + sym__expr_unary_minus, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(3531), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + STATE(3996), 1, + sym__expression, + STATE(4036), 1, + sym_val_range, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4373), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2761), 4, + STATE(2852), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [67921] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4375), 1, - anon_sym_DASH, - ACTIONS(4377), 1, - anon_sym_DOT, - ACTIONS(4379), 1, - anon_sym_PLUS, - ACTIONS(4381), 1, - aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(361), 1, - sym__val_number_decimal, - STATE(1939), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2770), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2896), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4383), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, + STATE(2855), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -252470,179 +256982,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [68046] = 34, + [68186] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4496), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4498), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4500), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4502), 1, + anon_sym_DASH, + ACTIONS(4504), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_PLUS, + ACTIONS(4510), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4512), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4516), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4522), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4524), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4528), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, - anon_sym_DASH, - ACTIONS(4367), 1, - anon_sym_DOT, - ACTIONS(4369), 1, - anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, + STATE(30), 1, sym__val_number_decimal, - STATE(346), 1, + STATE(47), 1, sym_val_number, - STATE(359), 1, + STATE(49), 1, sym__val_number, - STATE(1940), 1, - sym_comment, - STATE(2532), 1, + STATE(521), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2751), 1, - sym_unquoted, - STATE(2797), 1, + STATE(569), 1, + sym_val_variable, + STATE(575), 1, + sym_expr_parenthesized, + STATE(603), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(607), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, sym__expr_unary_minus, - STATE(2849), 1, + STATE(1283), 1, + sym_val_range, + STATE(1286), 1, + sym__expression, + STATE(1979), 1, + sym_comment, + STATE(3540), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4526), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4520), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4373), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2761), 4, + STATE(646), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [68171] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, - anon_sym_DASH, - ACTIONS(4367), 1, - anon_sym_DOT, - ACTIONS(4369), 1, - anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, - sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1941), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2754), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2853), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4518), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4373), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, + STATE(631), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -252652,13 +257074,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [68296] = 4, + [68313] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1942), 1, - sym_comment, - ACTIONS(1517), 13, + ACTIONS(4534), 1, anon_sym_COMMA, + STATE(1980), 1, + sym_comment, + ACTIONS(4536), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -252671,7 +257094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1515), 41, + ACTIONS(4532), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -252713,88 +257136,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [68361] = 34, + [68380] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, + ACTIONS(4146), 1, anon_sym_DASH, - ACTIONS(4367), 1, + ACTIONS(4250), 1, anon_sym_DOT, - ACTIONS(4369), 1, - anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, + STATE(436), 1, + sym__val_number, + STATE(448), 1, sym__val_number_decimal, - STATE(346), 1, + STATE(471), 1, sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1943), 1, + STATE(1981), 1, sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2755), 1, - sym_unquoted, - STATE(2797), 1, + STATE(2865), 1, + sym__var, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3253), 1, + sym_val_variable, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2855), 1, + STATE(3556), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(4782), 1, + sym_val_range, + STATE(5606), 1, + sym__expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4373), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3258), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(2807), 12, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -252804,358 +257228,395 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [68486] = 34, + [68507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + STATE(1982), 1, + sym_comment, + ACTIONS(1683), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1685), 41, anon_sym_LBRACK, - ACTIONS(4311), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(4337), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(4339), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [68572] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3021), 1, + anon_sym_null, + ACTIONS(3035), 1, + anon_sym_DQUOTE, + ACTIONS(3043), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(4538), 1, + anon_sym_LBRACK, + ACTIONS(4540), 1, + anon_sym_RBRACK, + ACTIONS(4542), 1, + anon_sym_DOLLAR, + ACTIONS(4544), 1, anon_sym_DASH, - ACTIONS(4367), 1, + ACTIONS(4546), 1, + anon_sym_LBRACE, + ACTIONS(4548), 1, anon_sym_DOT, - ACTIONS(4369), 1, + ACTIONS(4550), 1, anon_sym_PLUS, - ACTIONS(4371), 1, + ACTIONS(4552), 1, aux_sym__val_number_decimal_token1, - STATE(325), 1, + ACTIONS(4556), 1, + sym_val_date, + STATE(506), 1, sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(511), 1, sym__val_number, - STATE(1944), 1, + STATE(513), 1, + sym_val_number, + STATE(1983), 1, sym_comment, - STATE(2532), 1, + STATE(2304), 1, + aux_sym__match_pattern_list_repeat1, + STATE(3192), 1, sym__var, - STATE(2744), 1, + STATE(3426), 1, sym__str_double_quotes, - STATE(2757), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, + STATE(3574), 1, + sym_expr_parenthesized, + STATE(3586), 1, + sym_val_variable, + STATE(3594), 1, sym__expr_unary_minus, - STATE(2856), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, + STATE(3595), 1, + sym__match_pattern_record, + STATE(3597), 1, + sym__match_pattern_list, + STATE(3599), 1, + sym__match_pattern_expression, + STATE(6174), 1, + sym_val_list, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + STATE(3590), 2, + sym__match_pattern_value, + sym_val_range, + STATE(6175), 2, + sym__match_pattern_rest, + sym__match_pattern_ignore_rest, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4373), 3, + ACTIONS(4554), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, + STATE(3600), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(3603), 7, sym_val_nothing, sym_val_bool, - sym_val_variable, 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, - [68611] = 34, + [68703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + STATE(1984), 1, + sym_comment, + ACTIONS(1625), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1627), 41, anon_sym_LBRACK, - ACTIONS(4311), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, - anon_sym_DASH, - ACTIONS(4367), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4369), 1, - anon_sym_PLUS, - ACTIONS(4371), 1, - aux_sym__val_number_decimal_token1, - STATE(325), 1, - sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1945), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2759), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2858), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4373), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [68736] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68768] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, + ACTIONS(3009), 1, + anon_sym_LPAREN, + ACTIONS(3021), 1, + anon_sym_null, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + ACTIONS(3043), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(4538), 1, + anon_sym_LBRACK, + ACTIONS(4542), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(4544), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(4546), 1, + anon_sym_LBRACE, + ACTIONS(4548), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4550), 1, anon_sym_PLUS, - ACTIONS(4393), 1, - anon_sym_not, - ACTIONS(4395), 1, - anon_sym_null, - ACTIONS(4399), 1, + ACTIONS(4552), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, - aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + ACTIONS(4556), 1, + sym_val_date, + ACTIONS(4558), 1, + anon_sym_RBRACK, + STATE(506), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(511), 1, + sym__val_number, + STATE(513), 1, sym_val_number, - STATE(1946), 1, + STATE(1985), 1, sym_comment, - STATE(2866), 1, + STATE(2303), 1, + aux_sym__match_pattern_list_repeat1, + STATE(3192), 1, sym__var, - STATE(2990), 1, + STATE(3426), 1, sym__str_double_quotes, - STATE(3007), 1, + STATE(3574), 1, + sym_expr_parenthesized, + STATE(3586), 1, + sym_val_variable, + STATE(3594), 1, sym__expr_unary_minus, - STATE(3034), 1, - sym_unquoted, - STATE(3035), 1, - sym__expr_binary_expression, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(3595), 1, + sym__match_pattern_record, + STATE(3597), 1, + sym__match_pattern_list, + STATE(3599), 1, + sym__match_pattern_expression, + STATE(5897), 1, + sym_val_list, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, + ACTIONS(3037), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3590), 2, + sym__match_pattern_value, + sym_val_range, + STATE(6113), 2, + sym__match_pattern_rest, + sym__match_pattern_ignore_rest, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4554), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3047), 12, + STATE(3600), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(3603), 7, sym_val_nothing, sym_val_bool, - sym_val_variable, 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, - [68861] = 34, + [68899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_LPAREN, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4399), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + ACTIONS(4580), 1, + sym_val_date, + ACTIONS(4582), 1, + anon_sym_DQUOTE, + ACTIONS(4586), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4588), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + STATE(127), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(136), 1, sym_val_number, - STATE(1947), 1, - sym_comment, - STATE(2866), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(2990), 1, + STATE(1082), 1, sym__str_double_quotes, - STATE(3006), 1, - sym__expr_binary_expression, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3036), 1, + STATE(1114), 1, sym_unquoted, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(1118), 1, + sym__expr_unary_minus, + STATE(1119), 1, sym__inter_single_quotes, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(1120), 1, + sym__expr_binary_expression, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1986), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4584), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3047), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -253168,85 +257629,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [68986] = 34, + [69024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2540), 1, + anon_sym_DOLLAR, + ACTIONS(2542), 1, + anon_sym_DASH, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4562), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4564), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4566), 1, + anon_sym_DOT, + ACTIONS(4568), 1, + anon_sym_PLUS, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4580), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4582), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4586), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4588), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - ACTIONS(4405), 1, - anon_sym_DASH, - ACTIONS(4407), 1, - anon_sym_DOT, - ACTIONS(4409), 1, - anon_sym_PLUS, - ACTIONS(4411), 1, - aux_sym__val_number_decimal_token1, - STATE(346), 1, + STATE(127), 1, + sym__val_number_decimal, + STATE(136), 1, sym_val_number, - STATE(359), 1, + STATE(137), 1, sym__val_number, - STATE(360), 1, - sym__val_number_decimal, - STATE(1948), 1, - sym_comment, - STATE(2532), 1, + STATE(956), 1, sym__var, - STATE(2744), 1, + STATE(1082), 1, sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2805), 1, + STATE(1109), 1, sym_unquoted, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2898), 1, + STATE(1111), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + STATE(1118), 1, + sym__expr_unary_minus, + STATE(1119), 1, + sym__inter_single_quotes, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1987), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4584), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -253259,88 +257720,150 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69111] = 34, + [69149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + STATE(1988), 1, + sym_comment, + ACTIONS(1538), 13, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(4385), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1536), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [69214] = 35, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4460), 1, + anon_sym_LBRACK, + ACTIONS(4462), 1, anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4466), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4470), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4472), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4399), 1, + ACTIONS(4480), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, - aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + ACTIONS(4486), 1, + sym_val_date, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4494), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(321), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(353), 1, + sym__val_number, + STATE(358), 1, sym_val_number, - STATE(1949), 1, + STATE(1989), 1, sym_comment, - STATE(2866), 1, + STATE(2559), 1, sym__var, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, + STATE(2758), 1, + sym_val_variable, + STATE(2759), 1, + sym_expr_parenthesized, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3039), 1, - sym_unquoted, - STATE(3045), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3051), 1, + STATE(3511), 1, sym__expr_binary_expression, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(3996), 1, + sym__expression, + STATE(4036), 1, + sym_val_range, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3072), 4, + STATE(2852), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(3047), 12, + ACTIONS(4482), 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(2855), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -253350,85 +257873,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69236] = 34, + [69341] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_LPAREN, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4399), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + ACTIONS(4580), 1, + sym_val_date, + ACTIONS(4582), 1, + anon_sym_DQUOTE, + ACTIONS(4586), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4588), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + STATE(127), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(136), 1, sym_val_number, - STATE(1950), 1, - sym_comment, - STATE(2866), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(2990), 1, + STATE(1082), 1, sym__str_double_quotes, - STATE(2995), 1, + STATE(1095), 1, + sym_unquoted, + STATE(1097), 1, sym__expr_binary_expression, - STATE(3007), 1, + STATE(1118), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(1119), 1, sym__inter_single_quotes, - STATE(3052), 1, - sym_unquoted, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1990), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4584), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3047), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -253441,85 +257964,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69361] = 34, + [69466] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_LPAREN, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4399), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + ACTIONS(4580), 1, + sym_val_date, + ACTIONS(4582), 1, + anon_sym_DQUOTE, + ACTIONS(4586), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4588), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + STATE(127), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(136), 1, sym_val_number, - STATE(1951), 1, - sym_comment, - STATE(2866), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(2990), 1, + STATE(1076), 1, + sym_unquoted, + STATE(1082), 1, sym__str_double_quotes, - STATE(3007), 1, + STATE(1085), 1, + sym__expr_binary_expression, + STATE(1118), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(1119), 1, sym__inter_single_quotes, - STATE(3055), 1, - sym_unquoted, - STATE(3056), 1, - sym__expr_binary_expression, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1991), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4584), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3047), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -253532,85 +258055,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69486] = 34, + [69591] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + STATE(1992), 1, + sym_comment, + ACTIONS(1445), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1447), 41, anon_sym_LBRACK, - ACTIONS(329), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(367), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [69656] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2266), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(2268), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(2282), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4592), 1, + anon_sym_LBRACK, + ACTIONS(4594), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, + anon_sym_LBRACE, + ACTIONS(4598), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4600), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4604), 1, anon_sym_null, - ACTIONS(4399), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + ACTIONS(4612), 1, + sym_val_date, + ACTIONS(4614), 1, + anon_sym_DQUOTE, + ACTIONS(4618), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4620), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4622), 1, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + STATE(114), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(132), 1, + sym__val_number, + STATE(134), 1, sym_val_number, - STATE(1952), 1, - sym_comment, - STATE(2866), 1, + STATE(923), 1, sym__var, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(1017), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(1021), 1, + sym__str_double_quotes, + STATE(1025), 1, sym__inter_single_quotes, - STATE(3061), 1, + STATE(1037), 1, + sym__expr_unary_minus, + STATE(1060), 1, sym_unquoted, - STATE(3063), 1, + STATE(1061), 1, sym__expr_binary_expression, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(1993), 1, + sym_comment, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4616), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2288), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4608), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, + STATE(1035), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3047), 12, + STATE(1029), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -253623,85 +258207,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69611] = 34, + [69781] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_LPAREN, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4399), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + ACTIONS(4580), 1, + sym_val_date, + ACTIONS(4582), 1, + anon_sym_DQUOTE, + ACTIONS(4586), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4588), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + STATE(127), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(136), 1, sym_val_number, - STATE(1953), 1, - sym_comment, - STATE(2866), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(2990), 1, + STATE(1075), 1, + sym_unquoted, + STATE(1082), 1, sym__str_double_quotes, - STATE(3007), 1, + STATE(1118), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(1119), 1, sym__inter_single_quotes, - STATE(3065), 1, - sym_unquoted, - STATE(3084), 1, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1138), 1, sym__expr_binary_expression, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(1994), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4584), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3047), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -253714,85 +258298,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69736] = 34, + [69906] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_LPAREN, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4399), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + ACTIONS(4580), 1, + sym_val_date, + ACTIONS(4582), 1, + anon_sym_DQUOTE, + ACTIONS(4586), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4588), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + STATE(127), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(136), 1, sym_val_number, - STATE(1954), 1, - sym_comment, - STATE(2866), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(2990), 1, + STATE(1072), 1, + sym_unquoted, + STATE(1073), 1, + sym__expr_binary_expression, + STATE(1082), 1, sym__str_double_quotes, - STATE(3007), 1, + STATE(1118), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(1119), 1, sym__inter_single_quotes, - STATE(3086), 1, - sym_unquoted, - STATE(3088), 1, - sym__expr_binary_expression, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1995), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4584), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3047), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -253805,85 +258389,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69861] = 34, + [70031] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_LPAREN, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4399), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + ACTIONS(4580), 1, + sym_val_date, + ACTIONS(4582), 1, + anon_sym_DQUOTE, + ACTIONS(4586), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4588), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + STATE(127), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(136), 1, sym_val_number, - STATE(1955), 1, - sym_comment, - STATE(2866), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(2990), 1, + STATE(1070), 1, + sym__expr_binary_expression, + STATE(1082), 1, sym__str_double_quotes, - STATE(3007), 1, + STATE(1083), 1, + sym_unquoted, + STATE(1118), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(1119), 1, sym__inter_single_quotes, - STATE(3085), 1, - sym__expr_binary_expression, - STATE(3087), 1, - sym_unquoted, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1996), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4584), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3047), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -253896,85 +258480,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69986] = 34, + [70156] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_LPAREN, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4399), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + ACTIONS(4580), 1, + sym_val_date, + ACTIONS(4582), 1, + anon_sym_DQUOTE, + ACTIONS(4586), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4588), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + STATE(127), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(136), 1, sym_val_number, - STATE(1956), 1, - sym_comment, - STATE(2866), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(2990), 1, + STATE(1079), 1, + sym__expr_binary_expression, + STATE(1082), 1, sym__str_double_quotes, - STATE(3007), 1, + STATE(1084), 1, + sym_unquoted, + STATE(1118), 1, sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, + STATE(1119), 1, sym__inter_single_quotes, - STATE(3080), 1, - sym__expr_binary_expression, - STATE(3083), 1, - sym_unquoted, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1997), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4584), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3047), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -253987,85 +258571,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70111] = 34, + [70281] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2540), 1, + anon_sym_DOLLAR, + ACTIONS(2542), 1, + anon_sym_DASH, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4562), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4564), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4566), 1, + anon_sym_DOT, + ACTIONS(4568), 1, + anon_sym_PLUS, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4580), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4582), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4586), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4588), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - ACTIONS(4405), 1, - anon_sym_DASH, - ACTIONS(4407), 1, - anon_sym_DOT, - ACTIONS(4409), 1, - anon_sym_PLUS, - ACTIONS(4411), 1, - aux_sym__val_number_decimal_token1, - STATE(346), 1, + STATE(127), 1, + sym__val_number_decimal, + STATE(136), 1, sym_val_number, - STATE(359), 1, + STATE(137), 1, sym__val_number, - STATE(360), 1, - sym__val_number_decimal, - STATE(1957), 1, - sym_comment, - STATE(2532), 1, + STATE(956), 1, sym__var, - STATE(2744), 1, + STATE(1082), 1, sym__str_double_quotes, - STATE(2795), 1, + STATE(1086), 1, + sym__expr_binary_expression, + STATE(1089), 1, sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, + STATE(1118), 1, sym__expr_unary_minus, - STATE(2910), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, + STATE(1119), 1, + sym__inter_single_quotes, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1998), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4584), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -254078,89 +258662,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70236] = 35, + [70406] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4313), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(2542), 1, + anon_sym_DASH, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_LPAREN, + ACTIONS(4564), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4566), 1, + anon_sym_DOT, + ACTIONS(4568), 1, + anon_sym_PLUS, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4580), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4582), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4586), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4588), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4415), 1, - anon_sym_LPAREN, - ACTIONS(4417), 1, - anon_sym_DASH, - ACTIONS(4419), 1, - anon_sym_DOT, - ACTIONS(4421), 1, - anon_sym_PLUS, - ACTIONS(4423), 1, - aux_sym__val_number_decimal_token1, - STATE(337), 1, + ACTIONS(4590), 1, + aux_sym_unquoted_token1, + STATE(127), 1, sym__val_number_decimal, - STATE(346), 1, + STATE(136), 1, sym_val_number, - STATE(359), 1, + STATE(137), 1, sym__val_number, - STATE(1958), 1, - sym_comment, - STATE(2492), 1, + STATE(956), 1, sym__var, - STATE(2717), 1, - sym_expr_parenthesized, - STATE(2719), 1, - sym_val_variable, - STATE(2744), 1, + STATE(1082), 1, sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(3473), 1, + STATE(1093), 1, sym__expr_binary_expression, - STATE(3980), 1, - sym_val_range, - STATE(4004), 1, - sym__expression, - ACTIONS(4327), 2, + STATE(1099), 1, + sym_unquoted, + STATE(1118), 1, + sym__expr_unary_minus, + STATE(1119), 1, + sym__inter_single_quotes, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(1999), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4584), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4335), 3, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2801), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(4331), 6, + ACTIONS(4576), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2807), 11, + STATE(1124), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1112), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -254170,88 +258753,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70363] = 34, + [70531] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4385), 1, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(4387), 1, - anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4086), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4399), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, - aux_sym_unquoted_token1, - STATE(368), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + STATE(436), 1, sym__val_number, - STATE(392), 1, - sym__val_number_decimal, - STATE(442), 1, + STATE(471), 1, sym_val_number, - STATE(1959), 1, + STATE(502), 1, + sym__val_number_decimal, + STATE(2000), 1, sym_comment, - STATE(2866), 1, - sym__var, - STATE(2990), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, + STATE(2865), 1, + sym__var, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3046), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3075), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, sym__expr_binary_expression, - STATE(3076), 1, - sym_unquoted, - ACTIONS(371), 2, + STATE(4437), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4397), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3072), 4, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(3047), 12, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -254261,85 +258845,147 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70488] = 34, + [70658] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, + ACTIONS(4626), 1, + anon_sym_COMMA, + STATE(2001), 1, + sym_comment, + ACTIONS(4628), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4624), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [70725] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(4389), 1, + ACTIONS(2556), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4560), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_LPAREN, + ACTIONS(4564), 1, + anon_sym_LBRACE, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4391), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4395), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4399), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + ACTIONS(4580), 1, + sym_val_date, + ACTIONS(4582), 1, + anon_sym_DQUOTE, + ACTIONS(4586), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4588), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4590), 1, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, + STATE(127), 1, sym__val_number_decimal, - STATE(442), 1, + STATE(136), 1, sym_val_number, - STATE(1960), 1, - sym_comment, - STATE(2866), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(2990), 1, + STATE(1082), 1, sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3073), 1, + STATE(1100), 1, sym__expr_binary_expression, - STATE(3074), 1, + STATE(1101), 1, sym_unquoted, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + STATE(1118), 1, + sym__expr_unary_minus, + STATE(1119), 1, + sym__inter_single_quotes, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym_comment, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(365), 3, + ACTIONS(4584), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4401), 3, + ACTIONS(4576), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3047), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -254352,85 +258998,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70613] = 34, + [70850] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2556), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + ACTIONS(4560), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, + ACTIONS(4562), 1, anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(4564), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4435), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4437), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(4580), 1, sym_val_date, - ACTIONS(4447), 1, + ACTIONS(4582), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(4586), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(4588), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, + ACTIONS(4590), 1, aux_sym_unquoted_token1, STATE(127), 1, sym__val_number_decimal, - STATE(134), 1, - sym__val_number, - STATE(135), 1, + STATE(136), 1, sym_val_number, - STATE(912), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1071), 1, + STATE(1082), 1, + sym__str_double_quotes, + STATE(1102), 1, sym__expr_binary_expression, - STATE(1074), 1, - sym_unquoted, STATE(1104), 1, - sym__str_double_quotes, - STATE(1111), 1, - sym__inter_double_quotes, - STATE(1112), 1, + sym_unquoted, + STATE(1118), 1, + sym__expr_unary_minus, + STATE(1119), 1, sym__inter_single_quotes, - STATE(1961), 1, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(2003), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(4449), 2, + ACTIONS(4584), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4441), 3, + ACTIONS(4576), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1114), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -254443,87 +259089,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70738] = 35, + [70975] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4313), 1, + ACTIONS(4462), 1, + anon_sym_LPAREN, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4466), 1, + anon_sym_DASH, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4470), 1, + anon_sym_DOT, + ACTIONS(4472), 1, + anon_sym_PLUS, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4480), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4415), 1, - anon_sym_LPAREN, - ACTIONS(4417), 1, - anon_sym_DASH, - ACTIONS(4419), 1, - anon_sym_DOT, - ACTIONS(4421), 1, - anon_sym_PLUS, - ACTIONS(4423), 1, - aux_sym__val_number_decimal_token1, - STATE(337), 1, + STATE(321), 1, sym__val_number_decimal, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(353), 1, sym__val_number, - STATE(1962), 1, + STATE(358), 1, + sym_val_number, + STATE(2004), 1, sym_comment, - STATE(2492), 1, + STATE(2559), 1, sym__var, - STATE(2717), 1, - sym_expr_parenthesized, - STATE(2719), 1, + STATE(2758), 1, sym_val_variable, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2759), 1, + sym_expr_parenthesized, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3470), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(3577), 1, sym__expr_binary_expression, - STATE(3980), 1, - sym_val_range, - STATE(4004), 1, + STATE(3996), 1, sym__expression, - ACTIONS(4327), 2, + STATE(4036), 1, + sym_val_range, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2801), 3, + STATE(2852), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(4331), 6, + ACTIONS(4482), 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(2807), 11, + STATE(2855), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -254535,85 +259181,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70865] = 34, + [71102] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, + ACTIONS(2540), 1, anon_sym_DOLLAR, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2556), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + ACTIONS(4560), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, + ACTIONS(4562), 1, anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(4564), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, + ACTIONS(4566), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4568), 1, anon_sym_PLUS, - ACTIONS(4435), 1, + ACTIONS(4570), 1, anon_sym_not, - ACTIONS(4437), 1, + ACTIONS(4572), 1, anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(4580), 1, sym_val_date, - ACTIONS(4447), 1, + ACTIONS(4582), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(4586), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(4588), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, + ACTIONS(4590), 1, aux_sym_unquoted_token1, STATE(127), 1, sym__val_number_decimal, - STATE(134), 1, - sym__val_number, - STATE(135), 1, + STATE(136), 1, sym_val_number, - STATE(912), 1, + STATE(137), 1, + sym__val_number, + STATE(956), 1, sym__var, - STATE(1052), 1, + STATE(1082), 1, + sym__str_double_quotes, + STATE(1107), 1, sym__expr_binary_expression, - STATE(1064), 1, + STATE(1116), 1, sym_unquoted, - STATE(1069), 1, + STATE(1118), 1, sym__expr_unary_minus, - STATE(1104), 1, - sym__str_double_quotes, - STATE(1111), 1, - sym__inter_double_quotes, - STATE(1112), 1, + STATE(1119), 1, sym__inter_single_quotes, - STATE(1963), 1, + STATE(1135), 1, + sym__inter_double_quotes, + STATE(2005), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4574), 2, anon_sym_true, anon_sym_false, - ACTIONS(4449), 2, + ACTIONS(4584), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, + ACTIONS(2562), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4441), 3, + ACTIONS(4576), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, + ACTIONS(4578), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, + STATE(1124), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1114), 12, + STATE(1112), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -254626,179 +259272,397 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70990] = 34, + [71227] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, + STATE(2006), 1, + sym_comment, + ACTIONS(1671), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2572), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1673), 41, anon_sym_LBRACK, - ACTIONS(4427), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4429), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(4431), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_PLUS, - ACTIONS(4435), 1, - anon_sym_not, - ACTIONS(4437), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(4445), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(4447), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, - aux_sym_unquoted_token1, - STATE(127), 1, - sym__val_number_decimal, - STATE(134), 1, - sym__val_number, - STATE(135), 1, - sym_val_number, - STATE(912), 1, - sym__var, - STATE(1046), 1, - sym__expr_binary_expression, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1081), 1, - sym_unquoted, - STATE(1104), 1, - sym__str_double_quotes, - STATE(1111), 1, - sym__inter_double_quotes, - STATE(1112), 1, - sym__inter_single_quotes, - STATE(1964), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [71292] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2007), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(213), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(215), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(4449), 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, + [71357] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2008), 1, + sym_comment, + ACTIONS(3258), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, + ACTIONS(3256), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [71422] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2009), 1, + sym_comment, + ACTIONS(1542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1540), 5, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT2, + ACTIONS(1536), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4441), 3, + aux_sym_unquoted_token1, + ACTIONS(1538), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1114), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [71115] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1623), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [71493] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, + STATE(2010), 1, + sym_comment, + ACTIONS(1619), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2572), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1621), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [71558] = 35, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, + ACTIONS(4086), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4435), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4437), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4447), 1, - anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, - aux_sym_unquoted_token1, - STATE(127), 1, - sym__val_number_decimal, - STATE(134), 1, + ACTIONS(4146), 1, + anon_sym_DASH, + STATE(436), 1, sym__val_number, - STATE(135), 1, + STATE(471), 1, sym_val_number, - STATE(912), 1, - sym__var, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1080), 1, - sym_unquoted, - STATE(1104), 1, + STATE(502), 1, + sym__val_number_decimal, + STATE(2011), 1, + sym_comment, + STATE(2777), 1, sym__str_double_quotes, - STATE(1106), 1, - sym__expr_binary_expression, - STATE(1111), 1, + STATE(2865), 1, + sym__var, + STATE(3195), 1, sym__inter_double_quotes, - STATE(1112), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(1965), 1, - sym_comment, - ACTIONS(4439), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4449), 2, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4330), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4441), 3, + STATE(3473), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2896), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1114), 12, + STATE(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -254808,85 +259672,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71240] = 34, + [71685] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, - anon_sym_DASH, - ACTIONS(2572), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_PLUS, - ACTIONS(4435), 1, - anon_sym_not, - ACTIONS(4437), 1, - anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4447), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_DASH, + ACTIONS(4634), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_PLUS, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4648), 1, aux_sym_unquoted_token1, - STATE(127), 1, - sym__val_number_decimal, - STATE(134), 1, + STATE(389), 1, sym__val_number, - STATE(135), 1, + STATE(393), 1, + sym__val_number_decimal, + STATE(430), 1, sym_val_number, - STATE(912), 1, + STATE(2012), 1, + sym_comment, + STATE(2903), 1, sym__var, - STATE(1044), 1, - sym_unquoted, - STATE(1051), 1, - sym__expr_binary_expression, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1104), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(1111), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(1112), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(1966), 1, - sym_comment, - ACTIONS(4439), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4449), 2, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3120), 1, + sym__expr_binary_expression, + STATE(3121), 1, + sym_unquoted, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4441), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1114), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -254899,85 +259763,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71365] = 34, + [71810] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4365), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4367), 1, + ACTIONS(4634), 1, anon_sym_DOT, - ACTIONS(4369), 1, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4371), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - STATE(325), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, + sym__val_number, + STATE(393), 1, sym__val_number_decimal, - STATE(346), 1, + STATE(430), 1, sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1967), 1, + STATE(2013), 1, sym_comment, - STATE(2532), 1, + STATE(2903), 1, sym__var, - STATE(2744), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2797), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(2829), 1, - sym_unquoted, - STATE(2848), 1, + STATE(3112), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3117), 1, + sym_unquoted, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4373), 3, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -254990,85 +259854,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71490] = 34, + [71935] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, - anon_sym_DASH, - ACTIONS(2572), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_PLUS, - ACTIONS(4435), 1, - anon_sym_not, - ACTIONS(4437), 1, - anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4447), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_DASH, + ACTIONS(4634), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_PLUS, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4648), 1, aux_sym_unquoted_token1, - STATE(127), 1, - sym__val_number_decimal, - STATE(134), 1, + STATE(389), 1, sym__val_number, - STATE(135), 1, + STATE(393), 1, + sym__val_number_decimal, + STATE(430), 1, sym_val_number, - STATE(912), 1, + STATE(2014), 1, + sym_comment, + STATE(2903), 1, sym__var, - STATE(1053), 1, - sym_unquoted, - STATE(1054), 1, - sym__expr_binary_expression, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1104), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(1111), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(1112), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(1968), 1, - sym_comment, - ACTIONS(4439), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4449), 2, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3108), 1, + sym__expr_binary_expression, + STATE(3109), 1, + sym_unquoted, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4441), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1114), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255081,85 +259945,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71615] = 34, + [72060] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, - anon_sym_DASH, - ACTIONS(2572), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_PLUS, - ACTIONS(4435), 1, - anon_sym_not, - ACTIONS(4437), 1, - anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4447), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_DASH, + ACTIONS(4634), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_PLUS, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4648), 1, aux_sym_unquoted_token1, - STATE(127), 1, - sym__val_number_decimal, - STATE(134), 1, + STATE(389), 1, sym__val_number, - STATE(135), 1, + STATE(393), 1, + sym__val_number_decimal, + STATE(430), 1, sym_val_number, - STATE(912), 1, + STATE(2015), 1, + sym_comment, + STATE(2903), 1, sym__var, - STATE(1056), 1, - sym_unquoted, - STATE(1065), 1, - sym__expr_binary_expression, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1104), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(1111), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(1112), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(1969), 1, - sym_comment, - ACTIONS(4439), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4449), 2, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3106), 1, + sym__expr_binary_expression, + STATE(3107), 1, + sym_unquoted, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4441), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1114), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255172,85 +260036,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71740] = 34, + [72185] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4407), 1, + ACTIONS(4634), 1, anon_sym_DOT, - ACTIONS(4409), 1, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4411), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, sym__val_number, - STATE(360), 1, + STATE(393), 1, sym__val_number_decimal, - STATE(1970), 1, + STATE(430), 1, + sym_val_number, + STATE(2016), 1, sym_comment, - STATE(2532), 1, + STATE(2903), 1, sym__var, - STATE(2744), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2770), 1, - sym_unquoted, - STATE(2797), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(2911), 1, + STATE(3103), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3104), 1, + sym_unquoted, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255263,89 +260127,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71865] = 35, + [72310] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(369), 1, + anon_sym_DQUOTE, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4173), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4177), 1, + ACTIONS(4634), 1, + anon_sym_DOT, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4179), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4457), 1, - anon_sym_DOT, - STATE(434), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(493), 1, + STATE(393), 1, sym__val_number_decimal, - STATE(1971), 1, + STATE(430), 1, + sym_val_number, + STATE(2017), 1, sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, + STATE(2903), 1, sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, + STATE(3004), 1, + sym__str_double_quotes, + STATE(3055), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(3336), 1, - sym_expr_parenthesized, - STATE(3370), 1, - sym_val_variable, - STATE(3474), 1, + STATE(3098), 1, sym__expr_binary_expression, - STATE(4514), 1, - sym_val_range, - STATE(6102), 1, - sym__expression, - ACTIONS(2835), 2, + STATE(3099), 1, + sym_unquoted, + STATE(3102), 1, + sym__expr_unary_minus, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4642), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3121), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 6, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(365), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3219), 11, + STATE(3126), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3057), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -255355,85 +260218,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71992] = 34, + [72435] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4407), 1, + ACTIONS(4634), 1, anon_sym_DOT, - ACTIONS(4409), 1, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4411), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, sym__val_number, - STATE(360), 1, + STATE(393), 1, sym__val_number_decimal, - STATE(1972), 1, + STATE(430), 1, + sym_val_number, + STATE(2018), 1, sym_comment, - STATE(2532), 1, + STATE(2903), 1, sym__var, - STATE(2744), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2797), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2800), 1, + STATE(3095), 1, + sym__expr_binary_expression, + STATE(3097), 1, sym_unquoted, - STATE(2811), 1, + STATE(3102), 1, sym__expr_unary_minus, - STATE(2930), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255446,85 +260309,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72117] = 34, + [72560] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4407), 1, + ACTIONS(4634), 1, anon_sym_DOT, - ACTIONS(4409), 1, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4411), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, sym__val_number, - STATE(360), 1, + STATE(393), 1, sym__val_number_decimal, - STATE(1973), 1, + STATE(430), 1, + sym_val_number, + STATE(2019), 1, sym_comment, - STATE(2532), 1, + STATE(2903), 1, sym__var, - STATE(2744), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2763), 1, - sym_unquoted, - STATE(2797), 1, + STATE(3035), 1, + sym__expr_binary_expression, + STATE(3055), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3093), 1, + sym_unquoted, + STATE(3102), 1, sym__expr_unary_minus, - STATE(2906), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255537,85 +260400,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72242] = 34, + [72685] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4407), 1, + ACTIONS(4634), 1, anon_sym_DOT, - ACTIONS(4409), 1, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4411), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, sym__val_number, - STATE(360), 1, + STATE(393), 1, sym__val_number_decimal, - STATE(1974), 1, + STATE(430), 1, + sym_val_number, + STATE(2020), 1, sym_comment, - STATE(2532), 1, + STATE(2903), 1, sym__var, - STATE(2744), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2797), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2815), 1, - sym_unquoted, - STATE(2914), 1, + STATE(3091), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3092), 1, + sym_unquoted, + STATE(3102), 1, + sym__expr_unary_minus, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255628,85 +260491,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72367] = 34, + [72810] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4407), 1, + ACTIONS(4634), 1, anon_sym_DOT, - ACTIONS(4409), 1, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4411), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, sym__val_number, - STATE(360), 1, + STATE(393), 1, sym__val_number_decimal, - STATE(1975), 1, + STATE(430), 1, + sym_val_number, + STATE(2021), 1, sym_comment, - STATE(2532), 1, + STATE(2903), 1, sym__var, - STATE(2744), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2797), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2829), 1, - sym_unquoted, - STATE(2890), 1, + STATE(3086), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3090), 1, + sym_unquoted, + STATE(3102), 1, + sym__expr_unary_minus, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255719,85 +260582,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72492] = 34, + [72935] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4407), 1, + ACTIONS(4634), 1, anon_sym_DOT, - ACTIONS(4409), 1, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4411), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, sym__val_number, - STATE(360), 1, + STATE(393), 1, sym__val_number_decimal, - STATE(1976), 1, + STATE(430), 1, + sym_val_number, + STATE(2022), 1, sym_comment, - STATE(2532), 1, + STATE(2903), 1, sym__var, - STATE(2744), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2751), 1, - sym_unquoted, - STATE(2797), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2933), 1, + STATE(3083), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3084), 1, + sym_unquoted, + STATE(3102), 1, + sym__expr_unary_minus, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255810,85 +260673,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72617] = 34, + [73060] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4407), 1, + ACTIONS(4634), 1, anon_sym_DOT, - ACTIONS(4409), 1, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4411), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, sym__val_number, - STATE(360), 1, + STATE(393), 1, sym__val_number_decimal, - STATE(1977), 1, + STATE(430), 1, + sym_val_number, + STATE(2023), 1, sym_comment, - STATE(2532), 1, + STATE(2903), 1, sym__var, - STATE(2744), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2754), 1, - sym_unquoted, - STATE(2797), 1, + STATE(3036), 1, + sym__expr_binary_expression, + STATE(3055), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3082), 1, + sym_unquoted, + STATE(3102), 1, sym__expr_unary_minus, - STATE(2931), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255901,85 +260764,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72742] = 34, + [73185] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(299), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(367), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(4630), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, anon_sym_DASH, - ACTIONS(4407), 1, + ACTIONS(4634), 1, anon_sym_DOT, - ACTIONS(4409), 1, + ACTIONS(4636), 1, anon_sym_PLUS, - ACTIONS(4411), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(4640), 1, + anon_sym_null, + ACTIONS(4644), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4648), 1, + aux_sym_unquoted_token1, + STATE(389), 1, sym__val_number, - STATE(360), 1, + STATE(393), 1, sym__val_number_decimal, - STATE(1978), 1, + STATE(430), 1, + sym_val_number, + STATE(2024), 1, sym_comment, - STATE(2532), 1, + STATE(2903), 1, sym__var, - STATE(2744), 1, + STATE(3004), 1, sym__str_double_quotes, - STATE(2755), 1, - sym_unquoted, - STATE(2797), 1, + STATE(3055), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3079), 1, + sym_unquoted, + STATE(3102), 1, sym__expr_unary_minus, - STATE(2929), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3128), 1, + sym__expr_binary_expression, + ACTIONS(371), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(365), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4646), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3126), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3057), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -255992,88 +260855,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72867] = 34, + [73310] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4086), 1, + anon_sym_DOT, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(4146), 1, anon_sym_DASH, - ACTIONS(4407), 1, - anon_sym_DOT, - ACTIONS(4409), 1, - anon_sym_PLUS, - ACTIONS(4411), 1, - aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(436), 1, sym__val_number, - STATE(360), 1, + STATE(471), 1, + sym_val_number, + STATE(502), 1, sym__val_number_decimal, - STATE(1979), 1, + STATE(2025), 1, sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2757), 1, - sym_unquoted, - STATE(2797), 1, + STATE(2865), 1, + sym__var, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2927), 1, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(4322), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(2807), 12, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -256083,88 +260947,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72992] = 34, + [73437] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4086), 1, + anon_sym_DOT, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(4146), 1, anon_sym_DASH, - ACTIONS(4407), 1, - anon_sym_DOT, - ACTIONS(4409), 1, - anon_sym_PLUS, - ACTIONS(4411), 1, - aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(436), 1, sym__val_number, - STATE(360), 1, + STATE(471), 1, + sym_val_number, + STATE(502), 1, sym__val_number_decimal, - STATE(1980), 1, + STATE(2026), 1, sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2759), 1, - sym_unquoted, - STATE(2797), 1, + STATE(2865), 1, + sym__var, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2925), 1, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(4323), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(2807), 12, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -256174,146 +261039,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73117] = 4, + [73564] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(1981), 1, - sym_comment, - ACTIONS(2808), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(2900), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2806), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [73182] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(4469), 1, - anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + STATE(436), 1, sym__val_number, - STATE(722), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, + sym__val_number_decimal, + STATE(2027), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(776), 1, - sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, - sym__inter_double_quotes, - STATE(791), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(796), 1, - sym__expr_binary_expression, - STATE(799), 1, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3242), 1, sym_unquoted, - STATE(1982), 1, - sym_comment, - ACTIONS(4261), 2, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3430), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(759), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -256326,176 +261130,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73307] = 34, + [73689] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + STATE(2028), 1, + sym_comment, + ACTIONS(1619), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1621), 41, anon_sym_LBRACK, - ACTIONS(4233), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(4237), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, - sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, - anon_sym_LPAREN, - ACTIONS(4461), 1, - anon_sym_DASH, - ACTIONS(4463), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4465), 1, - anon_sym_PLUS, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(4469), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(4473), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, - sym__val_number, - STATE(722), 1, - sym__var, - STATE(776), 1, - sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, - sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(793), 1, - sym__expr_binary_expression, - STATE(795), 1, - sym_unquoted, - STATE(1983), 1, - sym_comment, - ACTIONS(4261), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4471), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4475), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(759), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [73432] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [73754] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(4469), 1, - anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + STATE(436), 1, sym__val_number, - STATE(722), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, + sym__val_number_decimal, + STATE(2029), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(776), 1, - sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(785), 1, - sym__expr_binary_expression, - STATE(786), 1, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3241), 1, sym_unquoted, - STATE(791), 1, - sym__str_double_quotes, - STATE(1984), 1, - sym_comment, - ACTIONS(4261), 2, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3427), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(759), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -256508,88 +261282,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73557] = 34, + [73879] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, - anon_sym_DASH, - ACTIONS(2572), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, + ACTIONS(4462), 1, anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4466), 1, + anon_sym_DASH, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, + ACTIONS(4470), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4472), 1, anon_sym_PLUS, - ACTIONS(4435), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4437), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(4480), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4447), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, - aux_sym_unquoted_token1, - STATE(127), 1, + STATE(321), 1, sym__val_number_decimal, - STATE(134), 1, + STATE(353), 1, sym__val_number, - STATE(135), 1, + STATE(358), 1, sym_val_number, - STATE(912), 1, + STATE(2030), 1, + sym_comment, + STATE(2559), 1, sym__var, - STATE(1066), 1, - sym_unquoted, - STATE(1067), 1, - sym__expr_binary_expression, - STATE(1069), 1, + STATE(2758), 1, + sym_val_variable, + STATE(2759), 1, + sym_expr_parenthesized, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1104), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1111), 1, + STATE(2850), 1, sym__inter_double_quotes, - STATE(1112), 1, - sym__inter_single_quotes, - STATE(1985), 1, - sym_comment, - ACTIONS(4439), 2, + STATE(3550), 1, + sym__expr_binary_expression, + STATE(3996), 1, + sym__expression, + STATE(4036), 1, + sym_val_range, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4449), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4441), 3, + STATE(2852), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(4482), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1114), 12, + STATE(2855), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -256599,85 +261374,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73682] = 34, + [74006] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(4469), 1, - anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + STATE(436), 1, sym__val_number, - STATE(722), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, + sym__val_number_decimal, + STATE(2031), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(776), 1, - sym__expr_unary_minus, - STATE(780), 1, - sym__expr_binary_expression, - STATE(782), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, sym__inter_single_quotes, - STATE(783), 1, + STATE(3240), 1, sym_unquoted, - STATE(784), 1, - sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(1986), 1, - sym_comment, - ACTIONS(4261), 2, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3423), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(759), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -256690,88 +261465,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73807] = 34, + [74131] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, - sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, - anon_sym_LPAREN, - ACTIONS(4461), 1, - anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4086), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4467), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4469), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + STATE(436), 1, sym__val_number, - STATE(722), 1, + STATE(471), 1, + sym_val_number, + STATE(502), 1, + sym__val_number_decimal, + STATE(2032), 1, + sym_comment, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, sym__var, - STATE(746), 1, - sym__expr_binary_expression, - STATE(776), 1, - sym__expr_unary_minus, - STATE(778), 1, - sym_unquoted, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(1987), 1, - sym_comment, - ACTIONS(4261), 2, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4327), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(756), 4, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(759), 12, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -256781,88 +261557,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73932] = 34, + [74258] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, - anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4146), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4250), 1, anon_sym_DOT, - ACTIONS(4465), 1, - anon_sym_PLUS, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(4469), 1, - anon_sym_null, - ACTIONS(4473), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, + STATE(436), 1, + sym__val_number, + STATE(448), 1, sym__val_number_decimal, - STATE(83), 1, + STATE(471), 1, sym_val_number, - STATE(85), 1, - sym__val_number, - STATE(722), 1, + STATE(2033), 1, + sym_comment, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, sym__var, - STATE(770), 1, - sym__expr_binary_expression, - STATE(772), 1, - sym_unquoted, - STATE(776), 1, - sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(1988), 1, - sym_comment, - ACTIONS(4261), 2, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3253), 1, + sym_val_variable, + STATE(3254), 1, + sym_expr_parenthesized, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4782), 1, + sym_val_range, + STATE(5564), 1, + sym__expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(756), 4, + STATE(3258), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(759), 12, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -256872,85 +261649,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74057] = 34, + [74385] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(4469), 1, - anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + STATE(436), 1, sym__val_number, - STATE(722), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, + sym__val_number_decimal, + STATE(2034), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(764), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3239), 1, sym_unquoted, - STATE(776), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, - sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(798), 1, + STATE(3431), 1, sym__expr_binary_expression, - STATE(1989), 1, - sym_comment, - ACTIONS(4261), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(759), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -256963,85 +261740,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74182] = 34, + [74510] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4151), 1, - anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, - aux_sym_unquoted_token1, - STATE(252), 1, - sym__val_number_decimal, - STATE(260), 1, - sym_val_number, - STATE(262), 1, + STATE(436), 1, sym__val_number, - STATE(1782), 1, - sym__var, - STATE(1990), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, + sym__val_number_decimal, + STATE(2035), 1, sym_comment, - STATE(2211), 1, + STATE(2688), 1, + sym__var, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2213), 1, + STATE(3236), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2229), 1, + STATE(3435), 1, sym__expr_binary_expression, - STATE(2230), 1, - sym_unquoted, - STATE(2242), 1, - sym__str_double_quotes, - ACTIONS(4141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -257054,85 +261831,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74307] = 34, + [74635] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4151), 1, - anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, - aux_sym_unquoted_token1, - STATE(252), 1, - sym__val_number_decimal, - STATE(260), 1, - sym_val_number, - STATE(262), 1, + STATE(436), 1, sym__val_number, - STATE(1782), 1, - sym__var, - STATE(1991), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, + sym__val_number_decimal, + STATE(2036), 1, sym_comment, - STATE(2211), 1, + STATE(2688), 1, + sym__var, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2213), 1, + STATE(3235), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2231), 1, + STATE(3440), 1, sym__expr_binary_expression, - STATE(2232), 1, - sym_unquoted, - STATE(2242), 1, - sym__str_double_quotes, - ACTIONS(4141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -257145,146 +261922,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74432] = 4, + [74760] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1992), 1, + STATE(2037), 1, sym_comment, - ACTIONS(3649), 13, + ACTIONS(1532), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1534), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(3647), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [74497] = 34, + [74825] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4151), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4664), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(252), 1, + STATE(353), 1, + sym__val_number, + STATE(355), 1, sym__val_number_decimal, - STATE(260), 1, + STATE(358), 1, sym_val_number, - STATE(262), 1, - sym__val_number, - STATE(1782), 1, - sym__var, - STATE(1993), 1, + STATE(2038), 1, sym_comment, - STATE(2211), 1, + STATE(2503), 1, + sym__var, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2213), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2233), 1, - sym__expr_binary_expression, - STATE(2234), 1, + STATE(2832), 1, sym_unquoted, - STATE(2242), 1, + STATE(2839), 1, sym__str_double_quotes, - ACTIONS(4141), 2, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2932), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -257297,85 +262074,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74622] = 34, + [74950] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, - anon_sym_DASH, - ACTIONS(2572), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_PLUS, - ACTIONS(4435), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4437), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4447), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_DASH, + ACTIONS(4666), 1, + anon_sym_DOT, + ACTIONS(4668), 1, + anon_sym_PLUS, + ACTIONS(4670), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(127), 1, - sym__val_number_decimal, - STATE(134), 1, + STATE(353), 1, sym__val_number, - STATE(135), 1, + STATE(355), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(912), 1, + STATE(2039), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1072), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2813), 1, sym_unquoted, - STATE(1104), 1, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, sym__str_double_quotes, - STATE(1109), 1, - sym__expr_binary_expression, - STATE(1111), 1, + STATE(2850), 1, sym__inter_double_quotes, - STATE(1112), 1, - sym__inter_single_quotes, - STATE(1994), 1, - sym_comment, - ACTIONS(4439), 2, + STATE(2938), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4449), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4441), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1114), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -257388,89 +262165,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74747] = 35, + [75075] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4415), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4417), 1, + ACTIONS(4664), 1, anon_sym_DASH, - ACTIONS(4419), 1, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(4421), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(4423), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - STATE(337), 1, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + STATE(353), 1, + sym__val_number, + STATE(355), 1, sym__val_number_decimal, - STATE(346), 1, + STATE(358), 1, sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(1995), 1, + STATE(2040), 1, sym_comment, - STATE(2492), 1, + STATE(2503), 1, sym__var, - STATE(2717), 1, - sym_expr_parenthesized, - STATE(2719), 1, - sym_val_variable, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(2809), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3463), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2939), 1, sym__expr_binary_expression, - STATE(3980), 1, - sym_val_range, - STATE(4004), 1, - sym__expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2801), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(4331), 6, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2807), 11, + STATE(2851), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2855), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -257480,85 +262256,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74874] = 34, + [75200] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4151), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4664), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(252), 1, + STATE(353), 1, + sym__val_number, + STATE(355), 1, sym__val_number_decimal, - STATE(260), 1, + STATE(358), 1, sym_val_number, - STATE(262), 1, - sym__val_number, - STATE(1782), 1, - sym__var, - STATE(1996), 1, + STATE(2041), 1, sym_comment, - STATE(2211), 1, + STATE(2503), 1, + sym__var, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2213), 1, + STATE(2802), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2215), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(2235), 1, + STATE(2941), 1, sym__expr_binary_expression, - STATE(2239), 1, - sym_unquoted, - STATE(2242), 1, - sym__str_double_quotes, - ACTIONS(4141), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -257571,85 +262347,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74999] = 34, + [75325] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + STATE(2042), 1, + sym_comment, + ACTIONS(1437), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1439), 41, anon_sym_LBRACK, - ACTIONS(4127), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(4137), 1, - anon_sym_not, - ACTIONS(4139), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(4149), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(4151), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [75390] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, - aux_sym_unquoted_token1, - STATE(252), 1, - sym__val_number_decimal, - STATE(260), 1, - sym_val_number, - STATE(262), 1, + STATE(436), 1, sym__val_number, - STATE(1782), 1, - sym__var, - STATE(1997), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, + sym__val_number_decimal, + STATE(2043), 1, sym_comment, - STATE(2211), 1, - sym__inter_single_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2241), 1, - sym__expr_binary_expression, - STATE(2242), 1, + STATE(2688), 1, + sym__var, + STATE(2777), 1, sym__str_double_quotes, - STATE(2252), 1, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3234), 1, sym_unquoted, - ACTIONS(4141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4153), 2, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3441), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -257662,85 +262499,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75124] = 34, + [75515] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2044), 1, + sym_comment, + ACTIONS(1545), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1547), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [75580] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4151), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4664), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(252), 1, + STATE(353), 1, + sym__val_number, + STATE(355), 1, sym__val_number_decimal, - STATE(260), 1, + STATE(358), 1, sym_val_number, - STATE(262), 1, - sym__val_number, - STATE(1782), 1, - sym__var, - STATE(1998), 1, + STATE(2045), 1, sym_comment, - STATE(2211), 1, + STATE(2503), 1, + sym__var, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2213), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2240), 1, - sym__expr_binary_expression, - STATE(2242), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(2245), 1, + STATE(2843), 1, sym_unquoted, - ACTIONS(4141), 2, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2942), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -257753,85 +262651,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75249] = 34, + [75705] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4151), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4664), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(252), 1, + STATE(353), 1, + sym__val_number, + STATE(355), 1, sym__val_number_decimal, - STATE(260), 1, + STATE(358), 1, sym_val_number, - STATE(262), 1, - sym__val_number, - STATE(1782), 1, - sym__var, - STATE(1999), 1, + STATE(2046), 1, sym_comment, - STATE(2211), 1, + STATE(2503), 1, + sym__var, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2213), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2242), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(2246), 1, - sym__expr_binary_expression, - STATE(2247), 1, + STATE(2841), 1, sym_unquoted, - ACTIONS(4141), 2, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2943), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -257844,85 +262742,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75374] = 34, + [75830] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4151), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4664), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(252), 1, + STATE(353), 1, + sym__val_number, + STATE(355), 1, sym__val_number_decimal, - STATE(260), 1, + STATE(358), 1, sym_val_number, - STATE(262), 1, - sym__val_number, - STATE(1782), 1, - sym__var, - STATE(2000), 1, + STATE(2047), 1, sym_comment, - STATE(2211), 1, + STATE(2503), 1, + sym__var, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2213), 1, + STATE(2797), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2242), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(2248), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2944), 1, sym__expr_binary_expression, - STATE(2249), 1, - sym_unquoted, - ACTIONS(4141), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -257935,85 +262833,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75499] = 34, + [75955] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4151), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4664), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(252), 1, + STATE(353), 1, + sym__val_number, + STATE(355), 1, sym__val_number_decimal, - STATE(260), 1, + STATE(358), 1, sym_val_number, - STATE(262), 1, - sym__val_number, - STATE(1782), 1, - sym__var, - STATE(2001), 1, + STATE(2048), 1, sym_comment, - STATE(2207), 1, - sym_unquoted, - STATE(2211), 1, + STATE(2503), 1, + sym__var, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2213), 1, + STATE(2807), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2242), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(2251), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2940), 1, sym__expr_binary_expression, - ACTIONS(4141), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -258026,85 +262924,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75624] = 34, + [76080] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4139), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4149), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4151), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4155), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4157), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4349), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4664), 1, anon_sym_DASH, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(4359), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4363), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(252), 1, + STATE(353), 1, + sym__val_number, + STATE(355), 1, sym__val_number_decimal, - STATE(260), 1, + STATE(358), 1, sym_val_number, - STATE(262), 1, - sym__val_number, - STATE(1782), 1, - sym__var, - STATE(2002), 1, + STATE(2049), 1, sym_comment, - STATE(2211), 1, + STATE(2503), 1, + sym__var, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2213), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2215), 1, - sym__inter_double_quotes, - STATE(2242), 1, + STATE(2818), 1, + sym_unquoted, + STATE(2839), 1, sym__str_double_quotes, - STATE(2253), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2948), 1, sym__expr_binary_expression, - STATE(2254), 1, - sym_unquoted, - ACTIONS(4141), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4153), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4145), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4147), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4361), 3, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2221), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2208), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -258117,181 +263015,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75749] = 35, + [76205] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, - anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(2003), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4333), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 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(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [75876] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3972), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, - anon_sym_LBRACE, - ACTIONS(3980), 1, + ACTIONS(4664), 1, + anon_sym_DASH, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - STATE(434), 1, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + STATE(353), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, + STATE(355), 1, sym__val_number_decimal, - STATE(2004), 1, + STATE(358), 1, + sym_val_number, + STATE(2050), 1, sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, + STATE(2503), 1, sym__var, - STATE(3123), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3202), 1, + STATE(2821), 1, + sym_unquoted, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, + STATE(2952), 1, sym__expr_binary_expression, - STATE(4338), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 6, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3219), 11, + STATE(2851), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2855), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -258301,85 +263106,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76003] = 34, + [76330] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, - anon_sym_DASH, - ACTIONS(2572), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_PLUS, - ACTIONS(4435), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4437), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4447), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_DASH, + ACTIONS(4666), 1, + anon_sym_DOT, + ACTIONS(4668), 1, + anon_sym_PLUS, + ACTIONS(4670), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(127), 1, - sym__val_number_decimal, - STATE(134), 1, + STATE(353), 1, sym__val_number, - STATE(135), 1, + STATE(355), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(912), 1, + STATE(2051), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(1069), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1093), 1, + STATE(2822), 1, sym_unquoted, - STATE(1098), 1, - sym__expr_binary_expression, - STATE(1104), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1111), 1, + STATE(2850), 1, sym__inter_double_quotes, - STATE(1112), 1, - sym__inter_single_quotes, - STATE(2005), 1, - sym_comment, - ACTIONS(4439), 2, + STATE(2960), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4449), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4441), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1114), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -258392,518 +263197,212 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76128] = 35, + [76455] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, - anon_sym_LBRACE, - ACTIONS(3980), 1, - anon_sym_DOT, - ACTIONS(3982), 1, + STATE(2052), 1, + sym_comment, + ACTIONS(1663), 5, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT2, + ACTIONS(4679), 8, + anon_sym_DASH, + anon_sym__, anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(2006), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4340), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3992), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 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(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [76255] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2007), 1, - sym_comment, - ACTIONS(2784), 13, + aux_sym_unquoted_token1, + ACTIONS(4676), 20, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + 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(2782), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(1665), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [76524] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2053), 1, + sym_comment, + ACTIONS(1441), 13, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [76320] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1443), 41, anon_sym_LBRACK, - ACTIONS(3972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(2008), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4427), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, anon_sym_true, anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 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(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [76447] = 35, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76589] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4415), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4417), 1, + ACTIONS(4664), 1, anon_sym_DASH, - ACTIONS(4419), 1, + ACTIONS(4666), 1, anon_sym_DOT, - ACTIONS(4421), 1, + ACTIONS(4668), 1, anon_sym_PLUS, - ACTIONS(4423), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - STATE(337), 1, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + STATE(353), 1, + sym__val_number, + STATE(355), 1, sym__val_number_decimal, - STATE(346), 1, + STATE(358), 1, sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(2009), 1, + STATE(2054), 1, sym_comment, - STATE(2492), 1, + STATE(2503), 1, sym__var, - STATE(2717), 1, - sym_expr_parenthesized, - STATE(2719), 1, - sym_val_variable, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3464), 1, + STATE(2829), 1, + sym_unquoted, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2961), 1, sym__expr_binary_expression, - STATE(3980), 1, - sym_val_range, - STATE(4004), 1, - sym__expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2801), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(4331), 6, + ACTIONS(4482), 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(2807), 11, - sym_val_nothing, - sym_val_bool, - 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, - [76574] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, - anon_sym_LBRACE, - ACTIONS(3980), 1, - anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(2010), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4357), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [76701] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, - anon_sym_LBRACE, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - ACTIONS(4165), 1, - anon_sym_DOT, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(469), 1, - sym__val_number_decimal, - STATE(2011), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3124), 1, - sym_expr_parenthesized, - STATE(3159), 1, - sym_val_variable, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4514), 1, - sym_val_range, - STATE(5471), 1, - sym__expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3121), 3, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, + sym_expr_parenthesized, sym__value, - ACTIONS(2829), 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(3219), 11, + STATE(2855), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -258913,85 +263412,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76828] = 34, + [76714] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(4682), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4684), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4686), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4688), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(353), 1, sym__val_number, - STATE(361), 1, + STATE(358), 1, + sym_val_number, + STATE(385), 1, sym__val_number_decimal, - STATE(2012), 1, + STATE(2055), 1, sym_comment, - STATE(2532), 1, + STATE(2503), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2805), 1, - sym_unquoted, - STATE(2811), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2923), 1, + STATE(2832), 1, + sym_unquoted, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(3000), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -259004,85 +263503,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76953] = 34, + [76839] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(4469), 1, - anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + STATE(436), 1, sym__val_number, - STATE(722), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, + sym__val_number_decimal, + STATE(2056), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(750), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3224), 1, sym_unquoted, - STATE(757), 1, - sym__expr_binary_expression, - STATE(776), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, - sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(2013), 1, - sym_comment, - ACTIONS(4261), 2, + STATE(3443), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(759), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -259095,85 +263594,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [77078] = 34, + [76964] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(4682), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4684), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4686), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4688), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(353), 1, sym__val_number, - STATE(361), 1, + STATE(358), 1, + sym_val_number, + STATE(385), 1, sym__val_number_decimal, - STATE(2014), 1, + STATE(2057), 1, sym_comment, - STATE(2532), 1, + STATE(2503), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2795), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(2813), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2905), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2998), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -259186,176 +263685,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [77203] = 34, + [77089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LBRACK, - ACTIONS(329), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - sym_val_date, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(375), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, + STATE(2058), 1, + sym_comment, + ACTIONS(1641), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(4389), 1, - anon_sym_DOT, - ACTIONS(4391), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(4393), 1, - anon_sym_not, - ACTIONS(4395), 1, - anon_sym_null, - ACTIONS(4399), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(4403), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - STATE(368), 1, - sym__val_number, - STATE(392), 1, - sym__val_number_decimal, - STATE(442), 1, - sym_val_number, - STATE(2015), 1, - sym_comment, - STATE(2866), 1, - sym__var, - STATE(2990), 1, - sym__str_double_quotes, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3045), 1, - sym__inter_double_quotes, - STATE(3046), 1, - sym__inter_single_quotes, - STATE(3077), 1, - sym__expr_binary_expression, - STATE(3079), 1, - sym_unquoted, - ACTIONS(371), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4397), 2, + ACTIONS(1643), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(365), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4401), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3072), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3047), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [77328] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77154] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4319), 1, - anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_PLUS, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4682), 1, + anon_sym_DASH, + ACTIONS(4684), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, + STATE(358), 1, + sym_val_number, STATE(385), 1, sym__val_number_decimal, - STATE(2016), 1, + STATE(2059), 1, sym_comment, - STATE(2532), 1, + STATE(2503), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2759), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(2809), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2956), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2997), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, + aux_sym__val_number_token3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2761), 4, + ACTIONS(4690), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -259368,85 +263837,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [77453] = 34, + [77279] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(4682), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4684), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4686), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4688), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(353), 1, sym__val_number, - STATE(361), 1, + STATE(358), 1, + sym_val_number, + STATE(385), 1, sym__val_number_decimal, - STATE(2017), 1, + STATE(2060), 1, sym_comment, - STATE(2532), 1, + STATE(2503), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, STATE(2785), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(2807), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2904), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2982), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -259459,85 +263928,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [77578] = 34, + [77404] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4319), 1, - anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_PLUS, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4682), 1, + anon_sym_DASH, + ACTIONS(4684), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, + STATE(358), 1, + sym_val_number, STATE(385), 1, sym__val_number_decimal, - STATE(2018), 1, + STATE(2061), 1, sym_comment, - STATE(2532), 1, + STATE(2503), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2757), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(2802), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2957), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2985), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2761), 4, + ACTIONS(4690), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -259550,85 +264019,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [77703] = 34, + [77529] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4319), 1, - anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_PLUS, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4682), 1, + anon_sym_DASH, + ACTIONS(4684), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, + STATE(358), 1, + sym_val_number, STATE(385), 1, sym__val_number_decimal, - STATE(2019), 1, + STATE(2062), 1, sym_comment, - STATE(2532), 1, + STATE(2503), 1, sym__var, - STATE(2744), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, sym__str_double_quotes, - STATE(2755), 1, + STATE(2843), 1, sym_unquoted, - STATE(2797), 1, + STATE(2850), 1, sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2958), 1, + STATE(2984), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2761), 4, + ACTIONS(4690), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -259641,146 +264110,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [77828] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2020), 1, - sym_comment, - ACTIONS(1509), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1507), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [77893] = 34, + [77654] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, + ACTIONS(4692), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4319), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4321), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4323), 1, + ACTIONS(4700), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4702), 1, anon_sym_null, - ACTIONS(4329), 1, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4710), 1, aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(385), 1, + STATE(412), 1, sym__val_number_decimal, - STATE(2021), 1, + STATE(422), 1, + sym__val_number, + STATE(451), 1, + sym_val_number, + STATE(2063), 1, sym_comment, - STATE(2532), 1, + STATE(2935), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2754), 1, + STATE(3202), 1, sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2964), 1, + STATE(3211), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4704), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2761), 4, + ACTIONS(4708), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -259793,169 +264201,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [78018] = 4, + [77779] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2022), 1, - sym_comment, - ACTIONS(1493), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1491), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, + ACTIONS(4428), 1, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [78083] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, + ACTIONS(4444), 1, + anon_sym_bit_DASHand, + ACTIONS(4446), 1, + anon_sym_bit_DASHxor, + ACTIONS(4712), 1, + anon_sym_bit_DASHor, + ACTIONS(4714), 1, + anon_sym_and, + STATE(2064), 1, + sym_comment, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4426), 2, anon_sym_DASH, - ACTIONS(2572), 1, + anon_sym_PLUS, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4442), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4440), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 6, + anon_sym__, aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1553), 22, anon_sym_LBRACK, - ACTIONS(4427), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4429), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(4431), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_PLUS, - ACTIONS(4435), 1, - anon_sym_not, - ACTIONS(4437), 1, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(4445), 1, - sym_val_date, - ACTIONS(4447), 1, - anon_sym_DQUOTE, - ACTIONS(4451), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, - aux_sym_unquoted_token1, - STATE(127), 1, - sym__val_number_decimal, - STATE(134), 1, - sym__val_number, - STATE(135), 1, - sym_val_number, - STATE(912), 1, - sym__var, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1104), 1, - sym__str_double_quotes, - STATE(1105), 1, - sym_unquoted, - STATE(1111), 1, - sym__inter_double_quotes, - STATE(1112), 1, - sym__inter_single_quotes, - STATE(1113), 1, - sym__expr_binary_expression, - STATE(2023), 1, - sym_comment, - ACTIONS(4439), 2, anon_sym_true, anon_sym_false, - ACTIONS(4449), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2578), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4441), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1114), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [78208] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2024), 1, + STATE(2065), 1, sym_comment, - ACTIONS(1491), 13, + ACTIONS(1583), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym__, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -259964,14 +264294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1493), 41, + aux_sym_unquoted_token1, + ACTIONS(1585), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -260006,351 +264337,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78273] = 4, + [77937] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(2025), 1, - sym_comment, - ACTIONS(2876), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2874), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, + ACTIONS(4428), 1, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [78338] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_DOLLAR, - ACTIONS(2558), 1, + ACTIONS(4444), 1, + anon_sym_bit_DASHand, + ACTIONS(4446), 1, + anon_sym_bit_DASHxor, + ACTIONS(4712), 1, + anon_sym_bit_DASHor, + ACTIONS(4714), 1, + anon_sym_and, + ACTIONS(4716), 1, + anon_sym_xor, + STATE(2066), 1, + sym_comment, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4426), 2, anon_sym_DASH, - ACTIONS(2572), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, - anon_sym_LBRACK, - ACTIONS(4427), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, - anon_sym_LBRACE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, anon_sym_PLUS, - ACTIONS(4435), 1, - anon_sym_not, - ACTIONS(4437), 1, - anon_sym_null, - ACTIONS(4445), 1, - sym_val_date, - ACTIONS(4447), 1, - anon_sym_DQUOTE, - ACTIONS(4451), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, - aux_sym_unquoted_token1, - STATE(127), 1, - sym__val_number_decimal, - STATE(134), 1, - sym__val_number, - STATE(135), 1, - sym_val_number, - STATE(912), 1, - sym__var, - STATE(1062), 1, - sym_unquoted, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1070), 1, - sym__expr_binary_expression, - STATE(1104), 1, - sym__str_double_quotes, - STATE(1111), 1, - sym__inter_double_quotes, - STATE(1112), 1, - sym__inter_single_quotes, - STATE(2026), 1, - sym_comment, - ACTIONS(4439), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4449), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2578), 3, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4442), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4440), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4441), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4443), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1103), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1114), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [78463] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4309), 1, + aux_sym_unquoted_token1, + ACTIONS(1553), 21, anon_sym_LBRACK, - ACTIONS(4311), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4319), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_PLUS, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, + anon_sym_or, anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(385), 1, - sym__val_number_decimal, - STATE(2027), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2751), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2944), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [78588] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, sym_val_date, - ACTIONS(4339), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4375), 1, - anon_sym_DASH, - ACTIONS(4377), 1, - anon_sym_DOT, - ACTIONS(4379), 1, - anon_sym_PLUS, - ACTIONS(4381), 1, - aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(361), 1, - sym__val_number_decimal, - STATE(2028), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2800), 1, - sym_unquoted, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2892), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4383), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [78713] = 4, + [78032] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2029), 1, + STATE(2067), 1, sym_comment, - ACTIONS(1511), 13, + ACTIONS(1629), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym__, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -260359,14 +264431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1513), 41, + aux_sym_unquoted_token1, + ACTIONS(1631), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -260401,85 +264474,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78778] = 34, + [78097] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4692), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4700), 1, + anon_sym_not, + ACTIONS(4702), 1, + anon_sym_null, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(361), 1, + ACTIONS(4710), 1, + aux_sym_unquoted_token1, + STATE(412), 1, sym__val_number_decimal, - STATE(2030), 1, + STATE(422), 1, + sym__val_number, + STATE(451), 1, + sym_val_number, + STATE(2068), 1, sym_comment, - STATE(2532), 1, + STATE(2935), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2763), 1, + STATE(3199), 1, sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2886), 1, + STATE(3201), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4704), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -260492,85 +264565,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [78903] = 34, + [78222] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(436), 1, sym__val_number, - STATE(361), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, sym__val_number_decimal, - STATE(2031), 1, + STATE(2069), 1, sym_comment, - STATE(2532), 1, + STATE(2688), 1, sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2797), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2815), 1, + STATE(3233), 1, sym_unquoted, - STATE(2943), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3418), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -260583,85 +264656,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79028] = 34, + [78347] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(436), 1, sym__val_number, - STATE(361), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, sym__val_number_decimal, - STATE(2032), 1, + STATE(2070), 1, sym_comment, - STATE(2532), 1, + STATE(2688), 1, sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2797), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2829), 1, + STATE(3231), 1, sym_unquoted, - STATE(2942), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3449), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -260674,85 +264747,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79153] = 34, + [78472] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(436), 1, sym__val_number, - STATE(361), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, sym__val_number_decimal, - STATE(2033), 1, + STATE(2071), 1, sym_comment, - STATE(2532), 1, + STATE(2688), 1, sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2751), 1, - sym_unquoted, - STATE(2797), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3229), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2941), 1, + STATE(3450), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -260765,85 +264838,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79278] = 34, + [78597] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(4469), 1, - anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + STATE(436), 1, sym__val_number, - STATE(722), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, + sym__val_number_decimal, + STATE(2072), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(760), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3226), 1, sym_unquoted, - STATE(762), 1, - sym__expr_binary_expression, - STATE(776), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, - sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(2034), 1, - sym_comment, - ACTIONS(4261), 2, + STATE(3451), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(759), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -260856,85 +264929,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79403] = 34, + [78722] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4656), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4658), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(436), 1, sym__val_number, - STATE(361), 1, + STATE(471), 1, + sym_val_number, + STATE(485), 1, sym__val_number_decimal, - STATE(2035), 1, + STATE(2073), 1, sym_comment, - STATE(2532), 1, + STATE(2688), 1, sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2754), 1, - sym_unquoted, - STATE(2797), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3225), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2940), 1, + STATE(3467), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4660), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -260947,85 +265020,223 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79528] = 34, + [78847] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + STATE(2074), 1, + sym_comment, + ACTIONS(1655), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1657), 41, anon_sym_LBRACK, - ACTIONS(4311), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [78912] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4428), 1, + anon_sym_in, + ACTIONS(4444), 1, + anon_sym_bit_DASHand, + ACTIONS(4446), 1, + anon_sym_bit_DASHxor, + ACTIONS(4712), 1, + anon_sym_bit_DASHor, + ACTIONS(4714), 1, + anon_sym_and, + ACTIONS(4716), 1, + anon_sym_xor, + ACTIONS(4718), 1, + anon_sym_or, + STATE(2075), 1, + sym_comment, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4426), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4442), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4440), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1553), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_null, - ACTIONS(4337), 1, + 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, + [79009] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4692), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4700), 1, + anon_sym_not, + ACTIONS(4702), 1, + anon_sym_null, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(361), 1, + ACTIONS(4710), 1, + aux_sym_unquoted_token1, + STATE(412), 1, sym__val_number_decimal, - STATE(2036), 1, + STATE(422), 1, + sym__val_number, + STATE(451), 1, + sym_val_number, + STATE(2076), 1, sym_comment, - STATE(2532), 1, + STATE(2935), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2755), 1, + STATE(3191), 1, sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2937), 1, + STATE(3198), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4704), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -261038,88 +265249,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79653] = 34, + [79134] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4078), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4086), 1, + anon_sym_DOT, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(4146), 1, anon_sym_DASH, - ACTIONS(4377), 1, - anon_sym_DOT, - ACTIONS(4379), 1, - anon_sym_PLUS, - ACTIONS(4381), 1, - aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(436), 1, sym__val_number, - STATE(361), 1, + STATE(471), 1, + sym_val_number, + STATE(502), 1, sym__val_number_decimal, - STATE(2037), 1, + STATE(2077), 1, sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2757), 1, - sym_unquoted, - STATE(2797), 1, + STATE(2865), 1, + sym__var, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2936), 1, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(4339), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(2807), 12, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -261129,85 +265341,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79778] = 34, + [79261] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - ACTIONS(4375), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4692), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4377), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4379), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4700), 1, + anon_sym_not, + ACTIONS(4702), 1, + anon_sym_null, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(361), 1, + ACTIONS(4710), 1, + aux_sym_unquoted_token1, + STATE(412), 1, sym__val_number_decimal, - STATE(2038), 1, + STATE(422), 1, + sym__val_number, + STATE(451), 1, + sym_val_number, + STATE(2078), 1, sym_comment, - STATE(2532), 1, + STATE(2935), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2759), 1, + STATE(3188), 1, sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2935), 1, + STATE(3189), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4704), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4383), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -261220,88 +265432,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79903] = 34, + [79386] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, - sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, - anon_sym_LPAREN, - ACTIONS(4461), 1, - anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4086), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4467), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4469), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, - sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + STATE(436), 1, sym__val_number, - STATE(722), 1, + STATE(471), 1, + sym_val_number, + STATE(502), 1, + sym__val_number_decimal, + STATE(2079), 1, + sym_comment, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, sym__var, - STATE(765), 1, - sym_unquoted, - STATE(767), 1, - sym__expr_binary_expression, - STATE(776), 1, - sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(2039), 1, - sym_comment, - ACTIONS(4261), 2, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4340), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(756), 4, + STATE(3473), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(759), 12, + ACTIONS(2896), 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(3129), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -261311,85 +265524,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80028] = 34, + [79513] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + STATE(2080), 1, + sym_comment, + ACTIONS(1651), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1653), 41, anon_sym_LBRACK, - ACTIONS(4233), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(4237), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [79578] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, sym_val_date, - ACTIONS(4259), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4467), 1, + ACTIONS(4700), 1, anon_sym_not, - ACTIONS(4469), 1, + ACTIONS(4702), 1, anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, + ACTIONS(4710), 1, aux_sym_unquoted_token1, - STATE(75), 1, + STATE(412), 1, sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + STATE(422), 1, sym__val_number, - STATE(722), 1, + STATE(451), 1, + sym_val_number, + STATE(2081), 1, + sym_comment, + STATE(2935), 1, sym__var, - STATE(752), 1, + STATE(3186), 1, sym_unquoted, - STATE(753), 1, + STATE(3187), 1, sym__expr_binary_expression, - STATE(776), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(782), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(784), 1, + STATE(3257), 1, sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(2040), 1, - sym_comment, - ACTIONS(4261), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4704), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(759), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -261402,85 +265676,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80153] = 34, + [79703] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, - anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(4259), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4467), 1, + ACTIONS(4700), 1, anon_sym_not, - ACTIONS(4469), 1, + ACTIONS(4702), 1, anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, + ACTIONS(4710), 1, aux_sym_unquoted_token1, - STATE(75), 1, + STATE(412), 1, sym__val_number_decimal, - STATE(83), 1, - sym_val_number, - STATE(85), 1, + STATE(422), 1, sym__val_number, - STATE(722), 1, + STATE(451), 1, + sym_val_number, + STATE(2082), 1, + sym_comment, + STATE(2935), 1, sym__var, - STATE(754), 1, + STATE(3183), 1, sym_unquoted, - STATE(755), 1, + STATE(3185), 1, sym__expr_binary_expression, - STATE(776), 1, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(782), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(784), 1, + STATE(3257), 1, sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(2041), 1, - sym_comment, - ACTIONS(4261), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4704), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(759), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -261493,85 +265767,207 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80278] = 34, + [79828] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2083), 1, + sym_comment, + ACTIONS(2986), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2984), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [79893] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2084), 1, + sym_comment, + ACTIONS(1534), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1532), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [79958] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + ACTIONS(4720), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, + ACTIONS(4722), 1, anon_sym_LPAREN, - ACTIONS(4483), 1, + ACTIONS(4724), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, + ACTIONS(4726), 1, anon_sym_DASH, - ACTIONS(4487), 1, + ACTIONS(4728), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, + ACTIONS(4730), 1, anon_sym_DOT, - ACTIONS(4491), 1, + ACTIONS(4732), 1, anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4734), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4736), 1, anon_sym_null, - ACTIONS(4499), 1, + ACTIONS(4740), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4748), 1, sym_val_date, - ACTIONS(4509), 1, + ACTIONS(4750), 1, anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4754), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4756), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4758), 1, aux_sym_unquoted_token1, - STATE(19), 1, + STATE(43), 1, sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + STATE(55), 1, sym__val_number, - STATE(517), 1, + STATE(56), 1, + sym_val_number, + STATE(555), 1, sym__var, - STATE(580), 1, + STATE(663), 1, + sym__inter_single_quotes, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, sym__expr_unary_minus, - STATE(597), 1, + STATE(694), 1, sym__expr_binary_expression, - STATE(600), 1, - sym__inter_single_quotes, - STATE(603), 1, + STATE(696), 1, sym_unquoted, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, + STATE(711), 1, sym__str_double_quotes, - STATE(2042), 1, + STATE(2085), 1, sym_comment, - ACTIONS(4497), 2, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - ACTIONS(4511), 2, + ACTIONS(4752), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4742), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, + ACTIONS(4744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4505), 3, + ACTIONS(4746), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + STATE(693), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(655), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -261584,7 +265980,68 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80403] = 34, + [80083] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2086), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [80148] = 34, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -261599,50 +266056,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4521), 1, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4523), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4700), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4702), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4710), 1, aux_sym_unquoted_token1, - STATE(425), 1, + STATE(412), 1, sym__val_number_decimal, - STATE(426), 1, + STATE(422), 1, sym__val_number, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(2043), 1, + STATE(2087), 1, sym_comment, - STATE(2902), 1, + STATE(2935), 1, sym__var, - STATE(3116), 1, + STATE(3181), 1, sym_unquoted, - STATE(3117), 1, + STATE(3182), 1, sym__expr_binary_expression, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4704), 2, anon_sym_true, anon_sym_false, ACTIONS(87), 3, @@ -261653,16 +266110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -261675,7 +266132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80528] = 34, + [80273] = 34, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -261690,50 +266147,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4521), 1, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4523), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4700), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4702), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4710), 1, aux_sym_unquoted_token1, - STATE(425), 1, + STATE(412), 1, sym__val_number_decimal, - STATE(426), 1, + STATE(422), 1, sym__val_number, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(2044), 1, + STATE(2088), 1, sym_comment, - STATE(2902), 1, + STATE(2935), 1, sym__var, - STATE(3113), 1, + STATE(3177), 1, sym_unquoted, - STATE(3114), 1, + STATE(3180), 1, sym__expr_binary_expression, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4704), 2, anon_sym_true, anon_sym_false, ACTIONS(87), 3, @@ -261744,16 +266201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -261766,85 +266223,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80653] = 34, + [80398] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + ACTIONS(4720), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, + ACTIONS(4722), 1, anon_sym_LPAREN, - ACTIONS(4483), 1, + ACTIONS(4724), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, + ACTIONS(4726), 1, anon_sym_DASH, - ACTIONS(4487), 1, + ACTIONS(4728), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, + ACTIONS(4730), 1, anon_sym_DOT, - ACTIONS(4491), 1, + ACTIONS(4732), 1, anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4734), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4736), 1, anon_sym_null, - ACTIONS(4499), 1, + ACTIONS(4740), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4748), 1, sym_val_date, - ACTIONS(4509), 1, + ACTIONS(4750), 1, anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4754), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4756), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4758), 1, aux_sym_unquoted_token1, - STATE(19), 1, + STATE(43), 1, sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + STATE(55), 1, sym__val_number, - STATE(517), 1, + STATE(56), 1, + sym_val_number, + STATE(555), 1, sym__var, - STATE(566), 1, - sym__expr_binary_expression, - STATE(580), 1, - sym__expr_unary_minus, - STATE(595), 1, - sym_unquoted, - STATE(600), 1, + STATE(663), 1, sym__inter_single_quotes, - STATE(613), 1, + STATE(664), 1, sym__inter_double_quotes, - STATE(618), 1, + STATE(678), 1, + sym__expr_unary_minus, + STATE(698), 1, + sym__expr_binary_expression, + STATE(700), 1, + sym_unquoted, + STATE(711), 1, sym__str_double_quotes, - STATE(2045), 1, + STATE(2089), 1, sym_comment, - ACTIONS(4497), 2, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - ACTIONS(4511), 2, + ACTIONS(4752), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4742), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, + ACTIONS(4744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4505), 3, + ACTIONS(4746), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + STATE(693), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(655), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -261857,280 +266314,556 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80778] = 34, + [80523] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + STATE(2090), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, anon_sym_LBRACK, - ACTIONS(4481), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4483), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4491), 1, - anon_sym_PLUS, - ACTIONS(4493), 1, - anon_sym_not, - ACTIONS(4495), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(4499), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(4509), 1, anon_sym_DQUOTE, - ACTIONS(4513), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, - aux_sym_unquoted_token1, - STATE(19), 1, - sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, - sym__val_number, - STATE(517), 1, - sym__var, - STATE(569), 1, - sym__expr_binary_expression, - STATE(570), 1, - sym_unquoted, - STATE(580), 1, - sym__expr_unary_minus, - STATE(600), 1, - sym__inter_single_quotes, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__str_double_quotes, - STATE(2046), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [80588] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2091), 1, sym_comment, - ACTIONS(4497), 2, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(4511), 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(4501), 3, + [80653] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2092), 1, + sym_comment, + ACTIONS(1633), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1635), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4505), 3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [80718] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2093), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(614), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [80903] = 34, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [80783] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + STATE(2094), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, anon_sym_LBRACK, - ACTIONS(4481), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4483), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4491), 1, - anon_sym_PLUS, - ACTIONS(4493), 1, - anon_sym_not, - ACTIONS(4495), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(4499), 1, + 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, + [80848] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2095), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(4509), 1, anon_sym_DQUOTE, - ACTIONS(4513), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [80913] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2096), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - STATE(19), 1, - sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, - sym__val_number, - STATE(517), 1, - sym__var, - STATE(571), 1, - sym_unquoted, - STATE(574), 1, - sym__expr_binary_expression, - STATE(580), 1, - sym__expr_unary_minus, - STATE(600), 1, - sym__inter_single_quotes, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__str_double_quotes, - STATE(2047), 1, + ACTIONS(1581), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [80978] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2097), 1, sym_comment, - ACTIONS(4497), 2, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, anon_sym_true, anon_sym_false, - ACTIONS(4511), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4501), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4505), 3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [81043] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2098), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(614), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [81028] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4479), 1, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, anon_sym_LBRACK, - ACTIONS(4481), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4483), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4491), 1, - anon_sym_PLUS, - ACTIONS(4493), 1, - anon_sym_not, - ACTIONS(4495), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(4499), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, - sym_val_date, - ACTIONS(4509), 1, - anon_sym_DQUOTE, - ACTIONS(4513), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, - aux_sym_unquoted_token1, - STATE(19), 1, - sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, - sym__val_number, - STATE(517), 1, - sym__var, - STATE(580), 1, - sym__expr_unary_minus, - STATE(581), 1, - sym_unquoted, - STATE(586), 1, - sym__expr_binary_expression, - STATE(600), 1, - sym__inter_single_quotes, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__str_double_quotes, - STATE(2048), 1, - sym_comment, - ACTIONS(4497), 2, anon_sym_true, anon_sym_false, - ACTIONS(4511), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4501), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4505), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(623), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(614), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [81153] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [81108] = 34, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -262145,50 +266878,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4521), 1, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4523), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4700), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4702), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4710), 1, aux_sym_unquoted_token1, - STATE(425), 1, + STATE(412), 1, sym__val_number_decimal, - STATE(426), 1, + STATE(422), 1, sym__val_number, - STATE(464), 1, + STATE(451), 1, sym_val_number, - STATE(2049), 1, + STATE(2099), 1, sym_comment, - STATE(2902), 1, + STATE(2935), 1, sym__var, - STATE(3108), 1, + STATE(3174), 1, sym_unquoted, - STATE(3112), 1, + STATE(3176), 1, sym__expr_binary_expression, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, - sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, + STATE(3238), 1, sym__str_double_quotes, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3256), 1, + sym__inter_single_quotes, + STATE(3257), 1, + sym__inter_double_quotes, ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4704), 2, anon_sym_true, anon_sym_false, ACTIONS(87), 3, @@ -262199,16 +266932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -262221,85 +266954,207 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81278] = 34, + [81233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + STATE(2100), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, anon_sym_LBRACK, - ACTIONS(4481), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4483), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [81298] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2101), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(4487), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(4489), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4491), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [81363] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4499), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4509), 1, - anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(19), 1, - sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(517), 1, + STATE(471), 1, + sym_val_number, + STATE(479), 1, + sym__val_number_decimal, + STATE(2102), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(567), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3242), 1, sym_unquoted, - STATE(568), 1, - sym__expr_binary_expression, - STATE(580), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(600), 1, - sym__inter_single_quotes, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__str_double_quotes, - STATE(2050), 1, - sym_comment, - ACTIONS(4497), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4511), 2, + STATE(3501), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4505), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + ACTIONS(4150), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -262312,85 +267167,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81403] = 34, + [81488] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DASH, - ACTIONS(4523), 1, - anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(425), 1, - sym__val_number_decimal, - STATE(426), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(464), 1, + STATE(471), 1, sym_val_number, - STATE(2051), 1, + STATE(479), 1, + sym__val_number_decimal, + STATE(2103), 1, sym_comment, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3104), 1, - sym_unquoted, - STATE(3106), 1, - sym__expr_binary_expression, - STATE(3179), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3241), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + STATE(3499), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4150), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -262403,85 +267258,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81528] = 34, + [81613] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4319), 1, - anon_sym_DOT, - ACTIONS(4321), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4323), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4329), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(385), 1, + STATE(471), 1, + sym_val_number, + STATE(479), 1, sym__val_number_decimal, - STATE(2052), 1, + STATE(2104), 1, sym_comment, - STATE(2532), 1, + STATE(2688), 1, sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2797), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2829), 1, + STATE(3240), 1, sym_unquoted, - STATE(2971), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3497), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2761), 4, + ACTIONS(4150), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -262494,85 +267349,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81653] = 34, + [81738] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, - anon_sym_LPAREN, - ACTIONS(4483), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, - anon_sym_DOT, - ACTIONS(4491), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4499), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4509), 1, - anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(19), 1, - sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(517), 1, + STATE(471), 1, + sym_val_number, + STATE(479), 1, + sym__val_number_decimal, + STATE(2105), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(573), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3239), 1, sym_unquoted, - STATE(575), 1, - sym__expr_binary_expression, - STATE(580), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(600), 1, - sym__inter_single_quotes, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__str_double_quotes, - STATE(2053), 1, - sym_comment, - ACTIONS(4497), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4511), 2, + STATE(3495), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4505), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + ACTIONS(4150), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -262585,85 +267440,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81778] = 34, + [81863] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DASH, - ACTIONS(4523), 1, - anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(425), 1, - sym__val_number_decimal, - STATE(426), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(464), 1, + STATE(471), 1, sym_val_number, - STATE(2054), 1, + STATE(479), 1, + sym__val_number_decimal, + STATE(2106), 1, sym_comment, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3101), 1, - sym_unquoted, - STATE(3102), 1, - sym__expr_binary_expression, - STATE(3179), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3236), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + STATE(3493), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4150), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -262676,85 +267531,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81903] = 34, + [81988] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DASH, - ACTIONS(4523), 1, - anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(425), 1, - sym__val_number_decimal, - STATE(426), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(464), 1, + STATE(471), 1, sym_val_number, - STATE(2055), 1, + STATE(479), 1, + sym__val_number_decimal, + STATE(2107), 1, sym_comment, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3097), 1, - sym_unquoted, - STATE(3098), 1, - sym__expr_binary_expression, - STATE(3179), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3235), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + STATE(3491), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4150), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -262767,85 +267622,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82028] = 34, + [82113] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DASH, - ACTIONS(4523), 1, - anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(425), 1, - sym__val_number_decimal, - STATE(426), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(464), 1, + STATE(471), 1, sym_val_number, - STATE(2056), 1, + STATE(479), 1, + sym__val_number_decimal, + STATE(2108), 1, sym_comment, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3089), 1, - sym_unquoted, - STATE(3091), 1, - sym__expr_binary_expression, - STATE(3179), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3234), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + STATE(3489), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4150), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -262858,85 +267713,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82153] = 34, + [82238] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, - anon_sym_LPAREN, - ACTIONS(4483), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, - anon_sym_DOT, - ACTIONS(4491), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4499), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4509), 1, - anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(19), 1, - sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(517), 1, + STATE(471), 1, + sym_val_number, + STATE(479), 1, + sym__val_number_decimal, + STATE(2109), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(576), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3224), 1, sym_unquoted, - STATE(577), 1, - sym__expr_binary_expression, - STATE(580), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(600), 1, - sym__inter_single_quotes, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__str_double_quotes, - STATE(2057), 1, - sym_comment, - ACTIONS(4497), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4511), 2, + STATE(3487), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4505), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + ACTIONS(4150), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -262949,85 +267804,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82278] = 34, + [82363] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DASH, - ACTIONS(4523), 1, - anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(425), 1, - sym__val_number_decimal, - STATE(426), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(464), 1, + STATE(471), 1, sym_val_number, - STATE(2058), 1, + STATE(479), 1, + sym__val_number_decimal, + STATE(2110), 1, sym_comment, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3094), 1, - sym__expr_binary_expression, - STATE(3096), 1, - sym_unquoted, - STATE(3179), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3233), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + STATE(3484), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4150), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -263040,85 +267895,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82403] = 34, + [82488] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DASH, - ACTIONS(4523), 1, - anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(425), 1, - sym__val_number_decimal, - STATE(426), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(464), 1, + STATE(471), 1, sym_val_number, - STATE(2059), 1, + STATE(479), 1, + sym__val_number_decimal, + STATE(2111), 1, sym_comment, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3109), 1, - sym__expr_binary_expression, - STATE(3110), 1, - sym_unquoted, - STATE(3179), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3231), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + STATE(3482), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4150), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -263131,85 +267986,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82528] = 34, + [82613] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DASH, - ACTIONS(4523), 1, - anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(425), 1, - sym__val_number_decimal, - STATE(426), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(464), 1, + STATE(471), 1, sym_val_number, - STATE(2060), 1, + STATE(479), 1, + sym__val_number_decimal, + STATE(2112), 1, sym_comment, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3111), 1, - sym__expr_binary_expression, - STATE(3171), 1, - sym_unquoted, - STATE(3179), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3229), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + STATE(3480), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4150), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -263222,85 +268077,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82653] = 34, + [82738] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, + ACTIONS(4076), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DASH, - ACTIONS(4523), 1, - anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4084), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(425), 1, - sym__val_number_decimal, - STATE(426), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(464), 1, + STATE(471), 1, sym_val_number, - STATE(2061), 1, + STATE(479), 1, + sym__val_number_decimal, + STATE(2113), 1, sym_comment, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3141), 1, - sym_unquoted, - STATE(3179), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3226), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3187), 1, + STATE(3478), 1, sym__expr_binary_expression, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4150), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -263313,209 +268168,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82778] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4541), 1, - anon_sym_COMMA, - STATE(2062), 1, - sym_comment, - ACTIONS(4543), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4539), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [82845] = 5, + [82863] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4547), 1, - anon_sym_COMMA, - STATE(2063), 1, - sym_comment, - ACTIONS(4549), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(2900), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4545), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [82912] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4479), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, - anon_sym_LPAREN, - ACTIONS(4483), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, - anon_sym_DOT, - ACTIONS(4491), 1, + ACTIONS(4088), 1, anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4499), 1, + ACTIONS(4096), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4509), 1, - anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4146), 1, + anon_sym_DASH, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(19), 1, - sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(436), 1, sym__val_number, - STATE(517), 1, + STATE(471), 1, + sym_val_number, + STATE(479), 1, + sym__val_number_decimal, + STATE(2114), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(580), 1, - sym__expr_unary_minus, - STATE(582), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3225), 1, sym_unquoted, - STATE(583), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3474), 1, sym__expr_binary_expression, - STATE(600), 1, - sym__inter_single_quotes, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__str_double_quotes, - STATE(2064), 1, - sym_comment, - ACTIONS(4497), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4511), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4505), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + ACTIONS(4150), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -263528,89 +268259,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83037] = 35, + [82988] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(4483), 1, - anon_sym_DOLLAR, - ACTIONS(4487), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(4493), 1, - anon_sym_not, - ACTIONS(4495), 1, - anon_sym_null, - ACTIONS(4507), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(4509), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4551), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4553), 1, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4555), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4557), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4559), 1, + ACTIONS(4700), 1, + anon_sym_not, + ACTIONS(4702), 1, + anon_sym_null, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - STATE(39), 1, + ACTIONS(4710), 1, + aux_sym_unquoted_token1, + STATE(412), 1, sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + STATE(422), 1, sym__val_number, - STATE(527), 1, + STATE(451), 1, + sym_val_number, + STATE(2115), 1, + sym_comment, + STATE(2935), 1, sym__var, - STATE(559), 1, - sym_val_variable, - STATE(563), 1, - sym_expr_parenthesized, - STATE(580), 1, + STATE(3166), 1, + sym__expr_binary_expression, + STATE(3172), 1, + sym_unquoted, + STATE(3238), 1, + sym__str_double_quotes, + STATE(3248), 1, sym__expr_unary_minus, - STATE(600), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(613), 1, + STATE(3257), 1, sym__inter_double_quotes, - STATE(618), 1, - sym__str_double_quotes, - STATE(1384), 1, - sym_val_range, - STATE(1390), 1, - sym__expression, - STATE(2065), 1, - sym_comment, - STATE(3461), 1, - sym__expr_binary_expression, - ACTIONS(4497), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4511), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4505), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(608), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(4501), 6, + ACTIONS(4704), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(614), 11, + STATE(3212), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3230), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -263620,85 +268350,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83164] = 34, + [83113] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4720), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, + ACTIONS(4722), 1, anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4724), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, + ACTIONS(4726), 1, anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(4728), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, + ACTIONS(4730), 1, anon_sym_DOT, - ACTIONS(4573), 1, + ACTIONS(4732), 1, anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4734), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4736), 1, anon_sym_null, - ACTIONS(4581), 1, + ACTIONS(4740), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4748), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4750), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4754), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4756), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4758), 1, aux_sym_unquoted_token1, - STATE(44), 1, + STATE(43), 1, sym__val_number_decimal, STATE(55), 1, sym__val_number, STATE(56), 1, sym_val_number, - STATE(541), 1, + STATE(555), 1, sym__var, - STATE(662), 1, - sym__expr_binary_expression, STATE(663), 1, - sym_unquoted, - STATE(671), 1, - sym__str_double_quotes, - STATE(672), 1, sym__inter_single_quotes, - STATE(676), 1, + STATE(664), 1, sym__inter_double_quotes, STATE(678), 1, sym__expr_unary_minus, - STATE(2066), 1, + STATE(703), 1, + sym__expr_binary_expression, + STATE(705), 1, + sym_unquoted, + STATE(711), 1, + sym__str_double_quotes, + STATE(2116), 1, sym_comment, - ACTIONS(4579), 2, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4752), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4742), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, + ACTIONS(4744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4746), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + STATE(693), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(655), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -263711,85 +268441,207 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83289] = 34, + [83238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + STATE(2117), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(3970), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [83303] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2118), 1, + sym_comment, + ACTIONS(1579), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1581), 41, anon_sym_LBRACK, - ACTIONS(3974), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(3994), 1, + 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, + [83368] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4700), 1, + anon_sym_not, + ACTIONS(4702), 1, + anon_sym_null, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, + ACTIONS(4710), 1, aux_sym_unquoted_token1, - STATE(434), 1, + STATE(412), 1, + sym__val_number_decimal, + STATE(422), 1, sym__val_number, - STATE(465), 1, + STATE(451), 1, sym_val_number, - STATE(483), 1, - sym__val_number_decimal, - STATE(2067), 1, + STATE(2119), 1, sym_comment, - STATE(2682), 1, + STATE(2935), 1, sym__var, - STATE(2728), 1, + STATE(3170), 1, + sym_unquoted, + STATE(3171), 1, + sym__expr_binary_expression, + STATE(3238), 1, sym__str_double_quotes, - STATE(3123), 1, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3138), 1, - sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3454), 1, - sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(3257), 1, + sym__inter_double_quotes, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4704), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -263802,85 +268654,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83414] = 34, + [83493] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + STATE(2120), 1, + sym_comment, + ACTIONS(1540), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1623), 41, anon_sym_LBRACK, - ACTIONS(3974), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(3994), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83558] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + anon_sym_LBRACK, + ACTIONS(4722), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4724), 1, + anon_sym_DOLLAR, + ACTIONS(4726), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4728), 1, + anon_sym_LBRACE, + ACTIONS(4730), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4732), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4734), 1, + anon_sym_not, + ACTIONS(4736), 1, + anon_sym_null, + ACTIONS(4740), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, + ACTIONS(4748), 1, + sym_val_date, + ACTIONS(4750), 1, + anon_sym_DQUOTE, + ACTIONS(4754), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4756), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4758), 1, aux_sym_unquoted_token1, - STATE(434), 1, + STATE(43), 1, + sym__val_number_decimal, + STATE(55), 1, sym__val_number, - STATE(465), 1, + STATE(56), 1, sym_val_number, - STATE(483), 1, - sym__val_number_decimal, - STATE(2068), 1, - sym_comment, - STATE(2682), 1, + STATE(555), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3139), 1, - sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(663), 1, sym__inter_single_quotes, - STATE(3452), 1, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, + sym__expr_unary_minus, + STATE(706), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(708), 1, + sym_unquoted, + STATE(711), 1, + sym__str_double_quotes, + STATE(2121), 1, + sym_comment, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4752), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4742), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + ACTIONS(4746), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(693), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(655), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -263893,85 +268806,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83539] = 34, + [83683] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4700), 1, + anon_sym_not, + ACTIONS(4702), 1, + anon_sym_null, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, + ACTIONS(4710), 1, aux_sym_unquoted_token1, - STATE(434), 1, + STATE(412), 1, + sym__val_number_decimal, + STATE(422), 1, sym__val_number, - STATE(465), 1, + STATE(451), 1, sym_val_number, - STATE(483), 1, - sym__val_number_decimal, - STATE(2069), 1, + STATE(2122), 1, sym_comment, - STATE(2682), 1, + STATE(2935), 1, sym__var, - STATE(2728), 1, + STATE(3167), 1, + sym_unquoted, + STATE(3169), 1, + sym__expr_binary_expression, + STATE(3238), 1, sym__str_double_quotes, - STATE(3123), 1, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3140), 1, - sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3449), 1, - sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(3257), 1, + sym__inter_double_quotes, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4704), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -263984,85 +268897,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83664] = 34, + [83808] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4694), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4698), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4700), 1, + anon_sym_not, + ACTIONS(4702), 1, + anon_sym_null, + ACTIONS(4706), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, + ACTIONS(4710), 1, aux_sym_unquoted_token1, - STATE(434), 1, + STATE(412), 1, + sym__val_number_decimal, + STATE(422), 1, sym__val_number, - STATE(465), 1, + STATE(451), 1, sym_val_number, - STATE(483), 1, - sym__val_number_decimal, - STATE(2070), 1, + STATE(2123), 1, sym_comment, - STATE(2682), 1, + STATE(2935), 1, sym__var, - STATE(2728), 1, + STATE(3138), 1, + sym__expr_binary_expression, + STATE(3164), 1, + sym_unquoted, + STATE(3238), 1, sym__str_double_quotes, - STATE(3123), 1, + STATE(3248), 1, sym__expr_unary_minus, - STATE(3142), 1, - sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(3256), 1, sym__inter_single_quotes, - STATE(3447), 1, - sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(3257), 1, + sym__inter_double_quotes, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4704), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(87), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4708), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(3212), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(3230), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264075,85 +268988,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83789] = 34, + [83933] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + ACTIONS(4682), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4684), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4686), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4688), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - STATE(434), 1, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(483), 1, + STATE(385), 1, sym__val_number_decimal, - STATE(2071), 1, + STATE(2124), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3143), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2841), 1, sym_unquoted, - STATE(3202), 1, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3445), 1, + STATE(2983), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264166,88 +269079,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83914] = 34, + [84058] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4720), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4724), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4728), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4734), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4736), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4748), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4750), 1, + anon_sym_DQUOTE, + ACTIONS(4754), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4756), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4762), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4764), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4766), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4768), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4770), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - STATE(434), 1, + STATE(51), 1, + sym__val_number_decimal, + STATE(55), 1, sym__val_number, - STATE(465), 1, + STATE(56), 1, sym_val_number, - STATE(483), 1, - sym__val_number_decimal, - STATE(2072), 1, - sym_comment, - STATE(2682), 1, + STATE(545), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3144), 1, - sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(599), 1, + sym_expr_parenthesized, + STATE(606), 1, + sym_val_variable, + STATE(663), 1, sym__inter_single_quotes, - STATE(3443), 1, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, + sym__expr_unary_minus, + STATE(711), 1, + sym__str_double_quotes, + STATE(1559), 1, + sym__expression, + STATE(1606), 1, + sym_val_range, + STATE(2125), 1, + sym_comment, + STATE(3537), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4752), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4746), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4611), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3137), 4, + STATE(667), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(3219), 12, + ACTIONS(4742), 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(655), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -264257,85 +269171,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84039] = 34, + [84185] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + ACTIONS(4682), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4684), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4686), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4688), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - STATE(434), 1, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(483), 1, + STATE(385), 1, sym__val_number_decimal, - STATE(2073), 1, + STATE(2126), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3145), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2797), 1, sym_unquoted, - STATE(3202), 1, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3441), 1, + STATE(2988), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264348,85 +269262,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84164] = 34, + [84310] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4720), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4722), 1, + anon_sym_LPAREN, + ACTIONS(4724), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4726), 1, + anon_sym_DASH, + ACTIONS(4728), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4730), 1, + anon_sym_DOT, + ACTIONS(4732), 1, + anon_sym_PLUS, + ACTIONS(4734), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4736), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4740), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4748), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4750), 1, + anon_sym_DQUOTE, + ACTIONS(4754), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4756), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4603), 1, - anon_sym_DASH, - ACTIONS(4605), 1, - anon_sym_DOT, - ACTIONS(4607), 1, - anon_sym_PLUS, - ACTIONS(4609), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, + ACTIONS(4758), 1, aux_sym_unquoted_token1, - STATE(434), 1, + STATE(43), 1, + sym__val_number_decimal, + STATE(55), 1, sym__val_number, - STATE(465), 1, + STATE(56), 1, sym_val_number, - STATE(483), 1, - sym__val_number_decimal, - STATE(2074), 1, - sym_comment, - STATE(2682), 1, + STATE(555), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3147), 1, - sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(663), 1, sym__inter_single_quotes, - STATE(3439), 1, + STATE(664), 1, + sym__inter_double_quotes, + STATE(670), 1, + sym_unquoted, + STATE(673), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(678), 1, + sym__expr_unary_minus, + STATE(711), 1, + sym__str_double_quotes, + STATE(2127), 1, + sym_comment, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4752), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4742), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + ACTIONS(4746), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(693), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(655), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264439,85 +269353,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84289] = 34, + [84435] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4720), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4722), 1, + anon_sym_LPAREN, + ACTIONS(4724), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4726), 1, + anon_sym_DASH, + ACTIONS(4728), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4730), 1, + anon_sym_DOT, + ACTIONS(4732), 1, + anon_sym_PLUS, + ACTIONS(4734), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4736), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4740), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4748), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4750), 1, + anon_sym_DQUOTE, + ACTIONS(4754), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4756), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4758), 1, + aux_sym_unquoted_token1, + STATE(43), 1, + sym__val_number_decimal, + STATE(55), 1, + sym__val_number, + STATE(56), 1, + sym_val_number, + STATE(555), 1, + sym__var, + STATE(656), 1, + sym_unquoted, + STATE(658), 1, + sym__expr_binary_expression, + STATE(663), 1, + sym__inter_single_quotes, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, + sym__expr_unary_minus, + STATE(711), 1, + sym__str_double_quotes, + STATE(2128), 1, + sym_comment, + ACTIONS(4738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4752), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4742), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4744), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(4746), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(693), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(655), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [84560] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + anon_sym_LBRACK, + ACTIONS(4722), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4724), 1, + anon_sym_DOLLAR, + ACTIONS(4726), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4728), 1, + anon_sym_LBRACE, + ACTIONS(4730), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4732), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4734), 1, + anon_sym_not, + ACTIONS(4736), 1, + anon_sym_null, + ACTIONS(4740), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, + ACTIONS(4748), 1, + sym_val_date, + ACTIONS(4750), 1, + anon_sym_DQUOTE, + ACTIONS(4754), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4756), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4758), 1, aux_sym_unquoted_token1, - STATE(434), 1, + STATE(43), 1, + sym__val_number_decimal, + STATE(55), 1, sym__val_number, - STATE(465), 1, + STATE(56), 1, sym_val_number, - STATE(483), 1, - sym__val_number_decimal, - STATE(2075), 1, - sym_comment, - STATE(2682), 1, + STATE(555), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3148), 1, - sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(663), 1, sym__inter_single_quotes, - STATE(3437), 1, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, + sym__expr_unary_minus, + STATE(687), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(707), 1, + sym_unquoted, + STATE(711), 1, + sym__str_double_quotes, + STATE(2129), 1, + sym_comment, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4752), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4742), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + ACTIONS(4746), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(693), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(655), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264530,85 +269535,207 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84414] = 34, + [84685] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + STATE(2130), 1, + sym_comment, + ACTIONS(1587), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1589), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(3970), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [84750] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2131), 1, + sym_comment, + ACTIONS(1679), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1681), 41, anon_sym_LBRACK, - ACTIONS(3974), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_null, - ACTIONS(3994), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84815] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + anon_sym_LBRACK, + ACTIONS(4722), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4724), 1, + anon_sym_DOLLAR, + ACTIONS(4726), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4728), 1, + anon_sym_LBRACE, + ACTIONS(4730), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4732), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4734), 1, + anon_sym_not, + ACTIONS(4736), 1, + anon_sym_null, + ACTIONS(4740), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, + ACTIONS(4748), 1, + sym_val_date, + ACTIONS(4750), 1, + anon_sym_DQUOTE, + ACTIONS(4754), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4756), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4758), 1, aux_sym_unquoted_token1, - STATE(434), 1, + STATE(43), 1, + sym__val_number_decimal, + STATE(55), 1, sym__val_number, - STATE(465), 1, + STATE(56), 1, sym_val_number, - STATE(483), 1, - sym__val_number_decimal, - STATE(2076), 1, - sym_comment, - STATE(2682), 1, + STATE(555), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3149), 1, - sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(663), 1, sym__inter_single_quotes, - STATE(3435), 1, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, + sym__expr_unary_minus, + STATE(710), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(711), 1, + sym__str_double_quotes, + STATE(712), 1, + sym_unquoted, + STATE(2132), 1, + sym_comment, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4752), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4742), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + ACTIONS(4746), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(693), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(655), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264621,85 +269748,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84539] = 34, + [84940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + STATE(2133), 1, + sym_comment, + ACTIONS(3353), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, - ACTIONS(3970), 1, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3351), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [85005] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + ACTIONS(4682), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4684), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4686), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4688), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - STATE(434), 1, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(483), 1, + STATE(385), 1, sym__val_number_decimal, - STATE(2077), 1, + STATE(2134), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3150), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2800), 1, sym_unquoted, - STATE(3202), 1, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3432), 1, + STATE(3017), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264712,85 +269900,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84664] = 34, + [85130] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + ACTIONS(4682), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4684), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4686), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4688), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - STATE(434), 1, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(483), 1, + STATE(385), 1, sym__val_number_decimal, - STATE(2078), 1, + STATE(2135), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3151), 1, + STATE(2818), 1, sym_unquoted, - STATE(3202), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3430), 1, + STATE(2989), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264803,85 +269991,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84789] = 34, + [85255] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4603), 1, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + ACTIONS(4682), 1, anon_sym_DASH, - ACTIONS(4605), 1, + ACTIONS(4684), 1, anon_sym_DOT, - ACTIONS(4607), 1, + ACTIONS(4686), 1, anon_sym_PLUS, - ACTIONS(4609), 1, + ACTIONS(4688), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - STATE(434), 1, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(483), 1, + STATE(385), 1, sym__val_number_decimal, - STATE(2079), 1, + STATE(2136), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3152), 1, + STATE(2821), 1, sym_unquoted, - STATE(3202), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3428), 1, + STATE(2990), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4611), 3, + ACTIONS(4690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264894,85 +270082,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84914] = 34, + [85380] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, - anon_sym_LPAREN, - ACTIONS(4483), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, - anon_sym_DOT, - ACTIONS(4491), 1, - anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4499), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4509), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(19), 1, - sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + ACTIONS(4682), 1, + anon_sym_DASH, + ACTIONS(4684), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(517), 1, + STATE(358), 1, + sym_val_number, + STATE(385), 1, + sym__val_number_decimal, + STATE(2137), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(580), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(584), 1, + STATE(2822), 1, sym_unquoted, - STATE(591), 1, - sym__expr_binary_expression, - STATE(600), 1, - sym__inter_single_quotes, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(2080), 1, - sym_comment, - ACTIONS(4497), 2, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2991), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4511), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4503), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4505), 3, + aux_sym__val_number_token3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + ACTIONS(4690), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -264985,85 +270173,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85039] = 34, + [85505] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, - anon_sym_LPAREN, - ACTIONS(4483), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, - anon_sym_DOT, - ACTIONS(4491), 1, - anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4499), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4509), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(19), 1, - sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + ACTIONS(4682), 1, + anon_sym_DASH, + ACTIONS(4684), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(517), 1, + STATE(358), 1, + sym_val_number, + STATE(385), 1, + sym__val_number_decimal, + STATE(2138), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(580), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(592), 1, + STATE(2829), 1, sym_unquoted, - STATE(596), 1, - sym__expr_binary_expression, - STATE(600), 1, - sym__inter_single_quotes, - STATE(613), 1, - sym__inter_double_quotes, - STATE(618), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(2081), 1, - sym_comment, - ACTIONS(4497), 2, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2992), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4511), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4505), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + ACTIONS(4690), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -265076,302 +270264,298 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85164] = 36, + [85630] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, - anon_sym_LPAREN, - ACTIONS(3073), 1, - anon_sym_null, - ACTIONS(3087), 1, - anon_sym_DQUOTE, - ACTIONS(3095), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(4289), 1, + ACTIONS(4272), 1, anon_sym_LBRACK, - ACTIONS(4293), 1, + ACTIONS(4276), 1, anon_sym_DOLLAR, - ACTIONS(4295), 1, + ACTIONS(4286), 1, + anon_sym_not, + ACTIONS(4288), 1, + anon_sym_null, + ACTIONS(4298), 1, + sym_val_date, + ACTIONS(4300), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, anon_sym_DASH, - ACTIONS(4297), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4299), 1, + ACTIONS(4778), 1, anon_sym_DOT, - ACTIONS(4301), 1, + ACTIONS(4780), 1, anon_sym_PLUS, - ACTIONS(4303), 1, + ACTIONS(4782), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4307), 1, - sym_val_date, - ACTIONS(4615), 1, - anon_sym_RBRACK, - STATE(508), 1, - sym__val_number, - STATE(510), 1, + ACTIONS(4786), 1, + aux_sym_unquoted_token1, + STATE(248), 1, sym__val_number_decimal, - STATE(513), 1, + STATE(261), 1, + sym__val_number, + STATE(262), 1, sym_val_number, - STATE(2082), 1, - sym_comment, - STATE(2223), 1, - aux_sym__match_pattern_list_repeat1, - STATE(3168), 1, + STATE(1722), 1, sym__var, - STATE(3419), 1, + STATE(1984), 1, sym__str_double_quotes, - STATE(3486), 1, - sym_val_variable, - STATE(3487), 1, - sym_expr_parenthesized, - STATE(3517), 1, + STATE(2010), 1, + sym__inter_single_quotes, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2075), 1, + sym__expr_binary_expression, + STATE(2086), 1, + sym_unquoted, + STATE(2139), 1, + sym_comment, + STATE(2167), 1, sym__expr_unary_minus, - STATE(3520), 1, - sym__match_pattern_expression, - STATE(3522), 1, - sym__match_pattern_list, - STATE(5820), 1, - sym_val_list, - ACTIONS(3075), 2, + ACTIONS(4290), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(4302), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3524), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5998), 2, - sym__match_pattern_rest, - sym__match_pattern_ignore_rest, - ACTIONS(3079), 3, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3083), 3, + ACTIONS(4296), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4305), 3, + ACTIONS(4784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3521), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(3527), 8, + STATE(2120), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2007), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, + sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, - [85293] = 5, + sym_val_closure, + [85755] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4619), 1, - anon_sym_COMMA, - STATE(2083), 1, + STATE(2140), 1, sym_comment, - ACTIONS(4621), 12, + ACTIONS(1695), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1697), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(4617), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + [85820] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2141), 1, + sym_comment, + ACTIONS(1675), 13, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [85360] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4625), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1677), 41, + anon_sym_LBRACK, anon_sym_COMMA, - STATE(2084), 1, - sym_comment, - ACTIONS(4627), 12, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(4623), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [85427] = 34, + [85885] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + ACTIONS(4272), 1, anon_sym_LBRACK, - ACTIONS(4481), 1, - anon_sym_LPAREN, - ACTIONS(4483), 1, + ACTIONS(4276), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, - anon_sym_LBRACE, - ACTIONS(4489), 1, - anon_sym_DOT, - ACTIONS(4491), 1, - anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4286), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4288), 1, anon_sym_null, - ACTIONS(4499), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4298), 1, sym_val_date, - ACTIONS(4509), 1, + ACTIONS(4300), 1, anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4304), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4306), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, + anon_sym_DOT, + ACTIONS(4780), 1, + anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, aux_sym_unquoted_token1, - STATE(19), 1, + STATE(248), 1, sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + STATE(261), 1, sym__val_number, - STATE(517), 1, + STATE(262), 1, + sym_val_number, + STATE(1722), 1, sym__var, - STATE(580), 1, - sym__expr_unary_minus, - STATE(600), 1, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, sym__inter_single_quotes, - STATE(605), 1, - sym_unquoted, - STATE(606), 1, - sym__expr_binary_expression, - STATE(613), 1, + STATE(2028), 1, sym__inter_double_quotes, - STATE(618), 1, - sym__str_double_quotes, - STATE(2085), 1, + STATE(2066), 1, + sym__expr_binary_expression, + STATE(2090), 1, + sym_unquoted, + STATE(2142), 1, sym_comment, - ACTIONS(4497), 2, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, anon_sym_true, anon_sym_false, - ACTIONS(4511), 2, + ACTIONS(4302), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4505), 3, + ACTIONS(4296), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + ACTIONS(4784), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2120), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(2007), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -265384,85 +270568,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85552] = 34, + [86010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4479), 1, + STATE(2143), 1, + sym_comment, + ACTIONS(1687), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1689), 41, anon_sym_LBRACK, - ACTIONS(4481), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4483), 1, anon_sym_DOLLAR, - ACTIONS(4485), 1, - anon_sym_DASH, - ACTIONS(4487), 1, anon_sym_LBRACE, - ACTIONS(4489), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4491), 1, - anon_sym_PLUS, - ACTIONS(4493), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [86075] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4276), 1, + anon_sym_DOLLAR, + ACTIONS(4286), 1, anon_sym_not, - ACTIONS(4495), 1, + ACTIONS(4288), 1, anon_sym_null, - ACTIONS(4499), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4507), 1, + ACTIONS(4298), 1, sym_val_date, - ACTIONS(4509), 1, + ACTIONS(4300), 1, anon_sym_DQUOTE, - ACTIONS(4513), 1, + ACTIONS(4304), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4515), 1, + ACTIONS(4306), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4517), 1, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, + anon_sym_DOT, + ACTIONS(4780), 1, + anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, aux_sym_unquoted_token1, - STATE(19), 1, + STATE(248), 1, sym__val_number_decimal, - STATE(48), 1, - sym_val_number, - STATE(50), 1, + STATE(261), 1, sym__val_number, - STATE(517), 1, + STATE(262), 1, + sym_val_number, + STATE(1722), 1, sym__var, - STATE(580), 1, - sym__expr_unary_minus, - STATE(598), 1, - sym__expr_binary_expression, - STATE(600), 1, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, sym__inter_single_quotes, - STATE(613), 1, + STATE(2028), 1, sym__inter_double_quotes, - STATE(616), 1, + STATE(2064), 1, + sym__expr_binary_expression, + STATE(2091), 1, sym_unquoted, - STATE(618), 1, - sym__str_double_quotes, - STATE(2086), 1, + STATE(2144), 1, sym_comment, - ACTIONS(4497), 2, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, anon_sym_true, anon_sym_false, - ACTIONS(4511), 2, + ACTIONS(4302), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4501), 3, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4503), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4505), 3, + ACTIONS(4296), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(623), 4, + ACTIONS(4784), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2120), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(614), 12, + STATE(2007), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -265475,85 +270720,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85677] = 34, + [86200] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + STATE(2145), 1, + sym_comment, + ACTIONS(1611), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1613), 41, anon_sym_LBRACK, - ACTIONS(3974), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, + [86265] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4276), 1, + anon_sym_DOLLAR, + ACTIONS(4286), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4288), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4298), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4300), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4306), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4772), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4774), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4780), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4782), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + ACTIONS(4786), 1, + aux_sym_unquoted_token1, + STATE(248), 1, + sym__val_number_decimal, + STATE(261), 1, sym__val_number, - STATE(465), 1, + STATE(262), 1, sym_val_number, - STATE(490), 1, - sym__val_number_decimal, - STATE(2087), 1, - sym_comment, - STATE(2682), 1, + STATE(1722), 1, sym__var, - STATE(2728), 1, + STATE(1984), 1, sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3152), 1, - sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(2010), 1, sym__inter_single_quotes, - STATE(3373), 1, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2093), 1, + sym_unquoted, + STATE(2146), 1, + sym_comment, + STATE(2167), 1, + sym__expr_unary_minus, + STATE(2232), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4290), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4296), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2120), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2007), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -265566,146 +270872,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85802] = 4, + [86390] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2088), 1, + STATE(2147), 1, sym_comment, - ACTIONS(3305), 13, + ACTIONS(1607), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1609), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(3303), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [85867] = 34, + [86455] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4272), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4276), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, - anon_sym_DASH, - ACTIONS(4569), 1, - anon_sym_LBRACE, - ACTIONS(4571), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4286), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4288), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4298), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4300), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4304), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4306), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, + anon_sym_DOT, + ACTIONS(4780), 1, + anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, aux_sym_unquoted_token1, - STATE(44), 1, + STATE(248), 1, sym__val_number_decimal, - STATE(55), 1, + STATE(261), 1, sym__val_number, - STATE(56), 1, + STATE(262), 1, sym_val_number, - STATE(541), 1, + STATE(1722), 1, sym__var, - STATE(644), 1, - sym_unquoted, - STATE(649), 1, + STATE(1966), 1, sym__expr_binary_expression, - STATE(671), 1, + STATE(1984), 1, sym__str_double_quotes, - STATE(672), 1, + STATE(2010), 1, sym__inter_single_quotes, - STATE(676), 1, + STATE(2028), 1, sym__inter_double_quotes, - STATE(678), 1, - sym__expr_unary_minus, - STATE(2089), 1, + STATE(2094), 1, + sym_unquoted, + STATE(2148), 1, sym_comment, - ACTIONS(4579), 2, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4302), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4296), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4784), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2120), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(2007), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -265718,85 +271024,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85992] = 34, + [86580] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4272), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4276), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, - anon_sym_DASH, - ACTIONS(4569), 1, - anon_sym_LBRACE, - ACTIONS(4571), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4286), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4288), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4298), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4300), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4304), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4306), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, + anon_sym_DOT, + ACTIONS(4780), 1, + anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, aux_sym_unquoted_token1, - STATE(44), 1, + STATE(248), 1, sym__val_number_decimal, - STATE(55), 1, + STATE(261), 1, sym__val_number, - STATE(56), 1, + STATE(262), 1, sym_val_number, - STATE(541), 1, + STATE(1722), 1, sym__var, - STATE(639), 1, - sym_unquoted, - STATE(643), 1, + STATE(1967), 1, sym__expr_binary_expression, - STATE(671), 1, + STATE(1984), 1, sym__str_double_quotes, - STATE(672), 1, + STATE(2010), 1, sym__inter_single_quotes, - STATE(676), 1, + STATE(2028), 1, sym__inter_double_quotes, - STATE(678), 1, - sym__expr_unary_minus, - STATE(2090), 1, + STATE(2095), 1, + sym_unquoted, + STATE(2149), 1, sym_comment, - ACTIONS(4579), 2, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4302), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4296), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4784), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2120), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(2007), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -265809,378 +271115,437 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [86117] = 4, + [86705] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2091), 1, - sym_comment, - ACTIONS(3309), 13, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4276), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4286), 1, + anon_sym_not, + ACTIONS(4288), 1, + anon_sym_null, + ACTIONS(4298), 1, + sym_val_date, + ACTIONS(4300), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, anon_sym_DOT, + ACTIONS(4780), 1, anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, + aux_sym_unquoted_token1, + STATE(248), 1, + sym__val_number_decimal, + STATE(261), 1, + sym__val_number, + STATE(262), 1, + sym_val_number, + STATE(1722), 1, + sym__var, + STATE(1968), 1, + sym__expr_binary_expression, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, + sym__inter_single_quotes, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2096), 1, + sym_unquoted, + STATE(2150), 1, + sym_comment, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3307), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4296), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4784), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [86182] = 4, + STATE(2120), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2007), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [86830] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2092), 1, + STATE(2151), 1, sym_comment, - ACTIONS(3325), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3323), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(1595), 13, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [86247] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2093), 1, - sym_comment, - ACTIONS(3329), 13, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1597), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(3327), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [86312] = 4, + [86895] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2094), 1, - sym_comment, - ACTIONS(3333), 13, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4276), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4286), 1, + anon_sym_not, + ACTIONS(4288), 1, + anon_sym_null, + ACTIONS(4298), 1, + sym_val_date, + ACTIONS(4300), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, anon_sym_DOT, + ACTIONS(4780), 1, anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, + aux_sym_unquoted_token1, + STATE(248), 1, + sym__val_number_decimal, + STATE(261), 1, + sym__val_number, + STATE(262), 1, + sym_val_number, + STATE(1722), 1, + sym__var, + STATE(1969), 1, + sym__expr_binary_expression, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, + sym__inter_single_quotes, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2097), 1, + sym_unquoted, + STATE(2152), 1, + sym_comment, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3331), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4296), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4784), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [86377] = 4, + STATE(2120), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2007), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [87020] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2095), 1, - sym_comment, - ACTIONS(3337), 13, - anon_sym_COMMA, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4276), 1, + anon_sym_DOLLAR, + ACTIONS(4286), 1, + anon_sym_not, + ACTIONS(4288), 1, + anon_sym_null, + ACTIONS(4298), 1, + sym_val_date, + ACTIONS(4300), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4772), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, anon_sym_DOT, + ACTIONS(4780), 1, anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, + aux_sym_unquoted_token1, + STATE(248), 1, + sym__val_number_decimal, + STATE(261), 1, + sym__val_number, + STATE(262), 1, + sym_val_number, + STATE(1722), 1, + sym__var, + STATE(1970), 1, + sym__expr_binary_expression, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, + sym__inter_single_quotes, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2098), 1, + sym_unquoted, + STATE(2153), 1, + sym_comment, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3335), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4296), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4784), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [86442] = 4, + STATE(2120), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2007), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [87145] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2096), 1, - sym_comment, - ACTIONS(3343), 13, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4276), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4286), 1, + anon_sym_not, + ACTIONS(4288), 1, + anon_sym_null, + ACTIONS(4298), 1, + sym_val_date, + ACTIONS(4300), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, anon_sym_DOT, + ACTIONS(4780), 1, anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, + aux_sym_unquoted_token1, + STATE(248), 1, + sym__val_number_decimal, + STATE(261), 1, + sym__val_number, + STATE(262), 1, + sym_val_number, + STATE(1722), 1, + sym__var, + STATE(1971), 1, + sym__expr_binary_expression, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, + sym__inter_single_quotes, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2100), 1, + sym_unquoted, + STATE(2154), 1, + sym_comment, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3341), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4296), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4784), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [86507] = 4, + STATE(2120), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2007), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [87270] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2097), 1, + STATE(2155), 1, sym_comment, - ACTIONS(3347), 13, + ACTIONS(3335), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -266194,7 +271559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3345), 41, + ACTIONS(3333), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -266236,75 +271601,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [86572] = 4, + [87335] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2098), 1, - sym_comment, - ACTIONS(3351), 13, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4276), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4286), 1, + anon_sym_not, + ACTIONS(4288), 1, + anon_sym_null, + ACTIONS(4298), 1, + sym_val_date, + ACTIONS(4300), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, anon_sym_DOT, + ACTIONS(4780), 1, anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, + aux_sym_unquoted_token1, + STATE(248), 1, + sym__val_number_decimal, + STATE(261), 1, + sym__val_number, + STATE(262), 1, + sym_val_number, + STATE(1722), 1, + sym__var, + STATE(1972), 1, + sym__expr_binary_expression, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, + sym__inter_single_quotes, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2101), 1, + sym_unquoted, + STATE(2156), 1, + sym_comment, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4294), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3349), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4296), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4784), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [86637] = 5, + STATE(2120), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2007), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [87460] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4639), 1, - aux_sym_unquoted_token5, - STATE(2099), 1, + STATE(2157), 1, sym_comment, - ACTIONS(1495), 12, + ACTIONS(1637), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -266317,7 +271710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1497), 41, + aux_sym_unquoted_token1, + ACTIONS(1639), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -266359,73 +271753,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86704] = 4, + [87525] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2100), 1, - sym_comment, - ACTIONS(3355), 13, - anon_sym_COMMA, + ACTIONS(4720), 1, + anon_sym_LBRACK, + ACTIONS(4722), 1, anon_sym_LPAREN, + ACTIONS(4724), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4726), 1, + anon_sym_DASH, + ACTIONS(4728), 1, + anon_sym_LBRACE, + ACTIONS(4730), 1, anon_sym_DOT, + ACTIONS(4732), 1, anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(4734), 1, + anon_sym_not, + ACTIONS(4736), 1, + anon_sym_null, + ACTIONS(4740), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4748), 1, + sym_val_date, + ACTIONS(4750), 1, anon_sym_DQUOTE, + ACTIONS(4754), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4756), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4758), 1, + aux_sym_unquoted_token1, + STATE(43), 1, + sym__val_number_decimal, + STATE(55), 1, + sym__val_number, + STATE(56), 1, + sym_val_number, + STATE(555), 1, + sym__var, + STATE(663), 1, + sym__inter_single_quotes, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, + sym__expr_unary_minus, + STATE(680), 1, + sym_unquoted, + STATE(695), 1, + sym__expr_binary_expression, + STATE(711), 1, + sym__str_double_quotes, + STATE(2158), 1, + sym_comment, + ACTIONS(4738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4752), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3353), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4742), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4744), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [86769] = 4, + ACTIONS(4746), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(693), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(655), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [87650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2101), 1, + STATE(2159), 1, sym_comment, - ACTIONS(3359), 13, + ACTIONS(2908), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -266439,7 +271863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3357), 41, + ACTIONS(2906), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -266481,12 +271905,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [86834] = 4, + [87715] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2102), 1, + STATE(2160), 1, sym_comment, - ACTIONS(3363), 13, + ACTIONS(3345), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -266500,7 +271924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3361), 41, + ACTIONS(3343), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -266542,12 +271966,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [86899] = 4, + [87780] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2103), 1, + STATE(2161), 1, sym_comment, - ACTIONS(3367), 13, + ACTIONS(3377), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -266561,7 +271985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 41, + ACTIONS(3375), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -266603,329 +272027,784 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [86964] = 4, + [87845] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2104), 1, - sym_comment, - ACTIONS(3371), 13, - anon_sym_COMMA, + ACTIONS(4720), 1, + anon_sym_LBRACK, + ACTIONS(4722), 1, anon_sym_LPAREN, + ACTIONS(4724), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4726), 1, + anon_sym_DASH, + ACTIONS(4728), 1, + anon_sym_LBRACE, + ACTIONS(4730), 1, anon_sym_DOT, + ACTIONS(4732), 1, anon_sym_PLUS, + ACTIONS(4734), 1, + anon_sym_not, + ACTIONS(4736), 1, + anon_sym_null, + ACTIONS(4740), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4748), 1, + sym_val_date, + ACTIONS(4750), 1, + anon_sym_DQUOTE, + ACTIONS(4754), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4756), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4758), 1, + aux_sym_unquoted_token1, + STATE(43), 1, + sym__val_number_decimal, + STATE(55), 1, + sym__val_number, + STATE(56), 1, + sym_val_number, + STATE(555), 1, + sym__var, + STATE(657), 1, + sym_unquoted, + STATE(659), 1, + sym__expr_binary_expression, + STATE(663), 1, + sym__inter_single_quotes, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, + sym__expr_unary_minus, + STATE(711), 1, + sym__str_double_quotes, + STATE(2162), 1, + sym_comment, + ACTIONS(4738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4752), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4742), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4744), 3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(4746), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(693), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(655), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [87970] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + anon_sym_LBRACK, + ACTIONS(4722), 1, + anon_sym_LPAREN, + ACTIONS(4724), 1, + anon_sym_DOLLAR, + ACTIONS(4726), 1, + anon_sym_DASH, + ACTIONS(4728), 1, + anon_sym_LBRACE, + ACTIONS(4730), 1, + anon_sym_DOT, + ACTIONS(4732), 1, + anon_sym_PLUS, + ACTIONS(4734), 1, + anon_sym_not, + ACTIONS(4736), 1, + anon_sym_null, + ACTIONS(4740), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4748), 1, + sym_val_date, + ACTIONS(4750), 1, anon_sym_DQUOTE, + ACTIONS(4754), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4756), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4758), 1, + aux_sym_unquoted_token1, + STATE(43), 1, + sym__val_number_decimal, + STATE(55), 1, + sym__val_number, + STATE(56), 1, + sym_val_number, + STATE(555), 1, + sym__var, + STATE(663), 1, + sym__inter_single_quotes, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, + sym__expr_unary_minus, + STATE(685), 1, + sym__expr_binary_expression, + STATE(702), 1, + sym_unquoted, + STATE(711), 1, + sym__str_double_quotes, + STATE(2163), 1, + sym_comment, + ACTIONS(4738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4752), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3369), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4742), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4744), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [87029] = 4, + ACTIONS(4746), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(693), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(655), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [88095] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2105), 1, + STATE(2164), 1, sym_comment, - ACTIONS(3375), 13, + ACTIONS(1663), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1665), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(3373), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + [88160] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4276), 1, + anon_sym_DOLLAR, + ACTIONS(4286), 1, + anon_sym_not, + ACTIONS(4288), 1, + anon_sym_null, + ACTIONS(4298), 1, + sym_val_date, + ACTIONS(4300), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, + anon_sym_DOT, + ACTIONS(4780), 1, + anon_sym_PLUS, + ACTIONS(4782), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, + aux_sym_unquoted_token1, + STATE(248), 1, + sym__val_number_decimal, + STATE(261), 1, + sym__val_number, + STATE(262), 1, + sym_val_number, + STATE(1722), 1, + sym__var, + STATE(1973), 1, + sym__expr_binary_expression, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, + sym__inter_single_quotes, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2117), 1, + sym_unquoted, + STATE(2165), 1, + sym_comment, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4294), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4296), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4784), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [87094] = 4, + STATE(2120), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2007), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [88285] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2106), 1, + ACTIONS(4272), 1, + anon_sym_LBRACK, + ACTIONS(4276), 1, + anon_sym_DOLLAR, + ACTIONS(4286), 1, + anon_sym_not, + ACTIONS(4288), 1, + anon_sym_null, + ACTIONS(4298), 1, + sym_val_date, + ACTIONS(4300), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4774), 1, + anon_sym_DASH, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, + anon_sym_DOT, + ACTIONS(4780), 1, + anon_sym_PLUS, + ACTIONS(4782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4786), 1, + aux_sym_unquoted_token1, + STATE(248), 1, + sym__val_number_decimal, + STATE(261), 1, + sym__val_number, + STATE(262), 1, + sym_val_number, + STATE(1722), 1, + sym__var, + STATE(1975), 1, + sym__expr_binary_expression, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2010), 1, + sym__inter_single_quotes, + STATE(2028), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym_unquoted, + STATE(2166), 1, + sym_comment, + STATE(2167), 1, + sym__expr_unary_minus, + ACTIONS(4290), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4294), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4296), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4784), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2120), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2007), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [88410] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2167), 1, sym_comment, - ACTIONS(3383), 13, + ACTIONS(1667), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1669), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(3381), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + [88475] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + anon_sym_LBRACK, + ACTIONS(4722), 1, + anon_sym_LPAREN, + ACTIONS(4724), 1, + anon_sym_DOLLAR, + ACTIONS(4726), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(4728), 1, + anon_sym_LBRACE, + ACTIONS(4730), 1, + anon_sym_DOT, + ACTIONS(4732), 1, + anon_sym_PLUS, + ACTIONS(4734), 1, + anon_sym_not, + ACTIONS(4736), 1, + anon_sym_null, + ACTIONS(4740), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4748), 1, + sym_val_date, + ACTIONS(4750), 1, + anon_sym_DQUOTE, + ACTIONS(4754), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4756), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4758), 1, + aux_sym_unquoted_token1, + STATE(43), 1, + sym__val_number_decimal, + STATE(55), 1, + sym__val_number, + STATE(56), 1, + sym_val_number, + STATE(555), 1, + sym__var, + STATE(663), 1, + sym__inter_single_quotes, + STATE(664), 1, + sym__inter_double_quotes, + STATE(678), 1, + sym__expr_unary_minus, + STATE(684), 1, + sym_unquoted, + STATE(691), 1, + sym__expr_binary_expression, + STATE(711), 1, + sym__str_double_quotes, + STATE(2168), 1, + sym_comment, + ACTIONS(4738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4752), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4742), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4744), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [87159] = 4, + ACTIONS(4746), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(693), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(655), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [88600] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2107), 1, + STATE(2169), 1, sym_comment, - ACTIONS(3387), 13, + ACTIONS(1591), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1593), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(3385), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + [88665] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2170), 1, + sym_comment, + ACTIONS(1599), 13, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1601), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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, - aux_sym__record_key_token2, - [87224] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88730] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4720), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, + ACTIONS(4722), 1, anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4724), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, + ACTIONS(4726), 1, anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(4728), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, + ACTIONS(4730), 1, anon_sym_DOT, - ACTIONS(4573), 1, + ACTIONS(4732), 1, anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4734), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4736), 1, anon_sym_null, - ACTIONS(4581), 1, + ACTIONS(4740), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4748), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4750), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4754), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4756), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4758), 1, aux_sym_unquoted_token1, - STATE(44), 1, + STATE(43), 1, sym__val_number_decimal, STATE(55), 1, sym__val_number, STATE(56), 1, sym_val_number, - STATE(541), 1, + STATE(555), 1, sym__var, - STATE(654), 1, - sym_unquoted, - STATE(657), 1, - sym__expr_binary_expression, - STATE(671), 1, - sym__str_double_quotes, - STATE(672), 1, + STATE(663), 1, sym__inter_single_quotes, - STATE(676), 1, + STATE(664), 1, sym__inter_double_quotes, STATE(678), 1, sym__expr_unary_minus, - STATE(2108), 1, + STATE(679), 1, + sym_unquoted, + STATE(681), 1, + sym__expr_binary_expression, + STATE(711), 1, + sym__str_double_quotes, + STATE(2171), 1, sym_comment, - ACTIONS(4579), 2, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4752), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4742), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, + ACTIONS(4744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4746), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + STATE(693), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(655), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -266938,85 +272817,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87349] = 34, + [88855] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, - anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(2266), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, + ACTIONS(2268), 1, anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(2282), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4592), 1, + anon_sym_LBRACK, + ACTIONS(4594), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, + ACTIONS(4598), 1, anon_sym_DOT, - ACTIONS(4573), 1, + ACTIONS(4600), 1, anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4604), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4612), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4614), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4620), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4622), 1, aux_sym_unquoted_token1, - STATE(44), 1, + STATE(114), 1, sym__val_number_decimal, - STATE(55), 1, + STATE(132), 1, sym__val_number, - STATE(56), 1, + STATE(134), 1, sym_val_number, - STATE(541), 1, + STATE(923), 1, sym__var, - STATE(641), 1, - sym_unquoted, - STATE(647), 1, - sym__expr_binary_expression, - STATE(671), 1, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1021), 1, sym__str_double_quotes, - STATE(672), 1, + STATE(1025), 1, sym__inter_single_quotes, - STATE(676), 1, - sym__inter_double_quotes, - STATE(678), 1, + STATE(1036), 1, + sym__expr_binary_expression, + STATE(1037), 1, sym__expr_unary_minus, - STATE(2109), 1, + STATE(1054), 1, + sym_unquoted, + STATE(2172), 1, sym_comment, - ACTIONS(4579), 2, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4616), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(2288), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4608), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4587), 3, + STATE(1035), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1029), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [88980] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4460), 1, + anon_sym_LBRACK, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, + anon_sym_not, + ACTIONS(4476), 1, + anon_sym_null, + ACTIONS(4486), 1, + sym_val_date, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4494), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + ACTIONS(4788), 1, + anon_sym_DASH, + ACTIONS(4790), 1, + anon_sym_DOT, + ACTIONS(4792), 1, + anon_sym_PLUS, + ACTIONS(4794), 1, + aux_sym__val_number_decimal_token1, + STATE(330), 1, + sym__val_number_decimal, + STATE(353), 1, + sym__val_number, + STATE(358), 1, + sym_val_number, + STATE(2173), 1, + sym_comment, + STATE(2503), 1, + sym__var, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2832), 1, + sym_unquoted, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2888), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4796), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -267029,85 +272999,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87474] = 34, + [89105] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, - anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(2266), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, + ACTIONS(2268), 1, anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(2282), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4592), 1, + anon_sym_LBRACK, + ACTIONS(4594), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, + ACTIONS(4598), 1, anon_sym_DOT, - ACTIONS(4573), 1, + ACTIONS(4600), 1, anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4604), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4612), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4614), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4620), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4622), 1, aux_sym_unquoted_token1, - STATE(44), 1, + STATE(114), 1, sym__val_number_decimal, - STATE(55), 1, + STATE(132), 1, sym__val_number, - STATE(56), 1, + STATE(134), 1, sym_val_number, - STATE(541), 1, + STATE(923), 1, sym__var, - STATE(658), 1, + STATE(1003), 1, sym_unquoted, - STATE(660), 1, - sym__expr_binary_expression, - STATE(671), 1, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1021), 1, sym__str_double_quotes, - STATE(672), 1, + STATE(1025), 1, sym__inter_single_quotes, - STATE(676), 1, - sym__inter_double_quotes, - STATE(678), 1, + STATE(1037), 1, sym__expr_unary_minus, - STATE(2110), 1, + STATE(1055), 1, + sym__expr_binary_expression, + STATE(2174), 1, sym_comment, - ACTIONS(4579), 2, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4616), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(2288), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4608), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4587), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(652), 4, + STATE(1035), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(1029), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -267120,146 +273090,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87599] = 4, + [89230] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2111), 1, - sym_comment, - ACTIONS(3395), 13, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4460), 1, + anon_sym_LBRACK, + ACTIONS(4464), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, + anon_sym_not, + ACTIONS(4476), 1, + anon_sym_null, + ACTIONS(4486), 1, + sym_val_date, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4494), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + ACTIONS(4788), 1, + anon_sym_DASH, + ACTIONS(4790), 1, anon_sym_DOT, + ACTIONS(4792), 1, anon_sym_PLUS, + ACTIONS(4794), 1, + aux_sym__val_number_decimal_token1, + STATE(330), 1, + sym__val_number_decimal, + STATE(353), 1, + sym__val_number, + STATE(358), 1, + sym_val_number, + STATE(2175), 1, + sym_comment, + STATE(2503), 1, + sym__var, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2813), 1, + sym_unquoted, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2887), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3393), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4796), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [87664] = 34, + STATE(2851), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2855), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [89355] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, + ACTIONS(2266), 1, anon_sym_DOLLAR, - ACTIONS(2558), 1, + ACTIONS(2268), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2282), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4425), 1, + ACTIONS(4592), 1, anon_sym_LBRACK, - ACTIONS(4427), 1, + ACTIONS(4594), 1, anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(4596), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, + ACTIONS(4598), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4600), 1, anon_sym_PLUS, - ACTIONS(4435), 1, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(4437), 1, + ACTIONS(4604), 1, anon_sym_null, - ACTIONS(4445), 1, + ACTIONS(4612), 1, sym_val_date, - ACTIONS(4447), 1, + ACTIONS(4614), 1, anon_sym_DQUOTE, - ACTIONS(4451), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4453), 1, + ACTIONS(4620), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4455), 1, + ACTIONS(4622), 1, aux_sym_unquoted_token1, - STATE(127), 1, + STATE(114), 1, sym__val_number_decimal, - STATE(134), 1, + STATE(132), 1, sym__val_number, - STATE(135), 1, + STATE(134), 1, sym_val_number, - STATE(912), 1, + STATE(923), 1, sym__var, - STATE(1068), 1, - sym_unquoted, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(1095), 1, - sym__expr_binary_expression, - STATE(1104), 1, - sym__str_double_quotes, - STATE(1111), 1, + STATE(1017), 1, sym__inter_double_quotes, - STATE(1112), 1, + STATE(1021), 1, + sym__str_double_quotes, + STATE(1025), 1, sym__inter_single_quotes, - STATE(2112), 1, + STATE(1037), 1, + sym__expr_unary_minus, + STATE(1062), 1, + sym_unquoted, + STATE(1066), 1, + sym__expr_binary_expression, + STATE(2176), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - ACTIONS(4449), 2, + ACTIONS(4616), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2578), 3, + ACTIONS(2288), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4441), 3, + ACTIONS(4608), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4443), 3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1103), 4, + STATE(1035), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1114), 12, + STATE(1029), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -267272,85 +273272,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87789] = 34, + [89480] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4788), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4790), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4792), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4794), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(330), 1, + sym__val_number_decimal, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(490), 1, - sym__val_number_decimal, - STATE(2113), 1, + STATE(2177), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3151), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2809), 1, sym_unquoted, - STATE(3202), 1, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3376), 1, + STATE(2886), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4796), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -267363,85 +273363,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87914] = 34, + [89605] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4319), 1, - anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_PLUS, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(385), 1, + ACTIONS(4788), 1, + anon_sym_DASH, + ACTIONS(4790), 1, + anon_sym_DOT, + ACTIONS(4792), 1, + anon_sym_PLUS, + ACTIONS(4794), 1, + aux_sym__val_number_decimal_token1, + STATE(330), 1, sym__val_number_decimal, - STATE(2114), 1, + STATE(353), 1, + sym__val_number, + STATE(358), 1, + sym_val_number, + STATE(2178), 1, sym_comment, - STATE(2532), 1, + STATE(2503), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2815), 1, + STATE(2807), 1, sym_unquoted, - STATE(2972), 1, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2875), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2761), 4, + ACTIONS(4796), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -267454,85 +273454,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88039] = 34, + [89730] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - ACTIONS(4405), 1, + ACTIONS(4788), 1, anon_sym_DASH, - ACTIONS(4407), 1, + ACTIONS(4790), 1, anon_sym_DOT, - ACTIONS(4409), 1, + ACTIONS(4792), 1, anon_sym_PLUS, - ACTIONS(4411), 1, + ACTIONS(4794), 1, aux_sym__val_number_decimal_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(360), 1, + STATE(330), 1, sym__val_number_decimal, - STATE(2115), 1, + STATE(353), 1, + sym__val_number, + STATE(358), 1, + sym_val_number, + STATE(2179), 1, sym_comment, - STATE(2532), 1, + STATE(2503), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, STATE(2785), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(2802), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2894), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2872), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4413), 3, + ACTIONS(4796), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2761), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -267545,207 +273545,237 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88164] = 4, + [89855] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2116), 1, - sym_comment, - ACTIONS(3399), 13, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2266), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(2268), 1, + anon_sym_DASH, + ACTIONS(2282), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4592), 1, + anon_sym_LBRACK, + ACTIONS(4594), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, + anon_sym_LBRACE, + ACTIONS(4598), 1, anon_sym_DOT, + ACTIONS(4600), 1, anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(4602), 1, + anon_sym_not, + ACTIONS(4604), 1, + anon_sym_null, + ACTIONS(4612), 1, + sym_val_date, + ACTIONS(4614), 1, anon_sym_DQUOTE, + ACTIONS(4618), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4620), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4622), 1, + aux_sym_unquoted_token1, + STATE(114), 1, + sym__val_number_decimal, + STATE(132), 1, + sym__val_number, + STATE(134), 1, + sym_val_number, + STATE(923), 1, + sym__var, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1021), 1, + sym__str_double_quotes, + STATE(1025), 1, + sym__inter_single_quotes, + STATE(1037), 1, + sym__expr_unary_minus, + STATE(1052), 1, + sym_unquoted, + STATE(1057), 1, + sym__expr_binary_expression, + STATE(2180), 1, + sym_comment, + ACTIONS(4606), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4616), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3397), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(2288), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4608), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [88229] = 4, + STATE(1035), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1029), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [89980] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2117), 1, + STATE(2181), 1, sym_comment, - ACTIONS(3407), 13, + ACTIONS(1603), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1605), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_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(3405), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [88294] = 34, + [90045] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4788), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4790), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4792), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4794), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(330), 1, + sym__val_number_decimal, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(490), 1, - sym__val_number_decimal, - STATE(2118), 1, + STATE(2182), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3149), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2843), 1, sym_unquoted, - STATE(3202), 1, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3385), 1, + STATE(2869), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4796), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -267758,85 +273788,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88419] = 34, + [90170] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(2266), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(2268), 1, + anon_sym_DASH, + ACTIONS(2282), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4592), 1, + anon_sym_LBRACK, + ACTIONS(4594), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4598), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_PLUS, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4604), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4612), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4614), 1, + anon_sym_DQUOTE, + ACTIONS(4618), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4620), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4622), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, - anon_sym_DASH, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4633), 1, - anon_sym_PLUS, - ACTIONS(4635), 1, - aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(114), 1, + sym__val_number_decimal, + STATE(132), 1, sym__val_number, - STATE(465), 1, + STATE(134), 1, sym_val_number, - STATE(490), 1, - sym__val_number_decimal, - STATE(2119), 1, - sym_comment, - STATE(2682), 1, + STATE(923), 1, sym__var, - STATE(2728), 1, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1021), 1, sym__str_double_quotes, - STATE(3123), 1, + STATE(1025), 1, + sym__inter_single_quotes, + STATE(1037), 1, sym__expr_unary_minus, - STATE(3143), 1, + STATE(1058), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3398), 1, + STATE(1059), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(2183), 1, + sym_comment, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4616), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2288), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4608), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(1035), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(1029), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -267849,85 +273879,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88544] = 34, + [90295] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4788), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4790), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4792), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4794), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(330), 1, + sym__val_number_decimal, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(490), 1, - sym__val_number_decimal, - STATE(2120), 1, + STATE(2184), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3148), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2841), 1, sym_unquoted, - STATE(3202), 1, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3388), 1, + STATE(2892), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4796), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -267940,207 +273970,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88669] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2121), 1, - sym_comment, - ACTIONS(3411), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3409), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [88734] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2122), 1, - sym_comment, - ACTIONS(3415), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3413), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [88799] = 34, + [90420] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4800), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4802), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4804), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(490), 1, + STATE(466), 1, sym__val_number_decimal, - STATE(2123), 1, + STATE(471), 1, + sym_val_number, + STATE(2185), 1, sym_comment, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3147), 1, - sym_unquoted, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3390), 1, + STATE(3225), 1, + sym_unquoted, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3345), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -268153,85 +274061,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88924] = 34, + [90545] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4800), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4802), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4804), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(490), 1, + STATE(466), 1, sym__val_number_decimal, - STATE(2124), 1, + STATE(471), 1, + sym_val_number, + STATE(2186), 1, sym_comment, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3145), 1, - sym_unquoted, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3393), 1, + STATE(3226), 1, + sym_unquoted, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3346), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -268244,207 +274152,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89049] = 4, + [90670] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2125), 1, - sym_comment, - ACTIONS(3419), 13, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4460), 1, + anon_sym_LBRACK, + ACTIONS(4464), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, + anon_sym_not, + ACTIONS(4476), 1, + anon_sym_null, + ACTIONS(4486), 1, + sym_val_date, + ACTIONS(4488), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3417), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [89114] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2126), 1, - sym_comment, - ACTIONS(3427), 13, - anon_sym_COMMA, + ACTIONS(4492), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4494), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + ACTIONS(4788), 1, + anon_sym_DASH, + ACTIONS(4790), 1, anon_sym_DOT, + ACTIONS(4792), 1, anon_sym_PLUS, + ACTIONS(4794), 1, + aux_sym__val_number_decimal_token1, + STATE(330), 1, + sym__val_number_decimal, + STATE(353), 1, + sym__val_number, + STATE(358), 1, + sym_val_number, + STATE(2187), 1, + sym_comment, + STATE(2503), 1, + sym__var, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2797), 1, + sym_unquoted, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2914), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3425), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4796), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [89179] = 34, + STATE(2851), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2855), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [90795] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4788), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4790), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4792), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4794), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(330), 1, + sym__val_number_decimal, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(490), 1, - sym__val_number_decimal, - STATE(2127), 1, + STATE(2188), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3144), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2800), 1, sym_unquoted, - STATE(3202), 1, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3396), 1, + STATE(2870), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4796), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -268457,85 +274334,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89304] = 34, + [90920] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, - anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(44), 1, + ACTIONS(4788), 1, + anon_sym_DASH, + ACTIONS(4790), 1, + anon_sym_DOT, + ACTIONS(4792), 1, + anon_sym_PLUS, + ACTIONS(4794), 1, + aux_sym__val_number_decimal_token1, + STATE(330), 1, sym__val_number_decimal, - STATE(55), 1, + STATE(353), 1, sym__val_number, - STATE(56), 1, + STATE(358), 1, sym_val_number, - STATE(541), 1, + STATE(2189), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(664), 1, - sym__expr_binary_expression, - STATE(665), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2818), 1, sym_unquoted, - STATE(671), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(672), 1, - sym__inter_single_quotes, - STATE(676), 1, + STATE(2850), 1, sym__inter_double_quotes, - STATE(678), 1, - sym__expr_unary_minus, - STATE(2128), 1, - sym_comment, - ACTIONS(4579), 2, + STATE(2871), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4796), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -268548,268 +274425,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89429] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2129), 1, - sym_comment, - ACTIONS(3431), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3429), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [89494] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2130), 1, - sym_comment, - ACTIONS(3435), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3433), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [89559] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2131), 1, - sym_comment, - ACTIONS(3439), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3437), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [89624] = 34, + [91045] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, - anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(44), 1, + ACTIONS(4788), 1, + anon_sym_DASH, + ACTIONS(4790), 1, + anon_sym_DOT, + ACTIONS(4792), 1, + anon_sym_PLUS, + ACTIONS(4794), 1, + aux_sym__val_number_decimal_token1, + STATE(330), 1, sym__val_number_decimal, - STATE(55), 1, + STATE(353), 1, sym__val_number, - STATE(56), 1, + STATE(358), 1, sym_val_number, - STATE(541), 1, + STATE(2190), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(667), 1, - sym__expr_binary_expression, - STATE(669), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2821), 1, sym_unquoted, - STATE(671), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(672), 1, - sym__inter_single_quotes, - STATE(676), 1, + STATE(2850), 1, sym__inter_double_quotes, - STATE(678), 1, - sym__expr_unary_minus, - STATE(2132), 1, - sym_comment, - ACTIONS(4579), 2, + STATE(2873), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4796), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -268822,85 +274516,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89749] = 34, + [91170] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4319), 1, - anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_PLUS, - ACTIONS(4323), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4325), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4339), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(385), 1, + ACTIONS(4788), 1, + anon_sym_DASH, + ACTIONS(4790), 1, + anon_sym_DOT, + ACTIONS(4792), 1, + anon_sym_PLUS, + ACTIONS(4794), 1, + aux_sym__val_number_decimal_token1, + STATE(330), 1, sym__val_number_decimal, - STATE(2133), 1, + STATE(353), 1, + sym__val_number, + STATE(358), 1, + sym_val_number, + STATE(2191), 1, sym_comment, - STATE(2532), 1, + STATE(2503), 1, sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2763), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(2811), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(2973), 1, + STATE(2822), 1, + sym_unquoted, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2877), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2761), 4, + ACTIONS(4796), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -268913,390 +274607,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89874] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2134), 1, - sym_comment, - ACTIONS(3443), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3441), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [89939] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2135), 1, - sym_comment, - ACTIONS(3447), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3445), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [90004] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2136), 1, - sym_comment, - ACTIONS(3451), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3449), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [90069] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2137), 1, - sym_comment, - ACTIONS(3479), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3477), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [90134] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2138), 1, - sym_comment, - ACTIONS(3483), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3481), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [90199] = 34, + [91295] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4800), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4802), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4804), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(490), 1, + STATE(466), 1, sym__val_number_decimal, - STATE(2139), 1, + STATE(471), 1, + sym_val_number, + STATE(2192), 1, sym_comment, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3150), 1, - sym_unquoted, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3384), 1, + STATE(3229), 1, + sym_unquoted, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3347), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -269309,85 +274698,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [90324] = 34, + [91420] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4800), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4802), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4804), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(490), 1, + STATE(466), 1, sym__val_number_decimal, - STATE(2140), 1, + STATE(471), 1, + sym_val_number, + STATE(2193), 1, sym_comment, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3142), 1, - sym_unquoted, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3400), 1, + STATE(3231), 1, + sym_unquoted, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3349), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -269400,207 +274789,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [90449] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2141), 1, - sym_comment, - ACTIONS(3503), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3501), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [90514] = 4, + [91545] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2142), 1, - sym_comment, - ACTIONS(3507), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(2900), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3505), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [90579] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(57), 1, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4519), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4521), 1, + ACTIONS(4798), 1, anon_sym_DASH, - ACTIONS(4523), 1, + ACTIONS(4800), 1, anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4802), 1, anon_sym_PLUS, - ACTIONS(4527), 1, - anon_sym_not, - ACTIONS(4529), 1, - anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4804), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, - aux_sym_unquoted_token1, - STATE(425), 1, - sym__val_number_decimal, - STATE(426), 1, + STATE(436), 1, sym__val_number, - STATE(464), 1, + STATE(466), 1, + sym__val_number_decimal, + STATE(471), 1, sym_val_number, - STATE(2143), 1, + STATE(2194), 1, sym_comment, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3115), 1, - sym__expr_binary_expression, - STATE(3172), 1, - sym_unquoted, - STATE(3179), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3185), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3186), 1, + STATE(3233), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + STATE(3350), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -269613,269 +274880,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [90704] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2144), 1, - sym_comment, - ACTIONS(3515), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3513), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [90769] = 4, + [91670] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2145), 1, - sym_comment, - ACTIONS(1501), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1503), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(2900), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90834] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DOT2, - STATE(2146), 1, - sym_comment, - ACTIONS(213), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(215), 40, + ACTIONS(4076), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4080), 1, anon_sym_DOLLAR, + ACTIONS(4084), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, 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, + ACTIONS(4100), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90901] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4315), 1, + ACTIONS(4798), 1, anon_sym_DASH, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4319), 1, + ACTIONS(4800), 1, anon_sym_DOT, - ACTIONS(4321), 1, + ACTIONS(4802), 1, anon_sym_PLUS, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4329), 1, + ACTIONS(4804), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, + STATE(436), 1, sym__val_number, - STATE(385), 1, + STATE(466), 1, sym__val_number_decimal, - STATE(2147), 1, + STATE(471), 1, + sym_val_number, + STATE(2195), 1, sym_comment, - STATE(2532), 1, + STATE(2688), 1, sym__var, - STATE(2744), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(2797), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(2798), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(2800), 1, + STATE(3224), 1, sym_unquoted, - STATE(2811), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2945), 1, + STATE(3352), 1, sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4331), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2761), 4, + ACTIONS(4806), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2807), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -269888,146 +274971,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [91026] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2148), 1, - sym_comment, - ACTIONS(3559), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3557), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [91091] = 34, + [91795] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4800), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4802), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4804), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(490), 1, + STATE(466), 1, sym__val_number_decimal, - STATE(2149), 1, + STATE(471), 1, + sym_val_number, + STATE(2196), 1, sym_comment, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3140), 1, - sym_unquoted, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3402), 1, + STATE(3234), 1, + sym_unquoted, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3353), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -270040,85 +275062,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [91216] = 34, + [91920] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4800), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4802), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4804), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(436), 1, sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(490), 1, + STATE(466), 1, sym__val_number_decimal, - STATE(2150), 1, + STATE(471), 1, + sym_val_number, + STATE(2197), 1, sym_comment, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3139), 1, - sym_unquoted, - STATE(3202), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(3206), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(3403), 1, + STATE(3235), 1, + sym_unquoted, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3354), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -270131,85 +275153,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [91341] = 34, + [92045] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4662), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - ACTIONS(4629), 1, + ACTIONS(4788), 1, anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4790), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4792), 1, anon_sym_PLUS, - ACTIONS(4635), 1, + ACTIONS(4794), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, + STATE(330), 1, + sym__val_number_decimal, + STATE(353), 1, sym__val_number, - STATE(465), 1, + STATE(358), 1, sym_val_number, - STATE(490), 1, - sym__val_number_decimal, - STATE(2151), 1, + STATE(2198), 1, sym_comment, - STATE(2682), 1, + STATE(2503), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, sym__expr_unary_minus, - STATE(3138), 1, + STATE(2829), 1, sym_unquoted, - STATE(3202), 1, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3404), 1, + STATE(2879), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4637), 3, + ACTIONS(4796), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -270222,329 +275244,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [91466] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2152), 1, - sym_comment, - ACTIONS(3613), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3611), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [91531] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(3617), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3615), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [91596] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2154), 1, - sym_comment, - ACTIONS(3637), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [91661] = 4, + [92170] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2155), 1, - sym_comment, - ACTIONS(3641), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(2900), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [91726] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4229), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4237), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4259), 1, - anon_sym_DQUOTE, - ACTIONS(4263), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4265), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4459), 1, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4798), 1, anon_sym_DASH, - ACTIONS(4463), 1, + ACTIONS(4800), 1, anon_sym_DOT, - ACTIONS(4465), 1, + ACTIONS(4802), 1, anon_sym_PLUS, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(4469), 1, - anon_sym_null, - ACTIONS(4473), 1, + ACTIONS(4804), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4477), 1, - aux_sym_unquoted_token1, - STATE(75), 1, + STATE(436), 1, + sym__val_number, + STATE(466), 1, sym__val_number_decimal, - STATE(83), 1, + STATE(471), 1, sym_val_number, - STATE(85), 1, - sym__val_number, - STATE(722), 1, + STATE(2199), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(751), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3236), 1, sym_unquoted, - STATE(766), 1, - sym__expr_binary_expression, - STATE(776), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(782), 1, - sym__inter_single_quotes, - STATE(784), 1, - sym__inter_double_quotes, - STATE(791), 1, - sym__str_double_quotes, - STATE(2156), 1, - sym_comment, - ACTIONS(4261), 2, + STATE(3355), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4471), 2, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, - ACTIONS(4251), 3, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4255), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4475), 3, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(756), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(759), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -270557,330 +275335,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [91851] = 5, - ACTIONS(105), 1, + [92295] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3940), 1, - aux_sym_unquoted_token3, - STATE(2157), 1, - sym_comment, - ACTIONS(1371), 7, + ACTIONS(4460), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1369), 46, - anon_sym_COMMA, + ACTIONS(4464), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, + anon_sym_not, + ACTIONS(4476), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4486), 1, sym_val_date, - [91918] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2158), 1, - sym_comment, - ACTIONS(3653), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(4488), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3651), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [91983] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2159), 1, - sym_comment, - ACTIONS(3661), 13, - anon_sym_COMMA, + ACTIONS(4492), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4494), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3659), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(4664), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [92048] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2160), 1, - sym_comment, - ACTIONS(3667), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4666), 1, anon_sym_DOT, + ACTIONS(4668), 1, anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3665), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [92113] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, + ACTIONS(4670), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, - anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, - anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, - anon_sym_not, - ACTIONS(4655), 1, - anon_sym_null, - ACTIONS(4663), 1, - sym_val_date, - ACTIONS(4665), 1, - anon_sym_DQUOTE, - ACTIONS(4669), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(355), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2200), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2800), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1015), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1039), 1, - sym_unquoted, - STATE(1040), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2947), 1, sym__expr_binary_expression, - STATE(2161), 1, - sym_comment, - ACTIONS(4657), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4672), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -270893,85 +275426,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [92238] = 34, + [92420] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2201), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2813), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1015), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1037), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2974), 1, sym__expr_binary_expression, - STATE(1038), 1, - sym_unquoted, - STATE(2162), 1, - sym_comment, - ACTIONS(4657), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -270984,85 +275517,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [92363] = 34, + [92545] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2202), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2809), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1015), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1035), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2929), 1, sym__expr_binary_expression, - STATE(1036), 1, - sym_unquoted, - STATE(2163), 1, - sym_comment, - ACTIONS(4657), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -271075,85 +275608,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [92488] = 34, + [92670] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4665), 1, - anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_DASH, + ACTIONS(4800), 1, + anon_sym_DOT, + ACTIONS(4802), 1, + anon_sym_PLUS, + ACTIONS(4804), 1, + aux_sym__val_number_decimal_token1, + STATE(436), 1, sym__val_number, - STATE(133), 1, + STATE(466), 1, + sym__val_number_decimal, + STATE(471), 1, sym_val_number, - STATE(894), 1, + STATE(2203), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(991), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(992), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(3239), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(1015), 1, - sym__str_double_quotes, - STATE(1033), 1, + STATE(3356), 1, sym__expr_binary_expression, - STATE(1034), 1, - sym_unquoted, - STATE(2164), 1, - sym_comment, - ACTIONS(4657), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -271166,85 +275699,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [92613] = 34, + [92795] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2204), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2807), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1015), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1031), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2928), 1, sym__expr_binary_expression, - STATE(1032), 1, - sym_unquoted, - STATE(2165), 1, - sym_comment, - ACTIONS(4657), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -271257,146 +275790,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [92738] = 4, + [92920] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2166), 1, - sym_comment, - ACTIONS(3036), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(2900), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3034), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [92803] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, - anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4591), 1, - anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(44), 1, - sym__val_number_decimal, - STATE(55), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_DASH, + ACTIONS(4800), 1, + anon_sym_DOT, + ACTIONS(4802), 1, + anon_sym_PLUS, + ACTIONS(4804), 1, + aux_sym__val_number_decimal_token1, + STATE(436), 1, sym__val_number, - STATE(56), 1, + STATE(466), 1, + sym__val_number_decimal, + STATE(471), 1, sym_val_number, - STATE(541), 1, + STATE(2205), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(671), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(672), 1, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, sym__inter_single_quotes, - STATE(673), 1, - sym__expr_binary_expression, - STATE(674), 1, + STATE(3240), 1, sym_unquoted, - STATE(676), 1, - sym__inter_double_quotes, - STATE(678), 1, + STATE(3255), 1, sym__expr_unary_minus, - STATE(2167), 1, - sym_comment, - ACTIONS(4579), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4593), 2, + STATE(3357), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4806), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -271409,85 +275881,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [92928] = 34, + [93045] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2206), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2802), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1015), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1028), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2925), 1, sym__expr_binary_expression, - STATE(1030), 1, - sym_unquoted, - STATE(2168), 1, - sym_comment, - ACTIONS(4657), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -271500,85 +275972,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [93053] = 34, + [93170] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2207), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(961), 1, - sym__expr_binary_expression, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1015), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1027), 1, + STATE(2843), 1, sym_unquoted, - STATE(2169), 1, - sym_comment, - ACTIONS(4657), 2, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2936), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -271591,85 +276063,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [93178] = 34, + [93295] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4080), 1, + anon_sym_DOLLAR, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4665), 1, - anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_DASH, + ACTIONS(4800), 1, + anon_sym_DOT, + ACTIONS(4802), 1, + anon_sym_PLUS, + ACTIONS(4804), 1, + aux_sym__val_number_decimal_token1, + STATE(436), 1, sym__val_number, - STATE(133), 1, + STATE(466), 1, + sym__val_number_decimal, + STATE(471), 1, sym_val_number, - STATE(894), 1, + STATE(2208), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(991), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3195), 1, sym__inter_double_quotes, - STATE(992), 1, + STATE(3200), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(3241), 1, + sym_unquoted, + STATE(3255), 1, sym__expr_unary_minus, - STATE(1015), 1, - sym__str_double_quotes, - STATE(1024), 1, + STATE(3359), 1, sym__expr_binary_expression, - STATE(1026), 1, - sym_unquoted, - STATE(2170), 1, - sym_comment, - ACTIONS(4657), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4806), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -271682,85 +276154,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [93303] = 34, + [93420] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, - anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(4084), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4090), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4092), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4100), 1, sym_val_date, - ACTIONS(4591), 1, - anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4102), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4152), 1, aux_sym_unquoted_token1, - STATE(44), 1, - sym__val_number_decimal, - STATE(55), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4798), 1, + anon_sym_DASH, + ACTIONS(4800), 1, + anon_sym_DOT, + ACTIONS(4802), 1, + anon_sym_PLUS, + ACTIONS(4804), 1, + aux_sym__val_number_decimal_token1, + STATE(436), 1, sym__val_number, - STATE(56), 1, + STATE(466), 1, + sym__val_number_decimal, + STATE(471), 1, sym_val_number, - STATE(541), 1, + STATE(2209), 1, + sym_comment, + STATE(2688), 1, sym__var, - STATE(671), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(672), 1, - sym__inter_single_quotes, - STATE(675), 1, - sym__expr_binary_expression, - STATE(676), 1, + STATE(3195), 1, sym__inter_double_quotes, - STATE(678), 1, - sym__expr_unary_minus, - STATE(679), 1, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3242), 1, sym_unquoted, - STATE(2171), 1, - sym_comment, - ACTIONS(4579), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4593), 2, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3361), 1, + sym__expr_binary_expression, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2896), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4806), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3243), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(3129), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -271773,85 +276245,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [93428] = 34, + [93545] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2210), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1015), 1, + STATE(2832), 1, + sym_unquoted, + STATE(2839), 1, sym__str_double_quotes, - STATE(1022), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2922), 1, sym__expr_binary_expression, - STATE(1023), 1, - sym_unquoted, - STATE(2172), 1, - sym_comment, - ACTIONS(4657), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -271864,211 +276336,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [93553] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2173), 1, - sym_comment, - ACTIONS(1485), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1487), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [93618] = 8, + [93670] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DOT2, - STATE(2174), 1, - sym_comment, - ACTIONS(1521), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1519), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(1515), 6, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1517), 19, + ACTIONS(4460), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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(1644), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [93691] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2287), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, - anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2211), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1015), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1020), 1, - sym__expr_binary_expression, - STATE(1021), 1, + STATE(2841), 1, sym_unquoted, - STATE(2175), 1, - sym_comment, - ACTIONS(4657), 2, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2946), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -272081,85 +276427,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [93816] = 34, + [93795] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, + STATE(2212), 1, + sym_comment, + ACTIONS(3429), 13, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2289), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3427), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(2303), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [93860] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2213), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2797), 1, + sym_unquoted, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1015), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(1016), 1, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2926), 1, sym__expr_binary_expression, - STATE(1018), 1, - sym_unquoted, - STATE(2176), 1, - sym_comment, - ACTIONS(4657), 2, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -272172,85 +276579,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [93941] = 34, + [93985] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2214), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, - sym__expr_unary_minus, - STATE(1013), 1, - sym__expr_binary_expression, - STATE(1014), 1, + STATE(2800), 1, sym_unquoted, - STATE(1015), 1, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2839), 1, sym__str_double_quotes, - STATE(2177), 1, - sym_comment, - ACTIONS(4657), 2, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2930), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -272263,85 +276670,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [94066] = 34, + [94110] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_DOLLAR, - ACTIONS(2289), 1, - anon_sym_DASH, - ACTIONS(2303), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4643), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_LPAREN, - ACTIONS(4647), 1, + ACTIONS(4464), 1, + anon_sym_DOLLAR, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4655), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4663), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4665), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4669), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4671), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4673), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(113), 1, - sym__val_number_decimal, - STATE(130), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(133), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(894), 1, + STATE(2215), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(991), 1, - sym__inter_double_quotes, - STATE(992), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(998), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(1009), 1, - sym__expr_binary_expression, - STATE(1010), 1, + STATE(2818), 1, sym_unquoted, - STATE(1015), 1, + STATE(2839), 1, sym__str_double_quotes, - STATE(2178), 1, - sym_comment, - ACTIONS(4657), 2, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2945), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4667), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2309), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4659), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4661), 3, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1007), 4, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(994), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -272354,12 +276761,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [94191] = 4, + [94235] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2216), 1, sym_comment, - ACTIONS(3696), 13, + ACTIONS(3433), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -272373,7 +276780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3694), 41, + ACTIONS(3431), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272415,73 +276822,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [94256] = 4, + [94300] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2180), 1, - sym_comment, - ACTIONS(3700), 13, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4460), 1, + anon_sym_LBRACK, + ACTIONS(4464), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, + anon_sym_not, + ACTIONS(4476), 1, + anon_sym_null, + ACTIONS(4486), 1, + sym_val_date, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4494), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, + aux_sym_unquoted_token1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, anon_sym_DOT, + ACTIONS(4812), 1, anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, + sym__val_number, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, + sym_val_number, + STATE(2217), 1, + sym_comment, + STATE(2503), 1, + sym__var, + STATE(2785), 1, + sym__inter_single_quotes, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(2821), 1, + sym_unquoted, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2962), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3698), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(4484), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4816), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [94321] = 4, + STATE(2851), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2855), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [94425] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2181), 1, + STATE(2218), 1, sym_comment, - ACTIONS(3704), 13, + ACTIONS(3461), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -272495,7 +276932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3702), 41, + ACTIONS(3459), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272537,195 +276974,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [94386] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4319), 1, - anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_PLUS, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(385), 1, - sym__val_number_decimal, - STATE(2182), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2770), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2947), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [94511] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3974), 1, - anon_sym_DOLLAR, - ACTIONS(3978), 1, - anon_sym_LBRACE, - ACTIONS(3980), 1, - anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(2183), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4372), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 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(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [94638] = 4, + [94490] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2184), 1, + STATE(2219), 1, sym_comment, - ACTIONS(3708), 13, + ACTIONS(2834), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -272739,7 +276993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3706), 41, + ACTIONS(2832), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272781,85 +277035,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [94703] = 34, + [94555] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, - anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(44), 1, - sym__val_number_decimal, - STATE(55), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(56), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(541), 1, + STATE(2220), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(671), 1, - sym__str_double_quotes, - STATE(672), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(676), 1, - sym__inter_double_quotes, - STATE(678), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(680), 1, - sym__expr_binary_expression, - STATE(682), 1, + STATE(2822), 1, sym_unquoted, - STATE(2185), 1, - sym_comment, - ACTIONS(4579), 2, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2968), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4816), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -272872,85 +277126,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [94828] = 34, + [94680] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4464), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, - anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(4468), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4474), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4476), 1, anon_sym_null, - ACTIONS(4581), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, + ACTIONS(4486), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4488), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4492), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4494), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4662), 1, + anon_sym_LPAREN, + ACTIONS(4674), 1, aux_sym_unquoted_token1, - STATE(44), 1, - sym__val_number_decimal, - STATE(55), 1, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_PLUS, + ACTIONS(4814), 1, + aux_sym__val_number_decimal_token1, + STATE(353), 1, sym__val_number, - STATE(56), 1, + STATE(354), 1, + sym__val_number_decimal, + STATE(358), 1, sym_val_number, - STATE(541), 1, + STATE(2221), 1, + sym_comment, + STATE(2503), 1, sym__var, - STATE(637), 1, - sym__expr_binary_expression, - STATE(671), 1, - sym__str_double_quotes, - STATE(672), 1, + STATE(2785), 1, sym__inter_single_quotes, - STATE(676), 1, - sym__inter_double_quotes, - STATE(678), 1, + STATE(2815), 1, sym__expr_unary_minus, - STATE(687), 1, + STATE(2829), 1, sym_unquoted, - STATE(2186), 1, - sym_comment, - ACTIONS(4579), 2, + STATE(2839), 1, + sym__str_double_quotes, + STATE(2850), 1, + sym__inter_double_quotes, + STATE(2971), 1, + sym__expr_binary_expression, + ACTIONS(4478), 2, anon_sym_true, anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4482), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4484), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4816), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2851), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(2855), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -272963,85 +277217,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [94953] = 34, + [94805] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(4567), 1, - anon_sym_DASH, - ACTIONS(4569), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, + ACTIONS(4386), 1, + sym_val_date, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4394), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4404), 1, + anon_sym_LPAREN, + ACTIONS(4406), 1, + anon_sym_DASH, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4573), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4575), 1, + ACTIONS(4412), 1, anon_sym_not, - ACTIONS(4577), 1, + ACTIONS(4414), 1, anon_sym_null, - ACTIONS(4581), 1, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4589), 1, - sym_val_date, - ACTIONS(4591), 1, - anon_sym_DQUOTE, - ACTIONS(4595), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4599), 1, + ACTIONS(4422), 1, aux_sym_unquoted_token1, - STATE(44), 1, + STATE(77), 1, sym__val_number_decimal, - STATE(55), 1, + STATE(84), 1, sym__val_number, - STATE(56), 1, + STATE(85), 1, sym_val_number, - STATE(541), 1, + STATE(741), 1, sym__var, - STATE(671), 1, + STATE(779), 1, + sym__expr_binary_expression, + STATE(781), 1, + sym_unquoted, + STATE(792), 1, + sym__expr_unary_minus, + STATE(814), 1, sym__str_double_quotes, - STATE(672), 1, + STATE(831), 1, sym__inter_single_quotes, - STATE(676), 1, + STATE(832), 1, sym__inter_double_quotes, - STATE(678), 1, - sym__expr_unary_minus, - STATE(688), 1, - sym__expr_binary_expression, - STATE(689), 1, - sym_unquoted, - STATE(2187), 1, + STATE(2222), 1, sym_comment, - ACTIONS(4579), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4583), 3, + ACTIONS(4416), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4585), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4587), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(652), 4, + ACTIONS(4420), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(638), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -273054,363 +277308,271 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [95078] = 34, + [94930] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, + STATE(2223), 1, + sym_comment, + ACTIONS(3465), 13, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4319), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4321), 1, anon_sym_PLUS, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(385), 1, - sym__val_number_decimal, - STATE(2188), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2785), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2948), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3463), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [95203] = 34, + aux_sym__record_key_token2, + [94995] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, + STATE(2224), 1, + sym_comment, + ACTIONS(3469), 13, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(4315), 1, - anon_sym_DASH, - ACTIONS(4317), 1, - anon_sym_LBRACE, - ACTIONS(4319), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4321), 1, anon_sym_PLUS, - ACTIONS(4323), 1, - anon_sym_not, - ACTIONS(4325), 1, - anon_sym_null, - ACTIONS(4329), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4337), 1, - sym_val_date, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(4343), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4347), 1, - aux_sym_unquoted_token1, - STATE(346), 1, - sym_val_number, - STATE(359), 1, - sym__val_number, - STATE(385), 1, - sym__val_number_decimal, - STATE(2189), 1, - sym_comment, - STATE(2532), 1, - sym__var, - STATE(2744), 1, - sym__str_double_quotes, - STATE(2795), 1, - sym_unquoted, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(2798), 1, - sym__inter_single_quotes, - STATE(2811), 1, - sym__expr_unary_minus, - STATE(2960), 1, - sym__expr_binary_expression, - ACTIONS(4327), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4341), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4331), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4333), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(4335), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2761), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2807), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [95328] = 35, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3467), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [95060] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3972), 1, + STATE(2225), 1, + sym_comment, + ACTIONS(3473), 13, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, - anon_sym_LBRACE, - ACTIONS(3980), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(3982), 1, anon_sym_PLUS, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3990), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3994), 1, - sym_val_date, - ACTIONS(3996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4163), 1, - anon_sym_DASH, - STATE(434), 1, - sym__val_number, - STATE(465), 1, - sym_val_number, - STATE(498), 1, - sym__val_number_decimal, - STATE(2190), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3252), 1, - sym_expr_parenthesized, - STATE(3358), 1, - sym_val_variable, - STATE(3485), 1, - sym__expr_binary_expression, - STATE(4353), 1, - sym__expression, - STATE(4514), 1, - sym_val_range, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3421), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2829), 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, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3471), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(3219), 11, - sym_val_nothing, - sym_val_bool, - 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, - [95455] = 35, + aux_sym__record_key_token2, + [95125] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(4565), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(4569), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(4575), 1, - anon_sym_not, - ACTIONS(4577), 1, - anon_sym_null, - ACTIONS(4589), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(4591), 1, + ACTIONS(4388), 1, anon_sym_DQUOTE, - ACTIONS(4595), 1, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4597), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4675), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4679), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4681), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4683), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(53), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(55), 1, + STATE(84), 1, sym__val_number, - STATE(56), 1, + STATE(85), 1, sym_val_number, - STATE(537), 1, + STATE(741), 1, sym__var, - STATE(630), 1, - sym_expr_parenthesized, - STATE(631), 1, - sym_val_variable, - STATE(671), 1, + STATE(792), 1, + sym__expr_unary_minus, + STATE(814), 1, sym__str_double_quotes, - STATE(672), 1, + STATE(830), 1, + sym__expr_binary_expression, + STATE(831), 1, sym__inter_single_quotes, - STATE(676), 1, + STATE(832), 1, sym__inter_double_quotes, - STATE(678), 1, - sym__expr_unary_minus, - STATE(1516), 1, - sym_val_range, - STATE(1607), 1, - sym__expression, - STATE(2191), 1, + STATE(834), 1, + sym_unquoted, + STATE(2226), 1, sym_comment, - STATE(3483), 1, - sym__expr_binary_expression, - ACTIONS(4579), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4593), 2, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4587), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(684), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(4583), 6, + ACTIONS(4416), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4384), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(638), 11, + STATE(791), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(818), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -273420,85 +277582,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [95582] = 34, + [95250] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4687), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4689), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4691), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(84), 1, + sym__val_number, + STATE(85), 1, sym_val_number, - STATE(2192), 1, - sym_comment, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(776), 1, + sym__expr_binary_expression, + STATE(792), 1, sym__expr_unary_minus, - STATE(3152), 1, + STATE(796), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(814), 1, + sym__str_double_quotes, + STATE(831), 1, sym__inter_single_quotes, - STATE(3294), 1, - sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2227), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -273511,85 +277673,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [95707] = 34, + [95375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + STATE(2228), 1, + sym_comment, + ACTIONS(3477), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, - ACTIONS(3970), 1, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3475), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [95440] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4687), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4689), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4691), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(84), 1, + sym__val_number, + STATE(85), 1, sym_val_number, - STATE(2193), 1, - sym_comment, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3151), 1, + STATE(782), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3293), 1, + STATE(783), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(792), 1, + sym__expr_unary_minus, + STATE(814), 1, + sym__str_double_quotes, + STATE(831), 1, + sym__inter_single_quotes, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2229), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -273602,85 +277825,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [95832] = 34, + [95565] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4687), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4689), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4691), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(84), 1, + sym__val_number, + STATE(85), 1, sym_val_number, - STATE(2194), 1, - sym_comment, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3150), 1, + STATE(785), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3292), 1, + STATE(786), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(792), 1, + sym__expr_unary_minus, + STATE(814), 1, + sym__str_double_quotes, + STATE(831), 1, + sym__inter_single_quotes, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2230), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -273693,85 +277916,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [95957] = 34, + [95690] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4687), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4689), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4691), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(84), 1, + sym__val_number, + STATE(85), 1, sym_val_number, - STATE(2195), 1, - sym_comment, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3149), 1, + STATE(773), 1, + sym__expr_binary_expression, + STATE(788), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(792), 1, + sym__expr_unary_minus, + STATE(814), 1, + sym__str_double_quotes, + STATE(831), 1, sym__inter_single_quotes, - STATE(3291), 1, - sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2231), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -273784,85 +278007,159 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [96082] = 34, + [95815] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4428), 1, + anon_sym_in, + ACTIONS(4444), 1, + anon_sym_bit_DASHand, + ACTIONS(4446), 1, + anon_sym_bit_DASHxor, + ACTIONS(4712), 1, + anon_sym_bit_DASHor, + STATE(2232), 1, + sym_comment, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4426), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4442), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4440), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1553), 23, anon_sym_LBRACK, - ACTIONS(3974), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3978), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(3994), 1, + 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, + [95906] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4358), 1, + anon_sym_LBRACK, + ACTIONS(4362), 1, + anon_sym_DOLLAR, + ACTIONS(4366), 1, + anon_sym_LBRACE, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4687), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4689), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4691), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(84), 1, + sym__val_number, + STATE(85), 1, sym_val_number, - STATE(2196), 1, - sym_comment, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(792), 1, sym__expr_unary_minus, - STATE(3148), 1, + STATE(793), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3290), 1, + STATE(794), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(814), 1, + sym__str_double_quotes, + STATE(831), 1, + sym__inter_single_quotes, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2233), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -273875,85 +278172,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [96207] = 34, + [96031] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4687), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4689), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4691), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(84), 1, + sym__val_number, + STATE(85), 1, sym_val_number, - STATE(2197), 1, - sym_comment, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, - sym__expr_unary_minus, - STATE(3147), 1, + STATE(772), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3289), 1, + STATE(792), 1, + sym__expr_unary_minus, + STATE(811), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(814), 1, + sym__str_double_quotes, + STATE(831), 1, + sym__inter_single_quotes, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2234), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -273966,85 +278263,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [96332] = 34, + [96156] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4687), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4689), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4691), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(84), 1, + sym__val_number, + STATE(85), 1, sym_val_number, - STATE(2198), 1, - sym_comment, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(792), 1, sym__expr_unary_minus, - STATE(3145), 1, + STATE(814), 1, + sym__str_double_quotes, + STATE(828), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3288), 1, + STATE(829), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(831), 1, + sym__inter_single_quotes, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2235), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -274057,85 +278354,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [96457] = 34, + [96281] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4687), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4689), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4691), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(84), 1, + sym__val_number, + STATE(85), 1, sym_val_number, - STATE(2199), 1, - sym_comment, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(792), 1, sym__expr_unary_minus, - STATE(3144), 1, + STATE(814), 1, + sym__str_double_quotes, + STATE(821), 1, + sym__expr_binary_expression, + STATE(826), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(831), 1, sym__inter_single_quotes, - STATE(3287), 1, - sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2236), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -274148,85 +278445,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [96582] = 34, + [96406] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(4362), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4388), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4687), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4689), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4691), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(4414), 1, + anon_sym_null, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4422), 1, + aux_sym_unquoted_token1, + STATE(77), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(84), 1, + sym__val_number, + STATE(85), 1, sym_val_number, - STATE(2200), 1, - sym_comment, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3123), 1, + STATE(792), 1, sym__expr_unary_minus, - STATE(3143), 1, + STATE(803), 1, + sym__expr_binary_expression, + STATE(812), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, + STATE(814), 1, + sym__str_double_quotes, + STATE(831), 1, sym__inter_single_quotes, - STATE(3285), 1, - sym__expr_binary_expression, - ACTIONS(2835), 2, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2237), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -274239,85 +278536,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [96707] = 34, + [96531] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + STATE(2238), 1, + sym_comment, + ACTIONS(3481), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3479), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [96596] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4358), 1, anon_sym_LBRACK, - ACTIONS(57), 1, + ACTIONS(4362), 1, + anon_sym_DOLLAR, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(4386), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(4388), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(4392), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(4519), 1, + ACTIONS(4404), 1, anon_sym_LPAREN, - ACTIONS(4521), 1, + ACTIONS(4406), 1, anon_sym_DASH, - ACTIONS(4523), 1, + ACTIONS(4408), 1, anon_sym_DOT, - ACTIONS(4525), 1, + ACTIONS(4410), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4412), 1, anon_sym_not, - ACTIONS(4529), 1, + ACTIONS(4414), 1, anon_sym_null, - ACTIONS(4533), 1, + ACTIONS(4418), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4537), 1, + ACTIONS(4422), 1, aux_sym_unquoted_token1, - STATE(425), 1, + STATE(77), 1, sym__val_number_decimal, - STATE(426), 1, + STATE(84), 1, sym__val_number, - STATE(464), 1, + STATE(85), 1, sym_val_number, - STATE(2201), 1, - sym_comment, - STATE(2902), 1, + STATE(741), 1, sym__var, - STATE(3173), 1, + STATE(792), 1, + sym__expr_unary_minus, + STATE(800), 1, sym__expr_binary_expression, - STATE(3174), 1, + STATE(814), 1, + sym__str_double_quotes, + STATE(815), 1, sym_unquoted, - STATE(3179), 1, - sym__inter_double_quotes, - STATE(3185), 1, + STATE(831), 1, sym__inter_single_quotes, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3222), 1, - sym__str_double_quotes, - ACTIONS(97), 2, + STATE(832), 1, + sym__inter_double_quotes, + STATE(2239), 1, + sym_comment, + ACTIONS(4390), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4531), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(4380), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(4384), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 3, + ACTIONS(4420), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3119), 4, + STATE(791), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3212), 12, + STATE(818), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -274330,85 +278688,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [96832] = 34, + [96721] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(2266), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(2268), 1, + anon_sym_DASH, + ACTIONS(2282), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4592), 1, + anon_sym_LBRACK, + ACTIONS(4594), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4598), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_PLUS, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4604), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4612), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4614), 1, + anon_sym_DQUOTE, + ACTIONS(4618), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4620), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4622), 1, aux_sym_unquoted_token1, - ACTIONS(4685), 1, - anon_sym_DASH, - ACTIONS(4687), 1, - anon_sym_DOT, - ACTIONS(4689), 1, - anon_sym_PLUS, - ACTIONS(4691), 1, - aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + STATE(114), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(132), 1, + sym__val_number, + STATE(134), 1, sym_val_number, - STATE(2202), 1, - sym_comment, - STATE(2682), 1, + STATE(923), 1, sym__var, - STATE(2728), 1, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1021), 1, sym__str_double_quotes, - STATE(3123), 1, + STATE(1025), 1, + sym__inter_single_quotes, + STATE(1037), 1, sym__expr_unary_minus, - STATE(3142), 1, + STATE(1049), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3283), 1, + STATE(1050), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(2240), 1, + sym_comment, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4616), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2288), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4608), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(1035), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(1029), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -274421,85 +278779,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [96957] = 34, + [96846] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(2266), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(2268), 1, + anon_sym_DASH, + ACTIONS(2282), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4592), 1, + anon_sym_LBRACK, + ACTIONS(4594), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4598), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_PLUS, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4604), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4612), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4614), 1, + anon_sym_DQUOTE, + ACTIONS(4618), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4620), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4622), 1, aux_sym_unquoted_token1, - ACTIONS(4685), 1, - anon_sym_DASH, - ACTIONS(4687), 1, - anon_sym_DOT, - ACTIONS(4689), 1, - anon_sym_PLUS, - ACTIONS(4691), 1, - aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + STATE(114), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(132), 1, + sym__val_number, + STATE(134), 1, sym_val_number, - STATE(2203), 1, - sym_comment, - STATE(2682), 1, + STATE(923), 1, sym__var, - STATE(2728), 1, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1021), 1, sym__str_double_quotes, - STATE(3123), 1, + STATE(1025), 1, + sym__inter_single_quotes, + STATE(1037), 1, sym__expr_unary_minus, - STATE(3140), 1, + STATE(1045), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3282), 1, + STATE(1048), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(2241), 1, + sym_comment, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4616), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2288), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4608), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(1035), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(1029), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -274512,85 +278870,329 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [97082] = 34, + [96971] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + STATE(2242), 1, + sym_comment, + ACTIONS(3503), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3501), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [97036] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2243), 1, + sym_comment, + ACTIONS(3507), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3505), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [97101] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2244), 1, + sym_comment, + ACTIONS(3511), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3509), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [97166] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2245), 1, + sym_comment, + ACTIONS(3515), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3513), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [97231] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2266), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(2268), 1, + anon_sym_DASH, + ACTIONS(2282), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4592), 1, + anon_sym_LBRACK, + ACTIONS(4594), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4598), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_PLUS, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4604), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4612), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4614), 1, + anon_sym_DQUOTE, + ACTIONS(4618), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, + ACTIONS(4620), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, + ACTIONS(4622), 1, aux_sym_unquoted_token1, - ACTIONS(4685), 1, - anon_sym_DASH, - ACTIONS(4687), 1, - anon_sym_DOT, - ACTIONS(4689), 1, - anon_sym_PLUS, - ACTIONS(4691), 1, - aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + STATE(114), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(132), 1, + sym__val_number, + STATE(134), 1, sym_val_number, - STATE(2204), 1, - sym_comment, - STATE(2682), 1, + STATE(923), 1, sym__var, - STATE(2728), 1, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1021), 1, sym__str_double_quotes, - STATE(3123), 1, + STATE(1025), 1, + sym__inter_single_quotes, + STATE(1037), 1, sym__expr_unary_minus, - STATE(3139), 1, + STATE(1043), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3280), 1, + STATE(1044), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(2246), 1, + sym_comment, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4616), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2288), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4608), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(1035), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(1029), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -274603,85 +279205,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [97207] = 34, + [97356] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, + ACTIONS(2266), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(2268), 1, + anon_sym_DASH, + ACTIONS(2282), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4592), 1, + anon_sym_LBRACK, + ACTIONS(4594), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(4598), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_PLUS, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(3986), 1, + ACTIONS(4604), 1, anon_sym_null, - ACTIONS(3994), 1, + ACTIONS(4612), 1, sym_val_date, - ACTIONS(3996), 1, + ACTIONS(4614), 1, + anon_sym_DQUOTE, + ACTIONS(4618), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4613), 1, - aux_sym_unquoted_token1, - ACTIONS(4685), 1, - anon_sym_DASH, - ACTIONS(4687), 1, - anon_sym_DOT, - ACTIONS(4689), 1, - anon_sym_PLUS, - ACTIONS(4691), 1, - aux_sym__val_number_decimal_token1, - STATE(434), 1, - sym__val_number, - STATE(451), 1, + ACTIONS(4620), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4622), 1, + aux_sym_unquoted_token1, + STATE(114), 1, sym__val_number_decimal, - STATE(465), 1, + STATE(132), 1, + sym__val_number, + STATE(134), 1, sym_val_number, - STATE(2205), 1, - sym_comment, - STATE(2682), 1, + STATE(923), 1, sym__var, - STATE(2728), 1, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1021), 1, sym__str_double_quotes, - STATE(3123), 1, + STATE(1025), 1, + sym__inter_single_quotes, + STATE(1037), 1, sym__expr_unary_minus, - STATE(3138), 1, + STATE(1041), 1, sym_unquoted, - STATE(3202), 1, - sym__inter_double_quotes, - STATE(3206), 1, - sym__inter_single_quotes, - STATE(3278), 1, + STATE(1042), 1, sym__expr_binary_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + STATE(2247), 1, + sym_comment, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - ACTIONS(2829), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3992), 3, + ACTIONS(4616), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2288), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4693), 3, + ACTIONS(4608), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3137), 4, + STATE(1035), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3219), 12, + STATE(1029), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -274694,12 +279296,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [97332] = 4, + [97481] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2248), 1, sym_comment, - ACTIONS(1572), 12, + ACTIONS(1647), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -274712,7 +279314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1574), 41, + aux_sym_unquoted_token1, + ACTIONS(1649), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -274754,315 +279357,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97396] = 4, + [97546] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2207), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(2266), 1, + anon_sym_DOLLAR, + ACTIONS(2268), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2282), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, + ACTIONS(4592), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(4594), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4596), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4598), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4600), 1, + anon_sym_PLUS, + ACTIONS(4602), 1, + anon_sym_not, + ACTIONS(4604), 1, 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, + ACTIONS(4612), 1, sym_val_date, + ACTIONS(4614), 1, anon_sym_DQUOTE, + ACTIONS(4618), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4620), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4622), 1, + aux_sym_unquoted_token1, + STATE(114), 1, + sym__val_number_decimal, + STATE(132), 1, + sym__val_number, + STATE(134), 1, + sym_val_number, + STATE(923), 1, + sym__var, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1019), 1, + sym_unquoted, + STATE(1021), 1, + sym__str_double_quotes, + STATE(1025), 1, + sym__inter_single_quotes, + STATE(1032), 1, + sym__expr_binary_expression, + STATE(1037), 1, + sym__expr_unary_minus, + STATE(2249), 1, + sym_comment, + ACTIONS(4606), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4616), 2, sym__str_single_quotes, sym__str_back_ticks, - [97460] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2208), 1, - sym_comment, - ACTIONS(213), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(2288), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(215), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + ACTIONS(4608), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97524] = 7, + STATE(1035), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1029), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [97671] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, - sym_comment, - ACTIONS(1521), 2, + ACTIONS(2266), 1, + anon_sym_DOLLAR, + ACTIONS(2268), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1515), 5, - anon_sym__, + ACTIONS(2282), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1519), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(1517), 20, + ACTIONS(4592), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(4594), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4596), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4598), 1, anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_PLUS, + ACTIONS(4602), 1, + anon_sym_not, + ACTIONS(4604), 1, 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, + ACTIONS(4612), 1, sym_val_date, + ACTIONS(4614), 1, anon_sym_DQUOTE, + ACTIONS(4618), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4620), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4622), 1, + aux_sym_unquoted_token1, + STATE(114), 1, + sym__val_number_decimal, + STATE(132), 1, + sym__val_number, + STATE(134), 1, + sym_val_number, + STATE(923), 1, + sym__var, + STATE(1016), 1, + sym_unquoted, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1018), 1, + sym__expr_binary_expression, + STATE(1021), 1, + sym__str_double_quotes, + STATE(1025), 1, + sym__inter_single_quotes, + STATE(1037), 1, + sym__expr_unary_minus, + STATE(2250), 1, + sym_comment, + ACTIONS(4606), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4616), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1644), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [97594] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2210), 1, - sym_comment, - ACTIONS(1650), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(2288), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1652), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + ACTIONS(4608), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97658] = 4, + STATE(1035), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1029), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [97796] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2211), 1, - sym_comment, - ACTIONS(1600), 12, - anon_sym_GT, + ACTIONS(2266), 1, + anon_sym_DOLLAR, + ACTIONS(2268), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2282), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1602), 41, + ACTIONS(4592), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(4594), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4596), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4598), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4600), 1, + anon_sym_PLUS, + ACTIONS(4602), 1, + anon_sym_not, + ACTIONS(4604), 1, anon_sym_null, + ACTIONS(4612), 1, + sym_val_date, + ACTIONS(4614), 1, + anon_sym_DQUOTE, + ACTIONS(4618), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4620), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4622), 1, + aux_sym_unquoted_token1, + STATE(114), 1, + sym__val_number_decimal, + STATE(132), 1, + sym__val_number, + STATE(134), 1, + sym_val_number, + STATE(923), 1, + sym__var, + STATE(987), 1, + sym__expr_binary_expression, + STATE(1009), 1, + sym_unquoted, + STATE(1017), 1, + sym__inter_double_quotes, + STATE(1021), 1, + sym__str_double_quotes, + STATE(1025), 1, + sym__inter_single_quotes, + STATE(1037), 1, + sym__expr_unary_minus, + STATE(2251), 1, + sym_comment, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, + ACTIONS(4616), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2288), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4608), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4610), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97722] = 4, + STATE(1035), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1029), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [97921] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2212), 1, + STATE(2252), 1, sym_comment, - ACTIONS(4697), 12, + ACTIONS(3579), 13, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -275075,7 +279649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4695), 41, + ACTIONS(3577), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -275117,132 +279691,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [97786] = 4, + [97986] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2213), 1, + STATE(2253), 1, sym_comment, - ACTIONS(1568), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1570), 41, - anon_sym_LBRACK, + ACTIONS(3598), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97850] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2214), 1, - sym_comment, - ACTIONS(1654), 12, - anon_sym_GT, + ACTIONS(3596), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1656), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [97914] = 4, + aux_sym__record_key_token2, + [98051] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2215), 1, + STATE(2254), 1, sym_comment, - ACTIONS(1600), 12, + ACTIONS(1691), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -275255,7 +279770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1602), 41, + aux_sym_unquoted_token1, + ACTIONS(1693), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -275297,1846 +279813,2142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97978] = 4, + [98116] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2216), 1, - sym_comment, - ACTIONS(1636), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1638), 41, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(597), 1, + sym__expr_binary_expression, + STATE(598), 1, + sym_unquoted, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, + sym__expr_unary_minus, + STATE(2255), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98042] = 4, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [98241] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2217), 1, - sym_comment, - ACTIONS(1608), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1610), 41, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(578), 1, + sym__expr_binary_expression, + STATE(595), 1, + sym_unquoted, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, + sym__expr_unary_minus, + STATE(2256), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98106] = 4, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [98366] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2218), 1, - sym_comment, - ACTIONS(1596), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1598), 41, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(589), 1, + sym__expr_binary_expression, + STATE(592), 1, + sym_unquoted, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, + sym__expr_unary_minus, + STATE(2257), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98170] = 4, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [98491] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2219), 1, - sym_comment, - ACTIONS(1580), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1582), 41, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(582), 1, + sym_unquoted, + STATE(587), 1, + sym__expr_binary_expression, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, + sym__expr_unary_minus, + STATE(2258), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98234] = 4, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [98616] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2220), 1, - sym_comment, - ACTIONS(1524), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1526), 41, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(580), 1, + sym__expr_binary_expression, + STATE(581), 1, + sym_unquoted, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, + sym__expr_unary_minus, + STATE(2259), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98298] = 4, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [98741] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2221), 1, - sym_comment, - ACTIONS(1519), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1644), 41, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(602), 1, + sym_unquoted, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(616), 1, + sym__expr_binary_expression, + STATE(628), 1, + sym__expr_unary_minus, + STATE(2260), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98362] = 11, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [98866] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2222), 1, - sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 6, - anon_sym_in, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 31, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(618), 1, + sym__expr_binary_expression, + STATE(628), 1, + sym__expr_unary_minus, + STATE(639), 1, + sym_unquoted, + STATE(2261), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98440] = 36, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [98991] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, - anon_sym_LPAREN, - ACTIONS(3073), 1, + ACTIONS(4496), 1, + anon_sym_LBRACK, + ACTIONS(4500), 1, + anon_sym_DOLLAR, + ACTIONS(4504), 1, + anon_sym_LBRACE, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, - ACTIONS(3087), 1, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, anon_sym_DQUOTE, - ACTIONS(3095), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(4293), 1, - anon_sym_DOLLAR, - ACTIONS(4295), 1, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_DASH, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4299), 1, + ACTIONS(4822), 1, anon_sym_DOT, - ACTIONS(4301), 1, + ACTIONS(4824), 1, anon_sym_PLUS, - ACTIONS(4303), 1, + ACTIONS(4826), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4307), 1, - sym_val_date, - ACTIONS(4713), 1, - anon_sym_LBRACK, - ACTIONS(4715), 1, - anon_sym_RBRACK, - STATE(508), 1, - sym__val_number, - STATE(510), 1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, sym__val_number_decimal, - STATE(513), 1, + STATE(47), 1, sym_val_number, - STATE(2223), 1, - sym_comment, - STATE(2279), 1, - aux_sym__match_pattern_list_repeat1, - STATE(3168), 1, + STATE(49), 1, + sym__val_number, + STATE(533), 1, sym__var, - STATE(3419), 1, + STATE(601), 1, + sym__expr_binary_expression, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(608), 1, + sym_unquoted, + STATE(612), 1, sym__str_double_quotes, - STATE(3486), 1, - sym_val_variable, - STATE(3487), 1, - sym_expr_parenthesized, - STATE(3517), 1, + STATE(628), 1, sym__expr_unary_minus, - STATE(3520), 1, - sym__match_pattern_expression, - STATE(3522), 1, - sym__match_pattern_list, - STATE(5952), 1, - sym__match_pattern_rest, - STATE(5974), 1, - sym__match_pattern_ignore_rest, - ACTIONS(3075), 2, + STATE(2262), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(4526), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3524), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3079), 3, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3083), 3, + ACTIONS(4520), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4305), 3, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3521), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(3527), 8, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, + sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, - [98568] = 4, + sym_val_closure, + [99116] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2224), 1, + STATE(2263), 1, sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + ACTIONS(3781), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98632] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2225), 1, - sym_comment, - ACTIONS(4701), 2, + ACTIONS(3779), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1528), 8, - anon_sym_GT, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 37, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99181] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2264), 1, + sym_comment, + ACTIONS(3777), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98704] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2226), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(3775), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99246] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2265), 1, + sym_comment, + ACTIONS(3773), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98768] = 13, + ACTIONS(3771), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99311] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4717), 1, - anon_sym_in, - STATE(2227), 1, + STATE(2266), 1, sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4719), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 28, - anon_sym_LBRACK, + ACTIONS(3769), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98850] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2228), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(3767), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99376] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2267), 1, + sym_comment, + ACTIONS(3761), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98914] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2229), 1, - sym_comment, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1528), 10, - anon_sym_GT, + ACTIONS(3759), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 37, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99441] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2268), 1, + sym_comment, + ACTIONS(3757), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98984] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2230), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(3755), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99506] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2269), 1, + sym_comment, + ACTIONS(3751), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99048] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2231), 1, - sym_comment, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1528), 12, - anon_sym_GT, + ACTIONS(3749), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 39, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99571] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2270), 1, + sym_comment, + ACTIONS(3747), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99114] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2232), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(3745), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99636] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2271), 1, + sym_comment, + ACTIONS(3733), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99178] = 9, + ACTIONS(3731), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99701] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2272), 1, sym_comment, - ACTIONS(4701), 2, - anon_sym_DASH, + ACTIONS(3729), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1528), 8, - anon_sym_GT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3727), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 35, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99766] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2273), 1, + sym_comment, + ACTIONS(3725), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99252] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2234), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(3723), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99831] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2274), 1, + sym_comment, + ACTIONS(3721), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99316] = 14, + ACTIONS(3719), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4717), 1, - anon_sym_in, - STATE(2235), 1, + STATE(2275), 1, sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4721), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4719), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 26, - anon_sym_LBRACK, + ACTIONS(3717), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99400] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2236), 1, - sym_comment, - ACTIONS(1454), 12, - anon_sym_GT, + ACTIONS(3715), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1456), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99961] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2276), 1, + sym_comment, + ACTIONS(3713), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99464] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2237), 1, - sym_comment, - ACTIONS(1491), 12, - anon_sym_GT, + ACTIONS(3711), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1493), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [100026] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_comment, + ACTIONS(3709), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99528] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2238), 1, - sym_comment, - ACTIONS(1475), 12, - anon_sym_GT, + ACTIONS(3707), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1477), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [100091] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2278), 1, + sym_comment, + ACTIONS(3705), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99592] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2239), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(3703), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [100156] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2279), 1, + sym_comment, + ACTIONS(3682), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99656] = 16, + ACTIONS(3680), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [100221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4717), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_bit_DASHand, - ACTIONS(4725), 1, - anon_sym_bit_DASHxor, - STATE(2240), 1, + STATE(2280), 1, sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4721), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4719), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 24, - anon_sym_LBRACK, + ACTIONS(3678), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99744] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4717), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_bit_DASHand, - STATE(2241), 1, - sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4701), 2, + ACTIONS(3676), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4721), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4719), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, - anon_sym__, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 25, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [100286] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(600), 1, + sym_unquoted, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, + sym__expr_unary_minus, + STATE(644), 1, + sym__expr_binary_expression, + STATE(2281), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [99830] = 4, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [100411] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(2242), 1, - sym_comment, - ACTIONS(1632), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1634), 41, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, + sym__expr_unary_minus, + STATE(640), 1, + sym__expr_binary_expression, + STATE(642), 1, + sym_unquoted, + STATE(2282), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [99894] = 4, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [100536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2283), 1, sym_comment, - ACTIONS(1658), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1660), 41, - anon_sym_LBRACK, + ACTIONS(3674), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99958] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2244), 1, - sym_comment, - ACTIONS(1604), 12, - anon_sym_GT, + ACTIONS(3672), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1606), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [100601] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2284), 1, + sym_comment, + ACTIONS(3666), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3664), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [100022] = 4, + aux_sym__record_key_token2, + [100666] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2245), 1, + STATE(2285), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1659), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -277149,7 +281961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1558), 41, + aux_sym_unquoted_token1, + ACTIONS(1661), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -277191,670 +282004,927 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100086] = 17, + [100731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4717), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_bit_DASHand, - ACTIONS(4725), 1, - anon_sym_bit_DASHxor, - ACTIONS(4727), 1, - anon_sym_bit_DASHor, - STATE(2246), 1, + STATE(2286), 1, sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4721), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4719), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 23, - anon_sym_LBRACK, + ACTIONS(3656), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100176] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2247), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(3654), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [100796] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_comment, + ACTIONS(3652), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100240] = 18, + ACTIONS(3650), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [100861] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4717), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_bit_DASHand, - ACTIONS(4725), 1, - anon_sym_bit_DASHxor, - ACTIONS(4727), 1, - anon_sym_bit_DASHor, - ACTIONS(4729), 1, - anon_sym_and, - STATE(2248), 1, - sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4701), 2, + ACTIONS(4496), 1, + anon_sym_LBRACK, + ACTIONS(4500), 1, + anon_sym_DOLLAR, + ACTIONS(4504), 1, + anon_sym_LBRACE, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, + anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4721), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4719), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, - anon_sym__, + ACTIONS(4826), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, + sym__expr_unary_minus, + STATE(632), 1, + sym__expr_binary_expression, + STATE(633), 1, + sym_unquoted, + STATE(2288), 1, + sym_comment, + ACTIONS(4514), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4520), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1530), 22, + ACTIONS(4828), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [100986] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4496), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4500), 1, anon_sym_DOLLAR, + ACTIONS(4504), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_xor, - anon_sym_or, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(612), 1, + sym__str_double_quotes, + STATE(614), 1, + sym__expr_binary_expression, + STATE(619), 1, + sym_unquoted, + STATE(628), 1, + sym__expr_unary_minus, + STATE(2289), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_true, anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4520), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4828), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [100332] = 4, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [101111] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2249), 1, + STATE(2290), 1, sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + ACTIONS(3644), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100396] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2250), 1, - sym_comment, - ACTIONS(1628), 12, - anon_sym_GT, + ACTIONS(3642), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1630), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [101176] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2291), 1, + sym_comment, + ACTIONS(3640), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100460] = 19, + ACTIONS(3638), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [101241] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4717), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_bit_DASHand, - ACTIONS(4725), 1, - anon_sym_bit_DASHxor, - ACTIONS(4727), 1, - anon_sym_bit_DASHor, - ACTIONS(4729), 1, - anon_sym_and, - ACTIONS(4731), 1, - anon_sym_xor, - STATE(2251), 1, - sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4701), 2, + ACTIONS(4496), 1, + anon_sym_LBRACK, + ACTIONS(4500), 1, + anon_sym_DOLLAR, + ACTIONS(4504), 1, + anon_sym_LBRACE, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(4512), 1, + anon_sym_null, + ACTIONS(4522), 1, + sym_val_date, + ACTIONS(4524), 1, + anon_sym_DQUOTE, + ACTIONS(4528), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4530), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4818), 1, + anon_sym_LPAREN, + ACTIONS(4820), 1, anon_sym_DASH, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(4824), 1, anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4721), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4719), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, - anon_sym__, + ACTIONS(4826), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4830), 1, + aux_sym_unquoted_token1, + STATE(27), 1, + sym__val_number_decimal, + STATE(47), 1, + sym_val_number, + STATE(49), 1, + sym__val_number, + STATE(533), 1, + sym__var, + STATE(603), 1, + sym__inter_double_quotes, + STATE(607), 1, + sym__inter_single_quotes, + STATE(609), 1, + sym__expr_binary_expression, + STATE(611), 1, + sym_unquoted, + STATE(612), 1, + sym__str_double_quotes, + STATE(628), 1, + sym__expr_unary_minus, + STATE(2292), 1, + sym_comment, + ACTIONS(4514), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4526), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4518), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4520), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1530), 21, - anon_sym_LBRACK, + ACTIONS(4828), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(605), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(631), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [101366] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2293), 1, + sym_comment, + ACTIONS(3634), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100554] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2252), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(3632), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [101431] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2294), 1, + sym_comment, + ACTIONS(3606), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100618] = 20, + ACTIONS(3604), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [101496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4717), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_bit_DASHand, - ACTIONS(4725), 1, - anon_sym_bit_DASHxor, - ACTIONS(4727), 1, - anon_sym_bit_DASHor, - ACTIONS(4729), 1, - anon_sym_and, - ACTIONS(4731), 1, - anon_sym_xor, - ACTIONS(4733), 1, - anon_sym_or, - STATE(2253), 1, + STATE(2295), 1, sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4721), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4719), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1530), 20, - anon_sym_LBRACK, + ACTIONS(3622), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100714] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2254), 1, - sym_comment, - ACTIONS(1556), 12, - anon_sym_GT, + ACTIONS(3620), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1558), 41, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [101561] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2296), 1, + sym_comment, + ACTIONS(3618), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100778] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2255), 1, - sym_comment, - ACTIONS(1616), 12, - anon_sym_GT, + ACTIONS(3616), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1618), 41, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [101626] = 35, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4076), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(4078), 1, anon_sym_LPAREN, + ACTIONS(4080), 1, anon_sym_DOLLAR, + ACTIONS(4084), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4086), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4088), 1, + anon_sym_PLUS, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(4092), 1, anon_sym_null, + ACTIONS(4096), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4100), 1, + sym_val_date, + ACTIONS(4102), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4104), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4146), 1, + anon_sym_DASH, + STATE(436), 1, + sym__val_number, + STATE(471), 1, + sym_val_number, + STATE(502), 1, + sym__val_number_decimal, + STATE(2297), 1, + sym_comment, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3195), 1, + sym__inter_double_quotes, + STATE(3200), 1, + sym__inter_single_quotes, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3333), 1, + sym_val_variable, + STATE(3381), 1, + sym_expr_parenthesized, + STATE(3556), 1, + sym__expr_binary_expression, + STATE(4415), 1, + sym__expression, + STATE(4782), 1, + sym_val_range, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3473), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2896), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, + STATE(3129), 11, + sym_val_nothing, + sym_val_bool, + 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, + [101753] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_comment, + ACTIONS(3331), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100842] = 4, + ACTIONS(3329), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [101818] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2256), 1, + STATE(2299), 1, sym_comment, - ACTIONS(4737), 12, + ACTIONS(3614), 13, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -277867,7 +282937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4735), 41, + ACTIONS(3612), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -277909,314 +282979,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [100906] = 4, + [101883] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(2257), 1, - sym_comment, - ACTIONS(1624), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1626), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2968), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4092), 1, 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, - [100970] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2258), 1, - sym_comment, - ACTIONS(1640), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1642), 41, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4832), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4834), 1, + anon_sym_DASH, + ACTIONS(4836), 1, anon_sym_LBRACE, + ACTIONS(4838), 1, anon_sym_RBRACE, + ACTIONS(4840), 1, + anon_sym__, + ACTIONS(4842), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, + ACTIONS(4844), 1, + anon_sym_PLUS, + ACTIONS(4846), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4852), 1, sym_val_date, - anon_sym_DQUOTE, + STATE(735), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2300), 1, + sym_comment, + STATE(2305), 1, + aux_sym_ctrl_match_repeat1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3598), 1, + sym_match_arm, + STATE(4743), 1, + sym__match_pattern, + STATE(5116), 1, + sym_expr_parenthesized, + STATE(5118), 1, + sym_val_variable, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(6140), 1, + sym_default_arm, + STATE(6160), 1, + sym_match_pattern, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [101034] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2259), 1, - sym_comment, - ACTIONS(1628), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(4742), 7, - anon_sym_DASH, - anon_sym__, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4739), 20, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(4848), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4850), 3, aux_sym__val_number_token4, 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(1630), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [101102] = 4, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [102019] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2260), 1, + STATE(2301), 1, sym_comment, - ACTIONS(1576), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1578), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(4856), 12, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101166] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2261), 1, - sym_comment, - ACTIONS(1564), 12, - anon_sym_GT, + ACTIONS(4854), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1566), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [101230] = 4, + aux_sym__record_key_token2, + [102083] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2262), 1, + STATE(2302), 1, sym_comment, - ACTIONS(4747), 12, + ACTIONS(4860), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -278229,7 +283153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4745), 41, + ACTIONS(4858), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -278271,644 +283195,798 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [101294] = 36, + [102147] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3061), 1, + ACTIONS(3009), 1, anon_sym_LPAREN, - ACTIONS(3073), 1, + ACTIONS(3021), 1, anon_sym_null, - ACTIONS(3087), 1, + ACTIONS(3035), 1, anon_sym_DQUOTE, - ACTIONS(3095), 1, + ACTIONS(3043), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(4293), 1, + ACTIONS(4542), 1, anon_sym_DOLLAR, - ACTIONS(4295), 1, + ACTIONS(4544), 1, anon_sym_DASH, - ACTIONS(4297), 1, + ACTIONS(4546), 1, anon_sym_LBRACE, - ACTIONS(4299), 1, + ACTIONS(4548), 1, anon_sym_DOT, - ACTIONS(4301), 1, + ACTIONS(4550), 1, anon_sym_PLUS, - ACTIONS(4303), 1, + ACTIONS(4552), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4307), 1, + ACTIONS(4556), 1, sym_val_date, - ACTIONS(4713), 1, + ACTIONS(4862), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, + ACTIONS(4864), 1, anon_sym_RBRACK, - STATE(508), 1, - sym__val_number, - STATE(510), 1, + STATE(506), 1, sym__val_number_decimal, + STATE(511), 1, + sym__val_number, STATE(513), 1, sym_val_number, - STATE(2263), 1, + STATE(2303), 1, sym_comment, - STATE(2279), 1, + STATE(2321), 1, aux_sym__match_pattern_list_repeat1, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3419), 1, + STATE(3426), 1, sym__str_double_quotes, - STATE(3486), 1, - sym_val_variable, - STATE(3487), 1, + STATE(3574), 1, sym_expr_parenthesized, - STATE(3517), 1, + STATE(3586), 1, + sym_val_variable, + STATE(3594), 1, sym__expr_unary_minus, - STATE(3520), 1, - sym__match_pattern_expression, - STATE(3522), 1, + STATE(3595), 1, + sym__match_pattern_record, + STATE(3597), 1, sym__match_pattern_list, - STATE(6084), 1, + STATE(3599), 1, + sym__match_pattern_expression, + STATE(6086), 1, sym__match_pattern_ignore_rest, - STATE(6099), 1, + STATE(6088), 1, sym__match_pattern_rest, - ACTIONS(3075), 2, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 2, + ACTIONS(3037), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3524), 2, + STATE(3590), 2, sym__match_pattern_value, sym_val_range, - ACTIONS(3079), 3, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3083), 3, + ACTIONS(3031), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4305), 3, + ACTIONS(4554), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3521), 4, + STATE(3600), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3527), 8, + STATE(3603), 7, sym_val_nothing, sym_val_bool, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, - sym_val_record, sym_val_table, - [101422] = 4, + [102277] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(2264), 1, - sym_comment, - ACTIONS(1668), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1670), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(3009), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(3021), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(3035), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101486] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2265), 1, - sym_comment, - ACTIONS(1560), 12, - anon_sym_GT, + ACTIONS(3043), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(4542), 1, + anon_sym_DOLLAR, + ACTIONS(4544), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4546), 1, + anon_sym_LBRACE, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(4552), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1562), 41, + ACTIONS(4556), 1, + sym_val_date, + ACTIONS(4862), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, + ACTIONS(4866), 1, + anon_sym_RBRACK, + STATE(506), 1, + sym__val_number_decimal, + STATE(511), 1, + sym__val_number, + STATE(513), 1, + sym_val_number, + STATE(2304), 1, + sym_comment, + STATE(2321), 1, + aux_sym__match_pattern_list_repeat1, + STATE(3192), 1, + sym__var, + STATE(3426), 1, + sym__str_double_quotes, + STATE(3574), 1, + sym_expr_parenthesized, + STATE(3586), 1, + sym_val_variable, + STATE(3594), 1, + sym__expr_unary_minus, + STATE(3595), 1, + sym__match_pattern_record, + STATE(3597), 1, + sym__match_pattern_list, + STATE(3599), 1, + sym__match_pattern_expression, + STATE(6037), 1, + sym__match_pattern_ignore_rest, + STATE(6039), 1, + sym__match_pattern_rest, + ACTIONS(3023), 2, anon_sym_true, anon_sym_false, + ACTIONS(3037), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3590), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3027), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(3031), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4554), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101550] = 4, + STATE(3600), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(3603), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [102407] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(2266), 1, - sym_comment, - ACTIONS(1584), 12, - anon_sym_GT, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, anon_sym_DASH, - anon_sym_in, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(4840), 1, anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4842), 1, + anon_sym_DOT, + ACTIONS(4844), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(4846), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1586), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(4852), 1, + sym_val_date, + ACTIONS(4868), 1, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, + STATE(735), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2305), 1, + sym_comment, + STATE(2319), 1, + aux_sym_ctrl_match_repeat1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3598), 1, + sym_match_arm, + STATE(4743), 1, + sym__match_pattern, + STATE(5116), 1, + sym_expr_parenthesized, + STATE(5118), 1, + sym_val_variable, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(6160), 1, + sym_match_pattern, + STATE(6169), 1, + sym_default_arm, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4848), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4850), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101614] = 4, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [102543] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(2267), 1, - sym_comment, - ACTIONS(1612), 12, - anon_sym_GT, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, anon_sym_DASH, - anon_sym_in, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(4840), 1, anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4842), 1, + anon_sym_DOT, + ACTIONS(4844), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(4846), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1614), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(4852), 1, + sym_val_date, + ACTIONS(4870), 1, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, + STATE(735), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2306), 1, + sym_comment, + STATE(2310), 1, + aux_sym_ctrl_match_repeat1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3598), 1, + sym_match_arm, + STATE(4743), 1, + sym__match_pattern, + STATE(5116), 1, + sym_expr_parenthesized, + STATE(5118), 1, + sym_val_variable, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(6128), 1, + sym_default_arm, + STATE(6160), 1, + sym_match_pattern, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4848), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4850), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101678] = 4, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [102679] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(2268), 1, - sym_comment, - ACTIONS(1588), 12, - anon_sym_GT, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, anon_sym_DASH, - anon_sym_in, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(4840), 1, anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4842), 1, + anon_sym_DOT, + ACTIONS(4844), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(4846), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1590), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(4852), 1, + sym_val_date, + ACTIONS(4872), 1, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, + STATE(735), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2307), 1, + sym_comment, + STATE(2314), 1, + aux_sym_ctrl_match_repeat1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3598), 1, + sym_match_arm, + STATE(4743), 1, + sym__match_pattern, + STATE(5116), 1, + sym_expr_parenthesized, + STATE(5118), 1, + sym_val_variable, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(6125), 1, + sym_default_arm, + STATE(6160), 1, + sym_match_pattern, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4848), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4850), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101742] = 4, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [102815] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2269), 1, + STATE(2308), 1, sym_comment, - ACTIONS(1646), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1648), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(4876), 12, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101806] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2270), 1, - sym_comment, - ACTIONS(1495), 12, - anon_sym_GT, + ACTIONS(4874), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1497), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, - [101870] = 4, + aux_sym__record_key_token2, + [102879] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(2271), 1, - sym_comment, - ACTIONS(1620), 12, - anon_sym_GT, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, anon_sym_DASH, - anon_sym_in, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(4840), 1, anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4842), 1, + anon_sym_DOT, + ACTIONS(4844), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(4846), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1622), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(4852), 1, + sym_val_date, + ACTIONS(4878), 1, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, + STATE(735), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2309), 1, + sym_comment, + STATE(2319), 1, + aux_sym_ctrl_match_repeat1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3598), 1, + sym_match_arm, + STATE(4743), 1, + sym__match_pattern, + STATE(5116), 1, + sym_expr_parenthesized, + STATE(5118), 1, + sym_val_variable, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(6160), 1, + sym_match_pattern, + STATE(6173), 1, + sym_default_arm, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4848), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4850), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101934] = 4, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [103015] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(2272), 1, - sym_comment, - ACTIONS(1426), 12, - anon_sym_GT, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, anon_sym_DASH, - anon_sym_in, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(4840), 1, anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4842), 1, + anon_sym_DOT, + ACTIONS(4844), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(4846), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4852), 1, + sym_val_date, + ACTIONS(4880), 1, + anon_sym_RBRACE, + STATE(735), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2310), 1, + sym_comment, + STATE(2319), 1, + aux_sym_ctrl_match_repeat1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3598), 1, + sym_match_arm, + STATE(4743), 1, + sym__match_pattern, + STATE(5116), 1, + sym_expr_parenthesized, + STATE(5118), 1, + sym_val_variable, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(6110), 1, + sym_default_arm, + STATE(6160), 1, + sym_match_pattern, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1428), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(4848), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4850), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [103151] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2311), 1, + sym_comment, + ACTIONS(4884), 12, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101998] = 4, + ACTIONS(4882), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [103215] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2273), 1, + STATE(2312), 1, sym_comment, - ACTIONS(4753), 12, + ACTIONS(4888), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -278921,7 +283999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4751), 41, + ACTIONS(4886), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -278963,12 +284041,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [102062] = 4, + [103279] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2274), 1, + STATE(2313), 1, sym_comment, - ACTIONS(4757), 12, + ACTIONS(4892), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -278981,7 +284059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4755), 41, + ACTIONS(4890), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -279023,161 +284101,353 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [102126] = 4, + [103343] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(2275), 1, - sym_comment, - ACTIONS(1664), 12, - anon_sym_GT, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, anon_sym_DASH, - anon_sym_in, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(4840), 1, anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4842), 1, + anon_sym_DOT, + ACTIONS(4844), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(4846), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4852), 1, + sym_val_date, + ACTIONS(4894), 1, + anon_sym_RBRACE, + STATE(735), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2314), 1, + sym_comment, + STATE(2319), 1, + aux_sym_ctrl_match_repeat1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3598), 1, + sym_match_arm, + STATE(4743), 1, + sym__match_pattern, + STATE(5116), 1, + sym_expr_parenthesized, + STATE(5118), 1, + sym_val_variable, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(6105), 1, + sym_default_arm, + STATE(6160), 1, + sym_match_pattern, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4098), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1666), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4848), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4850), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [103479] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2968), 1, anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_DASH, + ACTIONS(4836), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4840), 1, + anon_sym__, + ACTIONS(4842), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, + ACTIONS(4844), 1, + anon_sym_PLUS, + ACTIONS(4846), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4852), 1, + sym_val_date, + ACTIONS(4896), 1, + anon_sym_RBRACE, + STATE(735), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2309), 1, + aux_sym_ctrl_match_repeat1, + STATE(2315), 1, + sym_comment, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3598), 1, + sym_match_arm, + STATE(4743), 1, + sym__match_pattern, + STATE(5116), 1, + sym_expr_parenthesized, + STATE(5118), 1, + sym_val_variable, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(6057), 1, + sym_default_arm, + STATE(6160), 1, + sym_match_pattern, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, anon_sym_true, anon_sym_false, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4848), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(4850), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [102190] = 4, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [103615] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2276), 1, + STATE(2316), 1, sym_comment, - ACTIONS(1507), 12, - anon_sym_GT, + ACTIONS(4901), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4898), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1509), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [103679] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2317), 1, + sym_comment, + ACTIONS(4906), 12, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102254] = 17, + ACTIONS(4904), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [103743] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1371), 1, + ACTIONS(1377), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4759), 1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4761), 1, + ACTIONS(4910), 1, anon_sym_LT, - ACTIONS(4763), 1, + ACTIONS(4912), 1, anon_sym_DOT2, - ACTIONS(4765), 1, + ACTIONS(4914), 1, anon_sym_EQ2, - ACTIONS(4767), 1, + ACTIONS(4916), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4769), 1, + ACTIONS(4918), 1, anon_sym_DASH2, - ACTIONS(4771), 1, + ACTIONS(4920), 1, anon_sym_PLUS2, - ACTIONS(4773), 1, + ACTIONS(4922), 1, aux_sym_unquoted_token4, - ACTIONS(4775), 1, + ACTIONS(4924), 1, aux_sym_unquoted_token6, - STATE(2277), 1, + STATE(2318), 1, sym_comment, - STATE(2327), 1, + STATE(2366), 1, sym__var, - STATE(2432), 1, + STATE(2481), 1, sym__immediate_decimal, - STATE(2437), 2, + STATE(2479), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1369), 37, + ACTIONS(1375), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -279215,42 +284485,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [102343] = 17, + [103832] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4926), 1, + anon_sym_LBRACK, + ACTIONS(4929), 1, + anon_sym_LPAREN, + ACTIONS(4932), 1, + anon_sym_DOLLAR, + ACTIONS(4935), 1, + anon_sym_DASH, + ACTIONS(4938), 1, + anon_sym_LBRACE, + ACTIONS(4941), 1, + anon_sym_RBRACE, + ACTIONS(4943), 1, + anon_sym__, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4948), 1, + anon_sym_PLUS, + ACTIONS(4951), 1, + anon_sym_null, + ACTIONS(4957), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4969), 1, + sym_val_date, + ACTIONS(4972), 1, + anon_sym_DQUOTE, + ACTIONS(4978), 1, + aux_sym_unquoted_token1, + STATE(735), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(3598), 1, + sym_match_arm, + STATE(4743), 1, + sym__match_pattern, + STATE(5116), 1, + sym_expr_parenthesized, + STATE(5118), 1, + sym_val_variable, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(6160), 1, + sym_match_pattern, + ACTIONS(4954), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4975), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2319), 2, + sym_comment, + aux_sym_ctrl_match_repeat1, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4960), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4963), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(4966), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [103963] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4777), 1, + ACTIONS(4981), 1, anon_sym_LPAREN, - ACTIONS(4779), 1, + ACTIONS(4983), 1, anon_sym_LT, - ACTIONS(4781), 1, + ACTIONS(4985), 1, anon_sym_DOT2, - ACTIONS(4783), 1, + ACTIONS(4987), 1, anon_sym_EQ2, - ACTIONS(4785), 1, + ACTIONS(4989), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4787), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4789), 1, + ACTIONS(4993), 1, anon_sym_PLUS2, - ACTIONS(4791), 1, + ACTIONS(4995), 1, aux_sym_unquoted_token4, - ACTIONS(4793), 1, + ACTIONS(4997), 1, aux_sym_unquoted_token6, - STATE(2278), 1, + STATE(2320), 1, sym_comment, - STATE(2375), 1, + STATE(2410), 1, sym__var, - STATE(2447), 1, + STATE(2485), 1, sym__immediate_decimal, - ACTIONS(1371), 2, + ACTIONS(1377), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2448), 2, + STATE(2486), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1369), 35, + ACTIONS(1375), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -279286,124 +284649,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [102431] = 33, + [104051] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4795), 1, + ACTIONS(4999), 1, anon_sym_LBRACK, - ACTIONS(4798), 1, + ACTIONS(5002), 1, anon_sym_RBRACK, - ACTIONS(4800), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4803), 1, + ACTIONS(5007), 1, anon_sym_DOLLAR, - ACTIONS(4806), 1, + ACTIONS(5010), 1, anon_sym_DASH, - ACTIONS(4809), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(5016), 1, anon_sym_DOT, - ACTIONS(4815), 1, + ACTIONS(5019), 1, anon_sym_PLUS, - ACTIONS(4818), 1, + ACTIONS(5022), 1, anon_sym_null, - ACTIONS(4824), 1, + ACTIONS(5028), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4836), 1, + ACTIONS(5040), 1, sym_val_date, - ACTIONS(4839), 1, + ACTIONS(5043), 1, anon_sym_DQUOTE, - ACTIONS(4845), 1, + ACTIONS(5049), 1, aux_sym__unquoted_in_list_token1, - STATE(508), 1, - sym__val_number, - STATE(510), 1, + STATE(506), 1, sym__val_number_decimal, + STATE(511), 1, + sym__val_number, STATE(513), 1, sym_val_number, - STATE(3168), 1, + STATE(3192), 1, sym__var, - STATE(3419), 1, + STATE(3426), 1, sym__str_double_quotes, - STATE(3486), 1, - sym_val_variable, - STATE(3487), 1, + STATE(3574), 1, sym_expr_parenthesized, - STATE(3517), 1, + STATE(3586), 1, + sym_val_variable, + STATE(3594), 1, sym__expr_unary_minus, - STATE(3520), 1, - sym__match_pattern_expression, - STATE(3522), 1, + STATE(3595), 1, + sym__match_pattern_record, + STATE(3597), 1, sym__match_pattern_list, - ACTIONS(4821), 2, + STATE(3599), 1, + sym__match_pattern_expression, + ACTIONS(5025), 2, anon_sym_true, anon_sym_false, - ACTIONS(4842), 2, + ACTIONS(5046), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2279), 2, + STATE(2321), 2, sym_comment, aux_sym__match_pattern_list_repeat1, - STATE(3524), 2, + STATE(3590), 2, sym__match_pattern_value, sym_val_range, - ACTIONS(4827), 3, + ACTIONS(5031), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(4830), 3, + ACTIONS(5034), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(4833), 3, + ACTIONS(5037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3521), 4, + STATE(3600), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(3527), 8, + STATE(3603), 7, sym_val_nothing, sym_val_bool, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, - sym_val_record, sym_val_table, - [102551] = 15, + [104173] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(2052), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4850), 1, + ACTIONS(5054), 1, anon_sym_LT, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4854), 1, + ACTIONS(5058), 1, anon_sym_EQ2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2280), 1, + STATE(2322), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2477), 1, + STATE(2595), 1, sym__immediate_decimal, - STATE(2478), 2, + STATE(2593), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1957), 37, + ACTIONS(2050), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -279441,37 +284805,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [102634] = 15, + [104256] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2005), 1, + ACTIONS(2060), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4759), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4767), 1, + ACTIONS(5056), 1, + anon_sym_DOT2, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4769), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4771), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - ACTIONS(4862), 1, + ACTIONS(5066), 1, anon_sym_LT, - ACTIONS(4864), 1, - anon_sym_DOT2, - ACTIONS(4866), 1, + ACTIONS(5068), 1, anon_sym_EQ2, - STATE(2281), 1, + STATE(2323), 1, sym_comment, - STATE(2327), 1, + STATE(2369), 1, sym__var, - STATE(2426), 1, + STATE(2597), 1, sym__immediate_decimal, - STATE(2424), 2, + STATE(2596), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2003), 37, + ACTIONS(2058), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -279509,301 +284873,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [102717] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(4868), 1, - anon_sym_LBRACK, - ACTIONS(4870), 1, - anon_sym_DASH, - ACTIONS(4872), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_RBRACE, - ACTIONS(4876), 1, - anon_sym__, - ACTIONS(4878), 1, - anon_sym_DOT, - ACTIONS(4880), 1, - anon_sym_PLUS, - ACTIONS(4882), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4886), 1, - sym_val_date, - STATE(727), 1, - sym__val_number_decimal, - STATE(740), 1, - sym_val_number, - STATE(743), 1, - sym__val_number, - STATE(2282), 1, - sym_comment, - STATE(2294), 1, - aux_sym_ctrl_match_repeat1, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3563), 1, - sym_match_arm, - STATE(4697), 1, - sym__match_pattern_expression, - STATE(4931), 1, - sym_expr_parenthesized, - STATE(4941), 1, - sym_val_variable, - STATE(5399), 1, - sym__match_pattern_list, - STATE(5449), 1, - sym__expr_unary_minus, - STATE(5967), 1, - sym_match_pattern, - STATE(5997), 1, - sym_default_arm, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - STATE(5394), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4884), 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(5389), 8, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_record, - sym_val_table, - [102840] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(4868), 1, - anon_sym_LBRACK, - ACTIONS(4870), 1, - anon_sym_DASH, - ACTIONS(4872), 1, - anon_sym_LBRACE, - ACTIONS(4876), 1, - anon_sym__, - ACTIONS(4878), 1, - anon_sym_DOT, - ACTIONS(4880), 1, - anon_sym_PLUS, - ACTIONS(4882), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4886), 1, - sym_val_date, - ACTIONS(4888), 1, - anon_sym_RBRACE, - STATE(727), 1, - sym__val_number_decimal, - STATE(740), 1, - sym_val_number, - STATE(743), 1, - sym__val_number, - STATE(2283), 1, - sym_comment, - STATE(2294), 1, - aux_sym_ctrl_match_repeat1, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3563), 1, - sym_match_arm, - STATE(4697), 1, - sym__match_pattern_expression, - STATE(4931), 1, - sym_expr_parenthesized, - STATE(4941), 1, - sym_val_variable, - STATE(5399), 1, - sym__match_pattern_list, - STATE(5449), 1, - sym__expr_unary_minus, - STATE(5967), 1, - sym_match_pattern, - STATE(6082), 1, - sym_default_arm, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - STATE(5394), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4884), 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(5389), 8, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_record, - sym_val_table, - [102963] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(4868), 1, - anon_sym_LBRACK, - ACTIONS(4870), 1, - anon_sym_DASH, - ACTIONS(4872), 1, - anon_sym_LBRACE, - ACTIONS(4876), 1, - anon_sym__, - ACTIONS(4878), 1, - anon_sym_DOT, - ACTIONS(4880), 1, - anon_sym_PLUS, - ACTIONS(4882), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4886), 1, - sym_val_date, - ACTIONS(4890), 1, - anon_sym_RBRACE, - STATE(727), 1, - sym__val_number_decimal, - STATE(740), 1, - sym_val_number, - STATE(743), 1, - sym__val_number, - STATE(2282), 1, - aux_sym_ctrl_match_repeat1, - STATE(2284), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3563), 1, - sym_match_arm, - STATE(4697), 1, - sym__match_pattern_expression, - STATE(4931), 1, - sym_expr_parenthesized, - STATE(4941), 1, - sym_val_variable, - STATE(5399), 1, - sym__match_pattern_list, - STATE(5449), 1, - sym__expr_unary_minus, - STATE(5967), 1, - sym_match_pattern, - STATE(5977), 1, - sym_default_arm, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - STATE(5394), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4884), 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(5389), 8, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_record, - sym_val_table, - [103086] = 15, + [104339] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1997), 1, + ACTIONS(2026), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - ACTIONS(4892), 1, + ACTIONS(5070), 1, anon_sym_LT, - ACTIONS(4894), 1, + ACTIONS(5072), 1, anon_sym_EQ2, - STATE(2285), 1, + STATE(2324), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2543), 1, + STATE(2592), 1, sym__immediate_decimal, - STATE(2469), 2, + STATE(2591), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1995), 37, + ACTIONS(2024), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -279841,37 +284941,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [103169] = 15, + [104422] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2013), 1, + ACTIONS(2068), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, - anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(4916), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(4918), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(4920), 1, anon_sym_PLUS2, - ACTIONS(4896), 1, + ACTIONS(5074), 1, anon_sym_LT, - ACTIONS(4898), 1, + ACTIONS(5076), 1, + anon_sym_DOT2, + ACTIONS(5078), 1, anon_sym_EQ2, - STATE(2286), 1, + STATE(2325), 1, sym_comment, - STATE(2330), 1, + STATE(2366), 1, sym__var, - STATE(2483), 1, + STATE(2437), 1, sym__immediate_decimal, - STATE(2484), 2, + STATE(2432), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2011), 37, + ACTIONS(2066), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -279909,37 +285009,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [103252] = 15, + [104505] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1979), 1, + ACTIONS(2034), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4759), 1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, + ACTIONS(4918), 1, anon_sym_DASH2, - ACTIONS(4771), 1, + ACTIONS(4920), 1, anon_sym_PLUS2, - ACTIONS(4864), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(4900), 1, + ACTIONS(5080), 1, anon_sym_LT, - ACTIONS(4902), 1, + ACTIONS(5082), 1, anon_sym_EQ2, - ACTIONS(4904), 1, + ACTIONS(5084), 1, aux_sym__immediate_decimal_token1, - STATE(2287), 1, + STATE(2326), 1, sym_comment, - STATE(2327), 1, + STATE(2366), 1, sym__var, - STATE(2430), 1, + STATE(2439), 1, sym__immediate_decimal, - STATE(2428), 2, + STATE(2438), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1977), 37, + ACTIONS(2032), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -279977,37 +285077,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [103335] = 15, + [104588] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2021), 1, + ACTIONS(2006), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - ACTIONS(4906), 1, + ACTIONS(5086), 1, anon_sym_LT, - ACTIONS(4908), 1, + ACTIONS(5088), 1, anon_sym_EQ2, - STATE(2288), 1, + STATE(2327), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2494), 1, + STATE(2590), 1, sym__immediate_decimal, - STATE(2495), 2, + STATE(2589), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2019), 37, + ACTIONS(2004), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -280045,123 +285145,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [103418] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(4868), 1, - anon_sym_LBRACK, - ACTIONS(4870), 1, - anon_sym_DASH, - ACTIONS(4872), 1, - anon_sym_LBRACE, - ACTIONS(4876), 1, - anon_sym__, - ACTIONS(4878), 1, - anon_sym_DOT, - ACTIONS(4880), 1, - anon_sym_PLUS, - ACTIONS(4882), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4886), 1, - sym_val_date, - ACTIONS(4910), 1, - anon_sym_RBRACE, - STATE(727), 1, - sym__val_number_decimal, - STATE(740), 1, - sym_val_number, - STATE(743), 1, - sym__val_number, - STATE(2283), 1, - aux_sym_ctrl_match_repeat1, - STATE(2289), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3563), 1, - sym_match_arm, - STATE(4697), 1, - sym__match_pattern_expression, - STATE(4931), 1, - sym_expr_parenthesized, - STATE(4941), 1, - sym_val_variable, - STATE(5399), 1, - sym__match_pattern_list, - STATE(5449), 1, - sym__expr_unary_minus, - STATE(5964), 1, - sym_default_arm, - STATE(5967), 1, - sym_match_pattern, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, - anon_sym_true, - anon_sym_false, - STATE(5394), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4884), 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(5389), 8, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_record, - sym_val_table, - [103541] = 14, + [104671] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1497), 1, + ACTIONS(1547), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - ACTIONS(4912), 1, + ACTIONS(5090), 1, aux_sym_unquoted_token5, - STATE(2290), 1, + STATE(2328), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2591), 1, + STATE(2554), 1, sym__immediate_decimal, - STATE(2592), 2, + STATE(2553), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1495), 37, + ACTIONS(1545), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -280199,42 +285211,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [103621] = 14, + [104751] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1497), 1, - anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5094), 1, + anon_sym_LT, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5098), 1, + anon_sym_EQ2, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - ACTIONS(4912), 1, - aux_sym_unquoted_token5, - STATE(2291), 1, + STATE(2329), 1, sym_comment, - STATE(2330), 1, + STATE(2395), 1, sym__var, - STATE(2446), 1, + STATE(2730), 1, sym__immediate_decimal, - STATE(2595), 2, + ACTIONS(2060), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2733), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1495), 37, + ACTIONS(2058), 35, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -280265,38 +285278,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [103701] = 15, + [104833] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4777), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5096), 1, + anon_sym_DOT2, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4787), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4789), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - ACTIONS(4914), 1, + ACTIONS(5106), 1, anon_sym_LT, - ACTIONS(4916), 1, - anon_sym_DOT2, - ACTIONS(4918), 1, + ACTIONS(5108), 1, anon_sym_EQ2, - STATE(2292), 1, + STATE(2330), 1, sym_comment, - STATE(2375), 1, + STATE(2395), 1, sym__var, - STATE(2490), 1, + STATE(2743), 1, sym__immediate_decimal, - ACTIONS(2005), 2, + ACTIONS(2006), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2491), 2, + STATE(2749), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2003), 35, + ACTIONS(2004), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -280332,43 +285345,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [103783] = 15, + [104915] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(1547), 1, + anon_sym_LF, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4777), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4787), 1, - anon_sym_DASH2, - ACTIONS(4789), 1, - anon_sym_PLUS2, - ACTIONS(4916), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4920), 1, - anon_sym_LT, - ACTIONS(4922), 1, - anon_sym_EQ2, - ACTIONS(4924), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - STATE(2293), 1, + ACTIONS(5062), 1, + anon_sym_DASH2, + ACTIONS(5064), 1, + anon_sym_PLUS2, + ACTIONS(5090), 1, + aux_sym_unquoted_token5, + STATE(2331), 1, sym_comment, - STATE(2375), 1, + STATE(2369), 1, sym__var, - STATE(2487), 1, + STATE(2549), 1, sym__immediate_decimal, - ACTIONS(1979), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2489), 2, + STATE(2548), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1977), 35, + ACTIONS(1545), 37, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -280399,123 +285411,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [103865] = 33, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4926), 1, - anon_sym_LBRACK, - ACTIONS(4929), 1, - anon_sym_LPAREN, - ACTIONS(4932), 1, - anon_sym_DOLLAR, - ACTIONS(4935), 1, - anon_sym_DASH, - ACTIONS(4938), 1, - anon_sym_LBRACE, - ACTIONS(4941), 1, - anon_sym_RBRACE, - ACTIONS(4943), 1, - anon_sym__, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4948), 1, - anon_sym_PLUS, - ACTIONS(4951), 1, - anon_sym_null, - ACTIONS(4957), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4966), 1, - sym_val_date, - ACTIONS(4969), 1, - anon_sym_DQUOTE, - STATE(727), 1, - sym__val_number_decimal, - STATE(740), 1, - sym_val_number, - STATE(743), 1, - sym__val_number, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(3563), 1, - sym_match_arm, - STATE(4697), 1, - sym__match_pattern_expression, - STATE(4931), 1, - sym_expr_parenthesized, - STATE(4941), 1, - sym_val_variable, - STATE(5399), 1, - sym__match_pattern_list, - STATE(5449), 1, - sym__expr_unary_minus, - STATE(5967), 1, - sym_match_pattern, - ACTIONS(4954), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4972), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2294), 2, - sym_comment, - aux_sym_ctrl_match_repeat1, - STATE(5394), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(4963), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4960), 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(5389), 8, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_record, - sym_val_table, - [103983] = 15, + [104995] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4977), 1, - anon_sym_LT, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4981), 1, - anon_sym_EQ2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2295), 1, + ACTIONS(5110), 1, + anon_sym_LT, + ACTIONS(5112), 1, + anon_sym_EQ2, + STATE(2332), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2650), 1, + STATE(2739), 1, sym__immediate_decimal, - ACTIONS(2021), 2, + ACTIONS(2026), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2649), 2, + STATE(2729), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2019), 35, + ACTIONS(2024), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -280551,38 +285478,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104065] = 15, + [105077] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - ACTIONS(4989), 1, + ACTIONS(5114), 1, anon_sym_LT, - ACTIONS(4991), 1, + ACTIONS(5116), 1, anon_sym_EQ2, - STATE(2296), 1, + STATE(2333), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2653), 1, + STATE(2735), 1, sym__immediate_decimal, - ACTIONS(2013), 2, + ACTIONS(2052), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2652), 2, + STATE(2737), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2011), 35, + ACTIONS(2050), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -280618,38 +285545,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104147] = 15, + [105159] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(4981), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, - anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(4989), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4987), 1, - anon_sym_PLUS2, ACTIONS(4993), 1, + anon_sym_PLUS2, + ACTIONS(5118), 1, anon_sym_LT, - ACTIONS(4995), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + ACTIONS(5122), 1, anon_sym_EQ2, - STATE(2297), 1, + STATE(2334), 1, sym_comment, - STATE(2353), 1, + STATE(2410), 1, sym__var, - STATE(2655), 1, + STATE(2510), 1, sym__immediate_decimal, - ACTIONS(1959), 2, + ACTIONS(2068), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2608), 2, + STATE(2513), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1957), 35, + ACTIONS(2066), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -280685,38 +285612,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104229] = 15, + [105241] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(4981), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, - anon_sym_DOT2, - ACTIONS(4983), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(4993), 1, anon_sym_PLUS2, - ACTIONS(4997), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + ACTIONS(5124), 1, anon_sym_LT, - ACTIONS(4999), 1, + ACTIONS(5126), 1, anon_sym_EQ2, - STATE(2298), 1, + ACTIONS(5128), 1, + aux_sym__immediate_decimal_token1, + STATE(2335), 1, sym_comment, - STATE(2353), 1, + STATE(2410), 1, sym__var, - STATE(2658), 1, + STATE(2508), 1, sym__immediate_decimal, - ACTIONS(1997), 2, + ACTIONS(2034), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2657), 2, + STATE(2509), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1995), 35, + ACTIONS(2032), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -280752,40 +285679,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104311] = 13, + [105323] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2103), 1, - anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2299), 1, + ACTIONS(5130), 1, + aux_sym_unquoted_token5, + STATE(2336), 1, sym_comment, - STATE(2330), 1, + STATE(2395), 1, sym__var, - STATE(2488), 1, + STATE(2671), 1, sym__immediate_decimal, - STATE(2593), 2, + ACTIONS(1547), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2673), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2101), 37, + ACTIONS(1545), 35, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -280816,41 +285744,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104388] = 14, + [105402] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2138), 1, + anon_sym_LF, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - ACTIONS(5001), 1, - aux_sym_unquoted_token5, - STATE(2300), 1, + STATE(2337), 1, sym_comment, - STATE(2353), 1, + STATE(2369), 1, sym__var, - STATE(2700), 1, + STATE(2612), 1, sym__immediate_decimal, - ACTIONS(1497), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2713), 2, + STATE(2610), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1495), 35, + ACTIONS(2136), 37, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -280881,33 +285808,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104467] = 13, + [105479] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2095), 1, + ACTIONS(2134), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2301), 1, + STATE(2338), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2560), 1, + STATE(2622), 1, sym__immediate_decimal, - STATE(2561), 2, + STATE(2618), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 37, + ACTIONS(2132), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -280945,33 +285872,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104544] = 13, + [105556] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2162), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2302), 1, + STATE(2339), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2569), 1, + STATE(2563), 1, sym__immediate_decimal, - STATE(2575), 2, + STATE(2562), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2081), 37, + ACTIONS(2160), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -281009,33 +285936,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104621] = 13, + [105633] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(2146), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2303), 1, + STATE(2340), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2577), 1, + STATE(2614), 1, sym__immediate_decimal, - STATE(2581), 2, + STATE(2613), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2097), 37, + ACTIONS(2144), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -281073,33 +286000,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104698] = 13, + [105710] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2150), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2304), 1, + STATE(2341), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2574), 1, + STATE(2608), 1, sym__immediate_decimal, - STATE(2571), 2, + STATE(2607), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 37, + ACTIONS(2148), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -281137,40 +286064,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104775] = 13, + [105787] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2135), 1, - anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2305), 1, + ACTIONS(5130), 1, + aux_sym_unquoted_token5, + STATE(2342), 1, sym_comment, - STATE(2330), 1, + STATE(2395), 1, sym__var, - STATE(2589), 1, + STATE(2677), 1, sym__immediate_decimal, - STATE(2579), 2, + ACTIONS(1547), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2678), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2133), 37, + ACTIONS(1545), 35, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -281201,33 +286129,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104852] = 13, + [105866] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2107), 1, + ACTIONS(2154), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2306), 1, + STATE(2343), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2567), 1, + STATE(2606), 1, sym__immediate_decimal, - STATE(2563), 2, + STATE(2603), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2105), 37, + ACTIONS(2152), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -281265,33 +286193,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [104929] = 13, + [105943] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2119), 1, + ACTIONS(2158), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2307), 1, + STATE(2344), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2555), 1, + STATE(2602), 1, sym__immediate_decimal, - STATE(2544), 2, + STATE(2601), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2117), 37, + ACTIONS(2156), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -281329,41 +286257,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105006] = 14, + [106020] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2174), 1, + anon_sym_LF, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - ACTIONS(5001), 1, - aux_sym_unquoted_token5, - STATE(2308), 1, + STATE(2345), 1, sym_comment, - STATE(2353), 1, + STATE(2369), 1, sym__var, - STATE(2716), 1, + STATE(2627), 1, sym__immediate_decimal, - ACTIONS(1497), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2714), 2, + STATE(2564), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1495), 35, + ACTIONS(2172), 37, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -281394,33 +286321,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105085] = 13, + [106097] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2123), 1, + ACTIONS(2182), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2309), 1, + STATE(2346), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2536), 1, + STATE(2617), 1, sym__immediate_decimal, - STATE(2537), 2, + STATE(2616), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2121), 37, + ACTIONS(2180), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -281458,33 +286385,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105162] = 13, + [106174] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2127), 1, + ACTIONS(2130), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2310), 1, + STATE(2347), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2538), 1, + STATE(2482), 1, sym__immediate_decimal, - STATE(2540), 2, + STATE(2566), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2125), 37, + ACTIONS(2128), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -281522,33 +286449,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105239] = 13, + [106251] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2131), 1, + ACTIONS(2178), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2311), 1, + STATE(2348), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2557), 1, + STATE(2600), 1, sym__immediate_decimal, - STATE(2562), 2, + STATE(2599), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2129), 37, + ACTIONS(2176), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -281586,33 +286513,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105316] = 13, + [106328] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2087), 1, + ACTIONS(2142), 1, anon_sym_LF, - ACTIONS(2153), 1, + ACTIONS(2208), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4852), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(4856), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(4860), 1, + ACTIONS(5064), 1, anon_sym_PLUS2, - STATE(2312), 1, + STATE(2349), 1, sym_comment, - STATE(2330), 1, + STATE(2369), 1, sym__var, - STATE(2548), 1, + STATE(2568), 1, sym__immediate_decimal, - STATE(2554), 2, + STATE(2567), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2085), 37, + ACTIONS(2140), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -281650,34 +286577,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105393] = 13, + [106405] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2313), 1, + STATE(2350), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2681), 1, + STATE(2720), 1, sym__immediate_decimal, - ACTIONS(2091), 2, + ACTIONS(2146), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2680), 2, + STATE(2710), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 35, + ACTIONS(2144), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -281713,34 +286640,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105469] = 13, + [106481] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2314), 1, + STATE(2351), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2661), 1, + STATE(2657), 1, sym__immediate_decimal, - ACTIONS(2127), 2, + ACTIONS(2130), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2685), 2, + STATE(2655), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2125), 35, + ACTIONS(2128), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -281776,34 +286703,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105545] = 13, + [106557] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2315), 1, + STATE(2352), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2612), 1, + STATE(2721), 1, sym__immediate_decimal, - ACTIONS(2123), 2, + ACTIONS(2154), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2670), 2, + STATE(2723), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2121), 35, + ACTIONS(2152), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -281839,34 +286766,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105621] = 13, + [106633] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2316), 1, - sym_comment, STATE(2353), 1, + sym_comment, + STATE(2395), 1, sym__var, - STATE(2697), 1, + STATE(2725), 1, sym__immediate_decimal, - ACTIONS(2083), 2, + ACTIONS(2158), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2696), 2, + STATE(2708), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2081), 35, + ACTIONS(2156), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -281902,34 +286829,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105697] = 13, + [106709] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2317), 1, + STATE(2354), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2694), 1, + STATE(2659), 1, sym__immediate_decimal, - ACTIONS(2099), 2, + ACTIONS(2142), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2693), 2, + STATE(2658), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2097), 35, + ACTIONS(2140), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -281965,34 +286892,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105773] = 13, + [106785] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2318), 1, + STATE(2355), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2691), 1, + STATE(2701), 1, sym__immediate_decimal, - ACTIONS(2103), 2, + ACTIONS(2134), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2690), 2, + STATE(2702), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2101), 35, + ACTIONS(2132), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -282028,34 +286955,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105849] = 13, + [106861] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2319), 1, + STATE(2356), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2687), 1, + STATE(2727), 1, sym__immediate_decimal, - ACTIONS(2135), 2, + ACTIONS(2178), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2686), 2, + STATE(2666), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2133), 35, + ACTIONS(2176), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -282091,34 +287018,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [105925] = 13, + [106937] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2320), 1, + STATE(2357), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2651), 1, + STATE(2716), 1, sym__immediate_decimal, - ACTIONS(2131), 2, + ACTIONS(2150), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2638), 2, + STATE(2718), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2129), 35, + ACTIONS(2148), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -282154,34 +287081,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106001] = 13, + [107013] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4092), 1, + anon_sym_null, + ACTIONS(4152), 1, + aux_sym_unquoted_token1, + ACTIONS(4832), 1, + anon_sym_LBRACK, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(4852), 1, + sym_val_date, + ACTIONS(5132), 1, + anon_sym_DASH, + ACTIONS(5134), 1, + anon_sym_DOT, + ACTIONS(5136), 1, + anon_sym_PLUS, + ACTIONS(5138), 1, + aux_sym__val_number_decimal_token1, + STATE(750), 1, + sym__val_number_decimal, + STATE(763), 1, + sym__val_number, + STATE(765), 1, + sym_val_number, + STATE(2358), 1, + sym_comment, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2865), 1, + sym__var, + STATE(5459), 1, + sym_val_variable, + STATE(5460), 1, + sym_expr_parenthesized, + STATE(5488), 1, + sym_unquoted, + STATE(5489), 1, + sym__expr_unary_minus, + STATE(5500), 1, + sym__match_pattern_record, + STATE(5507), 1, + sym__match_pattern_list, + STATE(5513), 1, + sym__match_pattern_expression, + STATE(5553), 1, + sym__match_pattern, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + STATE(5512), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(4098), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4848), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5140), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5471), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [107131] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2321), 1, + STATE(2359), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2683), 1, + STATE(2654), 1, sym__immediate_decimal, - ACTIONS(2087), 2, + ACTIONS(2174), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2667), 2, + STATE(2661), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2085), 35, + ACTIONS(2172), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -282217,34 +287228,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106077] = 13, + [107207] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2322), 1, + STATE(2360), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2669), 1, + STATE(2649), 1, sym__immediate_decimal, - ACTIONS(2119), 2, + ACTIONS(2162), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2596), 2, + STATE(2648), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2117), 35, + ACTIONS(2160), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -282280,34 +287291,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106153] = 13, + [107283] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2323), 1, + STATE(2361), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2701), 1, + STATE(2711), 1, sym__immediate_decimal, - ACTIONS(2095), 2, + ACTIONS(2138), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2699), 2, + STATE(2712), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 35, + ACTIONS(2136), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -282343,39 +287354,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106229] = 13, + [107359] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(4975), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(4983), 1, + ACTIONS(5100), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4985), 1, + ACTIONS(5102), 1, anon_sym_DASH2, - ACTIONS(4987), 1, + ACTIONS(5104), 1, anon_sym_PLUS2, - STATE(2324), 1, + STATE(2362), 1, sym_comment, - STATE(2353), 1, + STATE(2395), 1, sym__var, - STATE(2679), 1, + STATE(2703), 1, sym__immediate_decimal, - ACTIONS(2107), 2, + ACTIONS(2182), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2677), 2, + STATE(2704), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2105), 35, + ACTIONS(2180), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [107435] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1465), 1, + anon_sym_LF, + ACTIONS(5142), 1, + anon_sym_DOT2, + STATE(2363), 1, + sym_comment, + STATE(2364), 1, + sym_path, + STATE(2492), 1, + sym_cell_path, + ACTIONS(1463), 39, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -282406,95 +287470,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106305] = 29, - ACTIONS(3), 1, + [107495] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(3972), 1, - anon_sym_LPAREN, - ACTIONS(3986), 1, - anon_sym_null, - ACTIONS(4868), 1, + ACTIONS(1396), 1, + anon_sym_LF, + ACTIONS(5142), 1, + anon_sym_DOT2, + STATE(2364), 1, + sym_comment, + STATE(2374), 1, + aux_sym_cell_path_repeat1, + STATE(2446), 1, + sym_path, + ACTIONS(1394), 39, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4870), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(4872), 1, anon_sym_LBRACE, - ACTIONS(4880), 1, - anon_sym_PLUS, - ACTIONS(4882), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4886), 1, - sym_val_date, - ACTIONS(5003), 1, + anon_sym_RBRACE, anon_sym_DOT, - STATE(740), 1, - sym_val_number, - STATE(742), 1, - sym__val_number_decimal, - STATE(743), 1, - sym__val_number, - STATE(2325), 1, - sym_comment, - STATE(2728), 1, - sym__str_double_quotes, - STATE(2775), 1, - sym__var, - STATE(5390), 1, - sym_expr_parenthesized, - STATE(5392), 1, - sym_val_variable, - STATE(5399), 1, - sym__match_pattern_list, - STATE(5449), 1, - sym__expr_unary_minus, - STATE(5494), 1, - sym__match_pattern_expression, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3988), 2, + anon_sym_PLUS, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(5394), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3992), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4884), 6, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5389), 8, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_record, - sym_val_table, - [106410] = 6, + anon_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, + aux_sym_unquoted_token1, + [107555] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2326), 1, - sym_comment, - STATE(2337), 1, - aux_sym_cell_path_repeat1, - STATE(2395), 1, - sym_path, - ACTIONS(1438), 2, + ACTIONS(1402), 1, anon_sym_LF, + ACTIONS(5144), 1, anon_sym_DOT2, - ACTIONS(1436), 39, + STATE(2365), 1, + sym_comment, + STATE(2367), 1, + sym_path, + STATE(2429), 1, + sym_cell_path, + ACTIONS(1400), 39, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -282534,20 +287576,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [106468] = 7, + [107615] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1397), 1, + ACTIONS(1402), 1, anon_sym_LF, - ACTIONS(5005), 1, + ACTIONS(5147), 1, anon_sym_DOT2, - STATE(2327), 1, + STATE(2366), 1, sym_comment, - STATE(2329), 1, + STATE(2384), 1, sym_path, - STATE(2412), 1, + STATE(2465), 1, sym_cell_path, - ACTIONS(1395), 39, + ACTIONS(1400), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282587,20 +287629,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106528] = 7, + [107675] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1442), 1, + ACTIONS(1396), 1, anon_sym_LF, - ACTIONS(5008), 1, + ACTIONS(5150), 1, anon_sym_DOT2, - STATE(2328), 1, + STATE(2367), 1, sym_comment, - STATE(2333), 1, + STATE(2381), 1, aux_sym_cell_path_repeat1, - STATE(2404), 1, + STATE(2458), 1, + sym_path, + ACTIONS(1394), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [107735] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1480), 1, + anon_sym_LF, + ACTIONS(5142), 1, + anon_sym_DOT2, + STATE(2364), 1, sym_path, - ACTIONS(1440), 39, + STATE(2368), 1, + sym_comment, + STATE(2484), 1, + sym_cell_path, + ACTIONS(1478), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282640,20 +287735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106588] = 7, + [107795] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1442), 1, + ACTIONS(1402), 1, anon_sym_LF, - ACTIONS(5008), 1, + ACTIONS(5142), 1, anon_sym_DOT2, - STATE(2329), 1, - sym_comment, - STATE(2348), 1, - aux_sym_cell_path_repeat1, - STATE(2404), 1, + STATE(2364), 1, sym_path, - ACTIONS(1440), 39, + STATE(2369), 1, + sym_comment, + STATE(2585), 1, + sym_cell_path, + ACTIONS(1400), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282693,20 +287788,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106648] = 7, + [107855] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1397), 1, + ACTIONS(1461), 1, anon_sym_LF, - ACTIONS(5008), 1, + ACTIONS(5142), 1, anon_sym_DOT2, - STATE(2328), 1, + STATE(2364), 1, sym_path, - STATE(2330), 1, + STATE(2370), 1, sym_comment, - STATE(2486), 1, + STATE(2488), 1, sym_cell_path, - ACTIONS(1395), 39, + ACTIONS(1459), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282746,20 +287841,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106708] = 7, + [107915] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1428), 1, + ACTIONS(1447), 1, anon_sym_LF, - ACTIONS(5010), 1, - anon_sym_DOT2, - ACTIONS(5012), 1, + ACTIONS(2246), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5014), 1, + ACTIONS(5152), 1, + anon_sym_DOT2, + ACTIONS(5154), 1, aux_sym_unquoted_token2, - STATE(2331), 1, + STATE(2371), 1, sym_comment, - ACTIONS(1426), 39, + ACTIONS(1445), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282799,73 +287894,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106768] = 7, + [107975] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1397), 1, + ACTIONS(1457), 1, anon_sym_LF, - ACTIONS(5016), 1, + ACTIONS(5142), 1, anon_sym_DOT2, - STATE(2332), 1, - sym_comment, - STATE(2342), 1, + STATE(2364), 1, sym_path, - STATE(2440), 1, - sym_cell_path, - ACTIONS(1395), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [106828] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1438), 1, - anon_sym_LF, - ACTIONS(5008), 1, - anon_sym_DOT2, - STATE(2333), 1, + STATE(2372), 1, sym_comment, - STATE(2347), 1, - aux_sym_cell_path_repeat1, - STATE(2404), 1, - sym_path, - ACTIONS(1436), 39, + STATE(2493), 1, + sym_cell_path, + ACTIONS(1455), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282905,19 +287947,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106888] = 6, + [108035] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5019), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5021), 1, - aux_sym__immediate_decimal_token2, - STATE(2334), 1, - sym_comment, - ACTIONS(2808), 2, + ACTIONS(1433), 1, anon_sym_LF, + ACTIONS(5142), 1, anon_sym_DOT2, - ACTIONS(2806), 39, + STATE(2364), 1, + sym_path, + STATE(2373), 1, + sym_comment, + STATE(2504), 1, + sym_cell_path, + ACTIONS(1431), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282957,19 +288000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [106946] = 6, + [108095] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5023), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5025), 1, - aux_sym__immediate_decimal_token2, - STATE(2335), 1, - sym_comment, - ACTIONS(2784), 2, + ACTIONS(1409), 1, anon_sym_LF, + ACTIONS(5142), 1, anon_sym_DOT2, - ACTIONS(2782), 39, + STATE(2374), 1, + sym_comment, + STATE(2383), 1, + aux_sym_cell_path_repeat1, + STATE(2446), 1, + sym_path, + ACTIONS(1407), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283009,20 +288053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107004] = 7, + [108155] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1428), 1, + ACTIONS(1476), 1, anon_sym_LF, - ACTIONS(2139), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5010), 1, + ACTIONS(5142), 1, anon_sym_DOT2, - ACTIONS(5014), 1, - aux_sym_unquoted_token2, - STATE(2336), 1, + STATE(2364), 1, + sym_path, + STATE(2375), 1, sym_comment, - ACTIONS(1426), 39, + STATE(2507), 1, + sym_cell_path, + ACTIONS(1474), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283062,19 +288106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107064] = 6, + [108215] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1389), 1, anon_sym_LF, - ACTIONS(5027), 1, + ACTIONS(5156), 1, anon_sym_DOT2, - STATE(2395), 1, + STATE(2458), 1, sym_path, - STATE(2337), 2, + STATE(2376), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(1411), 39, + ACTIONS(1387), 39, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -283114,20 +288158,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [107122] = 7, + [108273] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1420), 1, + ACTIONS(1447), 1, anon_sym_LF, - ACTIONS(5008), 1, + ACTIONS(5152), 1, anon_sym_DOT2, - STATE(2328), 1, - sym_path, - STATE(2338), 1, + ACTIONS(5154), 1, + aux_sym_unquoted_token2, + ACTIONS(5159), 1, + aux_sym__immediate_decimal_token1, + STATE(2377), 1, sym_comment, - STATE(2505), 1, - sym_cell_path, - ACTIONS(1418), 39, + ACTIONS(1445), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283167,20 +288211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107182] = 7, + [108333] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1405), 1, + STATE(2378), 1, + sym_comment, + STATE(2383), 1, + aux_sym_cell_path_repeat1, + STATE(2446), 1, + sym_path, + ACTIONS(1409), 2, anon_sym_LF, - ACTIONS(5008), 1, anon_sym_DOT2, - STATE(2328), 1, - sym_path, - STATE(2339), 1, - sym_comment, - STATE(2500), 1, - sym_cell_path, - ACTIONS(1403), 39, + ACTIONS(1407), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283220,20 +288263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107242] = 7, + [108391] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1401), 1, + ACTIONS(5161), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5163), 1, + aux_sym__immediate_decimal_token2, + STATE(2379), 1, + sym_comment, + ACTIONS(2834), 2, anon_sym_LF, - ACTIONS(5030), 1, anon_sym_DOT2, - STATE(2329), 1, - sym_path, - STATE(2340), 1, - sym_comment, - STATE(2433), 1, - sym_cell_path, - ACTIONS(1399), 39, + ACTIONS(2832), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283273,20 +288315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107302] = 7, + [108449] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1391), 1, + ACTIONS(5165), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5167), 1, + aux_sym__immediate_decimal_token2, + STATE(2380), 1, + sym_comment, + ACTIONS(2908), 2, anon_sym_LF, - ACTIONS(5008), 1, anon_sym_DOT2, - STATE(2328), 1, - sym_path, - STATE(2341), 1, - sym_comment, - STATE(2468), 1, - sym_cell_path, - ACTIONS(1389), 39, + ACTIONS(2906), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283326,20 +288367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107362] = 7, + [108507] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_LF, - ACTIONS(5033), 1, - anon_sym_DOT2, - STATE(2326), 1, + STATE(2376), 1, aux_sym_cell_path_repeat1, - STATE(2342), 1, + STATE(2381), 1, sym_comment, - STATE(2395), 1, + STATE(2458), 1, sym_path, - ACTIONS(1440), 39, + ACTIONS(1409), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1407), 39, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -283379,20 +288419,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [107422] = 7, + [108565] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1424), 1, + ACTIONS(1469), 1, anon_sym_LF, - ACTIONS(5008), 1, + ACTIONS(5142), 1, anon_sym_DOT2, - STATE(2328), 1, + STATE(2364), 1, sym_path, - STATE(2343), 1, + STATE(2382), 1, sym_comment, - STATE(2466), 1, + STATE(2523), 1, sym_cell_path, - ACTIONS(1422), 39, + ACTIONS(1467), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283432,20 +288472,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107482] = 7, + [108625] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1409), 1, + ACTIONS(1389), 1, anon_sym_LF, - ACTIONS(5008), 1, + ACTIONS(5169), 1, anon_sym_DOT2, - STATE(2328), 1, + STATE(2446), 1, sym_path, - STATE(2344), 1, + STATE(2383), 2, sym_comment, - STATE(2454), 1, - sym_cell_path, - ACTIONS(1407), 39, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283485,20 +288524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107542] = 7, + [108683] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1401), 1, + ACTIONS(1396), 1, anon_sym_LF, - ACTIONS(5008), 1, + ACTIONS(5142), 1, anon_sym_DOT2, - STATE(2328), 1, - sym_path, - STATE(2345), 1, + STATE(2378), 1, + aux_sym_cell_path_repeat1, + STATE(2384), 1, sym_comment, - STATE(2467), 1, - sym_cell_path, - ACTIONS(1399), 39, + STATE(2446), 1, + sym_path, + ACTIONS(1394), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283538,20 +288577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107602] = 7, + [108743] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1449), 1, + ACTIONS(1469), 1, anon_sym_LF, - ACTIONS(5008), 1, + ACTIONS(5172), 1, anon_sym_DOT2, - STATE(2328), 1, + STATE(2384), 1, sym_path, - STATE(2346), 1, + STATE(2385), 1, sym_comment, - STATE(2452), 1, + STATE(2444), 1, sym_cell_path, - ACTIONS(1447), 39, + ACTIONS(1467), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283591,28 +288630,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107662] = 6, + [108803] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(5035), 1, + ACTIONS(5175), 1, anon_sym_DOT2, - STATE(2404), 1, - sym_path, - STATE(2347), 2, + STATE(2386), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 39, + STATE(2387), 1, + sym_path, + STATE(2641), 1, + sym_cell_path, + ACTIONS(1476), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1474), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -283643,28 +288682,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107720] = 6, + [108862] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2347), 1, - aux_sym_cell_path_repeat1, - STATE(2348), 1, + ACTIONS(5175), 1, + anon_sym_DOT2, + STATE(2387), 1, sym_comment, - STATE(2404), 1, + STATE(2401), 1, + aux_sym_cell_path_repeat1, + STATE(2541), 1, sym_path, - ACTIONS(1438), 2, + ACTIONS(1396), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1436), 39, + ACTIONS(1394), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -283695,26 +288734,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107778] = 5, + [108921] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5038), 1, - anon_sym_QMARK2, - STATE(2349), 1, + ACTIONS(2516), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5177), 1, + anon_sym_DOT2, + ACTIONS(5179), 1, + aux_sym_unquoted_token2, + STATE(2388), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(1447), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1464), 39, + ACTIONS(1445), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -283745,17 +288786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [107833] = 5, + [108980] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_QMARK2, - STATE(2350), 1, + STATE(2389), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(1439), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1464), 39, + ACTIONS(1437), 40, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -283771,6 +288810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -283795,94 +288835,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [107888] = 5, + [109033] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5042), 1, - aux_sym__immediate_decimal_token2, - STATE(2351), 1, + STATE(2390), 1, sym_comment, - ACTIONS(2876), 2, + ACTIONS(1443), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2874), 39, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [107943] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5044), 1, - anon_sym_DOT2, - STATE(2585), 1, - sym_path, - STATE(2352), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 6, + ACTIONS(1441), 40, anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1413), 33, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -283896,125 +288884,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [108000] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5047), 1, - anon_sym_DOT2, - STATE(2353), 1, - sym_comment, - STATE(2354), 1, - sym_path, - STATE(2705), 1, - sym_cell_path, - ACTIONS(1397), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1395), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [108059] = 7, + [109086] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5047), 1, + ACTIONS(5175), 1, anon_sym_DOT2, - STATE(2354), 1, - sym_comment, - STATE(2388), 1, - aux_sym_cell_path_repeat1, - STATE(2578), 1, + STATE(2387), 1, sym_path, - ACTIONS(1442), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1440), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [108118] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5049), 1, - anon_sym_DOT2, - ACTIONS(5051), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5053), 1, - aux_sym_unquoted_token2, - STATE(2355), 1, + STATE(2391), 1, sym_comment, - ACTIONS(1428), 2, + STATE(2752), 1, + sym_cell_path, + ACTIONS(1480), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1426), 37, + ACTIONS(1478), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284052,18 +288936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108177] = 6, + [109145] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2906), 1, + ACTIONS(2936), 1, anon_sym_LF, - ACTIONS(5055), 1, + ACTIONS(5181), 1, anon_sym_DOT2, - ACTIONS(5058), 1, + ACTIONS(5183), 1, aux_sym__immediate_decimal_token2, - STATE(2356), 1, + STATE(2392), 1, sym_comment, - ACTIONS(2904), 39, + ACTIONS(2934), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284103,77 +288987,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108234] = 6, - ACTIONS(105), 1, + [109202] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2808), 1, - anon_sym_LF, - ACTIONS(5021), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5060), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - STATE(2357), 1, + STATE(2628), 1, + sym_path, + STATE(2393), 2, sym_comment, - ACTIONS(2806), 39, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 6, + anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 33, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [108291] = 5, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [109259] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5025), 1, + ACTIONS(5188), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5190), 1, aux_sym__immediate_decimal_token2, - STATE(2358), 1, + STATE(2394), 1, sym_comment, - ACTIONS(2784), 2, + ACTIONS(2908), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2782), 39, + ACTIONS(2906), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -284204,27 +289089,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108346] = 6, + [109316] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2906), 1, - anon_sym_LF, - ACTIONS(5063), 1, + ACTIONS(5175), 1, anon_sym_DOT2, - ACTIONS(5067), 1, - aux_sym__immediate_decimal_token2, - STATE(2359), 1, + STATE(2387), 1, + sym_path, + STATE(2395), 1, sym_comment, - ACTIONS(2904), 39, + STATE(2668), 1, + sym_cell_path, + ACTIONS(1402), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1400), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -284255,20 +289141,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108403] = 6, + [109375] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5069), 1, + ACTIONS(5175), 1, anon_sym_DOT2, - STATE(2578), 1, + STATE(2387), 1, sym_path, - ACTIONS(1413), 2, + STATE(2396), 1, + sym_comment, + STATE(2676), 1, + sym_cell_path, + ACTIONS(1465), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2360), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 37, + ACTIONS(1463), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284306,26 +289193,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108460] = 5, + [109434] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5021), 1, - aux_sym__immediate_decimal_token2, - STATE(2361), 1, + ACTIONS(5175), 1, + anon_sym_DOT2, + STATE(2397), 1, sym_comment, - ACTIONS(2808), 2, + STATE(2424), 1, + aux_sym_cell_path_repeat1, + STATE(2541), 1, + sym_path, + ACTIONS(1396), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2806), 39, + ACTIONS(1394), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -284356,124 +289245,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108515] = 7, - ACTIONS(105), 1, + [109493] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5047), 1, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_RBRACK, + ACTIONS(5196), 1, + anon_sym_LPAREN, + ACTIONS(5198), 1, + anon_sym_LT, + ACTIONS(5202), 1, anon_sym_DOT2, - STATE(2354), 1, - sym_path, - STATE(2362), 1, + ACTIONS(5204), 1, + anon_sym_DOLLAR2, + ACTIONS(5206), 1, + anon_sym_EQ2, + ACTIONS(5208), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5210), 1, + anon_sym_DASH2, + ACTIONS(5212), 1, + anon_sym_PLUS2, + ACTIONS(5214), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5216), 1, + aux_sym__unquoted_in_list_token7, + STATE(2398), 1, sym_comment, - STATE(2611), 1, - sym_cell_path, - ACTIONS(1449), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + STATE(3192), 1, + sym__var, + STATE(3407), 1, + sym__immediate_decimal, + STATE(3408), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(5200), 8, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_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, - aux_sym_unquoted_token1, - [108574] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2360), 1, - aux_sym_cell_path_repeat1, - STATE(2363), 1, - sym_comment, - STATE(2578), 1, - sym_path, - ACTIONS(1438), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1436), 37, - anon_sym_SEMI, + aux_sym__unquoted_in_list_token1, + ACTIONS(5192), 18, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [108631] = 7, + [109576] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5047), 1, + ACTIONS(5175), 1, anon_sym_DOT2, - STATE(2354), 1, + STATE(2387), 1, sym_path, - STATE(2364), 1, + STATE(2399), 1, sym_comment, - STATE(2715), 1, + STATE(2682), 1, sym_cell_path, - ACTIONS(1401), 2, + ACTIONS(1469), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1399), 37, + ACTIONS(1467), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284511,42 +289361,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108690] = 4, - ACTIONS(105), 1, + [109635] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2365), 1, - sym_comment, - ACTIONS(1456), 2, - anon_sym_LF, + ACTIONS(5218), 1, anon_sym_DOT2, - ACTIONS(1454), 40, + STATE(2393), 1, + aux_sym_cell_path_repeat1, + STATE(2400), 1, + sym_comment, + STATE(2628), 1, + sym_path, + ACTIONS(1407), 6, anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1409), 33, anon_sym_SEMI, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -284560,20 +289413,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [108743] = 6, + [109694] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5072), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5074), 1, - aux_sym__immediate_decimal_token2, - STATE(2366), 1, + ACTIONS(5175), 1, + anon_sym_DOT2, + STATE(2401), 1, sym_comment, - ACTIONS(2784), 3, + STATE(2417), 1, + aux_sym_cell_path_repeat1, + STATE(2541), 1, + sym_path, + ACTIONS(1409), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2782), 37, + ACTIONS(1407), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284611,42 +289465,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108800] = 4, - ACTIONS(105), 1, + [109753] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2367), 1, + STATE(2402), 1, sym_comment, - ACTIONS(1477), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1475), 40, + ACTIONS(1437), 6, anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1439), 36, anon_sym_SEMI, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -284660,18 +289514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [108853] = 6, + [109806] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2906), 1, + ACTIONS(2834), 1, anon_sym_LF, - ACTIONS(5076), 1, - anon_sym_DOT2, - ACTIONS(5078), 1, + ACTIONS(5220), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5222), 1, aux_sym__immediate_decimal_token2, - STATE(2368), 1, + STATE(2403), 1, sym_comment, - ACTIONS(2904), 39, + ACTIONS(2832), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284711,28 +289565,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108910] = 7, + [109863] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5047), 1, - anon_sym_DOT2, - STATE(2354), 1, - sym_path, - STATE(2369), 1, + ACTIONS(5224), 1, + aux_sym__immediate_decimal_token2, + STATE(2404), 1, sym_comment, - STATE(2678), 1, - sym_cell_path, - ACTIONS(1405), 2, - ts_builtin_sym_end, + ACTIONS(2986), 2, anon_sym_LF, - ACTIONS(1403), 37, + anon_sym_DOT2, + ACTIONS(2984), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -284763,70 +289615,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [108969] = 7, + [109918] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5047), 1, - anon_sym_DOT2, - STATE(2354), 1, - sym_path, - STATE(2370), 1, + ACTIONS(5226), 1, + anon_sym_QMARK2, + STATE(2405), 1, sym_comment, - STATE(2707), 1, - sym_cell_path, - ACTIONS(1409), 2, - ts_builtin_sym_end, + ACTIONS(1421), 2, anon_sym_LF, - ACTIONS(1407), 37, + anon_sym_DOT2, + ACTIONS(1419), 39, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [109028] = 6, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [109973] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(2908), 1, anon_sym_LF, - ACTIONS(5080), 1, + ACTIONS(5228), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5082), 1, + ACTIONS(5230), 1, aux_sym__immediate_decimal_token2, - STATE(2371), 1, + STATE(2406), 1, sym_comment, - ACTIONS(2806), 39, + ACTIONS(2906), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284866,79 +289716,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109085] = 6, + [110030] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(5226), 1, + anon_sym_QMARK2, + STATE(2407), 1, + sym_comment, + ACTIONS(1421), 2, anon_sym_LF, - ACTIONS(5082), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5084), 1, anon_sym_DOT2, - STATE(2372), 1, - sym_comment, - ACTIONS(2806), 39, + ACTIONS(1419), 39, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [109142] = 7, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [110085] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5047), 1, - anon_sym_DOT2, - STATE(2363), 1, - aux_sym_cell_path_repeat1, - STATE(2373), 1, + ACTIONS(5163), 1, + aux_sym__immediate_decimal_token2, + STATE(2408), 1, sym_comment, - STATE(2578), 1, - sym_path, - ACTIONS(1442), 2, - ts_builtin_sym_end, + ACTIONS(2834), 2, anon_sym_LF, - ACTIONS(1440), 37, + anon_sym_DOT2, + ACTIONS(2832), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -284969,18 +289816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109201] = 6, + [110140] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2784), 1, - anon_sym_LF, - ACTIONS(5086), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5088), 1, - aux_sym__immediate_decimal_token2, - STATE(2374), 1, + ACTIONS(5232), 1, + anon_sym_QMARK2, + STATE(2409), 1, sym_comment, - ACTIONS(2782), 39, + ACTIONS(1421), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1419), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285020,21 +289866,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109258] = 7, + [110195] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5090), 1, + ACTIONS(5234), 1, anon_sym_DOT2, - STATE(2373), 1, + STATE(2397), 1, sym_path, - STATE(2375), 1, + STATE(2410), 1, sym_comment, - STATE(2541), 1, + STATE(2556), 1, sym_cell_path, - ACTIONS(1397), 2, + ACTIONS(1402), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1395), 37, + ACTIONS(1400), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285072,26 +289918,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109317] = 4, + [110254] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2376), 1, + ACTIONS(5177), 1, + anon_sym_DOT2, + ACTIONS(5179), 1, + aux_sym_unquoted_token2, + ACTIONS(5237), 1, + aux_sym__immediate_decimal_token1, + STATE(2411), 1, sym_comment, - ACTIONS(1456), 2, + ACTIONS(1447), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1454), 40, + ACTIONS(1445), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -285121,20 +289970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109370] = 6, + [110313] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5093), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5095), 1, - aux_sym__immediate_decimal_token2, - STATE(2377), 1, + ACTIONS(5239), 1, + anon_sym_DOT2, + STATE(2397), 1, + sym_path, + STATE(2412), 1, sym_comment, - ACTIONS(2808), 3, + STATE(2621), 1, + sym_cell_path, + ACTIONS(1469), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2806), 37, + ACTIONS(1467), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285172,26 +290022,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109427] = 5, + [110372] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5038), 1, - anon_sym_QMARK2, - STATE(2378), 1, + ACTIONS(5175), 1, + anon_sym_DOT2, + STATE(2387), 1, + sym_path, + STATE(2413), 1, sym_comment, - ACTIONS(1466), 2, + STATE(2674), 1, + sym_cell_path, + ACTIONS(1457), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1464), 39, + ACTIONS(1455), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -285222,144 +290074,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109482] = 7, - ACTIONS(3), 1, + [110431] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2352), 1, - aux_sym_cell_path_repeat1, - STATE(2379), 1, + ACTIONS(5232), 1, + anon_sym_QMARK2, + STATE(2414), 1, sym_comment, - STATE(2585), 1, - sym_path, - ACTIONS(1436), 6, - anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1438), 33, + ACTIONS(1421), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1419), 39, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [109541] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5101), 1, - anon_sym_RBRACK, - ACTIONS(5103), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LT, - ACTIONS(5109), 1, - anon_sym_DOT2, - ACTIONS(5111), 1, - anon_sym_DOLLAR2, - ACTIONS(5113), 1, - anon_sym_EQ2, - ACTIONS(5115), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5117), 1, - anon_sym_DASH2, - ACTIONS(5119), 1, - anon_sym_PLUS2, - ACTIONS(5121), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5123), 1, - aux_sym__unquoted_in_list_token7, - STATE(2380), 1, - sym_comment, - STATE(3168), 1, - sym__var, - STATE(3324), 1, - sym__immediate_decimal, - STATE(3320), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(5107), 8, - anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5099), 18, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_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, - [109624] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [110486] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5047), 1, - anon_sym_DOT2, - STATE(2354), 1, - sym_path, - STATE(2381), 1, + ACTIONS(5167), 1, + aux_sym__immediate_decimal_token2, + STATE(2415), 1, sym_comment, - STATE(2708), 1, - sym_cell_path, - ACTIONS(1420), 2, - ts_builtin_sym_end, + ACTIONS(2908), 2, anon_sym_LF, - ACTIONS(1418), 37, + anon_sym_DOT2, + ACTIONS(2906), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -285390,113 +290174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109683] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2382), 1, - sym_comment, - ACTIONS(1475), 6, - anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1477), 36, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [109736] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2383), 1, - sym_comment, - ACTIONS(1454), 6, - anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1456), 36, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [109789] = 4, + [110541] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2384), 1, + STATE(2416), 1, sym_comment, - ACTIONS(1477), 2, + ACTIONS(1443), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1475), 40, + ACTIONS(1441), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285537,21 +290223,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109842] = 7, + [110594] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2592), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5049), 1, + ACTIONS(5242), 1, anon_sym_DOT2, - ACTIONS(5053), 1, - aux_sym_unquoted_token2, - STATE(2385), 1, - sym_comment, - ACTIONS(1428), 2, + STATE(2541), 1, + sym_path, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1426), 37, + STATE(2417), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285589,130 +290274,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [109901] = 5, + [110651] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_QMARK2, - STATE(2386), 1, - sym_comment, - ACTIONS(1466), 2, + ACTIONS(2834), 1, anon_sym_LF, + ACTIONS(5222), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5245), 1, anon_sym_DOT2, - ACTIONS(1464), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [109956] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2379), 1, - aux_sym_cell_path_repeat1, - STATE(2387), 1, - sym_comment, - STATE(2585), 1, - sym_path, - ACTIONS(1440), 6, - anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1442), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [110015] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5047), 1, - anon_sym_DOT2, - STATE(2360), 1, - aux_sym_cell_path_repeat1, - STATE(2388), 1, + STATE(2418), 1, sym_comment, - STATE(2578), 1, - sym_path, - ACTIONS(1438), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1436), 37, + ACTIONS(2832), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -285743,21 +290325,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110074] = 7, + [110708] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5047), 1, - anon_sym_DOT2, - STATE(2354), 1, - sym_path, - STATE(2389), 1, + ACTIONS(5247), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5249), 1, + aux_sym__immediate_decimal_token2, + STATE(2419), 1, sym_comment, - STATE(2618), 1, - sym_cell_path, - ACTIONS(1424), 2, + ACTIONS(2834), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1422), 37, + anon_sym_DOT2, + ACTIONS(2832), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285795,21 +290376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110133] = 7, + [110765] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5047), 1, + ACTIONS(5175), 1, anon_sym_DOT2, - STATE(2354), 1, + STATE(2387), 1, sym_path, - STATE(2390), 1, + STATE(2420), 1, sym_comment, - STATE(2606), 1, + STATE(2650), 1, sym_cell_path, - ACTIONS(1391), 2, + ACTIONS(1461), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1389), 37, + ACTIONS(1459), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285847,28 +290428,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110192] = 7, + [110824] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(2936), 1, + anon_sym_LF, + ACTIONS(5251), 1, anon_sym_DOT2, - STATE(2373), 1, - sym_path, - STATE(2391), 1, + ACTIONS(5255), 1, + aux_sym__immediate_decimal_token2, + STATE(2421), 1, sym_comment, - STATE(2584), 1, - sym_cell_path, - ACTIONS(1401), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1399), 37, + ACTIONS(2934), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -285899,74 +290479,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110251] = 4, + [110881] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2392), 1, - sym_comment, - ACTIONS(1513), 2, + ACTIONS(2936), 1, anon_sym_LF, + ACTIONS(5257), 1, anon_sym_DOT2, - ACTIONS(1511), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [110303] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5130), 1, + ACTIONS(5260), 1, aux_sym__immediate_decimal_token2, - STATE(2393), 1, + STATE(2422), 1, sym_comment, - ACTIONS(2808), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2806), 37, + ACTIONS(2934), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -285997,16 +290530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110359] = 5, + [110938] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2784), 1, + ACTIONS(2834), 1, anon_sym_LF, - ACTIONS(5088), 1, + ACTIONS(5163), 1, aux_sym__immediate_decimal_token2, - STATE(2394), 1, + ACTIONS(5262), 1, + anon_sym_DOT2, + STATE(2423), 1, sym_comment, - ACTIONS(2782), 39, + ACTIONS(2832), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286046,67 +290581,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110413] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2395), 1, - sym_comment, - ACTIONS(1487), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1485), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [110465] = 6, + [110995] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5132), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5134), 1, - aux_sym__immediate_decimal_token2, - STATE(2396), 1, + STATE(2417), 1, + aux_sym_cell_path_repeat1, + STATE(2424), 1, sym_comment, - ACTIONS(2784), 2, + STATE(2541), 1, + sym_path, + ACTIONS(1409), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2782), 37, + anon_sym_DOT2, + ACTIONS(1407), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286144,82 +290632,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110521] = 17, + [111052] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5103), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LT, - ACTIONS(5109), 1, + ACTIONS(5218), 1, anon_sym_DOT2, - ACTIONS(5113), 1, - anon_sym_EQ2, - ACTIONS(5115), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5117), 1, - anon_sym_DASH2, - ACTIONS(5119), 1, - anon_sym_PLUS2, - ACTIONS(5121), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5123), 1, - aux_sym__unquoted_in_list_token7, - STATE(2397), 1, - sym_comment, - STATE(3168), 1, - sym__var, - STATE(3324), 1, - sym__immediate_decimal, - STATE(3320), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(5107), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5099), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [110599] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5136), 1, - anon_sym_QMARK2, - STATE(2398), 1, + STATE(2400), 1, + aux_sym_cell_path_repeat1, + STATE(2425), 1, sym_comment, - ACTIONS(1464), 6, + STATE(2628), 1, + sym_path, + ACTIONS(1394), 6, anon_sym_EQ, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1466), 34, + ACTIONS(1396), 33, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, @@ -286232,7 +290663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -286254,77 +290684,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [110653] = 7, - ACTIONS(3), 1, + [111111] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5142), 1, - aux_sym_unquoted_token6, - STATE(2399), 1, - sym_comment, - ACTIONS(5138), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(5140), 2, + ACTIONS(5175), 1, anon_sym_DOT2, - aux_sym_unquoted_token4, - ACTIONS(1369), 12, - sym_identifier, - anon_sym_GT, + STATE(2387), 1, + sym_path, + STATE(2426), 1, + sym_comment, + STATE(2637), 1, + sym_cell_path, + ACTIONS(1433), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1431), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1371), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [110711] = 5, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [111170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5136), 1, - anon_sym_QMARK2, - STATE(2400), 1, + STATE(2427), 1, sym_comment, - ACTIONS(1464), 6, + ACTIONS(1441), 6, anon_sym_EQ, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1466), 34, + ACTIONS(1443), 36, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_in, @@ -286333,6 +290763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -286354,16 +290785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [110765] = 5, + [111223] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2625), 1, - anon_sym_DOT2, - ACTIONS(5146), 1, - anon_sym_LF, - STATE(2401), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5144), 39, + ACTIONS(1439), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1437), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286374,6 +290804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -286403,15 +290834,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110819] = 4, + [111276] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2402), 1, + STATE(2429), 1, sym_comment, - ACTIONS(1513), 2, + ACTIONS(1515), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1513), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [111328] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2430), 1, + sym_comment, + ACTIONS(3258), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1511), 39, + ACTIONS(3256), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286451,16 +290930,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110871] = 5, + [111380] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2964), 1, + ACTIONS(5265), 1, + anon_sym_DOT2, + STATE(2734), 1, + sym_path, + ACTIONS(1389), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5148), 1, - sym__long_flag_identifier, - STATE(2403), 1, + STATE(2431), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [111436] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3214), 1, + anon_sym_LF, + ACTIONS(5268), 1, + anon_sym_DOT2, + STATE(2432), 1, sym_comment, - ACTIONS(2960), 39, + ACTIONS(3212), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286500,24 +291029,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110925] = 4, + [111490] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2404), 1, + ACTIONS(5270), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5272), 1, + aux_sym__immediate_decimal_token2, + STATE(2433), 1, sym_comment, - ACTIONS(1487), 2, + ACTIONS(2834), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1485), 39, + ACTIONS(2832), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -286548,16 +291079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [110977] = 5, + [111546] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1371), 1, + ACTIONS(2649), 1, + anon_sym_DOT2, + ACTIONS(5276), 1, anon_sym_LF, - ACTIONS(4775), 1, - aux_sym_unquoted_token3, - STATE(2405), 1, + STATE(2434), 1, sym_comment, - ACTIONS(1369), 39, + ACTIONS(5274), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286597,27 +291128,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111031] = 7, + [111600] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5150), 1, - anon_sym_DOT2, - STATE(2406), 1, + STATE(2435), 1, sym_comment, - STATE(2422), 1, - aux_sym_cell_path_repeat1, - STATE(2613), 1, - sym_path, - ACTIONS(1442), 2, - ts_builtin_sym_end, + ACTIONS(1522), 2, anon_sym_LF, - ACTIONS(1440), 36, + anon_sym_DOT2, + ACTIONS(1520), 39, anon_sym_EQ, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -286648,16 +291176,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [111089] = 5, + [111652] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(215), 1, + ACTIONS(2908), 1, anon_sym_LF, - ACTIONS(2625), 1, - anon_sym_DOT2, - STATE(2407), 1, + ACTIONS(5230), 1, + aux_sym__immediate_decimal_token2, + STATE(2436), 1, sym_comment, - ACTIONS(213), 39, + ACTIONS(2906), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286697,25 +291225,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111143] = 5, + [111706] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5074), 1, - aux_sym__immediate_decimal_token2, - STATE(2408), 1, - sym_comment, - ACTIONS(2784), 3, - ts_builtin_sym_end, + ACTIONS(3208), 1, anon_sym_LF, + ACTIONS(5278), 1, anon_sym_DOT2, - ACTIONS(2782), 37, + STATE(2437), 1, + sym_comment, + ACTIONS(3206), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -286746,129 +291274,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111197] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT2, - STATE(2613), 1, - sym_path, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2409), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [111253] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5155), 1, - anon_sym_RBRACK, - ACTIONS(5161), 1, - anon_sym_list, - STATE(2410), 1, - sym_comment, - STATE(2414), 1, - aux_sym__multiple_types_repeat1, - STATE(2871), 1, - sym__one_type, - STATE(6002), 1, - sym__type_annotation, - ACTIONS(5159), 2, - anon_sym_table, - anon_sym_record, - STATE(2565), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(5157), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [111317] = 4, + [111760] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2411), 1, - sym_comment, - ACTIONS(1456), 3, - ts_builtin_sym_end, + ACTIONS(3200), 1, anon_sym_LF, + ACTIONS(5280), 1, anon_sym_DOT2, - ACTIONS(1454), 38, + STATE(2438), 1, + sym_comment, + ACTIONS(3198), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -286898,15 +291323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111369] = 4, + [111814] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2412), 1, - sym_comment, - ACTIONS(1493), 2, + ACTIONS(3173), 1, anon_sym_LF, + ACTIONS(5282), 1, anon_sym_DOT2, - ACTIONS(1491), 39, + STATE(2439), 1, + sym_comment, + ACTIONS(3171), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286946,127 +291372,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111421] = 6, - ACTIONS(105), 1, + [111868] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5163), 1, - anon_sym_DOT2, - ACTIONS(5167), 1, - aux_sym__immediate_decimal_token2, - STATE(2413), 1, + ACTIONS(5284), 1, + anon_sym_QMARK2, + STATE(2440), 1, sym_comment, - ACTIONS(2906), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2904), 37, + ACTIONS(1419), 6, + anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1421), 34, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [111477] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5169), 1, - anon_sym_RBRACK, - ACTIONS(5177), 1, - anon_sym_list, - STATE(2871), 1, - sym__one_type, - STATE(6002), 1, - sym__type_annotation, - ACTIONS(5174), 2, - anon_sym_table, - anon_sym_record, - STATE(2414), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - STATE(2565), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(5171), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [111539] = 4, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [111922] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2415), 1, + ACTIONS(5286), 1, + anon_sym_DOT2, + ACTIONS(5288), 1, + aux_sym__immediate_decimal_token2, + STATE(2441), 1, sym_comment, - ACTIONS(1503), 2, + ACTIONS(2936), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1501), 39, + ACTIONS(2934), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -287097,25 +291471,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111591] = 4, + [111978] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2416), 1, + STATE(2442), 1, sym_comment, - ACTIONS(1477), 3, - ts_builtin_sym_end, + ACTIONS(1522), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1475), 38, + ACTIONS(1520), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -287145,25 +291519,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111643] = 5, + [112030] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2876), 1, - anon_sym_LF, - ACTIONS(5180), 1, + ACTIONS(5290), 1, aux_sym__immediate_decimal_token2, - STATE(2417), 1, + STATE(2443), 1, sym_comment, - ACTIONS(2874), 39, + ACTIONS(2986), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2984), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -287194,16 +291568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111697] = 5, + [112084] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2808), 1, - anon_sym_LF, - ACTIONS(5082), 1, - aux_sym__immediate_decimal_token2, - STATE(2418), 1, + STATE(2444), 1, sym_comment, - ACTIONS(2806), 39, + ACTIONS(1534), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1532), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287243,25 +291616,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111751] = 5, + [112136] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5182), 1, - anon_sym_QMARK2, - STATE(2419), 1, + STATE(2445), 1, sym_comment, - ACTIONS(1466), 3, - ts_builtin_sym_end, + ACTIONS(2908), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1464), 37, + ACTIONS(2906), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -287292,25 +291664,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111805] = 5, + [112188] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5182), 1, - anon_sym_QMARK2, - STATE(2420), 1, + STATE(2446), 1, sym_comment, - ACTIONS(1466), 3, - ts_builtin_sym_end, + ACTIONS(1526), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1464), 37, + ACTIONS(1524), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -287341,122 +291712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [111859] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5161), 1, - anon_sym_list, - ACTIONS(5184), 1, - anon_sym_RBRACK, - STATE(2410), 1, - aux_sym__multiple_types_repeat1, - STATE(2421), 1, - sym_comment, - STATE(2871), 1, - sym__one_type, - STATE(6002), 1, - sym__type_annotation, - ACTIONS(5159), 2, - anon_sym_table, - anon_sym_record, - STATE(2565), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(5157), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [111923] = 6, + [112240] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2409), 1, - aux_sym_cell_path_repeat1, - STATE(2422), 1, - sym_comment, - STATE(2613), 1, - sym_path, - ACTIONS(1438), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(5292), 1, anon_sym_DOT2, - ACTIONS(1436), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [111979] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5186), 1, + ACTIONS(5296), 1, aux_sym__immediate_decimal_token2, - STATE(2423), 1, + STATE(2447), 1, sym_comment, - ACTIONS(2876), 3, + ACTIONS(2936), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2874), 37, + ACTIONS(2934), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287494,16 +291762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112033] = 5, + [112296] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3117), 1, + ACTIONS(1377), 1, anon_sym_LF, - ACTIONS(5188), 1, - anon_sym_DOT2, - STATE(2424), 1, + ACTIONS(4924), 1, + aux_sym_unquoted_token3, + STATE(2448), 1, sym_comment, - ACTIONS(3115), 39, + ACTIONS(1375), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287543,15 +291811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112087] = 4, + [112350] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2425), 1, - sym_comment, - ACTIONS(2808), 2, + ACTIONS(2834), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2806), 39, + ACTIONS(5222), 1, + aux_sym__immediate_decimal_token2, + STATE(2449), 1, + sym_comment, + ACTIONS(2832), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287591,16 +291860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112139] = 5, + [112404] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3111), 1, + STATE(2450), 1, + sym_comment, + ACTIONS(2986), 2, anon_sym_LF, - ACTIONS(5190), 1, anon_sym_DOT2, - STATE(2426), 1, - sym_comment, - ACTIONS(3109), 39, + ACTIONS(2984), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287640,19 +291908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112193] = 6, + [112456] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5130), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5192), 1, - anon_sym_DOT2, - STATE(2427), 1, + STATE(2451), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(1443), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2806), 37, + anon_sym_DOT2, + ACTIONS(1441), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287661,6 +291926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -287690,16 +291956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112249] = 5, + [112508] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3105), 1, + ACTIONS(2834), 1, anon_sym_LF, - ACTIONS(5194), 1, + ACTIONS(5298), 1, anon_sym_DOT2, - STATE(2428), 1, + STATE(2452), 1, sym_comment, - ACTIONS(3103), 39, + ACTIONS(2832), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287739,24 +292005,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112303] = 4, + [112562] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2429), 1, + ACTIONS(5272), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5301), 1, + anon_sym_DOT2, + STATE(2453), 1, sym_comment, - ACTIONS(2784), 2, + ACTIONS(2834), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2782), 39, + ACTIONS(2832), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -287787,16 +292055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112355] = 5, + [112618] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3099), 1, + STATE(2454), 1, + sym_comment, + ACTIONS(2834), 2, anon_sym_LF, - ACTIONS(5196), 1, anon_sym_DOT2, - STATE(2430), 1, - sym_comment, - ACTIONS(3097), 39, + ACTIONS(2832), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287836,29 +292103,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112409] = 10, + [112670] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5161), 1, + ACTIONS(5303), 1, + anon_sym_RBRACK, + ACTIONS(5311), 1, anon_sym_list, - ACTIONS(5198), 1, - anon_sym_LBRACK, - STATE(2431), 1, + STATE(2902), 1, + sym__one_type, + STATE(6116), 1, + sym__type_annotation, + ACTIONS(5308), 2, + anon_sym_table, + anon_sym_record, + STATE(2455), 2, sym_comment, - STATE(6071), 1, + aux_sym__multiple_types_repeat1, + STATE(2605), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(5305), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [112732] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5318), 1, + aux_sym_unquoted_token6, + STATE(2456), 1, + sym_comment, + ACTIONS(5314), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(5316), 2, + anon_sym_DOT2, + aux_sym_unquoted_token4, + ACTIONS(1375), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1377), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [112790] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5320), 1, + anon_sym_RBRACK, + ACTIONS(5326), 1, + anon_sym_list, + STATE(2457), 1, + sym_comment, + STATE(2473), 1, + aux_sym__multiple_types_repeat1, + STATE(2902), 1, sym__one_type, - STATE(6072), 1, - sym__multiple_types, - STATE(6073), 1, + STATE(6116), 1, sym__type_annotation, - ACTIONS(5159), 2, + ACTIONS(5324), 2, anon_sym_table, anon_sym_record, - STATE(2565), 3, + STATE(2605), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(5157), 31, + ACTIONS(5322), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -287890,73 +292261,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112473] = 5, + [112854] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3125), 1, + STATE(2458), 1, + sym_comment, + ACTIONS(1526), 2, anon_sym_LF, - ACTIONS(5200), 1, anon_sym_DOT2, - STATE(2432), 1, - sym_comment, - ACTIONS(3123), 39, + ACTIONS(1524), 39, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [112906] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(5196), 1, + anon_sym_LPAREN, + ACTIONS(5198), 1, + anon_sym_LT, + ACTIONS(5202), 1, + anon_sym_DOT2, + ACTIONS(5206), 1, + anon_sym_EQ2, + ACTIONS(5208), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5210), 1, + anon_sym_DASH2, + ACTIONS(5212), 1, + anon_sym_PLUS2, + ACTIONS(5214), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5216), 1, + aux_sym__unquoted_in_list_token7, + STATE(2459), 1, + sym_comment, + STATE(3192), 1, + sym__var, + STATE(3407), 1, + sym__immediate_decimal, + STATE(3408), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(5200), 8, + anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(5192), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [112527] = 4, + [112984] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2433), 1, + ACTIONS(5190), 1, + aux_sym__immediate_decimal_token2, + STATE(2460), 1, sym_comment, - ACTIONS(1509), 2, + ACTIONS(2908), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1507), 39, + ACTIONS(2906), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -287987,21 +292419,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112579] = 7, + [113038] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5202), 1, + ACTIONS(5328), 1, anon_sym_DOT2, - STATE(2406), 1, - sym_path, - STATE(2434), 1, + STATE(2461), 1, sym_comment, - STATE(2627), 1, - sym_cell_path, - ACTIONS(1397), 2, + STATE(2470), 1, + aux_sym_cell_path_repeat1, + STATE(2734), 1, + sym_path, + ACTIONS(1396), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1395), 36, + ACTIONS(1394), 36, anon_sym_EQ, anon_sym_SEMI, anon_sym_PIPE, @@ -288038,25 +292470,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [112637] = 5, + [113096] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2808), 1, - anon_sym_LF, - ACTIONS(5205), 1, + ACTIONS(5249), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5330), 1, anon_sym_DOT2, - STATE(2435), 1, + STATE(2462), 1, sym_comment, - ACTIONS(2806), 39, + ACTIONS(2834), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2832), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -288087,64 +292520,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112691] = 4, + [113152] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_QMARK2, + STATE(2463), 1, + sym_comment, + ACTIONS(1419), 6, + anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1421), 34, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [113206] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2436), 1, + STATE(2464), 1, sym_comment, - ACTIONS(2876), 2, + ACTIONS(1511), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2874), 39, + ACTIONS(1509), 39, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [112743] = 5, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [113258] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3131), 1, + STATE(2465), 1, + sym_comment, + ACTIONS(1515), 2, anon_sym_LF, - ACTIONS(5208), 1, anon_sym_DOT2, - STATE(2437), 1, - sym_comment, - ACTIONS(3129), 39, + ACTIONS(1513), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -288184,24 +292665,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112797] = 4, + [113310] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2438), 1, + ACTIONS(5333), 1, + anon_sym_DOT2, + STATE(2461), 1, + sym_path, + STATE(2466), 1, sym_comment, - ACTIONS(3036), 2, + STATE(2728), 1, + sym_cell_path, + ACTIONS(1402), 2, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(1400), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [113368] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5336), 1, anon_sym_DOT2, - ACTIONS(3034), 39, + ACTIONS(5339), 1, + aux_sym__immediate_decimal_token2, + STATE(2467), 1, + sym_comment, + ACTIONS(2936), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2934), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -288232,26 +292766,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112849] = 6, + [113424] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5210), 1, - anon_sym_DOT2, - ACTIONS(5212), 1, - aux_sym__immediate_decimal_token2, - STATE(2439), 1, - sym_comment, - ACTIONS(2906), 2, - ts_builtin_sym_end, + ACTIONS(3157), 1, anon_sym_LF, - ACTIONS(2904), 37, + ACTIONS(5341), 1, + sym__long_flag_identifier, + STATE(2468), 1, + sym_comment, + ACTIONS(3153), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -288282,67 +292815,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [112905] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2440), 1, - sym_comment, - ACTIONS(1493), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1491), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [112957] = 6, + [113478] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5095), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5214), 1, - anon_sym_DOT2, - STATE(2441), 1, + ACTIONS(5343), 1, + anon_sym_QMARK2, + STATE(2469), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(1421), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2806), 37, + anon_sym_DOT2, + ACTIONS(1419), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -288380,24 +292864,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113013] = 4, + [113532] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2442), 1, + STATE(2431), 1, + aux_sym_cell_path_repeat1, + STATE(2470), 1, sym_comment, - ACTIONS(1503), 2, + STATE(2734), 1, + sym_path, + ACTIONS(1409), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1501), 39, + ACTIONS(1407), 36, anon_sym_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -288428,19 +292914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [113065] = 6, + [113588] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5217), 1, - anon_sym_DOT2, - ACTIONS(5220), 1, + ACTIONS(5345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5347), 1, aux_sym__immediate_decimal_token2, - STATE(2443), 1, + STATE(2471), 1, sym_comment, - ACTIONS(2906), 2, + ACTIONS(2908), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2904), 37, + ACTIONS(2906), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -288478,25 +292964,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113121] = 5, + [113644] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5095), 1, - aux_sym__immediate_decimal_token2, - STATE(2444), 1, + STATE(2472), 1, sym_comment, - ACTIONS(2808), 3, - ts_builtin_sym_end, + ACTIONS(1511), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2806), 37, + ACTIONS(1509), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -288527,71 +293012,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113175] = 5, - ACTIONS(105), 1, + [113696] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5224), 1, - anon_sym_LF, - ACTIONS(5227), 1, - anon_sym_PIPE, - STATE(2445), 2, + ACTIONS(5326), 1, + anon_sym_list, + ACTIONS(5349), 1, + anon_sym_RBRACK, + STATE(2455), 1, + aux_sym__multiple_types_repeat1, + STATE(2473), 1, sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(5222), 37, - sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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_CARET, - [113228] = 4, + STATE(2902), 1, + sym__one_type, + STATE(6116), 1, + sym__type_annotation, + ACTIONS(5324), 2, + anon_sym_table, + anon_sym_record, + STATE(2605), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(5322), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [113760] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3704), 1, - anon_sym_LF, - STATE(2446), 1, + ACTIONS(5343), 1, + anon_sym_QMARK2, + STATE(2474), 1, sym_comment, - ACTIONS(3702), 39, + ACTIONS(1421), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1419), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -288622,24 +293115,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113279] = 5, + [113814] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(215), 1, + anon_sym_LF, + ACTIONS(2649), 1, anon_sym_DOT2, - STATE(2447), 1, + STATE(2475), 1, sym_comment, - ACTIONS(3125), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3123), 37, + ACTIONS(213), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -288670,24 +293164,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113332] = 5, - ACTIONS(105), 1, + [113868] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5232), 1, - anon_sym_DOT2, - STATE(2448), 1, + ACTIONS(5326), 1, + anon_sym_list, + ACTIONS(5351), 1, + anon_sym_LBRACK, + STATE(2476), 1, sym_comment, - ACTIONS(3131), 2, - ts_builtin_sym_end, + STATE(6201), 1, + sym__type_annotation, + STATE(6203), 1, + sym__multiple_types, + STATE(6204), 1, + sym__one_type, + ACTIONS(5324), 2, + anon_sym_table, + anon_sym_record, + STATE(2605), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(5322), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [113932] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2986), 1, anon_sym_LF, - ACTIONS(3129), 37, + ACTIONS(5353), 1, + aux_sym__immediate_decimal_token2, + STATE(2477), 1, + sym_comment, + ACTIONS(2984), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -288718,174 +293267,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113385] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_DOT2, - STATE(2449), 1, - sym_comment, - STATE(2553), 1, - sym_path, - STATE(2727), 1, - sym_cell_path, - ACTIONS(1399), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1401), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [113442] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_DOT2, - STATE(2450), 1, - sym_comment, - STATE(2553), 1, - sym_path, - STATE(2752), 1, - sym_cell_path, - ACTIONS(1403), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1405), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [113499] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5236), 1, - anon_sym_DOT2, - STATE(2451), 1, - sym_comment, - STATE(2590), 1, - sym_path, - STATE(2727), 1, - sym_cell_path, - ACTIONS(1399), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1401), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [113556] = 4, + [113986] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1666), 1, - anon_sym_LF, - STATE(2452), 1, + STATE(2478), 1, sym_comment, - ACTIONS(1664), 39, + ACTIONS(1439), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1437), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -288915,14 +293315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113607] = 4, + [114038] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(3240), 1, anon_sym_LF, - STATE(2453), 1, + ACTIONS(5355), 1, + anon_sym_DOT2, + STATE(2479), 1, sym_comment, - ACTIONS(1632), 39, + ACTIONS(3238), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -288962,23 +293364,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113658] = 4, + [114092] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1652), 1, - anon_sym_LF, - STATE(2454), 1, + ACTIONS(5249), 1, + aux_sym__immediate_decimal_token2, + STATE(2480), 1, sym_comment, - ACTIONS(1650), 39, + ACTIONS(2834), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2832), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -289009,24 +293413,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113709] = 5, + [114146] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5134), 1, - aux_sym__immediate_decimal_token2, - STATE(2455), 1, - sym_comment, - ACTIONS(2784), 2, - ts_builtin_sym_end, + ACTIONS(3165), 1, anon_sym_LF, - ACTIONS(2782), 37, + ACTIONS(5357), 1, + anon_sym_DOT2, + STATE(2481), 1, + sym_comment, + ACTIONS(3163), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -289057,24 +293462,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113762] = 5, + [114200] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_DOT2, - STATE(2456), 1, - sym_comment, - ACTIONS(5146), 2, - ts_builtin_sym_end, + ACTIONS(3473), 1, anon_sym_LF, - ACTIONS(5144), 37, + STATE(2482), 1, + sym_comment, + ACTIONS(3471), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -289105,14 +293509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113815] = 4, + [114251] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(1673), 1, anon_sym_LF, - STATE(2457), 1, + STATE(2483), 1, sym_comment, - ACTIONS(5239), 39, + ACTIONS(1671), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289152,14 +293556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113866] = 4, + [114302] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1648), 1, + ACTIONS(1653), 1, anon_sym_LF, - STATE(2458), 1, + STATE(2484), 1, sym_comment, - ACTIONS(1646), 39, + ACTIONS(1651), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289199,17 +293603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113917] = 5, + [114353] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2719), 1, + ACTIONS(5359), 1, anon_sym_DOT2, - STATE(2459), 1, + STATE(2485), 1, sym_comment, - ACTIONS(215), 2, + ACTIONS(3165), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(213), 37, + ACTIONS(3163), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289247,14 +293651,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [113970] = 4, + [114406] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5361), 1, + anon_sym_DOT2, + STATE(2486), 1, + sym_comment, + ACTIONS(3240), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2460), 1, + ACTIONS(3238), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [114459] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2487), 1, sym_comment, - ACTIONS(5243), 39, + ACTIONS(1439), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1437), 37, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [114510] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1697), 1, + anon_sym_LF, + STATE(2488), 1, + sym_comment, + ACTIONS(1695), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289294,14 +293793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114021] = 4, + [114561] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5249), 1, + ACTIONS(1627), 1, anon_sym_LF, - STATE(2461), 1, + STATE(2489), 1, sym_comment, - ACTIONS(5247), 39, + ACTIONS(1625), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289341,14 +293840,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114072] = 4, + [114612] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5253), 1, + ACTIONS(1693), 1, anon_sym_LF, - STATE(2462), 1, + STATE(2490), 1, sym_comment, - ACTIONS(5251), 39, + ACTIONS(1691), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289388,16 +293887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114123] = 4, + [114663] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2463), 1, + STATE(2491), 1, sym_comment, - ACTIONS(1477), 3, + ACTIONS(1443), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1475), 37, + ACTIONS(1441), 37, anon_sym_EQ, anon_sym_SEMI, anon_sym_PIPE, @@ -289435,64 +293934,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [114174] = 7, - ACTIONS(3), 1, + [114714] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_DOT2, - STATE(2464), 1, + ACTIONS(1681), 1, + anon_sym_LF, + STATE(2492), 1, sym_comment, - STATE(2576), 1, - aux_sym_cell_path_repeat1, - STATE(2739), 1, - sym_path, - ACTIONS(1436), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1438), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1679), 39, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [114231] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [114765] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5146), 1, + ACTIONS(1649), 1, anon_sym_LF, - STATE(2465), 1, + STATE(2493), 1, sym_comment, - ACTIONS(5144), 39, + ACTIONS(1647), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289532,23 +294028,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114282] = 4, + [114816] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(2786), 1, + anon_sym_DOT2, + STATE(2494), 1, + sym_comment, + ACTIONS(5276), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2466), 1, + ACTIONS(5274), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [114869] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2786), 1, + anon_sym_DOT2, + STATE(2495), 1, sym_comment, - ACTIONS(1580), 39, + ACTIONS(215), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(213), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -289579,14 +294124,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114333] = 4, + [114922] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1509), 1, + ACTIONS(5365), 1, anon_sym_LF, - STATE(2467), 1, + STATE(2496), 1, sym_comment, - ACTIONS(1507), 39, + ACTIONS(5363), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289626,14 +294171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114384] = 4, + [114973] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1590), 1, + ACTIONS(1605), 1, anon_sym_LF, - STATE(2468), 1, + STATE(2497), 1, sym_comment, - ACTIONS(1588), 39, + ACTIONS(1603), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289673,14 +294218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114435] = 4, + [115024] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3395), 1, + ACTIONS(1601), 1, anon_sym_LF, - STATE(2469), 1, + STATE(2498), 1, sym_comment, - ACTIONS(3393), 39, + ACTIONS(1599), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289720,72 +294265,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114486] = 6, + [115075] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(215), 1, + ACTIONS(1593), 1, anon_sym_LF, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2470), 1, - sym_comment, - ACTIONS(5255), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(213), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [114541] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2471), 1, + STATE(2499), 1, sym_comment, - ACTIONS(2808), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2806), 37, + ACTIONS(1591), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -289816,14 +294312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114592] = 4, + [115126] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1517), 1, + ACTIONS(5369), 1, anon_sym_LF, - STATE(2472), 1, + STATE(2500), 1, sym_comment, - ACTIONS(1515), 39, + ACTIONS(5367), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289863,18 +294359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114643] = 7, + [115177] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5234), 1, + ACTIONS(5371), 1, anon_sym_DOT2, - STATE(2473), 1, + STATE(2501), 1, sym_comment, - STATE(2553), 1, + STATE(2598), 1, sym_path, - STATE(2762), 1, + STATE(2791), 1, sym_cell_path, - ACTIONS(1422), 12, + ACTIONS(1431), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -289887,7 +294383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1424), 25, + ACTIONS(1433), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -289913,14 +294409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [114700] = 4, + [115234] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2784), 1, + ACTIONS(1665), 1, anon_sym_LF, - STATE(2474), 1, + STATE(2502), 1, sym_comment, - ACTIONS(2782), 39, + ACTIONS(1663), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289960,108 +294456,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114751] = 4, - ACTIONS(105), 1, + [115285] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5261), 1, - anon_sym_LF, - STATE(2475), 1, + ACTIONS(5371), 1, + anon_sym_DOT2, + STATE(2503), 1, sym_comment, - ACTIONS(5259), 39, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + STATE(2598), 1, + sym_path, + STATE(2784), 1, + sym_cell_path, + ACTIONS(1400), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [114802] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - anon_sym_LF, - STATE(2476), 1, - sym_comment, - ACTIONS(1475), 39, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1402), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [114853] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [115342] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3399), 1, + ACTIONS(1657), 1, anon_sym_LF, - STATE(2477), 1, + STATE(2504), 1, sym_comment, - ACTIONS(3397), 39, + ACTIONS(1655), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290101,23 +294553,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114904] = 4, + [115393] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3407), 1, - anon_sym_LF, - STATE(2478), 1, + STATE(2505), 1, sym_comment, - ACTIONS(3405), 39, + ACTIONS(2834), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2832), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -290148,18 +294600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [114955] = 7, + [115444] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5234), 1, + ACTIONS(5371), 1, anon_sym_DOT2, - STATE(2479), 1, + STATE(2506), 1, sym_comment, - STATE(2553), 1, + STATE(2623), 1, + aux_sym_cell_path_repeat1, + STATE(2783), 1, sym_path, - STATE(2808), 1, - sym_cell_path, - ACTIONS(1389), 12, + ACTIONS(1407), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -290172,7 +294624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1391), 25, + ACTIONS(1409), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -290198,14 +294650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [115012] = 4, + [115501] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5265), 1, + ACTIONS(1639), 1, anon_sym_LF, - STATE(2480), 1, + STATE(2507), 1, sym_comment, - ACTIONS(5263), 39, + ACTIONS(1637), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290245,23 +294697,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115063] = 4, + [115552] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3447), 1, + ACTIONS(5373), 1, + anon_sym_DOT2, + STATE(2508), 1, + sym_comment, + ACTIONS(3173), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2481), 1, + ACTIONS(3171), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [115605] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5375), 1, + anon_sym_DOT2, + STATE(2509), 1, sym_comment, - ACTIONS(3445), 39, + ACTIONS(3200), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3198), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -290292,35 +294793,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115114] = 6, + [115658] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5269), 1, - anon_sym_LF, - ACTIONS(5271), 1, - anon_sym_PIPE, - STATE(2445), 1, - aux_sym_pipe_element_repeat1, - STATE(2482), 1, + ACTIONS(5377), 1, + anon_sym_DOT2, + STATE(2510), 1, sym_comment, - ACTIONS(5267), 37, - sym_cmd_identifier, + ACTIONS(3208), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3206), 37, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -290340,15 +294832,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [115169] = 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, + aux_sym_unquoted_token1, + [115711] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3411), 1, + ACTIONS(1609), 1, anon_sym_LF, - STATE(2483), 1, + STATE(2511), 1, sym_comment, - ACTIONS(3409), 39, + ACTIONS(1607), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290388,14 +294888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115220] = 4, + [115762] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3415), 1, + ACTIONS(1613), 1, anon_sym_LF, - STATE(2484), 1, + STATE(2512), 1, sym_comment, - ACTIONS(3413), 39, + ACTIONS(1611), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290435,23 +294935,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115271] = 4, + [115813] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2876), 1, - anon_sym_LF, - STATE(2485), 1, + ACTIONS(5379), 1, + anon_sym_DOT2, + STATE(2513), 1, sym_comment, - ACTIONS(2874), 39, + ACTIONS(3214), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3212), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -290482,14 +294983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115322] = 4, + [115866] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1493), 1, + ACTIONS(1689), 1, anon_sym_LF, - STATE(2486), 1, + STATE(2514), 1, sym_comment, - ACTIONS(1491), 39, + ACTIONS(1687), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290529,24 +295030,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115373] = 5, + [115917] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5273), 1, - anon_sym_DOT2, - STATE(2487), 1, - sym_comment, - ACTIONS(3099), 2, - ts_builtin_sym_end, + ACTIONS(1677), 1, anon_sym_LF, - ACTIONS(3097), 37, + STATE(2515), 1, + sym_comment, + ACTIONS(1675), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -290577,14 +295077,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115426] = 4, + [115968] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_DOT2, + STATE(2516), 1, + sym_comment, + STATE(2598), 1, + sym_path, + STATE(2840), 1, + sym_cell_path, + ACTIONS(1463), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1465), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [116025] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3343), 1, + ACTIONS(1443), 1, anon_sym_LF, - STATE(2488), 1, + STATE(2517), 1, sym_comment, - ACTIONS(3341), 39, + ACTIONS(1441), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290624,24 +295174,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115477] = 5, + [116076] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5275), 1, - anon_sym_DOT2, - STATE(2489), 1, - sym_comment, - ACTIONS(3105), 2, - ts_builtin_sym_end, + ACTIONS(1635), 1, anon_sym_LF, - ACTIONS(3103), 37, + STATE(2518), 1, + sym_comment, + ACTIONS(1633), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -290672,24 +295221,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115530] = 5, + [116127] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5277), 1, - anon_sym_DOT2, - STATE(2490), 1, - sym_comment, - ACTIONS(3111), 2, - ts_builtin_sym_end, + ACTIONS(5383), 1, anon_sym_LF, - ACTIONS(3109), 37, + STATE(2519), 1, + sym_comment, + ACTIONS(5381), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -290720,24 +295268,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115583] = 5, + [116178] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5279), 1, + ACTIONS(215), 1, + anon_sym_LF, + ACTIONS(1276), 1, + anon_sym_COLON, + ACTIONS(1501), 1, anon_sym_DOT2, - STATE(2491), 1, + STATE(2520), 1, sym_comment, - ACTIONS(3117), 2, - ts_builtin_sym_end, + ACTIONS(1494), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(213), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [116235] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5387), 1, anon_sym_LF, - ACTIONS(3115), 37, + STATE(2521), 1, + sym_comment, + ACTIONS(5385), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -290768,64 +295365,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115636] = 7, - ACTIONS(3), 1, + [116286] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5281), 1, - anon_sym_DOT2, - STATE(2492), 1, + ACTIONS(5391), 1, + anon_sym_LF, + STATE(2522), 1, sym_comment, - STATE(2590), 1, - sym_path, - STATE(2721), 1, - sym_cell_path, - ACTIONS(1395), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1397), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5389), 39, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115693] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [116337] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1562), 1, + ACTIONS(1534), 1, anon_sym_LF, - STATE(2493), 1, + STATE(2523), 1, sym_comment, - ACTIONS(1560), 39, + ACTIONS(1532), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290865,14 +295459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115744] = 4, + [116388] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3419), 1, + ACTIONS(1621), 1, anon_sym_LF, - STATE(2494), 1, + STATE(2524), 1, sym_comment, - ACTIONS(3417), 39, + ACTIONS(1619), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290912,14 +295506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115795] = 4, + [116439] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3427), 1, + ACTIONS(1621), 1, anon_sym_LF, - STATE(2495), 1, + STATE(2525), 1, sym_comment, - ACTIONS(3425), 39, + ACTIONS(1619), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290959,14 +295553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115846] = 4, + [116490] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1566), 1, + ACTIONS(5395), 1, anon_sym_LF, - STATE(2496), 1, + STATE(2526), 1, sym_comment, - ACTIONS(1564), 39, + ACTIONS(5393), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291006,14 +295600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115897] = 4, + [116541] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1578), 1, + ACTIONS(215), 1, anon_sym_LF, - STATE(2497), 1, + STATE(2527), 1, sym_comment, - ACTIONS(1576), 39, + ACTIONS(213), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291053,14 +295647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115948] = 4, + [116592] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1685), 1, anon_sym_LF, - STATE(2498), 1, + STATE(2528), 1, sym_comment, - ACTIONS(1628), 39, + ACTIONS(1683), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291100,14 +295694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [115999] = 4, + [116643] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(1631), 1, anon_sym_LF, - STATE(2499), 1, + STATE(2529), 1, sym_comment, - ACTIONS(3429), 39, + ACTIONS(1629), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291147,14 +295741,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116050] = 4, + [116694] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1574), 1, + ACTIONS(215), 1, anon_sym_LF, - STATE(2500), 1, + ACTIONS(1501), 1, + anon_sym_DOT2, + STATE(2530), 1, sym_comment, - ACTIONS(1572), 39, + ACTIONS(1494), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(213), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [116749] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1538), 1, + anon_sym_LF, + STATE(2531), 1, + sym_comment, + ACTIONS(1536), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291194,18 +295837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116101] = 6, + [116800] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5399), 1, anon_sym_LF, - STATE(2445), 1, - aux_sym_pipe_element_repeat1, - STATE(2501), 1, + ACTIONS(5401), 1, + anon_sym_PIPE, + STATE(2532), 1, sym_comment, - ACTIONS(5284), 37, + STATE(2588), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(5397), 37, sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291243,14 +295886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [116156] = 4, + [116855] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3435), 1, + ACTIONS(1439), 1, anon_sym_LF, - STATE(2502), 1, + STATE(2533), 1, sym_comment, - ACTIONS(3433), 39, + ACTIONS(1437), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291290,64 +295933,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116207] = 7, - ACTIONS(3), 1, + [116906] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_DOT2, - STATE(2503), 1, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_LF, + STATE(2534), 1, sym_comment, - STATE(2553), 1, - sym_path, - STATE(2753), 1, - sym_cell_path, - ACTIONS(1418), 12, - sym_identifier, - anon_sym_GT, + STATE(2588), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(5403), 37, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1420), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [116264] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [116961] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3439), 1, + ACTIONS(3230), 1, anon_sym_LF, - STATE(2504), 1, + STATE(2535), 1, sym_comment, - ACTIONS(3437), 39, + ACTIONS(3228), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291387,23 +296029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116315] = 4, + [117012] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1642), 1, - anon_sym_LF, - STATE(2505), 1, + STATE(2536), 1, sym_comment, - ACTIONS(1640), 39, + ACTIONS(1511), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1509), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -291434,14 +296076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116366] = 4, + [117063] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3443), 1, + ACTIONS(5276), 1, anon_sym_LF, - STATE(2506), 1, + STATE(2537), 1, sym_comment, - ACTIONS(3441), 39, + ACTIONS(5274), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291481,35 +296123,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116417] = 6, + [117114] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(5290), 1, - anon_sym_LF, - STATE(2445), 1, - aux_sym_pipe_element_repeat1, - STATE(2507), 1, + ACTIONS(5407), 1, + sym__long_flag_identifier, + STATE(2538), 1, sym_comment, - ACTIONS(5288), 37, - sym_cmd_identifier, + ACTIONS(3157), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3153), 37, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -291529,24 +296162,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [116472] = 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, + aux_sym_unquoted_token1, + [117167] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1626), 1, - anon_sym_LF, - STATE(2508), 1, + ACTIONS(4997), 1, + aux_sym_unquoted_token3, + STATE(2539), 1, sym_comment, - ACTIONS(1624), 39, + ACTIONS(1377), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1375), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -291577,23 +296219,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116523] = 4, + [117220] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1622), 1, - anon_sym_LF, - STATE(2509), 1, + STATE(2540), 1, sym_comment, - ACTIONS(1620), 39, + ACTIONS(3258), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(3256), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -291624,23 +296266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116574] = 4, + [117271] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3451), 1, - anon_sym_LF, - STATE(2510), 1, + STATE(2541), 1, sym_comment, - ACTIONS(3449), 39, + ACTIONS(1526), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1524), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -291671,14 +296313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116625] = 4, + [117322] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3479), 1, + ACTIONS(1589), 1, anon_sym_LF, - STATE(2511), 1, + STATE(2542), 1, sym_comment, - ACTIONS(3477), 39, + ACTIONS(1587), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291718,73 +296360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116676] = 7, + [117373] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(215), 1, - anon_sym_LF, - ACTIONS(1248), 1, - anon_sym_COLON, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2512), 1, + ACTIONS(5409), 1, + aux_sym__immediate_decimal_token2, + STATE(2543), 1, sym_comment, - ACTIONS(5255), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(213), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [116733] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3483), 1, + ACTIONS(2986), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2513), 1, - sym_comment, - ACTIONS(3481), 39, + ACTIONS(2984), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -291815,14 +296408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116784] = 4, + [117426] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(2834), 1, anon_sym_LF, - STATE(2514), 1, + STATE(2544), 1, sym_comment, - ACTIONS(1604), 39, + ACTIONS(2832), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291862,14 +296455,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116835] = 4, + [117477] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_DOT2, + STATE(2545), 1, + sym_comment, + STATE(2598), 1, + sym_path, + STATE(2789), 1, + sym_cell_path, + ACTIONS(1478), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1480), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [117534] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1598), 1, + ACTIONS(1585), 1, anon_sym_LF, - STATE(2515), 1, + STATE(2546), 1, sym_comment, - ACTIONS(1596), 39, + ACTIONS(1583), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291909,25 +296552,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116886] = 4, + [117585] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2516), 1, - sym_comment, - ACTIONS(2784), 3, - ts_builtin_sym_end, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5413), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2782), 37, - anon_sym_SEMI, + STATE(2547), 1, + sym_comment, + STATE(2588), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(5411), 37, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -291947,23 +296600,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_unquoted_token1, - [116937] = 4, + anon_sym_CARET, + [117640] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1670), 1, + ACTIONS(3353), 1, anon_sym_LF, - STATE(2517), 1, + STATE(2548), 1, sym_comment, - ACTIONS(1668), 39, + ACTIONS(3351), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292003,14 +296648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [116988] = 4, + [117691] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1618), 1, + ACTIONS(3335), 1, anon_sym_LF, - STATE(2518), 1, + STATE(2549), 1, sym_comment, - ACTIONS(1616), 39, + ACTIONS(3333), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292050,113 +296695,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117039] = 4, + [117742] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2519), 1, - sym_comment, - ACTIONS(1511), 6, - anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1513), 34, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [117090] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_DOT2, - STATE(2520), 1, - sym_comment, - STATE(2553), 1, - sym_path, - STATE(2823), 1, - sym_cell_path, - ACTIONS(1407), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1409), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [117147] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2521), 1, + STATE(2550), 1, sym_comment, - STATE(2576), 1, + STATE(2623), 1, aux_sym_cell_path_repeat1, - STATE(2739), 1, + STATE(2783), 1, sym_path, - ACTIONS(1436), 13, + ACTIONS(1407), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -292170,7 +296718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1438), 25, + ACTIONS(1409), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -292196,25 +296744,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [117202] = 4, + [117797] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3036), 1, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5417), 1, anon_sym_LF, - STATE(2522), 1, + STATE(2551), 1, sym_comment, - ACTIONS(3034), 39, - anon_sym_SEMI, + STATE(2588), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(5415), 37, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -292234,35 +296792,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_unquoted_token1, - [117253] = 5, + anon_sym_CARET, + [117852] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5205), 1, - anon_sym_DOT2, - STATE(2523), 1, - sym_comment, - ACTIONS(2808), 2, - ts_builtin_sym_end, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5421), 1, anon_sym_LF, - ACTIONS(2806), 37, - anon_sym_SEMI, + STATE(2552), 1, + sym_comment, + STATE(2588), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(5419), 37, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -292282,23 +296841,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_unquoted_token1, - [117306] = 4, + anon_sym_CARET, + [117907] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1428), 1, + ACTIONS(3345), 1, anon_sym_LF, - STATE(2524), 1, + STATE(2553), 1, sym_comment, - ACTIONS(1426), 39, + ACTIONS(3343), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292338,14 +296889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117357] = 4, + [117958] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(3377), 1, anon_sym_LF, - STATE(2525), 1, + STATE(2554), 1, sym_comment, - ACTIONS(1600), 39, + ACTIONS(3375), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292385,23 +296936,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117408] = 4, + [118009] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3503), 1, - anon_sym_LF, - STATE(2526), 1, + STATE(2555), 1, sym_comment, - ACTIONS(3501), 39, + ACTIONS(2986), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2984), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -292432,23 +296983,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117459] = 4, + [118060] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3507), 1, - anon_sym_LF, - STATE(2527), 1, + STATE(2556), 1, sym_comment, - ACTIONS(3505), 39, + ACTIONS(1515), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1513), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -292479,23 +297030,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117510] = 4, + [118111] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_DOT2, + STATE(2550), 1, + aux_sym_cell_path_repeat1, + STATE(2557), 1, + sym_comment, + STATE(2783), 1, + sym_path, + ACTIONS(1394), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1396), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [118168] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5318), 1, + aux_sym_unquoted_token6, + STATE(2558), 1, + sym_comment, + ACTIONS(5316), 2, + anon_sym_DOT2, + aux_sym_unquoted_token4, + ACTIONS(5423), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(1375), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1377), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [118225] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5425), 1, + anon_sym_DOT2, + STATE(2557), 1, + sym_path, + STATE(2559), 1, + sym_comment, + STATE(2784), 1, + sym_cell_path, + ACTIONS(1400), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1402), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [118282] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3515), 1, - anon_sym_LF, - STATE(2528), 1, + ACTIONS(5347), 1, + aux_sym__immediate_decimal_token2, + STATE(2560), 1, sym_comment, - ACTIONS(3513), 39, + ACTIONS(2908), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2906), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -292526,14 +297228,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117561] = 4, + [118335] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_RBRACK, + ACTIONS(5196), 1, + anon_sym_LPAREN, + ACTIONS(5198), 1, + anon_sym_LT, + ACTIONS(5202), 1, + anon_sym_DOT2, + ACTIONS(5206), 1, + anon_sym_EQ2, + ACTIONS(5208), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5210), 1, + anon_sym_DASH2, + ACTIONS(5212), 1, + anon_sym_PLUS2, + ACTIONS(5214), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5216), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(5428), 1, + anon_sym_DOLLAR2, + STATE(2561), 1, + sym_comment, + STATE(3192), 1, + sym__var, + STATE(3407), 1, + sym__immediate_decimal, + STATE(3408), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(5200), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(5192), 16, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + 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, + [118416] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3559), 1, + ACTIONS(3429), 1, anon_sym_LF, - STATE(2529), 1, + STATE(2562), 1, sym_comment, - ACTIONS(3557), 39, + ACTIONS(3427), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292573,14 +297337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117612] = 4, + [118467] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(3433), 1, anon_sym_LF, - STATE(2530), 1, + STATE(2563), 1, sym_comment, - ACTIONS(1600), 39, + ACTIONS(3431), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292620,14 +297384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117663] = 4, + [118518] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3155), 1, + ACTIONS(3461), 1, anon_sym_LF, - STATE(2531), 1, + STATE(2564), 1, sym_comment, - ACTIONS(3153), 39, + ACTIONS(3459), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292667,73 +297431,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117714] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_DOT2, - STATE(2532), 1, - sym_comment, - STATE(2553), 1, - sym_path, - STATE(2721), 1, - sym_cell_path, - ACTIONS(1395), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1397), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [117771] = 4, + [118569] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1586), 1, - anon_sym_LF, - STATE(2533), 1, + STATE(2565), 1, sym_comment, - ACTIONS(1584), 39, + ACTIONS(1522), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1520), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -292764,35 +297478,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117822] = 6, + [118620] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(5294), 1, + ACTIONS(3469), 1, anon_sym_LF, - STATE(2445), 1, - aux_sym_pipe_element_repeat1, - STATE(2534), 1, + STATE(2566), 1, sym_comment, - ACTIONS(5292), 37, - sym_cmd_identifier, + ACTIONS(3467), 39, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -292812,15 +297516,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [117877] = 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, + aux_sym_unquoted_token1, + [118671] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(215), 1, + ACTIONS(3477), 1, anon_sym_LF, - STATE(2535), 1, + STATE(2567), 1, sym_comment, - ACTIONS(213), 39, + ACTIONS(3475), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292860,14 +297572,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117928] = 4, + [118722] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3613), 1, + ACTIONS(3481), 1, anon_sym_LF, - STATE(2536), 1, + STATE(2568), 1, sym_comment, - ACTIONS(3611), 39, + ACTIONS(3479), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292907,14 +297619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [117979] = 4, + [118773] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3617), 1, + ACTIONS(3503), 1, anon_sym_LF, - STATE(2537), 1, + STATE(2569), 1, sym_comment, - ACTIONS(3615), 39, + ACTIONS(3501), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292954,14 +297666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118030] = 4, + [118824] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3637), 1, + ACTIONS(1643), 1, anon_sym_LF, - STATE(2538), 1, + STATE(2570), 1, sym_comment, - ACTIONS(3635), 39, + ACTIONS(1641), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293001,23 +297713,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118081] = 4, - ACTIONS(105), 1, + [118875] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2539), 1, + ACTIONS(5371), 1, + anon_sym_DOT2, + STATE(2571), 1, sym_comment, - ACTIONS(1503), 3, - ts_builtin_sym_end, + STATE(2598), 1, + sym_path, + STATE(2830), 1, + sym_cell_path, + ACTIONS(1455), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1457), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [118932] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3507), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1501), 37, + STATE(2572), 1, + sym_comment, + ACTIONS(3505), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -293048,14 +297810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118132] = 4, + [118983] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3641), 1, + ACTIONS(3511), 1, anon_sym_LF, - STATE(2540), 1, + STATE(2573), 1, sym_comment, - ACTIONS(3639), 39, + ACTIONS(3509), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293095,23 +297857,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118183] = 4, + [119034] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2541), 1, - sym_comment, - ACTIONS(1493), 3, - ts_builtin_sym_end, + ACTIONS(3515), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1491), 37, + STATE(2574), 1, + sym_comment, + ACTIONS(3513), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -293142,40 +297904,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118234] = 4, - ACTIONS(105), 1, + [119085] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2542), 1, + STATE(2575), 1, sym_comment, - ACTIONS(1456), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1454), 37, + ACTIONS(1520), 6, anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1522), 34, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -293189,14 +297951,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [118285] = 4, + [119136] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_DOT2, + STATE(2576), 1, + sym_comment, + STATE(2598), 1, + sym_path, + STATE(2837), 1, + sym_cell_path, + ACTIONS(1474), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1476), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [119193] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3579), 1, anon_sym_LF, - STATE(2543), 1, + STATE(2577), 1, sym_comment, - ACTIONS(3385), 39, + ACTIONS(3577), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293236,14 +298048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118336] = 4, + [119244] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3383), 1, + ACTIONS(3598), 1, anon_sym_LF, - STATE(2544), 1, + STATE(2578), 1, sym_comment, - ACTIONS(3381), 39, + ACTIONS(3596), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293283,35 +298095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118387] = 6, + [119295] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, + ACTIONS(3606), 1, anon_sym_LF, - STATE(2445), 1, - aux_sym_pipe_element_repeat1, - STATE(2545), 1, + STATE(2579), 1, sym_comment, - ACTIONS(5296), 37, - sym_cmd_identifier, + ACTIONS(3604), 39, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -293331,15 +298133,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [118442] = 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, + aux_sym_unquoted_token1, + [119346] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3614), 1, anon_sym_LF, - STATE(2546), 1, + STATE(2580), 1, sym_comment, - ACTIONS(2806), 39, + ACTIONS(3612), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293379,14 +298189,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118493] = 4, + [119397] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_DOT2, + STATE(2581), 1, + sym_comment, + STATE(2598), 1, + sym_path, + STATE(2780), 1, + sym_cell_path, + ACTIONS(1467), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1469), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [119454] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1660), 1, + ACTIONS(3331), 1, anon_sym_LF, - STATE(2547), 1, + STATE(2582), 1, sym_comment, - ACTIONS(1658), 39, + ACTIONS(3329), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293426,23 +298286,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118544] = 4, + [119505] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3649), 1, - anon_sym_LF, - STATE(2548), 1, + ACTIONS(5272), 1, + aux_sym__immediate_decimal_token2, + STATE(2583), 1, sym_comment, - ACTIONS(3647), 39, + ACTIONS(2834), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2832), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -293473,14 +298334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118595] = 4, + [119558] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1656), 1, + ACTIONS(3618), 1, anon_sym_LF, - STATE(2549), 1, + STATE(2584), 1, sym_comment, - ACTIONS(1654), 39, + ACTIONS(3616), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293520,14 +298381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118646] = 4, + [119609] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1456), 1, + ACTIONS(1515), 1, anon_sym_LF, - STATE(2550), 1, + STATE(2585), 1, sym_comment, - ACTIONS(1454), 39, + ACTIONS(1513), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293567,23 +298428,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118697] = 4, + [119660] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2551), 1, - sym_comment, - ACTIONS(3036), 3, - ts_builtin_sym_end, + ACTIONS(3622), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3034), 37, + STATE(2586), 1, + sym_comment, + ACTIONS(3620), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -293614,24 +298475,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118748] = 5, + [119711] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5300), 1, - aux_sym__immediate_decimal_token2, - STATE(2552), 1, - sym_comment, - ACTIONS(2876), 2, - ts_builtin_sym_end, + ACTIONS(3634), 1, anon_sym_LF, - ACTIONS(2874), 37, + STATE(2587), 1, + sym_comment, + ACTIONS(3632), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -293662,64 +298522,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118801] = 7, - ACTIONS(3), 1, + [119762] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_DOT2, - STATE(2464), 1, - aux_sym_cell_path_repeat1, - STATE(2553), 1, + ACTIONS(5432), 1, + anon_sym_LF, + ACTIONS(5435), 1, + anon_sym_PIPE, + STATE(2588), 2, sym_comment, - STATE(2739), 1, - sym_path, - ACTIONS(1440), 12, - sym_identifier, - anon_sym_GT, + aux_sym_pipe_element_repeat1, + ACTIONS(5430), 37, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1442), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118858] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [119815] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3653), 1, + ACTIONS(3640), 1, anon_sym_LF, - STATE(2554), 1, + STATE(2589), 1, sym_comment, - ACTIONS(3651), 39, + ACTIONS(3638), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293759,14 +298617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118909] = 4, + [119866] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3375), 1, + ACTIONS(3644), 1, anon_sym_LF, - STATE(2555), 1, + STATE(2590), 1, sym_comment, - ACTIONS(3373), 39, + ACTIONS(3642), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293806,14 +298664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [118960] = 4, + [119917] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3053), 1, + ACTIONS(3652), 1, anon_sym_LF, - STATE(2556), 1, + STATE(2591), 1, sym_comment, - ACTIONS(3051), 39, + ACTIONS(3650), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293853,14 +298711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119011] = 4, + [119968] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3661), 1, + ACTIONS(3656), 1, anon_sym_LF, - STATE(2557), 1, + STATE(2592), 1, sym_comment, - ACTIONS(3659), 39, + ACTIONS(3654), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293900,14 +298758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119062] = 4, + [120019] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(3666), 1, anon_sym_LF, - STATE(2558), 1, + STATE(2593), 1, sym_comment, - ACTIONS(1524), 39, + ACTIONS(3664), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293947,64 +298805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119113] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_DOT2, - STATE(2553), 1, - sym_path, - STATE(2559), 1, - sym_comment, - STATE(2825), 1, - sym_cell_path, - ACTIONS(1447), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1449), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119170] = 4, + [120070] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3305), 1, + ACTIONS(1547), 1, anon_sym_LF, - STATE(2560), 1, + STATE(2594), 1, sym_comment, - ACTIONS(3303), 39, + ACTIONS(1545), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294044,14 +298852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119221] = 4, + [120121] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3309), 1, + ACTIONS(3674), 1, anon_sym_LF, - STATE(2561), 1, + STATE(2595), 1, sym_comment, - ACTIONS(3307), 39, + ACTIONS(3672), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294091,14 +298899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119272] = 4, + [120172] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3667), 1, + ACTIONS(3678), 1, anon_sym_LF, - STATE(2562), 1, + STATE(2596), 1, sym_comment, - ACTIONS(3665), 39, + ACTIONS(3676), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294138,14 +298946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119323] = 4, + [120223] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3371), 1, + ACTIONS(3682), 1, anon_sym_LF, - STATE(2563), 1, + STATE(2597), 1, sym_comment, - ACTIONS(3369), 39, + ACTIONS(3680), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294185,41 +298993,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119374] = 5, - ACTIONS(105), 1, + [120274] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5302), 1, - anon_sym_QMARK2, - STATE(2564), 1, - sym_comment, - ACTIONS(1466), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(5371), 1, anon_sym_DOT2, - ACTIONS(1464), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2506), 1, + aux_sym_cell_path_repeat1, + STATE(2598), 1, + sym_comment, + STATE(2783), 1, + sym_path, + ACTIONS(1394), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1396), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -294230,73 +299043,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [119427] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2565), 1, - sym_comment, - ACTIONS(5304), 40, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_AT, - anon_sym_LBRACE, - [119476] = 5, + [120331] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5130), 1, - aux_sym__immediate_decimal_token2, - STATE(2566), 1, - sym_comment, - ACTIONS(2808), 2, - ts_builtin_sym_end, + ACTIONS(3705), 1, anon_sym_LF, - ACTIONS(2806), 37, + STATE(2599), 1, + sym_comment, + ACTIONS(3703), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -294327,14 +299090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119529] = 4, + [120382] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3367), 1, + ACTIONS(3709), 1, anon_sym_LF, - STATE(2567), 1, + STATE(2600), 1, sym_comment, - ACTIONS(3365), 39, + ACTIONS(3707), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294374,64 +299137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119580] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5142), 1, - aux_sym_unquoted_token6, - STATE(2568), 1, - sym_comment, - ACTIONS(5140), 2, - anon_sym_DOT2, - aux_sym_unquoted_token4, - ACTIONS(5306), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(1369), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1371), 23, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119637] = 4, + [120433] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3325), 1, + ACTIONS(3713), 1, anon_sym_LF, - STATE(2569), 1, + STATE(2601), 1, sym_comment, - ACTIONS(3323), 39, + ACTIONS(3711), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294471,24 +299184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119688] = 5, + [120484] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4793), 1, - aux_sym_unquoted_token3, - STATE(2570), 1, - sym_comment, - ACTIONS(1371), 2, - ts_builtin_sym_end, + ACTIONS(3717), 1, anon_sym_LF, - ACTIONS(1369), 37, + STATE(2602), 1, + sym_comment, + ACTIONS(3715), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -294519,14 +299231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119741] = 4, + [120535] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3363), 1, + ACTIONS(3721), 1, anon_sym_LF, - STATE(2571), 1, + STATE(2603), 1, sym_comment, - ACTIONS(3361), 39, + ACTIONS(3719), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294566,14 +299278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119792] = 4, + [120586] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1614), 1, + ACTIONS(3234), 1, anon_sym_LF, - STATE(2572), 1, + STATE(2604), 1, sym_comment, - ACTIONS(1612), 39, + ACTIONS(3232), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294613,76 +299325,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119843] = 19, + [120637] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5101), 1, + STATE(2605), 1, + sym_comment, + ACTIONS(5438), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(5103), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LT, - ACTIONS(5109), 1, - anon_sym_DOT2, - ACTIONS(5113), 1, - anon_sym_EQ2, - ACTIONS(5115), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5117), 1, - anon_sym_DASH2, - ACTIONS(5119), 1, - anon_sym_PLUS2, - ACTIONS(5121), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5123), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(5308), 1, - anon_sym_DOLLAR2, - STATE(2573), 1, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + 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_AT, + anon_sym_LBRACE, + [120686] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3725), 1, + anon_sym_LF, + STATE(2606), 1, sym_comment, - STATE(3168), 1, - sym__var, - STATE(3324), 1, - sym__immediate_decimal, - STATE(3320), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(5107), 8, + ACTIONS(3723), 39, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5099), 16, + 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, + aux_sym_unquoted_token1, + [120737] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3729), 1, + anon_sym_LF, + STATE(2607), 1, + sym_comment, + ACTIONS(3727), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [119924] = 4, + 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, + aux_sym_unquoted_token1, + [120788] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3359), 1, + ACTIONS(3733), 1, anon_sym_LF, - STATE(2574), 1, + STATE(2608), 1, sym_comment, - ACTIONS(3357), 39, + ACTIONS(3731), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294722,14 +299512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [119975] = 4, + [120839] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3329), 1, + ACTIONS(2908), 1, anon_sym_LF, - STATE(2575), 1, + STATE(2609), 1, sym_comment, - ACTIONS(3327), 39, + ACTIONS(2906), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294769,63 +299559,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120026] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5310), 1, - anon_sym_DOT2, - STATE(2739), 1, - sym_path, - STATE(2576), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [120081] = 4, + [120890] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3333), 1, + ACTIONS(3747), 1, anon_sym_LF, - STATE(2577), 1, + STATE(2610), 1, sym_comment, - ACTIONS(3331), 39, + ACTIONS(3745), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294865,16 +299606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120132] = 4, + [120941] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2578), 1, + STATE(2611), 1, sym_comment, - ACTIONS(1487), 3, + ACTIONS(2908), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1485), 37, + ACTIONS(2906), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294912,14 +299653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120183] = 4, + [120992] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3355), 1, + ACTIONS(3751), 1, anon_sym_LF, - STATE(2579), 1, + STATE(2612), 1, sym_comment, - ACTIONS(3353), 39, + ACTIONS(3749), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -294959,23 +299700,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120234] = 4, + [121043] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2580), 1, - sym_comment, - ACTIONS(1513), 3, - ts_builtin_sym_end, + ACTIONS(3757), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1511), 37, + STATE(2613), 1, + sym_comment, + ACTIONS(3755), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -295006,14 +299747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120285] = 4, + [121094] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3337), 1, + ACTIONS(3761), 1, anon_sym_LF, - STATE(2581), 1, + STATE(2614), 1, sym_comment, - ACTIONS(3335), 39, + ACTIONS(3759), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295053,41 +299794,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120336] = 5, - ACTIONS(105), 1, + [121145] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5302), 1, - anon_sym_QMARK2, - STATE(2582), 1, - sym_comment, - ACTIONS(1466), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(5440), 1, anon_sym_DOT2, - ACTIONS(1464), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2557), 1, + sym_path, + STATE(2615), 1, + sym_comment, + STATE(2780), 1, + sym_cell_path, + ACTIONS(1467), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1469), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -295098,27 +299844,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [120389] = 5, + [121202] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5313), 1, - sym__long_flag_identifier, - STATE(2583), 1, - sym_comment, - ACTIONS(2964), 2, - ts_builtin_sym_end, + ACTIONS(3769), 1, anon_sym_LF, - ACTIONS(2960), 37, + STATE(2616), 1, + sym_comment, + ACTIONS(3767), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -295149,23 +299891,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120442] = 4, + [121253] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2584), 1, - sym_comment, - ACTIONS(1509), 3, - ts_builtin_sym_end, + ACTIONS(3773), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1507), 37, + STATE(2617), 1, + sym_comment, + ACTIONS(3771), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -295196,61 +299938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120493] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2585), 1, - sym_comment, - ACTIONS(1485), 6, - anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1487), 34, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [120544] = 4, + [121304] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1497), 1, + ACTIONS(3777), 1, anon_sym_LF, - STATE(2586), 1, + STATE(2618), 1, sym_comment, - ACTIONS(1495), 39, + ACTIONS(3775), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295290,14 +299985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120595] = 4, + [121355] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3161), 1, + ACTIONS(2986), 1, anon_sym_LF, - STATE(2587), 1, + STATE(2619), 1, sym_comment, - ACTIONS(3159), 39, + ACTIONS(2984), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295337,20 +300032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120646] = 7, + [121406] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5318), 1, aux_sym_unquoted_token6, - STATE(2588), 1, + STATE(2620), 1, sym_comment, - ACTIONS(5140), 2, + ACTIONS(5316), 2, anon_sym_DOT2, aux_sym_unquoted_token4, - ACTIONS(5315), 2, + ACTIONS(5443), 2, anon_sym_LT, anon_sym_EQ2, - ACTIONS(1369), 12, + ACTIONS(1375), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -295363,7 +300058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1371), 23, + ACTIONS(1377), 23, anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, @@ -295387,14 +300082,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [120703] = 4, + [121463] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3351), 1, + STATE(2621), 1, + sym_comment, + ACTIONS(1534), 3, + ts_builtin_sym_end, anon_sym_LF, - STATE(2589), 1, + anon_sym_DOT2, + ACTIONS(1532), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [121514] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3781), 1, + anon_sym_LF, + STATE(2622), 1, sym_comment, - ACTIONS(3349), 39, + ACTIONS(3779), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295434,18 +300176,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120754] = 7, + [121565] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5234), 1, + ACTIONS(5445), 1, anon_sym_DOT2, - STATE(2521), 1, - aux_sym_cell_path_repeat1, - STATE(2590), 1, - sym_comment, - STATE(2739), 1, + STATE(2783), 1, sym_path, - ACTIONS(1440), 12, + STATE(2623), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -295458,7 +300199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1442), 25, + ACTIONS(1389), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -295484,23 +300225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [120811] = 4, + [121620] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3696), 1, - anon_sym_LF, - STATE(2591), 1, + ACTIONS(5298), 1, + anon_sym_DOT2, + STATE(2624), 1, sym_comment, - ACTIONS(3694), 39, + ACTIONS(2834), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2832), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -295531,14 +300273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120862] = 4, + [121673] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3700), 1, + ACTIONS(1447), 1, anon_sym_LF, - STATE(2592), 1, + STATE(2625), 1, sym_comment, - ACTIONS(3698), 39, + ACTIONS(1445), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295578,14 +300320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120913] = 4, + [121724] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3347), 1, + ACTIONS(3258), 1, anon_sym_LF, - STATE(2593), 1, + STATE(2626), 1, sym_comment, - ACTIONS(3345), 39, + ACTIONS(3256), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295625,23 +300367,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [120964] = 4, + [121775] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2594), 1, - sym_comment, - ACTIONS(2876), 3, - ts_builtin_sym_end, + ACTIONS(3465), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2874), 37, + STATE(2627), 1, + sym_comment, + ACTIONS(3463), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -295672,14 +300414,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121015] = 4, + [121826] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2628), 1, + sym_comment, + ACTIONS(1524), 6, + anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1526), 34, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [121877] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_DOT2, + STATE(2598), 1, + sym_path, + STATE(2629), 1, + sym_comment, + STATE(2827), 1, + sym_cell_path, + ACTIONS(1459), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1461), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [121934] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3708), 1, + ACTIONS(3273), 1, anon_sym_LF, - STATE(2595), 1, + STATE(2630), 1, sym_comment, - ACTIONS(3706), 39, + ACTIONS(3271), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295719,61 +300558,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121066] = 4, + [121985] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2596), 1, + ACTIONS(5448), 1, + anon_sym_QMARK2, + STATE(2631), 1, sym_comment, - ACTIONS(3383), 2, + ACTIONS(1421), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3381), 37, + anon_sym_DOT2, + ACTIONS(1419), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [122038] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5448), 1, + anon_sym_QMARK2, + STATE(2632), 1, + sym_comment, + ACTIONS(1421), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1419), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [122091] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3011), 1, anon_sym_DOLLAR, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5452), 1, + anon_sym_LT, + ACTIONS(5454), 1, + anon_sym_DOT2, + ACTIONS(5456), 1, + anon_sym_EQ2, + ACTIONS(5458), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5460), 1, + anon_sym_DASH2, + ACTIONS(5462), 1, + anon_sym_PLUS2, + STATE(2633), 1, + sym_comment, + STATE(3193), 1, + sym__var, + STATE(3313), 1, + sym__immediate_decimal, + STATE(3314), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2004), 8, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2006), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_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, + [122163] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_DOT2, + ACTIONS(5458), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5460), 1, + anon_sym_DASH2, + ACTIONS(5462), 1, + anon_sym_PLUS2, + ACTIONS(5464), 1, + anon_sym_LT, + ACTIONS(5466), 1, + anon_sym_EQ2, + STATE(2634), 1, + sym_comment, + STATE(3193), 1, + sym__var, + STATE(3309), 1, + sym__immediate_decimal, + STATE(3311), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2024), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2026), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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_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, - aux_sym_unquoted_token1, - [121116] = 4, + [122235] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2597), 1, + ACTIONS(5470), 1, + anon_sym_DOT2, + STATE(2635), 1, + sym_comment, + ACTIONS(215), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5468), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(213), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [122289] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2636), 1, sym_comment, - ACTIONS(3447), 2, + ACTIONS(1665), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3445), 37, + ACTIONS(1663), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295811,15 +300862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121166] = 4, + [122339] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2598), 1, + STATE(2637), 1, sym_comment, - ACTIONS(3036), 2, + ACTIONS(1657), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3034), 37, + ACTIONS(1655), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295857,19 +300908,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121216] = 5, + [122389] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_QMARK2, - STATE(2599), 1, + ACTIONS(5472), 1, + anon_sym_DOT2, + ACTIONS(5474), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5476), 1, + aux_sym_unquoted_token2, + STATE(2638), 1, sym_comment, - ACTIONS(1464), 13, + ACTIONS(1445), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -295878,12 +300932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1466), 25, + ACTIONS(1447), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -295904,15 +300957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [121268] = 4, + [122445] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2600), 1, + STATE(2639), 1, sym_comment, - ACTIONS(3559), 2, + ACTIONS(1447), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3557), 37, + ACTIONS(1445), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295950,15 +301003,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121318] = 4, + [122495] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2601), 1, + ACTIONS(5478), 1, + anon_sym_LF, + STATE(2640), 1, sym_comment, - ACTIONS(3515), 2, + ACTIONS(5430), 38, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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_CARET, + [122545] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2641), 1, + sym_comment, + ACTIONS(1639), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3513), 37, + ACTIONS(1637), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -295996,72 +301095,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121368] = 15, - ACTIONS(3), 1, + [122595] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5103), 1, - anon_sym_LPAREN, - ACTIONS(5117), 1, - anon_sym_DASH2, - ACTIONS(5119), 1, - anon_sym_PLUS2, - ACTIONS(5319), 1, - anon_sym_LT, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(5323), 1, - anon_sym_EQ2, - ACTIONS(5325), 1, - aux_sym__immediate_decimal_token1, - STATE(2602), 1, + STATE(2642), 1, sym_comment, - STATE(3168), 1, - sym__var, - STATE(3275), 1, - sym__immediate_decimal, - STATE(3295), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1977), 8, + ACTIONS(5276), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5274), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1979), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_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, - [121440] = 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, + aux_sym_unquoted_token1, + [122645] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2603), 1, + STATE(2643), 1, sym_comment, - ACTIONS(3507), 2, + ACTIONS(5395), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3505), 37, + ACTIONS(5393), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296099,15 +301187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121490] = 4, + [122695] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2604), 1, + STATE(2644), 1, sym_comment, - ACTIONS(3503), 2, + ACTIONS(5391), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3501), 37, + ACTIONS(5389), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296145,15 +301233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121540] = 4, + [122745] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2605), 1, + STATE(2645), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(5387), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1515), 37, + ACTIONS(5385), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296191,15 +301279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121590] = 4, + [122795] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2606), 1, + STATE(2646), 1, sym_comment, - ACTIONS(1590), 2, + ACTIONS(3230), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1588), 37, + ACTIONS(3228), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296237,62 +301325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121640] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_QMARK2, - STATE(2607), 1, - sym_comment, - ACTIONS(1464), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1466), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121692] = 4, + [122845] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2608), 1, + STATE(2647), 1, sym_comment, - ACTIONS(3407), 2, + ACTIONS(5383), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3405), 37, + ACTIONS(5381), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296330,15 +301371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121742] = 4, + [122895] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2609), 1, + STATE(2648), 1, sym_comment, - ACTIONS(1598), 2, + ACTIONS(3429), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1596), 37, + ACTIONS(3427), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296376,65 +301417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121792] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5161), 1, - anon_sym_list, - ACTIONS(5327), 1, - anon_sym_GT, - STATE(2610), 1, - sym_comment, - STATE(6093), 1, - sym__all_type, - ACTIONS(5159), 2, - anon_sym_table, - anon_sym_record, - STATE(4413), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(5157), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [121850] = 4, + [122945] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(2649), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(3433), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1664), 37, + ACTIONS(3431), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296472,15 +301463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121900] = 4, + [122995] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2612), 1, + STATE(2650), 1, sym_comment, - ACTIONS(3613), 2, + ACTIONS(1697), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3611), 37, + ACTIONS(1695), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296518,16 +301509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [121950] = 4, + [123045] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2613), 1, + STATE(2651), 1, sym_comment, - ACTIONS(1487), 3, + ACTIONS(1511), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1485), 36, + ACTIONS(1509), 36, anon_sym_EQ, anon_sym_SEMI, anon_sym_PIPE, @@ -296564,41 +301555,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122000] = 6, - ACTIONS(105), 1, + [123095] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5331), 1, - anon_sym_DOT2, - STATE(2614), 1, + STATE(2652), 1, sym_comment, - ACTIONS(215), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5329), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(213), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1441), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1443), 26, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -296609,18 +301601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [122054] = 4, + [123145] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2653), 1, sym_comment, - ACTIONS(3161), 2, + ACTIONS(1609), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3159), 37, + ACTIONS(1607), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296658,15 +301647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122104] = 4, + [123195] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2616), 1, + STATE(2654), 1, sym_comment, - ACTIONS(1606), 2, + ACTIONS(3465), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1604), 37, + ACTIONS(3463), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296704,15 +301693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122154] = 4, + [123245] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2617), 1, + STATE(2655), 1, sym_comment, - ACTIONS(1526), 2, + ACTIONS(3469), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1524), 37, + ACTIONS(3467), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296750,15 +301739,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122204] = 4, + [123295] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2618), 1, + STATE(2656), 1, + sym_comment, + ACTIONS(1613), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1611), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [123345] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2657), 1, sym_comment, - ACTIONS(1582), 2, + ACTIONS(3473), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1580), 37, + ACTIONS(3471), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296796,22 +301831,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122254] = 7, + [123395] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2658), 1, + sym_comment, + ACTIONS(3477), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3475), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [123445] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2659), 1, + sym_comment, + ACTIONS(3481), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3479), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + aux_sym_unquoted_token1, + [123495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5333), 1, - anon_sym_DOT2, - ACTIONS(5335), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5337), 1, - aux_sym_unquoted_token2, - STATE(2619), 1, + STATE(2660), 1, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1437), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -296820,14 +301942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1428), 24, + ACTIONS(1439), 26, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -296845,72 +301969,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [122310] = 15, - ACTIONS(3), 1, + [123545] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5103), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5117), 1, - anon_sym_DASH2, - ACTIONS(5119), 1, - anon_sym_PLUS2, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(5339), 1, - anon_sym_LT, - ACTIONS(5341), 1, - anon_sym_EQ2, - STATE(2620), 1, + STATE(2661), 1, sym_comment, - STATE(3168), 1, - sym__var, - STATE(3265), 1, - sym__immediate_decimal, - STATE(3263), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2003), 8, + ACTIONS(3461), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3459), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2005), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_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, - [122382] = 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, + aux_sym_unquoted_token1, + [123595] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2621), 1, + STATE(2662), 1, sym_comment, - ACTIONS(1618), 2, + ACTIONS(1601), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1616), 37, + ACTIONS(1599), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -296948,65 +302061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122432] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5161), 1, - anon_sym_list, - ACTIONS(5343), 1, - anon_sym_GT, - STATE(2622), 1, - sym_comment, - STATE(5913), 1, - sym__all_type, - ACTIONS(5159), 2, - anon_sym_table, - anon_sym_record, - STATE(4413), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(5157), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [122490] = 4, + [123645] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2623), 1, + STATE(2663), 1, sym_comment, - ACTIONS(3053), 2, + ACTIONS(1689), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3051), 37, + ACTIONS(1687), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297044,15 +302107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122540] = 4, + [123695] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2624), 1, + STATE(2664), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(1585), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2806), 37, + ACTIONS(1583), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297090,15 +302153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122590] = 4, + [123745] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2625), 1, + STATE(2665), 1, sym_comment, - ACTIONS(1562), 2, + ACTIONS(1677), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1560), 37, + ACTIONS(1675), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297136,15 +302199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122640] = 4, + [123795] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2626), 1, + STATE(2666), 1, sym_comment, - ACTIONS(1566), 2, + ACTIONS(3705), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1564), 37, + ACTIONS(3703), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297182,64 +302245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122690] = 4, + [123845] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2627), 1, - sym_comment, - ACTIONS(1493), 3, - ts_builtin_sym_end, + ACTIONS(5482), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1491), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [122740] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2628), 1, + STATE(2667), 1, sym_comment, - ACTIONS(2784), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2782), 37, + ACTIONS(5480), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, @@ -297274,61 +302291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122790] = 4, + [123895] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2629), 1, - sym_comment, - ACTIONS(1513), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1511), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [122840] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2630), 1, + STATE(2668), 1, sym_comment, - ACTIONS(1428), 2, + ACTIONS(1515), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1426), 37, + ACTIONS(1513), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297366,107 +302337,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [122890] = 4, - ACTIONS(105), 1, + [123945] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2631), 1, - sym_comment, - ACTIONS(5261), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5259), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3011), 1, anon_sym_DOLLAR, + ACTIONS(5196), 1, + anon_sym_LPAREN, + ACTIONS(5210), 1, + anon_sym_DASH2, + ACTIONS(5212), 1, + anon_sym_PLUS2, + ACTIONS(5484), 1, + anon_sym_LT, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(5488), 1, + anon_sym_EQ2, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token1, + STATE(2669), 1, + sym_comment, + STATE(3192), 1, + sym__var, + STATE(3396), 1, + sym__immediate_decimal, + STATE(3397), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2032), 8, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_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, - aux_sym_unquoted_token1, - [122940] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2632), 1, - sym_comment, - ACTIONS(1670), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1668), 37, - anon_sym_SEMI, + aux_sym__unquoted_in_list_token1, + ACTIONS(2034), 19, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [122990] = 4, + [124017] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2633), 1, + STATE(2670), 1, sym_comment, - ACTIONS(5265), 2, + ACTIONS(1605), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5263), 37, + ACTIONS(1603), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297504,15 +302440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123040] = 4, + [124067] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2634), 1, + STATE(2671), 1, sym_comment, - ACTIONS(1578), 2, + ACTIONS(3377), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1576), 37, + ACTIONS(3375), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297550,15 +302486,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123090] = 4, + [124117] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5318), 1, + aux_sym_unquoted_token6, + STATE(2672), 1, + sym_comment, + ACTIONS(5316), 2, + anon_sym_DOT2, + aux_sym_unquoted_token4, + ACTIONS(5492), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(1375), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1377), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [124173] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2635), 1, + STATE(2673), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(3345), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1495), 37, + ACTIONS(3343), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297596,15 +302581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123140] = 4, + [124223] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2636), 1, + STATE(2674), 1, sym_comment, - ACTIONS(5146), 2, + ACTIONS(1649), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5144), 37, + ACTIONS(1647), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297642,15 +302627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123190] = 4, + [124273] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2637), 1, + STATE(2675), 1, sym_comment, - ACTIONS(2876), 2, + ACTIONS(1589), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2874), 37, + ACTIONS(1587), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297688,15 +302673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123240] = 4, + [124323] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2638), 1, + STATE(2676), 1, sym_comment, - ACTIONS(3667), 2, + ACTIONS(1681), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3665), 37, + ACTIONS(1679), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297734,15 +302719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123290] = 4, + [124373] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2639), 1, + STATE(2677), 1, sym_comment, - ACTIONS(5253), 2, + ACTIONS(3335), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5251), 37, + ACTIONS(3333), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297780,15 +302765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123340] = 4, + [124423] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2640), 1, + STATE(2678), 1, sym_comment, - ACTIONS(3483), 2, + ACTIONS(3353), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3481), 37, + ACTIONS(3351), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297826,15 +302811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123390] = 4, + [124473] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2641), 1, + STATE(2679), 1, sym_comment, - ACTIONS(3479), 2, + ACTIONS(1635), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3477), 37, + ACTIONS(1633), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297872,15 +302857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123440] = 4, + [124523] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2642), 1, + STATE(2680), 1, sym_comment, - ACTIONS(3451), 2, + ACTIONS(3515), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3449), 37, + ACTIONS(3513), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297918,15 +302903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123490] = 4, + [124573] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2643), 1, + STATE(2681), 1, sym_comment, - ACTIONS(1456), 2, + ACTIONS(1593), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1454), 37, + ACTIONS(1591), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -297964,15 +302949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123540] = 4, + [124623] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2644), 1, + STATE(2682), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(1534), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5247), 37, + ACTIONS(1532), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298010,15 +302995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123590] = 4, + [124673] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2645), 1, + STATE(2683), 1, sym_comment, - ACTIONS(5245), 2, + ACTIONS(1621), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5243), 37, + ACTIONS(1619), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298056,15 +303041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123640] = 4, + [124723] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2646), 1, + STATE(2684), 1, sym_comment, - ACTIONS(3443), 2, + ACTIONS(1621), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3441), 37, + ACTIONS(1619), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298102,15 +303087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123690] = 4, + [124773] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2647), 1, + STATE(2685), 1, sym_comment, - ACTIONS(3435), 2, + ACTIONS(2986), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3433), 37, + ACTIONS(2984), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298148,15 +303133,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123740] = 4, + [124823] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5326), 1, + anon_sym_list, + ACTIONS(5494), 1, + anon_sym_GT, + STATE(2686), 1, + sym_comment, + STATE(5982), 1, + sym__all_type, + ACTIONS(5324), 2, + anon_sym_table, + anon_sym_record, + STATE(4331), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(5322), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [124881] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2648), 1, + STATE(2687), 1, sym_comment, - ACTIONS(3431), 2, + ACTIONS(3234), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3429), 37, + ACTIONS(3232), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298194,15 +303229,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123790] = 4, + [124931] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5218), 1, + anon_sym_DOT2, + STATE(2425), 1, + sym_path, + STATE(2688), 1, + sym_comment, + STATE(2795), 1, + sym_cell_path, + ACTIONS(1400), 6, + anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1402), 30, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [124987] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2649), 1, + STATE(2689), 1, sym_comment, - ACTIONS(3427), 2, + ACTIONS(3258), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3425), 37, + ACTIONS(3256), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298240,15 +303324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123840] = 4, + [125037] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2650), 1, + STATE(2690), 1, sym_comment, - ACTIONS(3419), 2, + ACTIONS(1547), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3417), 37, + ACTIONS(1545), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298286,15 +303370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123890] = 4, + [125087] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2651), 1, + STATE(2691), 1, sym_comment, - ACTIONS(3661), 2, + ACTIONS(3511), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3659), 37, + ACTIONS(3509), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298332,15 +303416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123940] = 4, + [125137] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2652), 1, + STATE(2692), 1, sym_comment, - ACTIONS(3415), 2, + ACTIONS(215), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3413), 37, + ACTIONS(213), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298378,15 +303462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [123990] = 4, + [125187] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2653), 1, + STATE(2693), 1, sym_comment, - ACTIONS(3411), 2, + ACTIONS(1685), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3409), 37, + ACTIONS(1683), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298424,15 +303508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124040] = 4, + [125237] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2654), 1, + STATE(2694), 1, sym_comment, - ACTIONS(3155), 2, + ACTIONS(1673), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3153), 37, + ACTIONS(1671), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298470,24 +303554,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124090] = 4, + [125287] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2655), 1, - sym_comment, - ACTIONS(3399), 2, - ts_builtin_sym_end, + ACTIONS(5498), 1, anon_sym_LF, - ACTIONS(3397), 37, - anon_sym_SEMI, + STATE(2695), 1, + sym_comment, + ACTIONS(5496), 38, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -298507,27 +303599,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_unquoted_token1, - [124140] = 4, + anon_sym_CARET, + [125337] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5347), 1, - anon_sym_LF, - STATE(2656), 1, + STATE(2696), 1, sym_comment, - ACTIONS(5345), 38, + ACTIONS(3507), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3505), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, @@ -298562,15 +303646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124190] = 4, + [125387] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2657), 1, + STATE(2697), 1, sym_comment, - ACTIONS(3395), 2, + ACTIONS(3503), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3393), 37, + ACTIONS(3501), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298608,15 +303692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124240] = 4, + [125437] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2658), 1, + STATE(2698), 1, sym_comment, - ACTIONS(3387), 2, + ACTIONS(1627), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3385), 37, + ACTIONS(1625), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298654,15 +303738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124290] = 4, + [125487] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2659), 1, + STATE(2699), 1, sym_comment, - ACTIONS(5241), 2, + ACTIONS(2908), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5239), 37, + ACTIONS(2906), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298700,24 +303784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124340] = 7, + [125537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5142), 1, - aux_sym_unquoted_token6, - STATE(2660), 1, + ACTIONS(5500), 1, + anon_sym_QMARK2, + STATE(2700), 1, sym_comment, - ACTIONS(5140), 2, - anon_sym_DOT2, - aux_sym_unquoted_token4, - ACTIONS(5349), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(1369), 12, + ACTIONS(1419), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -298726,8 +303805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1371), 22, + ACTIONS(1421), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -298749,15 +303831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [124396] = 4, + [125589] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2661), 1, + STATE(2701), 1, sym_comment, - ACTIONS(3637), 2, + ACTIONS(3781), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3635), 37, + ACTIONS(3779), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298795,15 +303877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124446] = 4, + [125639] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2662), 1, + STATE(2702), 1, sym_comment, - ACTIONS(1477), 2, + ACTIONS(3777), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1475), 37, + ACTIONS(3775), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298841,15 +303923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124496] = 4, + [125689] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2663), 1, + STATE(2703), 1, sym_comment, - ACTIONS(1622), 2, + ACTIONS(3773), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1620), 37, + ACTIONS(3771), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -298887,32 +303969,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124546] = 4, + [125739] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5353), 1, - anon_sym_LF, - STATE(2664), 1, + STATE(2704), 1, sym_comment, - ACTIONS(5351), 38, - sym_cmd_identifier, + ACTIONS(3769), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3767), 37, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -298932,19 +304006,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [124596] = 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, + aux_sym_unquoted_token1, + [125789] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_LF, - STATE(2665), 1, + STATE(2705), 1, sym_comment, - ACTIONS(5355), 38, + ACTIONS(1643), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1641), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, @@ -298979,35 +304061,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124646] = 15, + [125839] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5196), 1, anon_sym_LPAREN, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_DOT2, - ACTIONS(5365), 1, - anon_sym_EQ2, - ACTIONS(5367), 1, + ACTIONS(5208), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5210), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5212), 1, anon_sym_PLUS2, - STATE(2666), 1, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(5502), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_EQ2, + STATE(2706), 1, sym_comment, - STATE(3189), 1, + STATE(3192), 1, sym__var, - STATE(3346), 1, + STATE(3398), 1, sym__immediate_decimal, - STATE(3344), 2, + STATE(3389), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2019), 8, + ACTIONS(2066), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -299016,7 +304098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2021), 19, + ACTIONS(2068), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -299036,107 +304118,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [124718] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2667), 1, - sym_comment, - ACTIONS(3653), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3651), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [124768] = 4, + [125911] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2668), 1, - sym_comment, - ACTIONS(1602), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1600), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [124818] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2669), 1, + STATE(2707), 1, sym_comment, - ACTIONS(3375), 2, + ACTIONS(1631), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3373), 37, + ACTIONS(1629), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299174,15 +304164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124868] = 4, + [125961] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2670), 1, + STATE(2708), 1, sym_comment, - ACTIONS(3617), 2, + ACTIONS(3713), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3615), 37, + ACTIONS(3711), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299220,221 +304210,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [124918] = 15, + [126011] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(4542), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5196), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DOT2, - ACTIONS(5367), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5373), 1, + ACTIONS(5198), 1, anon_sym_LT, - ACTIONS(5375), 1, - anon_sym_EQ2, - STATE(2671), 1, - sym_comment, - STATE(3189), 1, - sym__var, - STATE(3348), 1, - sym__immediate_decimal, - STATE(3347), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2011), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2013), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [124990] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5202), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5206), 1, + anon_sym_EQ2, + ACTIONS(5208), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5210), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5212), 1, anon_sym_PLUS2, - ACTIONS(5377), 1, - anon_sym_LT, - ACTIONS(5379), 1, - anon_sym_EQ2, - STATE(2672), 1, + ACTIONS(5214), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5216), 1, + aux_sym__unquoted_in_list_token7, + STATE(2709), 1, sym_comment, - STATE(3189), 1, + STATE(3192), 1, sym__var, - STATE(3351), 1, + STATE(3407), 1, sym__immediate_decimal, - STATE(3350), 2, + STATE(3408), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1957), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1959), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [125062] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2673), 1, - sym_comment, - ACTIONS(1454), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1456), 26, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125112] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2674), 1, - sym_comment, - ACTIONS(1602), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1600), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(5200), 8, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(5192), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [125162] = 4, + [126087] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2675), 1, + STATE(2710), 1, sym_comment, - ACTIONS(1630), 2, + ACTIONS(3757), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1628), 37, + ACTIONS(3755), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299472,61 +304315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125212] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_LF, - STATE(2676), 1, - sym_comment, - ACTIONS(5222), 38, - sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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_CARET, - [125262] = 4, + [126137] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2677), 1, + STATE(2711), 1, sym_comment, - ACTIONS(3371), 2, + ACTIONS(3751), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3369), 37, + ACTIONS(3749), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299564,15 +304361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125312] = 4, + [126187] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2678), 1, + STATE(2712), 1, sym_comment, - ACTIONS(1574), 2, + ACTIONS(3747), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1572), 37, + ACTIONS(3745), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299610,15 +304407,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125362] = 4, + [126237] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5326), 1, + anon_sym_list, + ACTIONS(5506), 1, + anon_sym_GT, + STATE(2713), 1, + sym_comment, + STATE(6067), 1, + sym__all_type, + ACTIONS(5324), 2, + anon_sym_table, + anon_sym_record, + STATE(4331), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(5322), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [126295] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2679), 1, + STATE(2714), 1, sym_comment, - ACTIONS(3367), 2, + ACTIONS(1443), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3365), 37, + ACTIONS(1441), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299656,18 +304503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125412] = 4, + [126345] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2680), 1, - sym_comment, - ACTIONS(3363), 2, - ts_builtin_sym_end, + ACTIONS(5510), 1, anon_sym_LF, - ACTIONS(3361), 37, + STATE(2715), 1, + sym_comment, + ACTIONS(5508), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, @@ -299702,15 +304549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125462] = 4, + [126395] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2681), 1, + STATE(2716), 1, sym_comment, - ACTIONS(3359), 2, + ACTIONS(3733), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3357), 37, + ACTIONS(3731), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299748,42 +304595,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125512] = 7, - ACTIONS(3), 1, + [126445] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(2682), 1, + STATE(2717), 1, sym_comment, - STATE(2749), 1, - sym_cell_path, - ACTIONS(1395), 6, + ACTIONS(1522), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1520), 36, anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1397), 30, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -299797,15 +304641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [125568] = 4, + [126495] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2683), 1, + STATE(2718), 1, sym_comment, - ACTIONS(3649), 2, + ACTIONS(3729), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3647), 37, + ACTIONS(3727), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299843,15 +304687,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125618] = 4, + [126545] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2684), 1, + STATE(2719), 1, sym_comment, - ACTIONS(1634), 2, + ACTIONS(3579), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1632), 37, + ACTIONS(3577), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299889,15 +304733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125668] = 4, + [126595] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2685), 1, + STATE(2720), 1, sym_comment, - ACTIONS(3641), 2, + ACTIONS(3761), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3639), 37, + ACTIONS(3759), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299935,15 +304779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125718] = 4, + [126645] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2686), 1, + STATE(2721), 1, sym_comment, - ACTIONS(3355), 2, + ACTIONS(3725), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3353), 37, + ACTIONS(3723), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -299981,15 +304825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125768] = 4, + [126695] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2687), 1, + STATE(2722), 1, sym_comment, - ACTIONS(3351), 2, + ACTIONS(2834), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3349), 37, + ACTIONS(2832), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300027,61 +304871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125818] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2688), 1, - sym_comment, - ACTIONS(1475), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1477), 26, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125868] = 4, + [126745] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2689), 1, + STATE(2723), 1, sym_comment, - ACTIONS(1586), 2, + ACTIONS(3721), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1584), 37, + ACTIONS(3719), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300119,15 +304917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125918] = 4, + [126795] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2690), 1, + STATE(2724), 1, sym_comment, - ACTIONS(3347), 2, + ACTIONS(3598), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3345), 37, + ACTIONS(3596), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300165,15 +304963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [125968] = 4, + [126845] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2691), 1, + STATE(2725), 1, sym_comment, - ACTIONS(3343), 2, + ACTIONS(3717), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3341), 37, + ACTIONS(3715), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300211,72 +305009,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126018] = 15, - ACTIONS(3), 1, + [126895] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DOT2, - ACTIONS(5367), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_LT, - ACTIONS(5385), 1, - anon_sym_EQ2, - STATE(2692), 1, + STATE(2726), 1, sym_comment, - STATE(3189), 1, - sym__var, - STATE(3353), 1, - sym__immediate_decimal, - STATE(3352), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1995), 8, + ACTIONS(3606), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3604), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1997), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_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, - [126090] = 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, + aux_sym_unquoted_token1, + [126945] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2693), 1, + STATE(2727), 1, sym_comment, - ACTIONS(3337), 2, + ACTIONS(3709), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3335), 37, + ACTIONS(3707), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300314,15 +305101,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126140] = 4, + [126995] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2694), 1, + STATE(2728), 1, + sym_comment, + ACTIONS(1515), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1513), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [127045] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2729), 1, sym_comment, - ACTIONS(3333), 2, + ACTIONS(3652), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3331), 37, + ACTIONS(3650), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300360,15 +305193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126190] = 4, + [127095] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2695), 1, + STATE(2730), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(3682), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1646), 37, + ACTIONS(3680), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300406,15 +305239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126240] = 4, + [127145] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2696), 1, + STATE(2731), 1, sym_comment, - ACTIONS(3329), 2, + ACTIONS(3614), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3327), 37, + ACTIONS(3612), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300452,15 +305285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126290] = 4, + [127195] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2697), 1, + STATE(2732), 1, sym_comment, - ACTIONS(3325), 2, + ACTIONS(3331), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3323), 37, + ACTIONS(3329), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300498,74 +305331,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126340] = 17, - ACTIONS(3), 1, + [127245] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4293), 1, - anon_sym_DOLLAR, - ACTIONS(5103), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LT, - ACTIONS(5109), 1, - anon_sym_DOT2, - ACTIONS(5113), 1, - anon_sym_EQ2, - ACTIONS(5115), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5117), 1, - anon_sym_DASH2, - ACTIONS(5119), 1, - anon_sym_PLUS2, - ACTIONS(5121), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5123), 1, - aux_sym__unquoted_in_list_token7, - STATE(2698), 1, + STATE(2733), 1, sym_comment, - STATE(3168), 1, - sym__var, - STATE(3324), 1, - sym__immediate_decimal, - STATE(3320), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(5107), 8, + ACTIONS(3678), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3676), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5099), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [126416] = 4, + 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, + aux_sym_unquoted_token1, + [127295] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2699), 1, + STATE(2734), 1, + sym_comment, + ACTIONS(1526), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1524), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [127345] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2735), 1, sym_comment, - ACTIONS(3309), 2, + ACTIONS(3674), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3307), 37, + ACTIONS(3672), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300603,15 +305469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126466] = 4, + [127395] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2700), 1, + STATE(2736), 1, sym_comment, - ACTIONS(3696), 2, + ACTIONS(1693), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3694), 37, + ACTIONS(1691), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300649,15 +305515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126516] = 4, + [127445] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2701), 1, + STATE(2737), 1, sym_comment, - ACTIONS(3305), 2, + ACTIONS(3666), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3303), 37, + ACTIONS(3664), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300695,15 +305561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126566] = 4, + [127495] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2702), 1, + STATE(2738), 1, sym_comment, - ACTIONS(1614), 2, + ACTIONS(3618), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1612), 37, + ACTIONS(3616), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300741,15 +305607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126616] = 4, + [127545] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2703), 1, + STATE(2739), 1, sym_comment, - ACTIONS(3439), 2, + ACTIONS(3656), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3437), 37, + ACTIONS(3654), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300787,65 +305653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126666] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5161), 1, - anon_sym_list, - ACTIONS(5387), 1, - anon_sym_GT, - STATE(2704), 1, - sym_comment, - STATE(5984), 1, - sym__all_type, - ACTIONS(5159), 2, - anon_sym_table, - anon_sym_record, - STATE(4413), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(5157), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [126724] = 4, + [127595] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2705), 1, + STATE(2740), 1, sym_comment, - ACTIONS(1493), 2, + ACTIONS(1439), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1491), 37, + ACTIONS(1437), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300883,39 +305699,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126774] = 4, - ACTIONS(105), 1, + [127645] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2706), 1, - sym_comment, - ACTIONS(1503), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(1501), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(5458), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5460), 1, + anon_sym_DASH2, + ACTIONS(5462), 1, + anon_sym_PLUS2, + ACTIONS(5512), 1, + anon_sym_LT, + ACTIONS(5514), 1, + anon_sym_EQ2, + STATE(2741), 1, + sym_comment, + STATE(3193), 1, + sym__var, + STATE(3304), 1, + sym__immediate_decimal, + STATE(3300), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2058), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2060), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [127717] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5500), 1, + anon_sym_QMARK2, + STATE(2742), 1, + sym_comment, + ACTIONS(1419), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1421), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -300926,18 +305803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [126824] = 4, + [127769] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2707), 1, + STATE(2743), 1, sym_comment, - ACTIONS(1652), 2, + ACTIONS(3644), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1650), 37, + ACTIONS(3642), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -300975,61 +305849,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126874] = 4, - ACTIONS(105), 1, + [127819] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2708), 1, - sym_comment, - ACTIONS(1642), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1640), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3011), 1, anon_sym_DOLLAR, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_DOT2, + ACTIONS(5458), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5460), 1, + anon_sym_DASH2, + ACTIONS(5462), 1, + anon_sym_PLUS2, + ACTIONS(5516), 1, + anon_sym_LT, + ACTIONS(5518), 1, + anon_sym_EQ2, + STATE(2744), 1, + sym_comment, + STATE(3193), 1, + sym__var, + STATE(3299), 1, + sym__immediate_decimal, + STATE(3303), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2050), 8, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2052), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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, - aux_sym_unquoted_token1, - [126924] = 4, + [127891] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2709), 1, + STATE(2745), 1, sym_comment, - ACTIONS(1626), 2, + ACTIONS(1538), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1624), 37, + ACTIONS(1536), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -301067,15 +305952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [126974] = 4, + [127941] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2710), 1, + STATE(2746), 1, sym_comment, - ACTIONS(1656), 2, + ACTIONS(3273), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1654), 37, + ACTIONS(3271), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -301113,15 +305998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [127024] = 4, + [127991] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2711), 1, + STATE(2747), 1, sym_comment, - ACTIONS(1660), 2, + ACTIONS(3622), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1658), 37, + ACTIONS(3620), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -301159,15 +306044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [127074] = 4, + [128041] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2712), 1, + STATE(2748), 1, sym_comment, - ACTIONS(215), 2, + ACTIONS(3634), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(213), 37, + ACTIONS(3632), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -301205,15 +306090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [127124] = 4, + [128091] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2713), 1, + STATE(2749), 1, sym_comment, - ACTIONS(3700), 2, + ACTIONS(3640), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3698), 37, + ACTIONS(3638), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -301251,15 +306136,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [127174] = 4, + [128141] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5326), 1, + anon_sym_list, + ACTIONS(5520), 1, + anon_sym_GT, + STATE(2750), 1, + sym_comment, + STATE(6091), 1, + sym__all_type, + ACTIONS(5324), 2, + anon_sym_table, + anon_sym_record, + STATE(4331), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(5322), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [128199] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2714), 1, + STATE(2751), 1, sym_comment, - ACTIONS(3708), 2, + ACTIONS(5369), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3706), 37, + ACTIONS(5367), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -301297,15 +306232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [127224] = 4, + [128249] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2715), 1, + STATE(2752), 1, sym_comment, - ACTIONS(1509), 2, + ACTIONS(1653), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1507), 37, + ACTIONS(1651), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -301343,15 +306278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [127274] = 4, + [128299] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2716), 1, + STATE(2753), 1, sym_comment, - ACTIONS(3704), 2, + ACTIONS(5365), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3702), 37, + ACTIONS(5363), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -301389,389 +306324,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [127324] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1521), 1, - anon_sym_DASH, - ACTIONS(5389), 1, - anon_sym_DOT2, - STATE(2717), 1, - sym_comment, - ACTIONS(1517), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - ACTIONS(1519), 10, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1644), 17, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [127381] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(2718), 1, - sym_comment, - STATE(2840), 1, - sym_cell_path, - ACTIONS(1399), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1401), 30, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [127436] = 5, + [128349] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5389), 1, - anon_sym_DOT2, - STATE(2719), 1, - sym_comment, - ACTIONS(213), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(215), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5522), 1, + anon_sym_LPAREN, + ACTIONS(5524), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [127487] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1371), 1, - anon_sym_LF, - ACTIONS(5393), 1, - anon_sym_DOT2, - ACTIONS(5395), 1, - aux_sym_unquoted_token4, - ACTIONS(5397), 1, - aux_sym_unquoted_token6, - STATE(2720), 1, - sym_comment, - ACTIONS(5391), 2, + ACTIONS(5526), 1, anon_sym_LT, - anon_sym_EQ2, - ACTIONS(1369), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [127544] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2721), 1, - sym_comment, - ACTIONS(1491), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(5528), 1, anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1493), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [127593] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - anon_sym_PIPE, - STATE(2722), 1, - sym_comment, - ACTIONS(5401), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(5399), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [127644] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - anon_sym_PIPE, - STATE(2723), 1, - sym_comment, - ACTIONS(5407), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(5405), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [127695] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - anon_sym_PIPE, - STATE(2724), 1, + ACTIONS(5530), 1, + anon_sym_EQ2, + ACTIONS(5532), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5534), 1, + anon_sym_DASH2, + ACTIONS(5536), 1, + anon_sym_PLUS2, + STATE(2754), 1, sym_comment, - ACTIONS(5411), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(5409), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, + STATE(3289), 1, + sym__var, + STATE(3428), 1, + sym__immediate_decimal, + STATE(3420), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2032), 9, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2034), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [127746] = 5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [128420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(5542), 1, anon_sym_PIPE, - STATE(2725), 1, + STATE(2755), 1, sym_comment, - ACTIONS(5415), 16, + ACTIONS(5540), 16, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -301788,7 +306404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(5413), 21, + ACTIONS(5538), 21, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH, @@ -301810,23 +306426,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [127797] = 7, + [128471] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1377), 1, + anon_sym_LF, + ACTIONS(5546), 1, + anon_sym_DOT2, + ACTIONS(5548), 1, + aux_sym_unquoted_token4, + ACTIONS(5550), 1, + aux_sym_unquoted_token6, + STATE(2756), 1, + sym_comment, + ACTIONS(5544), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(1375), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [128528] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5161), 1, + ACTIONS(5326), 1, anon_sym_list, - STATE(2726), 1, + STATE(2757), 1, sym_comment, - STATE(2790), 1, + STATE(5452), 1, sym__type_annotation, - ACTIONS(5159), 2, + ACTIONS(5324), 2, anon_sym_table, anon_sym_record, - STATE(2565), 3, + STATE(2605), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(5157), 31, + ACTIONS(5322), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -301858,17 +306523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [127852] = 4, + [128583] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2727), 1, + ACTIONS(5552), 1, + anon_sym_DOT2, + STATE(2758), 1, sym_comment, - ACTIONS(1507), 13, + ACTIONS(213), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -301877,7 +306543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1509), 25, + ACTIONS(215), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -301903,23 +306569,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [127901] = 4, + [128634] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2728), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1542), 1, + anon_sym_DASH, + ACTIONS(5552), 1, + anon_sym_DOT2, + STATE(2759), 1, sym_comment, - ACTIONS(1632), 6, - anon_sym_EQ, + ACTIONS(1538), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + ACTIONS(1540), 10, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1623), 17, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [128691] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5218), 1, + anon_sym_DOT2, + STATE(2425), 1, + sym_path, + STATE(2760), 1, + sym_comment, + STATE(2894), 1, + sym_cell_path, + ACTIONS(1467), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1634), 32, + ACTIONS(1469), 30, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_in, @@ -301948,94 +306666,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [127950] = 7, + [128746] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5421), 1, - anon_sym_list, - STATE(2729), 1, + ACTIONS(5522), 1, + anon_sym_LPAREN, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5528), 1, + anon_sym_DOT2, + ACTIONS(5532), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5534), 1, + anon_sym_DASH2, + ACTIONS(5536), 1, + anon_sym_PLUS2, + ACTIONS(5554), 1, + anon_sym_LT, + ACTIONS(5556), 1, + anon_sym_EQ2, + STATE(2761), 1, sym_comment, - STATE(3846), 1, - sym__type_annotation, - ACTIONS(5419), 2, - anon_sym_table, - anon_sym_record, - STATE(3886), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(5417), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [128005] = 14, + STATE(3289), 1, + sym__var, + STATE(3447), 1, + sym__immediate_decimal, + STATE(3468), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2066), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2068), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [128817] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(5524), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5558), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5560), 1, + anon_sym_LT, + ACTIONS(5562), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5564), 1, + anon_sym_EQ2, + ACTIONS(5566), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5568), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5570), 1, anon_sym_PLUS2, - ACTIONS(5427), 1, - aux_sym__unquoted_in_list_token6, - STATE(2730), 1, + STATE(2762), 1, sym_comment, - STATE(3189), 1, + STATE(3287), 1, sym__var, - STATE(3276), 1, + STATE(3572), 1, sym__immediate_decimal, - STATE(3277), 2, + STATE(3571), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(5425), 8, + ACTIONS(2058), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5423), 19, + aux_sym_unquoted_token1, + ACTIONS(2060), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [128888] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + ACTIONS(5572), 1, + anon_sym_LT, + ACTIONS(5574), 1, + anon_sym_EQ2, + STATE(2763), 1, + sym_comment, + STATE(3287), 1, + sym__var, + STATE(3541), 1, + sym__immediate_decimal, + STATE(3536), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2050), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2052), 17, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -302049,16 +306834,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [128959] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5542), 1, + anon_sym_PIPE, + STATE(2764), 1, + sym_comment, + ACTIONS(5578), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [128074] = 5, + anon_sym_CARET, + ACTIONS(5576), 21, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [129010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(5542), 1, anon_sym_PIPE, - STATE(2731), 1, + STATE(2765), 1, sym_comment, - ACTIONS(5431), 16, + ACTIONS(5582), 16, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -302075,7 +306904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(5429), 21, + ACTIONS(5580), 21, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH, @@ -302097,23 +306926,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [128125] = 7, + [129061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5161), 1, + ACTIONS(5542), 1, + anon_sym_PIPE, + STATE(2766), 1, + sym_comment, + ACTIONS(5586), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(5584), 21, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [129112] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5592), 1, anon_sym_list, - STATE(2732), 1, + STATE(2767), 1, sym_comment, - STATE(4330), 1, - sym__all_type, - ACTIONS(5159), 2, + STATE(2824), 1, + sym__type_annotation, + ACTIONS(5590), 2, anon_sym_table, anon_sym_record, - STATE(4413), 3, + STATE(2605), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(5157), 31, + ACTIONS(5588), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -302145,23 +307020,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128180] = 7, + [129167] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5161), 1, + ACTIONS(5326), 1, anon_sym_list, - STATE(2733), 1, + STATE(2768), 1, sym_comment, - STATE(4329), 1, + STATE(4423), 1, sym__all_type, - ACTIONS(5159), 2, + ACTIONS(5324), 2, anon_sym_table, anon_sym_record, - STATE(4413), 3, + STATE(4331), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(5157), 31, + ACTIONS(5322), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -302193,78 +307068,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128235] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DOT2, - ACTIONS(5367), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5427), 1, - aux_sym__unquoted_in_list_token6, - STATE(2734), 1, - sym_comment, - STATE(3189), 1, - sym__var, - STATE(3261), 1, - sym__immediate_decimal, - STATE(3262), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(5425), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5423), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [128304] = 7, + [129222] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5437), 1, + ACTIONS(5326), 1, anon_sym_list, - STATE(2735), 1, + STATE(2769), 1, sym_comment, - STATE(2790), 1, - sym__type_annotation, - ACTIONS(5435), 2, + STATE(4424), 1, + sym__all_type, + ACTIONS(5324), 2, anon_sym_table, anon_sym_record, - STATE(2565), 3, + STATE(4331), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(5433), 31, + ACTIONS(5322), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -302296,153 +307116,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128359] = 7, + [129277] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5439), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, anon_sym_DOT2, - ACTIONS(5441), 1, + ACTIONS(5566), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5443), 1, - aux_sym_unquoted_token2, - STATE(2736), 1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5596), 1, + anon_sym_EQ2, + STATE(2770), 1, sym_comment, - ACTIONS(1426), 12, - sym_identifier, - anon_sym_GT, + STATE(3287), 1, + sym__var, + STATE(3528), 1, + sym__immediate_decimal, + STATE(3525), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2004), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym__, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1428), 23, - anon_sym_COLON, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2006), 17, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [128414] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [129348] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(2737), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5600), 1, + anon_sym_EQ2, + STATE(2771), 1, sym_comment, - ACTIONS(1511), 13, - sym_identifier, - anon_sym_GT, + STATE(3287), 1, + sym__var, + STATE(3532), 1, + sym__immediate_decimal, + STATE(3576), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2024), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym__, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1513), 25, - anon_sym_COLON, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2026), 17, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [128463] = 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [129419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5445), 1, - anon_sym_DOT2, - ACTIONS(5447), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5449), 1, - aux_sym_unquoted_token2, - STATE(2738), 1, + ACTIONS(5542), 1, + anon_sym_PIPE, + STATE(2772), 1, sym_comment, - ACTIONS(1426), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + ACTIONS(5604), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1428), 23, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(5602), 21, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [128518] = 4, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [129470] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2739), 1, + STATE(2773), 1, sym_comment, - ACTIONS(1485), 13, + ACTIONS(1509), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -302456,7 +307293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1487), 25, + ACTIONS(1511), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -302482,65 +307319,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128567] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5161), 1, - anon_sym_list, - STATE(2740), 1, - sym_comment, - STATE(5293), 1, - sym__type_annotation, - ACTIONS(5159), 2, - anon_sym_table, - anon_sym_record, - STATE(2565), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(5157), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [128622] = 4, + [129519] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2741), 1, + ACTIONS(5606), 1, + anon_sym_DOT2, + ACTIONS(5608), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5610), 1, + aux_sym_unquoted_token2, + STATE(2774), 1, sym_comment, - ACTIONS(1501), 13, + ACTIONS(1445), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -302549,12 +307343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1503), 25, - anon_sym_COLON, + ACTIONS(1447), 23, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -302575,31 +307367,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128671] = 13, + [129574] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2742), 1, + ACTIONS(5616), 1, + aux_sym__unquoted_in_list_token6, + STATE(2775), 1, sym_comment, - STATE(3189), 1, + STATE(3193), 1, sym__var, - STATE(3298), 1, + STATE(3402), 1, sym__immediate_decimal, - STATE(3297), 2, + STATE(3404), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2129), 8, + ACTIONS(5614), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -302608,7 +307402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2131), 19, + ACTIONS(5612), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -302628,31 +307422,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [128737] = 13, + [129643] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2743), 1, + ACTIONS(5616), 1, + aux_sym__unquoted_in_list_token6, + STATE(2776), 1, sym_comment, - STATE(3189), 1, + STATE(3193), 1, sym__var, - STATE(3364), 1, + STATE(3405), 1, sym__immediate_decimal, - STATE(3363), 2, + STATE(3406), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 8, + ACTIONS(5614), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -302661,7 +307457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2091), 19, + ACTIONS(5612), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -302681,35 +307477,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [128803] = 4, + [129712] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2744), 1, + STATE(2777), 1, sym_comment, - ACTIONS(1632), 12, - sym_identifier, + ACTIONS(1625), 6, + anon_sym_EQ, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1634), 25, + ACTIONS(1627), 32, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -302725,154 +307519,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128851] = 21, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1092), 1, - anon_sym_DOT2, - ACTIONS(5453), 1, - anon_sym_LF, - ACTIONS(5463), 1, - anon_sym_QMARK2, - ACTIONS(5471), 1, - anon_sym_bit_DASHand, - ACTIONS(5473), 1, - anon_sym_bit_DASHxor, - ACTIONS(5475), 1, - anon_sym_bit_DASHor, - ACTIONS(5477), 1, anon_sym_and, - ACTIONS(5479), 1, anon_sym_xor, - ACTIONS(5481), 1, anon_sym_or, - STATE(2745), 1, - sym_comment, - STATE(2832), 1, - sym_path, - STATE(3069), 1, - sym_cell_path, - ACTIONS(5457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5465), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5467), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5469), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5451), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5461), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5455), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [128933] = 21, - ACTIONS(105), 1, + [129761] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1084), 1, - anon_sym_LF, - ACTIONS(1092), 1, + ACTIONS(5618), 1, anon_sym_DOT2, - ACTIONS(1096), 1, - anon_sym_QMARK2, - ACTIONS(1104), 1, - anon_sym_bit_DASHand, - ACTIONS(1106), 1, - anon_sym_bit_DASHxor, - ACTIONS(1108), 1, - anon_sym_bit_DASHor, - ACTIONS(1110), 1, - anon_sym_and, - ACTIONS(1112), 1, - anon_sym_xor, - ACTIONS(1114), 1, - anon_sym_or, - STATE(2746), 1, + ACTIONS(5620), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5622), 1, + aux_sym_unquoted_token2, + STATE(2778), 1, sym_comment, - STATE(2832), 1, - sym_path, - STATE(3038), 1, - sym_cell_path, - ACTIONS(1088), 2, + ACTIONS(1445), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1098), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1100), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1102), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1082), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1090), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1094), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1086), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [129015] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2747), 1, - sym_comment, - ACTIONS(1501), 6, - anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1503), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1447), 23, anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -302888,88 +307570,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [129063] = 13, + [129816] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DOT2, - ACTIONS(5367), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(2748), 1, + ACTIONS(5628), 1, + anon_sym_list, + STATE(2779), 1, sym_comment, - STATE(3189), 1, - sym__var, - STATE(3368), 1, - sym__immediate_decimal, - STATE(3367), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2101), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2103), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [129129] = 4, + STATE(3819), 1, + sym__type_annotation, + ACTIONS(5626), 2, + anon_sym_table, + anon_sym_record, + STATE(3915), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(5624), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [129871] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2749), 1, + STATE(2780), 1, sym_comment, - ACTIONS(1491), 6, - anon_sym_EQ, + ACTIONS(1532), 13, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1493), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1534), 25, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -302985,19 +307663,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [129177] = 4, + [129920] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2750), 1, + STATE(2781), 1, sym_comment, - ACTIONS(1560), 12, + ACTIONS(1520), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -303006,7 +307682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1562), 25, + ACTIONS(1522), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303032,16 +307708,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129225] = 4, + [129969] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2751), 1, + ACTIONS(5326), 1, + anon_sym_list, + STATE(2782), 1, + sym_comment, + STATE(2824), 1, + sym__type_annotation, + ACTIONS(5324), 2, + anon_sym_table, + anon_sym_record, + STATE(2605), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(5322), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [130024] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2783), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1524), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -303050,7 +307775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1526), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303076,16 +307801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129273] = 4, + [130073] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2752), 1, + STATE(2784), 1, sym_comment, - ACTIONS(1572), 12, + ACTIONS(1513), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -303094,7 +307820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1574), 25, + ACTIONS(1515), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303120,12 +307846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129321] = 4, + [130122] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2753), 1, + STATE(2785), 1, sym_comment, - ACTIONS(1640), 12, + ACTIONS(1619), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303138,7 +307864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1642), 25, + ACTIONS(1621), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303164,12 +307890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129369] = 4, + [130170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2754), 1, + STATE(2786), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1659), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303182,7 +307908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1661), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303208,12 +307934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129417] = 4, + [130218] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2755), 1, + STATE(2787), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1595), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303226,7 +307952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1597), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303252,41 +307978,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129465] = 5, - ACTIONS(3), 1, + [130266] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5483), 1, - aux_sym_unquoted_token5, - STATE(2756), 1, + ACTIONS(5632), 1, + anon_sym_DOT2, + ACTIONS(5634), 1, + aux_sym_unquoted_token4, + ACTIONS(5636), 1, + aux_sym_unquoted_token6, + STATE(2788), 1, sym_comment, - ACTIONS(1495), 12, - sym_identifier, + ACTIONS(1377), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5630), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(1375), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1497), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -303297,12 +308023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129515] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [130322] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2757), 1, + STATE(2789), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1651), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303315,7 +308044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1653), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303341,12 +308070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129563] = 4, + [130370] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2758), 1, + STATE(2790), 1, sym_comment, - ACTIONS(1668), 12, + ACTIONS(1629), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303359,7 +308088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1670), 25, + ACTIONS(1631), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303385,12 +308114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129611] = 4, + [130418] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2759), 1, + STATE(2791), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1655), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303403,7 +308132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1657), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303429,35 +308158,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129659] = 4, + [130466] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2760), 1, + STATE(2792), 1, sym_comment, - ACTIONS(1524), 12, - sym_identifier, + ACTIONS(1509), 6, + anon_sym_EQ, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1526), 25, + ACTIONS(1511), 31, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -303473,12 +308199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129707] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [130514] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2761), 1, + STATE(2793), 1, sym_comment, - ACTIONS(1519), 12, + ACTIONS(1687), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303491,7 +308220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1644), 25, + ACTIONS(1689), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303517,40 +308246,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129755] = 4, - ACTIONS(3), 1, + [130562] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2762), 1, + ACTIONS(5318), 1, + aux_sym_unquoted_token3, + STATE(2794), 1, sym_comment, - ACTIONS(1580), 12, + ACTIONS(1377), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(1375), 34, sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1582), 25, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -303561,35 +308288,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129803] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [130612] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2763), 1, + STATE(2795), 1, sym_comment, - ACTIONS(1556), 12, - sym_identifier, + ACTIONS(1513), 6, + anon_sym_EQ, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1515), 31, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -303605,31 +308332,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129851] = 13, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [130660] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2764), 1, + STATE(2796), 1, sym_comment, - STATE(3189), 1, + STATE(3193), 1, sym__var, - STATE(3326), 1, + STATE(3375), 1, sym__immediate_decimal, - STATE(3279), 2, + STATE(3376), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 8, + ACTIONS(2140), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -303638,7 +308368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2095), 19, + ACTIONS(2142), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -303658,12 +308388,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129917] = 4, + [130726] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2765), 1, + STATE(2797), 1, sym_comment, - ACTIONS(1636), 12, + ACTIONS(1579), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303676,7 +308406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1638), 25, + ACTIONS(1581), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303702,31 +308432,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129965] = 13, + [130774] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2766), 1, + STATE(2798), 1, sym_comment, - STATE(3189), 1, + STATE(3193), 1, sym__var, - STATE(3334), 1, + STATE(3377), 1, sym__immediate_decimal, - STATE(3349), 2, + STATE(3378), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2081), 8, + ACTIONS(2128), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -303735,7 +308465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2083), 19, + ACTIONS(2130), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -303755,119 +308485,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [130031] = 13, + [130840] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5638), 1, anon_sym_DOT2, - ACTIONS(5367), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(2767), 1, - sym_comment, - STATE(3189), 1, - sym__var, - STATE(3311), 1, - sym__immediate_decimal, - STATE(3369), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2097), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2099), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130097] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2768), 1, + STATE(2799), 1, sym_comment, - ACTIONS(1584), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1586), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [130145] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2352), 1, - aux_sym_cell_path_repeat1, - STATE(2585), 1, + STATE(2836), 1, sym_path, - STATE(2769), 1, - sym_comment, - ACTIONS(1436), 5, + STATE(2894), 1, + sym_cell_path, + ACTIONS(1467), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1438), 30, + ACTIONS(1469), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -303876,7 +308511,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -303898,12 +308532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [130197] = 4, + [130894] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2770), 1, + STATE(2800), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1579), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303916,7 +308550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1581), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303942,12 +308576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130245] = 4, + [130942] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2771), 1, + STATE(2801), 1, sym_comment, - ACTIONS(1624), 12, + ACTIONS(1607), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -303960,7 +308594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1626), 25, + ACTIONS(1609), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -303986,56 +308620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130293] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2772), 1, - sym_comment, - ACTIONS(5487), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(5485), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [130341] = 4, + [130990] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2773), 1, + STATE(2802), 1, sym_comment, - ACTIONS(1604), 12, + ACTIONS(1579), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -304048,7 +308638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1606), 25, + ACTIONS(1581), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -304074,12 +308664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130389] = 4, + [131038] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2774), 1, + STATE(2803), 1, sym_comment, - ACTIONS(1596), 12, + ACTIONS(1583), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -304092,7 +308682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1598), 25, + ACTIONS(1585), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -304118,78 +308708,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130437] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5489), 1, - anon_sym_DOT2, - STATE(2749), 1, - sym_cell_path, - STATE(2775), 1, - sym_comment, - STATE(2803), 1, - sym_path, - ACTIONS(1395), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1397), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [130491] = 13, + [131086] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2776), 1, + STATE(2804), 1, sym_comment, - STATE(3189), 1, + STATE(3193), 1, sym__var, - STATE(3366), 1, + STATE(3382), 1, sym__immediate_decimal, - STATE(3365), 2, + STATE(3383), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2133), 8, + ACTIONS(2172), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -304198,7 +308741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2135), 19, + ACTIONS(2174), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -304218,35 +308761,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [130557] = 7, + [131152] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5641), 1, anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(2777), 1, + ACTIONS(5643), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5645), 1, + aux_sym_unquoted_token2, + STATE(2805), 1, sym_comment, - STATE(2966), 1, - sym_cell_path, - ACTIONS(1403), 5, + ACTIONS(1445), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1405), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1447), 22, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -304262,87 +308808,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [130611] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DOT2, - ACTIONS(5367), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(2778), 1, - sym_comment, - STATE(3189), 1, - sym__var, - STATE(3362), 1, - sym__immediate_decimal, - STATE(3361), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2105), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2107), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130677] = 13, + [131206] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2779), 1, + STATE(2806), 1, sym_comment, - STATE(3189), 1, + STATE(3193), 1, sym__var, - STATE(3360), 1, + STATE(3384), 1, sym__immediate_decimal, - STATE(3356), 2, + STATE(3388), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2117), 8, + ACTIONS(2160), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -304351,7 +308841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2119), 19, + ACTIONS(2162), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -304371,12 +308861,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [130743] = 4, + [131272] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2780), 1, + STATE(2807), 1, sym_comment, - ACTIONS(1620), 12, + ACTIONS(1579), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -304389,7 +308879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1622), 25, + ACTIONS(1581), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -304415,75 +308905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130791] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_LPAREN, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5496), 1, - anon_sym_LT, - ACTIONS(5498), 1, - anon_sym_DOT2, - ACTIONS(5500), 1, - anon_sym_EQ2, - ACTIONS(5502), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5504), 1, - anon_sym_DASH2, - ACTIONS(5506), 1, - anon_sym_PLUS2, - STATE(2781), 1, - sym_comment, - STATE(3357), 1, - sym__var, - STATE(3460), 1, - sym__immediate_decimal, - STATE(3462), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2003), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2005), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [130861] = 7, + [131320] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1401), 1, - anon_sym_LF, - ACTIONS(5508), 1, - anon_sym_DOT2, - STATE(2782), 1, + STATE(2808), 1, sym_comment, - STATE(2817), 1, + STATE(2828), 1, + aux_sym_cell_path_repeat1, + STATE(2965), 1, sym_path, - STATE(2882), 1, - sym_cell_path, - ACTIONS(1399), 33, + ACTIONS(1409), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1407), 33, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -304517,67 +308951,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [130915] = 15, + [131372] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_LPAREN, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5498), 1, - anon_sym_DOT2, - ACTIONS(5502), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5504), 1, - anon_sym_DASH2, - ACTIONS(5506), 1, - anon_sym_PLUS2, - ACTIONS(5511), 1, - anon_sym_LT, - ACTIONS(5513), 1, - anon_sym_EQ2, - STATE(2783), 1, + STATE(2809), 1, sym_comment, - STATE(3357), 1, - sym__var, - STATE(3465), 1, - sym__immediate_decimal, - STATE(3488), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1977), 8, + ACTIONS(1579), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1979), 17, - anon_sym_LBRACK, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1581), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [131420] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2810), 1, + sym_comment, + ACTIONS(5649), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [130985] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(5647), 21, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [131468] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2784), 1, + STATE(2811), 1, sym_comment, - ACTIONS(1612), 12, + ACTIONS(1603), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -304590,7 +309057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1614), 25, + ACTIONS(1605), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -304616,12 +309083,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131033] = 4, + [131516] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2785), 1, + ACTIONS(5653), 1, + anon_sym_LT, + STATE(2812), 1, + sym_comment, + ACTIONS(5651), 36, + anon_sym_COMMA, + 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, + [131564] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2813), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1579), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -304634,7 +309145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1581), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -304660,12 +309171,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131081] = 4, + [131612] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2786), 1, + ACTIONS(5655), 1, + anon_sym_LT, + STATE(2814), 1, + sym_comment, + ACTIONS(5651), 36, + anon_sym_COMMA, + 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, + [131660] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2815), 1, sym_comment, - ACTIONS(1628), 12, + ACTIONS(1667), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -304678,7 +309233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1630), 25, + ACTIONS(1669), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -304704,12 +309259,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131129] = 4, + [131708] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2787), 1, + ACTIONS(5218), 1, + anon_sym_DOT2, + STATE(2425), 1, + sym_path, + STATE(2816), 1, + sym_comment, + STATE(3005), 1, + sym_cell_path, + ACTIONS(1459), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1461), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [131762] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2817), 1, sym_comment, - ACTIONS(1616), 12, + ACTIONS(1641), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -304722,7 +309324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1618), 25, + ACTIONS(1643), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -304748,12 +309350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131177] = 4, + [131810] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2788), 1, + STATE(2818), 1, sym_comment, - ACTIONS(1576), 12, + ACTIONS(1579), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -304766,7 +309368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1578), 25, + ACTIONS(1581), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -304792,41 +309394,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131225] = 8, + [131858] = 21, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5517), 1, + ACTIONS(1075), 1, + anon_sym_LF, + ACTIONS(1083), 1, anon_sym_DOT2, - ACTIONS(5519), 1, - aux_sym_unquoted_token4, - ACTIONS(5521), 1, - aux_sym_unquoted_token6, - STATE(2789), 1, + ACTIONS(1087), 1, + anon_sym_QMARK2, + ACTIONS(1095), 1, + anon_sym_bit_DASHand, + ACTIONS(1097), 1, + anon_sym_bit_DASHxor, + ACTIONS(1099), 1, + anon_sym_bit_DASHor, + ACTIONS(1101), 1, + anon_sym_and, + ACTIONS(1103), 1, + anon_sym_xor, + ACTIONS(1105), 1, + anon_sym_or, + STATE(2819), 1, sym_comment, - ACTIONS(1371), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5515), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(1369), 30, + STATE(2912), 1, + sym_path, + STATE(3124), 1, + sym_cell_path, + ACTIONS(1079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1089), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1091), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1093), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1073), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1081), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1085), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1077), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [131940] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2820), 1, + sym_comment, + ACTIONS(1599), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1601), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -304837,81 +309499,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [131281] = 3, + [131988] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2790), 1, + STATE(2821), 1, sym_comment, - ACTIONS(5523), 37, + ACTIONS(1579), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1581), 25, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - [131327] = 7, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [132036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5525), 1, - anon_sym_DOT2, - STATE(2791), 1, + STATE(2822), 1, sym_comment, - STATE(2803), 1, - sym_path, - STATE(2840), 1, - sym_cell_path, - ACTIONS(1399), 5, + ACTIONS(1579), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1401), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1581), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -304927,42 +309587,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [131381] = 6, - ACTIONS(105), 1, + [132084] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(5528), 1, + ACTIONS(5218), 1, anon_sym_DOT2, - STATE(2891), 1, + STATE(2425), 1, sym_path, - STATE(2792), 2, + STATE(2823), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3009), 1, + sym_cell_path, + ACTIONS(1478), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1480), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -304976,14 +309634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [131433] = 4, + [132138] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_LT, - STATE(2793), 1, + STATE(2824), 1, sym_comment, - ACTIONS(5531), 36, + ACTIONS(5657), 37, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_any, @@ -305020,103 +309676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [131481] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(2794), 1, - sym_comment, - STATE(2983), 1, - sym_cell_path, - ACTIONS(1422), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1424), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [131535] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2795), 1, - sym_comment, - ACTIONS(1556), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1558), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [131583] = 4, + [132184] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2796), 1, + ACTIONS(5659), 1, + aux_sym_unquoted_token5, + STATE(2825), 1, sym_comment, - ACTIONS(1564), 12, + ACTIONS(1545), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305129,12 +309697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1566), 25, + ACTIONS(1547), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -305155,12 +309722,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131631] = 4, + [132234] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2797), 1, + STATE(2826), 1, sym_comment, - ACTIONS(1600), 12, + ACTIONS(1611), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305173,7 +309740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1602), 25, + ACTIONS(1613), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305199,12 +309766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131679] = 4, + [132282] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2798), 1, + STATE(2827), 1, sym_comment, - ACTIONS(1600), 12, + ACTIONS(1695), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305217,7 +309784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1602), 25, + ACTIONS(1697), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305243,26 +309810,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131727] = 5, + [132330] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5142), 1, - aux_sym_unquoted_token3, - STATE(2799), 1, + ACTIONS(1389), 1, + anon_sym_LF, + ACTIONS(5661), 1, + anon_sym_DOT2, + STATE(2965), 1, + sym_path, + STATE(2828), 2, sym_comment, - ACTIONS(1371), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1369), 34, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 33, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -305288,12 +309856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [131777] = 4, + [132382] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2800), 1, + STATE(2829), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1579), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305306,42 +309874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [131825] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1521), 1, - anon_sym_DASH, - STATE(2801), 1, - sym_comment, - ACTIONS(1517), 8, + ACTIONS(1581), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305350,18 +309883,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(1519), 10, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1644), 17, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -305379,12 +309900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131879] = 4, + [132430] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2802), 1, + STATE(2830), 1, sym_comment, - ACTIONS(1495), 12, + ACTIONS(1647), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305397,7 +309918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1497), 25, + ACTIONS(1649), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305423,24 +309944,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131927] = 7, + [132478] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2585), 1, - sym_path, - STATE(2769), 1, + STATE(2393), 1, aux_sym_cell_path_repeat1, - STATE(2803), 1, + STATE(2628), 1, + sym_path, + STATE(2831), 1, sym_comment, - ACTIONS(1440), 5, + ACTIONS(1407), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1442), 29, + ACTIONS(1409), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -305449,6 +309968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -305470,56 +309990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [131981] = 4, + [132530] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2804), 1, - sym_comment, - ACTIONS(5537), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(5535), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [132029] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2805), 1, + STATE(2832), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1579), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305532,7 +310008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1581), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305558,58 +310034,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132077] = 6, + [132578] = 21, ACTIONS(105), 1, anon_sym_POUND, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2806), 1, + ACTIONS(1083), 1, + anon_sym_DOT2, + ACTIONS(5666), 1, + anon_sym_LF, + ACTIONS(5676), 1, + anon_sym_QMARK2, + ACTIONS(5684), 1, + anon_sym_bit_DASHand, + ACTIONS(5686), 1, + anon_sym_bit_DASHxor, + ACTIONS(5688), 1, + anon_sym_bit_DASHor, + ACTIONS(5690), 1, + anon_sym_and, + ACTIONS(5692), 1, + anon_sym_xor, + ACTIONS(5694), 1, + anon_sym_or, + STATE(2833), 1, sym_comment, - STATE(2891), 1, + STATE(2912), 1, sym_path, - ACTIONS(1438), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1436), 33, + STATE(3123), 1, + sym_cell_path, + ACTIONS(5670), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5678), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5680), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5682), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5664), 4, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, + ACTIONS(5672), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5674), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5668), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [132129] = 4, + [132660] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2807), 1, + STATE(2834), 1, sym_comment, - ACTIONS(213), 12, + ACTIONS(1691), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305622,7 +310113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(215), 25, + ACTIONS(1693), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305648,12 +310139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132177] = 4, + [132708] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2808), 1, + STATE(2835), 1, sym_comment, - ACTIONS(1588), 12, + ACTIONS(1545), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305666,7 +310157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1590), 25, + ACTIONS(1547), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305692,56 +310183,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132225] = 4, + [132756] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LT, - STATE(2809), 1, + ACTIONS(5218), 1, + anon_sym_DOT2, + STATE(2628), 1, + sym_path, + STATE(2831), 1, + aux_sym_cell_path_repeat1, + STATE(2836), 1, sym_comment, - ACTIONS(5531), 36, + ACTIONS(1394), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1396), 29, anon_sym_COMMA, - 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, - [132273] = 4, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [132810] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2810), 1, + STATE(2837), 1, sym_comment, - ACTIONS(1658), 12, + ACTIONS(1637), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305754,7 +310248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1660), 25, + ACTIONS(1639), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305780,12 +310274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132321] = 4, + [132858] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2811), 1, + STATE(2838), 1, sym_comment, - ACTIONS(1568), 12, + ACTIONS(1587), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305798,7 +310292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1570), 25, + ACTIONS(1589), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305824,18 +310318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132369] = 7, + [132906] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5541), 1, - anon_sym_DOT2, - ACTIONS(5543), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5545), 1, - aux_sym_unquoted_token2, - STATE(2812), 1, + STATE(2839), 1, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1625), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305848,8 +310336,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1428), 22, + ACTIONS(1627), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -305871,12 +310362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132423] = 4, + [132954] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2813), 1, + STATE(2840), 1, sym_comment, - ACTIONS(1654), 12, + ACTIONS(1679), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -305889,7 +310380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1656), 25, + ACTIONS(1681), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -305915,35 +310406,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132471] = 7, + [133002] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(2814), 1, + STATE(2841), 1, sym_comment, - STATE(2987), 1, - sym_cell_path, - ACTIONS(1447), 5, + ACTIONS(1579), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1449), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1581), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -305959,43 +310450,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [132525] = 4, - ACTIONS(3), 1, + [133050] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2815), 1, + ACTIONS(1469), 1, + anon_sym_LF, + ACTIONS(5696), 1, + anon_sym_DOT2, + STATE(2842), 1, sym_comment, - ACTIONS(1556), 12, - sym_identifier, + STATE(2844), 1, + sym_path, + STATE(2959), 1, + sym_cell_path, + ACTIONS(1467), 33, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1558), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -306006,12 +310494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132573] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [133104] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2816), 1, + STATE(2843), 1, sym_comment, - ACTIONS(1646), 12, + ACTIONS(1579), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -306024,7 +310515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1648), 25, + ACTIONS(1581), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -306050,20 +310541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132621] = 7, + [133152] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(1083), 1, anon_sym_DOT2, - ACTIONS(1442), 1, + ACTIONS(1396), 1, anon_sym_LF, - STATE(2806), 1, + STATE(2808), 1, aux_sym_cell_path_repeat1, - STATE(2817), 1, + STATE(2844), 1, sym_comment, - STATE(2891), 1, + STATE(2965), 1, sym_path, - ACTIONS(1440), 33, + ACTIONS(1394), 33, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -306097,31 +310588,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [132675] = 13, + [133206] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2818), 1, + STATE(2845), 1, sym_comment, - STATE(3189), 1, + STATE(3193), 1, sym__var, - STATE(3301), 1, + STATE(3336), 1, sym__immediate_decimal, - STATE(3299), 2, + STATE(3331), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2085), 8, + ACTIONS(2132), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -306130,7 +310621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2087), 19, + ACTIONS(2134), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -306150,31 +310641,119 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132741] = 13, + [133272] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + STATE(2846), 1, + sym_comment, + ACTIONS(1633), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1635), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(5359), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [133320] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2847), 1, + sym_comment, + ACTIONS(1445), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1447), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [133368] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2819), 1, + STATE(2848), 1, sym_comment, - STATE(3189), 1, + STATE(3193), 1, sym__var, - STATE(3303), 1, + STATE(3330), 1, sym__immediate_decimal, - STATE(3302), 2, + STATE(3329), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2125), 8, + ACTIONS(2180), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -306183,7 +310762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2127), 19, + ACTIONS(2182), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -306203,31 +310782,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132807] = 13, + [133434] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5367), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5369), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2820), 1, + STATE(2849), 1, sym_comment, - STATE(3189), 1, + STATE(3193), 1, sym__var, - STATE(3305), 1, + STATE(3328), 1, sym__immediate_decimal, - STATE(3304), 2, + STATE(3327), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2121), 8, + ACTIONS(2144), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -306236,7 +310815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2123), 19, + ACTIONS(2146), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -306256,12 +310835,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132873] = 4, + [133500] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2821), 1, + STATE(2850), 1, sym_comment, - ACTIONS(1426), 12, + ACTIONS(1619), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -306274,7 +310853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1428), 25, + ACTIONS(1621), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -306300,35 +310879,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132921] = 7, + [133548] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(2822), 1, + STATE(2851), 1, sym_comment, - STATE(2986), 1, - sym_cell_path, - ACTIONS(1407), 5, + ACTIONS(1540), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1409), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1623), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [133596] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1542), 1, anon_sym_DASH, + STATE(2852), 1, + sym_comment, + ACTIONS(1538), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + ACTIONS(1540), 10, + anon_sym_GT, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1623), 17, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -306344,15 +310970,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [133650] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_DOT2, + ACTIONS(5458), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5460), 1, + anon_sym_DASH2, + ACTIONS(5462), 1, + anon_sym_PLUS2, + STATE(2853), 1, + sym_comment, + STATE(3193), 1, + sym__var, + STATE(3326), 1, + sym__immediate_decimal, + STATE(3324), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2136), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2138), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133716] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2854), 1, + sym_comment, + ACTIONS(1675), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [132975] = 4, + ACTIONS(1677), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [133764] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2823), 1, + STATE(2855), 1, sym_comment, - ACTIONS(1650), 12, + ACTIONS(213), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -306365,7 +311085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1652), 25, + ACTIONS(215), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -306391,12 +311111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [133023] = 4, + [133812] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2824), 1, + STATE(2856), 1, sym_comment, - ACTIONS(1608), 12, + ACTIONS(1683), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -306409,7 +311129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1610), 25, + ACTIONS(1685), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -306435,12 +311155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [133071] = 4, + [133860] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2825), 1, + STATE(2857), 1, sym_comment, - ACTIONS(1664), 12, + ACTIONS(1671), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -306453,7 +311173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1666), 25, + ACTIONS(1673), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -306479,48 +311199,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [133119] = 15, + [133908] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5549), 1, - anon_sym_LT, - ACTIONS(5551), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5553), 1, - anon_sym_EQ2, - ACTIONS(5555), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5559), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - STATE(2826), 1, + STATE(2858), 1, sym_comment, - STATE(3253), 1, + STATE(3193), 1, sym__var, - STATE(3551), 1, + STATE(3323), 1, sym__immediate_decimal, - STATE(3543), 2, + STATE(3321), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2019), 8, + ACTIONS(2148), 8, anon_sym_DASH, - anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2021), 17, + aux_sym__unquoted_in_list_token1, + ACTIONS(2150), 19, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306534,103 +311250,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [133189] = 15, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - ACTIONS(5561), 1, - anon_sym_LT, - ACTIONS(5563), 1, - anon_sym_EQ2, - STATE(2827), 1, + STATE(2859), 1, sym_comment, - STATE(3253), 1, - sym__var, - STATE(3501), 1, - sym__immediate_decimal, - STATE(3499), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2011), 8, + ACTIONS(1663), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2013), 17, - anon_sym_LBRACK, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1665), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [133259] = 15, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [134022] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5555), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5559), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - ACTIONS(5565), 1, - anon_sym_LT, - ACTIONS(5567), 1, - anon_sym_EQ2, - STATE(2828), 1, + STATE(2860), 1, sym_comment, - STATE(3253), 1, + STATE(3193), 1, sym__var, - STATE(3503), 1, + STATE(3316), 1, sym__immediate_decimal, - STATE(3502), 2, + STATE(3315), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1957), 8, + ACTIONS(2152), 8, anon_sym_DASH, - anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1959), 17, + aux_sym__unquoted_in_list_token1, + ACTIONS(2154), 19, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306644,12 +311347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [133329] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134088] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2829), 1, + STATE(2861), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1591), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -306662,7 +311367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1558), 25, + ACTIONS(1593), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -306688,48 +311393,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [133377] = 15, + [134136] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(5555), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, + ACTIONS(5460), 1, anon_sym_DASH2, - ACTIONS(5559), 1, + ACTIONS(5462), 1, anon_sym_PLUS2, - ACTIONS(5569), 1, - anon_sym_LT, - ACTIONS(5571), 1, - anon_sym_EQ2, - STATE(2830), 1, + STATE(2862), 1, sym_comment, - STATE(3253), 1, + STATE(3193), 1, sym__var, - STATE(3504), 1, + STATE(3312), 1, sym__immediate_decimal, - STATE(3495), 2, + STATE(3308), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1995), 8, + ACTIONS(2156), 8, anon_sym_DASH, - anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1997), 17, + aux_sym__unquoted_in_list_token1, + ACTIONS(2158), 19, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306743,306 +311444,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [133447] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1092), 1, - anon_sym_DOT2, - ACTIONS(1405), 1, - anon_sym_LF, - STATE(2831), 1, - sym_comment, - STATE(2832), 1, - sym_path, - STATE(3028), 1, - sym_cell_path, - ACTIONS(1403), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [133500] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1092), 1, - anon_sym_DOT2, - ACTIONS(1442), 1, - anon_sym_LF, - STATE(2832), 1, - sym_comment, - STATE(2865), 1, - aux_sym_cell_path_repeat1, - STATE(2891), 1, - sym_path, - ACTIONS(1440), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [133553] = 7, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134202] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1397), 1, - anon_sym_LF, - ACTIONS(5573), 1, + ACTIONS(3011), 1, + anon_sym_DOLLAR, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, anon_sym_DOT2, - STATE(2817), 1, - sym_path, - STATE(2833), 1, + ACTIONS(5458), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5460), 1, + anon_sym_DASH2, + ACTIONS(5462), 1, + anon_sym_PLUS2, + STATE(2863), 1, sym_comment, - STATE(2974), 1, - sym_cell_path, - ACTIONS(1395), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + STATE(3193), 1, + sym__var, + STATE(3307), 1, + sym__immediate_decimal, + STATE(3306), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2176), 8, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [133606] = 4, - ACTIONS(105), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2178), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134268] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2834), 1, + STATE(2864), 1, sym_comment, - ACTIONS(1456), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1454), 34, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(5701), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [133653] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5142), 1, - aux_sym_unquoted_token3, - STATE(2835), 1, - sym_comment, - ACTIONS(1369), 35, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(5699), 21, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [133700] = 7, - ACTIONS(105), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [134316] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(5703), 1, anon_sym_DOT2, - ACTIONS(1424), 1, - anon_sym_LF, - STATE(2832), 1, - sym_path, + STATE(2795), 1, + sym_cell_path, STATE(2836), 1, + sym_path, + STATE(2865), 1, sym_comment, - STATE(3014), 1, - sym_cell_path, - ACTIONS(1422), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1400), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [133753] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2837), 1, - sym_comment, - ACTIONS(1477), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1475), 34, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(1402), 29, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -307056,216 +311590,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [133800] = 20, + [134370] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1528), 1, - sym_identifier, - ACTIONS(5580), 1, - anon_sym_in, - ACTIONS(5586), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5596), 1, - anon_sym_bit_DASHand, - ACTIONS(5598), 1, - anon_sym_bit_DASHxor, - ACTIONS(5600), 1, - anon_sym_bit_DASHor, - ACTIONS(5602), 1, - anon_sym_and, - ACTIONS(5604), 1, - anon_sym_xor, - ACTIONS(5606), 1, - anon_sym_or, - STATE(2838), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2866), 1, sym_comment, - ACTIONS(5576), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5578), 2, + STATE(3287), 1, + sym__var, + STATE(3546), 1, + sym__immediate_decimal, + STATE(3529), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2172), 9, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(5584), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5594), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5582), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5592), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5590), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 7, - anon_sym_COLON, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2174), 17, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [133879] = 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [134435] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5580), 1, - anon_sym_in, - ACTIONS(5586), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5596), 1, - anon_sym_bit_DASHand, - ACTIONS(5598), 1, - anon_sym_bit_DASHxor, - ACTIONS(5600), 1, - anon_sym_bit_DASHor, - ACTIONS(5602), 1, - anon_sym_and, - ACTIONS(5604), 1, - anon_sym_xor, - STATE(2839), 1, + STATE(2867), 1, sym_comment, - ACTIONS(1528), 2, - sym_identifier, - anon_sym_or, - ACTIONS(5576), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5578), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5584), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5594), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5582), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5592), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5590), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 7, - anon_sym_COLON, + ACTIONS(5651), 36, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [133956] = 4, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + 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, + [134480] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2840), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2868), 1, sym_comment, - ACTIONS(1507), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, + STATE(3287), 1, + sym__var, + STATE(3551), 1, + sym__immediate_decimal, + STATE(3570), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2136), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1509), 31, - anon_sym_COLON, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2138), 17, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [134003] = 18, + 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, + [134545] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5580), 1, + ACTIONS(5710), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5716), 1, anon_sym_SLASH_SLASH, - ACTIONS(5596), 1, - anon_sym_bit_DASHand, - ACTIONS(5598), 1, - anon_sym_bit_DASHxor, - ACTIONS(5600), 1, - anon_sym_bit_DASHor, - ACTIONS(5602), 1, - anon_sym_and, - STATE(2841), 1, + ACTIONS(5726), 1, + anon_sym_bit_DASHand, + STATE(2869), 1, sym_comment, - ACTIONS(5576), 2, + ACTIONS(5706), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5578), 2, + ACTIONS(5708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5584), 2, + ACTIONS(5714), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, + ACTIONS(5718), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5594), 2, + ACTIONS(5724), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1528), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(5582), 3, + ACTIONS(5712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5592), 3, + ACTIONS(5722), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5590), 4, + ACTIONS(1551), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(5720), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 7, + ACTIONS(1553), 9, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -307273,55 +311788,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [134078] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5580), 1, - anon_sym_in, - ACTIONS(5586), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5596), 1, - anon_sym_bit_DASHand, - ACTIONS(5598), 1, anon_sym_bit_DASHxor, - ACTIONS(5600), 1, anon_sym_bit_DASHor, - STATE(2842), 1, + [134614] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2870), 1, sym_comment, - ACTIONS(5576), 2, + ACTIONS(5714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1551), 12, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(5578), 2, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - ACTIONS(5584), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 22, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5594), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5582), 3, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [134663] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5716), 1, + anon_sym_SLASH_SLASH, + STATE(2871), 1, + sym_comment, + ACTIONS(5714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5592), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 9, sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5590), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 7, + ACTIONS(1553), 21, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -307329,95 +311866,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [134151] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2843), 1, - sym_comment, - ACTIONS(5608), 36, - anon_sym_COMMA, - 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, - [134196] = 16, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [134716] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5580), 1, + ACTIONS(5710), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5716), 1, anon_sym_SLASH_SLASH, - ACTIONS(5596), 1, + ACTIONS(5726), 1, anon_sym_bit_DASHand, - ACTIONS(5598), 1, + ACTIONS(5728), 1, anon_sym_bit_DASHxor, - STATE(2844), 1, + STATE(2872), 1, sym_comment, - ACTIONS(5576), 2, + ACTIONS(5706), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5578), 2, + ACTIONS(5708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5584), 2, + ACTIONS(5714), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, + ACTIONS(5718), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5594), 2, + ACTIONS(5724), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5582), 3, + ACTIONS(5712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5592), 3, + ACTIONS(5722), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5590), 4, + ACTIONS(5720), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 8, + ACTIONS(1553), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -307426,51 +311935,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_bit_DASHor, - [134267] = 15, + [134787] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5580), 1, + ACTIONS(5710), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5716), 1, anon_sym_SLASH_SLASH, - ACTIONS(5596), 1, - anon_sym_bit_DASHand, - STATE(2845), 1, + STATE(2873), 1, sym_comment, - ACTIONS(5576), 2, + ACTIONS(5706), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5578), 2, + ACTIONS(5708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5584), 2, + ACTIONS(5714), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, + ACTIONS(5718), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5594), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5582), 3, + ACTIONS(5712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5592), 3, + ACTIONS(5722), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5590), 4, + ACTIONS(5720), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 9, + ACTIONS(1553), 12, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -307478,51 +311982,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [134852] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1083), 1, + anon_sym_DOT2, + ACTIONS(1461), 1, + anon_sym_LF, + STATE(2874), 1, + sym_comment, + STATE(2912), 1, + sym_path, + STATE(3063), 1, + sym_cell_path, + ACTIONS(1459), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [134336] = 14, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [134905] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5580), 1, + ACTIONS(5710), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5716), 1, anon_sym_SLASH_SLASH, - STATE(2846), 1, + ACTIONS(5726), 1, + anon_sym_bit_DASHand, + ACTIONS(5728), 1, + anon_sym_bit_DASHxor, + ACTIONS(5730), 1, + anon_sym_bit_DASHor, + STATE(2875), 1, sym_comment, - ACTIONS(5576), 2, + ACTIONS(5706), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5578), 2, + ACTIONS(5708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5584), 2, + ACTIONS(5714), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, + ACTIONS(5718), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5594), 2, + ACTIONS(5724), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5582), 3, + ACTIONS(5712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5592), 3, + ACTIONS(5722), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5590), 4, + ACTIONS(5720), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 10, + ACTIONS(1553), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -307530,23 +312089,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134403] = 7, + [134978] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1428), 1, + ACTIONS(1447), 1, anon_sym_LF, - ACTIONS(5610), 1, + ACTIONS(5732), 1, anon_sym_DOT2, - ACTIONS(5612), 1, + ACTIONS(5734), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5614), 1, + ACTIONS(5736), 1, aux_sym_unquoted_token2, - STATE(2847), 1, + STATE(2876), 1, sym_comment, - ACTIONS(1426), 32, + ACTIONS(1445), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -307579,27 +312135,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [134456] = 9, + [135031] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5586), 1, + ACTIONS(5716), 1, anon_sym_SLASH_SLASH, - STATE(2848), 1, + STATE(2877), 1, sym_comment, - ACTIONS(5578), 2, + ACTIONS(5708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5584), 2, + ACTIONS(5714), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5582), 3, + ACTIONS(5712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1528), 7, + ACTIONS(1551), 7, sym_identifier, anon_sym_GT, anon_sym_in, @@ -307607,7 +312160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 19, + ACTIONS(1553), 21, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -307615,6 +312168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -307627,28 +312182,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [134513] = 5, - ACTIONS(3), 1, + [135086] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2849), 1, + ACTIONS(1083), 1, + anon_sym_DOT2, + ACTIONS(1409), 1, + anon_sym_LF, + STATE(2828), 1, + aux_sym_cell_path_repeat1, + STATE(2878), 1, sym_comment, - ACTIONS(5584), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1528), 12, - sym_identifier, + STATE(2965), 1, + sym_path, + ACTIONS(1407), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [135139] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5716), 1, + anon_sym_SLASH_SLASH, + STATE(2879), 1, + sym_comment, + ACTIONS(5706), 2, + anon_sym_GT, anon_sym_LT2, + ACTIONS(5708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5718), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5712), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5720), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 5, + sym_identifier, + anon_sym_in, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 22, + ACTIONS(1553), 15, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -307656,11 +312270,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [135200] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5738), 1, + anon_sym_QMARK2, + STATE(2880), 1, + sym_comment, + ACTIONS(1421), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1419), 33, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -307671,12 +312319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [134562] = 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [135249] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2850), 1, + STATE(2881), 1, sym_comment, - ACTIONS(5616), 36, + ACTIONS(5740), 36, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_any, @@ -307713,12 +312364,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [134607] = 3, + [135294] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2851), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2882), 1, + sym_comment, + STATE(3287), 1, + sym__var, + STATE(3563), 1, + sym__immediate_decimal, + STATE(3543), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2180), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2182), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [135359] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2883), 1, + sym_comment, + STATE(3287), 1, + sym__var, + STATE(3526), 1, + sym__immediate_decimal, + STATE(3547), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2132), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2134), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [135424] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2884), 1, + sym_comment, + ACTIONS(1443), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1441), 34, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [135471] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2885), 1, sym_comment, - ACTIONS(5618), 36, + ACTIONS(5742), 36, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_any, @@ -307755,20 +312553,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [134652] = 7, + [135516] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5710), 1, + anon_sym_in, + ACTIONS(5716), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5726), 1, + anon_sym_bit_DASHand, + ACTIONS(5728), 1, + anon_sym_bit_DASHxor, + ACTIONS(5730), 1, + anon_sym_bit_DASHor, + ACTIONS(5744), 1, + anon_sym_and, + STATE(2886), 1, + sym_comment, + ACTIONS(5706), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5718), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5724), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1551), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(5712), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5722), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5720), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135591] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5710), 1, + anon_sym_in, + ACTIONS(5716), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5726), 1, + anon_sym_bit_DASHand, + ACTIONS(5728), 1, + anon_sym_bit_DASHxor, + ACTIONS(5730), 1, + anon_sym_bit_DASHor, + ACTIONS(5744), 1, + anon_sym_and, + ACTIONS(5746), 1, + anon_sym_xor, + STATE(2887), 1, + sym_comment, + ACTIONS(1551), 2, + sym_identifier, + anon_sym_or, + ACTIONS(5706), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5718), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5724), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5712), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5722), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5720), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135668] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1551), 1, + sym_identifier, + ACTIONS(5710), 1, + anon_sym_in, + ACTIONS(5716), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5726), 1, + anon_sym_bit_DASHand, + ACTIONS(5728), 1, + anon_sym_bit_DASHxor, + ACTIONS(5730), 1, + anon_sym_bit_DASHor, + ACTIONS(5744), 1, + anon_sym_and, + ACTIONS(5746), 1, + anon_sym_xor, + ACTIONS(5748), 1, + anon_sym_or, + STATE(2888), 1, + sym_comment, + ACTIONS(5706), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5718), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5724), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5712), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5722), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5720), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135747] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(1083), 1, anon_sym_DOT2, - ACTIONS(1391), 1, + ACTIONS(1433), 1, anon_sym_LF, - STATE(2832), 1, - sym_path, - STATE(2852), 1, + STATE(2889), 1, sym_comment, - STATE(3016), 1, + STATE(2912), 1, + sym_path, + STATE(3037), 1, sym_cell_path, - ACTIONS(1389), 32, + ACTIONS(1431), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -307801,42 +312773,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [134705] = 7, - ACTIONS(3), 1, + [135800] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5586), 1, - anon_sym_SLASH_SLASH, - STATE(2853), 1, + ACTIONS(5738), 1, + anon_sym_QMARK2, + STATE(2890), 1, sym_comment, - ACTIONS(5584), 2, + ACTIONS(1421), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1419), 33, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5582), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1528), 9, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -307847,25 +312814,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [134758] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [135849] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5142), 1, - aux_sym_unquoted_token3, - STATE(2854), 1, + ACTIONS(1083), 1, + anon_sym_DOT2, + ACTIONS(1457), 1, + anon_sym_LF, + STATE(2891), 1, sym_comment, - ACTIONS(1371), 2, - anon_sym_RBRACK, + STATE(2912), 1, + sym_path, + STATE(3049), 1, + sym_cell_path, + ACTIONS(1455), 32, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(1369), 33, - sym_identifier, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -307891,46 +312863,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [134807] = 13, + [135902] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5580), 1, + ACTIONS(5710), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5716), 1, anon_sym_SLASH_SLASH, - STATE(2855), 1, + STATE(2892), 1, sym_comment, - ACTIONS(5576), 2, + ACTIONS(5706), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5578), 2, + ACTIONS(5708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5584), 2, + ACTIONS(5714), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, + ACTIONS(5718), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5582), 3, + ACTIONS(5724), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5592), 3, + ACTIONS(5722), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5590), 4, + ACTIONS(5720), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 12, + ACTIONS(1553), 10, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -307938,44 +312913,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [134872] = 8, + [135969] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5586), 1, - anon_sym_SLASH_SLASH, - STATE(2856), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2893), 1, sym_comment, - ACTIONS(5578), 2, + STATE(3287), 1, + sym__var, + STATE(3527), 1, + sym__immediate_decimal, + STATE(3520), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2160), 9, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(5584), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5582), 3, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2162), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [136034] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2894), 1, + sym_comment, + ACTIONS(1532), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1534), 31, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, - ACTIONS(1528), 7, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [136081] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2895), 1, + sym_comment, + STATE(3287), 1, + sym__var, + STATE(3544), 1, + sym__immediate_decimal, + STATE(3545), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2144), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2146), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [136146] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2896), 1, + sym_comment, + ACTIONS(5750), 36, + anon_sym_COMMA, + 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, + [136191] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5659), 1, + aux_sym_unquoted_token5, + STATE(2897), 1, + sym_comment, + ACTIONS(1545), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 21, + ACTIONS(1547), 23, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -307990,12 +313149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [134927] = 3, + [136240] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2857), 1, + STATE(2898), 1, sym_comment, - ACTIONS(5531), 36, + ACTIONS(5752), 36, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_any, @@ -308032,48 +313191,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [134972] = 11, - ACTIONS(3), 1, + [136285] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5586), 1, - anon_sym_SLASH_SLASH, - STATE(2858), 1, + ACTIONS(1083), 1, + anon_sym_DOT2, + ACTIONS(1465), 1, + anon_sym_LF, + STATE(2899), 1, sym_comment, - ACTIONS(5576), 2, + STATE(2912), 1, + sym_path, + STATE(3051), 1, + sym_cell_path, + ACTIONS(1463), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(5578), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5584), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5588), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5582), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5590), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1528), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 15, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -308082,76 +313234,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [135033] = 20, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [136338] = 21, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(1159), 1, anon_sym_DOT2, - ACTIONS(5622), 1, - anon_sym_LF, - ACTIONS(5638), 1, + ACTIONS(1163), 1, + anon_sym_QMARK2, + ACTIONS(1171), 1, anon_sym_bit_DASHand, - ACTIONS(5640), 1, + ACTIONS(1173), 1, anon_sym_bit_DASHxor, - ACTIONS(5642), 1, + ACTIONS(1175), 1, anon_sym_bit_DASHor, - ACTIONS(5644), 1, + ACTIONS(1177), 1, anon_sym_and, - ACTIONS(5646), 1, + ACTIONS(1179), 1, anon_sym_xor, - ACTIONS(5648), 1, + ACTIONS(1181), 1, anon_sym_or, - STATE(2832), 1, - sym_path, - STATE(2859), 1, + STATE(2900), 1, sym_comment, - STATE(2998), 1, + STATE(2976), 1, + sym_path, + STATE(3218), 1, sym_cell_path, - ACTIONS(5626), 2, + ACTIONS(1073), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1075), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1155), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5632), 2, + ACTIONS(1165), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5634), 2, + ACTIONS(1167), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5636), 2, + ACTIONS(1169), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5620), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(5628), 4, + ACTIONS(1157), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5630), 4, + ACTIONS(1161), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5624), 6, + ACTIONS(1153), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [135112] = 5, + [136419] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5650), 1, - anon_sym_QMARK2, - STATE(2860), 1, + STATE(2901), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(1439), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1464), 33, + ACTIONS(1437), 34, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -308161,6 +313315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -308185,40 +313340,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [135161] = 5, + [136466] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5483), 1, - aux_sym_unquoted_token5, - STATE(2861), 1, + ACTIONS(5754), 1, + anon_sym_COMMA, + STATE(2902), 1, sym_comment, - ACTIONS(1495), 12, - sym_identifier, + ACTIONS(5756), 35, + 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, + [136513] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1083), 1, + anon_sym_DOT2, + ACTIONS(1402), 1, + anon_sym_LF, + STATE(2903), 1, + sym_comment, + STATE(2912), 1, + sym_path, + STATE(2986), 1, + sym_cell_path, + ACTIONS(1400), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - ACTIONS(1497), 23, - anon_sym_COMMA, + [136566] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5318), 1, + aux_sym_unquoted_token3, + STATE(2904), 1, + sym_comment, + ACTIONS(1377), 2, anon_sym_RBRACK, anon_sym_RPAREN, + ACTIONS(1375), 33, + sym_identifier, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -308229,63 +313470,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [135210] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [136615] = 21, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5483), 1, - aux_sym_unquoted_token5, - STATE(2862), 1, - sym_comment, - ACTIONS(1495), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(1159), 1, + anon_sym_DOT2, + ACTIONS(5766), 1, + anon_sym_QMARK2, + ACTIONS(5774), 1, + anon_sym_bit_DASHand, + ACTIONS(5776), 1, + anon_sym_bit_DASHxor, + ACTIONS(5778), 1, + anon_sym_bit_DASHor, + ACTIONS(5780), 1, anon_sym_and, + ACTIONS(5782), 1, anon_sym_xor, + ACTIONS(5784), 1, anon_sym_or, - ACTIONS(1497), 23, - anon_sym_COLON, - anon_sym_COMMA, + STATE(2905), 1, + sym_comment, + STATE(2976), 1, + sym_path, + STATE(3173), 1, + sym_cell_path, + ACTIONS(5664), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(5666), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5768), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(5770), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(5772), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5762), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5764), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5758), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [135259] = 5, - ACTIONS(105), 1, + [136696] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5650), 1, - anon_sym_QMARK2, - STATE(2863), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2906), 1, sym_comment, - ACTIONS(1466), 2, - anon_sym_LF, + STATE(3287), 1, + sym__var, + STATE(3560), 1, + sym__immediate_decimal, + STATE(3555), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2128), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2130), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [136761] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1083), 1, anon_sym_DOT2, - ACTIONS(1464), 33, + ACTIONS(1480), 1, + anon_sym_LF, + STATE(2907), 1, + sym_comment, + STATE(2912), 1, + sym_path, + STATE(3064), 1, + sym_cell_path, + ACTIONS(1478), 32, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -308317,81 +313631,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [135308] = 3, + [136814] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2864), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2908), 1, sym_comment, - ACTIONS(5652), 36, + STATE(3287), 1, + sym__var, + STATE(3578), 1, + sym__immediate_decimal, + STATE(3588), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2148), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2150), 17, + anon_sym_LBRACK, anon_sym_COMMA, - 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, - [135353] = 7, - ACTIONS(105), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [136879] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, anon_sym_DOT2, - ACTIONS(1438), 1, - anon_sym_LF, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2865), 1, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2909), 1, sym_comment, - STATE(2891), 1, - sym_path, - ACTIONS(1436), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3287), 1, + sym__var, + STATE(3538), 1, + sym__immediate_decimal, + STATE(3565), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2140), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2142), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [136944] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5659), 1, + aux_sym_unquoted_token5, + STATE(2910), 1, + sym_comment, + ACTIONS(1545), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1547), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -308402,23 +313779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [135406] = 7, + [136993] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(1083), 1, anon_sym_DOT2, - ACTIONS(1397), 1, + ACTIONS(1476), 1, anon_sym_LF, - STATE(2832), 1, - sym_path, - STATE(2866), 1, + STATE(2911), 1, sym_comment, - STATE(2974), 1, + STATE(2912), 1, + sym_path, + STATE(3041), 1, sym_cell_path, - ACTIONS(1395), 32, + ACTIONS(1474), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -308451,20 +313825,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [135459] = 7, + [137046] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(1083), 1, anon_sym_DOT2, - ACTIONS(1409), 1, + ACTIONS(1396), 1, anon_sym_LF, - STATE(2832), 1, - sym_path, - STATE(2867), 1, + STATE(2878), 1, + aux_sym_cell_path_repeat1, + STATE(2912), 1, sym_comment, - STATE(3011), 1, - sym_cell_path, - ACTIONS(1407), 32, + STATE(2965), 1, + sym_path, + ACTIONS(1394), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -308497,39 +313871,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [135512] = 7, - ACTIONS(105), 1, + [137099] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, anon_sym_DOT2, - ACTIONS(1449), 1, - anon_sym_LF, - STATE(2832), 1, - sym_path, - STATE(2868), 1, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2913), 1, sym_comment, - STATE(3010), 1, - sym_cell_path, - ACTIONS(1447), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + STATE(3287), 1, + sym__var, + STATE(3585), 1, + sym__immediate_decimal, + STATE(3584), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2152), 9, anon_sym_DASH, - anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2154), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, + 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, + [137164] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5716), 1, anon_sym_SLASH_SLASH, + STATE(2914), 1, + sym_comment, + ACTIONS(5708), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5718), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(5712), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1551), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 19, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -308540,23 +313971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [135565] = 7, + [137221] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1092), 1, - anon_sym_DOT2, - ACTIONS(1401), 1, + ACTIONS(1402), 1, anon_sym_LF, - STATE(2832), 1, + ACTIONS(5786), 1, + anon_sym_DOT2, + STATE(2844), 1, sym_path, - STATE(2869), 1, + STATE(2915), 1, sym_comment, - STATE(2882), 1, + STATE(2986), 1, sym_cell_path, - ACTIONS(1399), 32, + ACTIONS(1400), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -308589,27 +314017,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [135618] = 7, + [137274] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1092), 1, - anon_sym_DOT2, - ACTIONS(1420), 1, - anon_sym_LF, - STATE(2832), 1, - sym_path, - STATE(2870), 1, + ACTIONS(5318), 1, + aux_sym_unquoted_token3, + STATE(2916), 1, sym_comment, - STATE(3030), 1, - sym_cell_path, - ACTIONS(1418), 32, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1375), 35, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -308635,343 +314060,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [135671] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_COMMA, - STATE(2871), 1, - sym_comment, - ACTIONS(5656), 35, - 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, - [135718] = 21, + [137321] = 20, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1153), 1, + ACTIONS(1083), 1, anon_sym_DOT2, - ACTIONS(1157), 1, - anon_sym_QMARK2, - ACTIONS(1165), 1, + ACTIONS(5791), 1, + anon_sym_LF, + ACTIONS(5807), 1, anon_sym_bit_DASHand, - ACTIONS(1167), 1, + ACTIONS(5809), 1, anon_sym_bit_DASHxor, - ACTIONS(1169), 1, + ACTIONS(5811), 1, anon_sym_bit_DASHor, - ACTIONS(1171), 1, + ACTIONS(5813), 1, anon_sym_and, - ACTIONS(1173), 1, + ACTIONS(5815), 1, anon_sym_xor, - ACTIONS(1175), 1, + ACTIONS(5817), 1, anon_sym_or, - STATE(2872), 1, - sym_comment, - STATE(2875), 1, + STATE(2912), 1, sym_path, - STATE(3161), 1, + STATE(2917), 1, + sym_comment, + STATE(3125), 1, sym_cell_path, - ACTIONS(1082), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1084), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1149), 2, + ACTIONS(5795), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1159), 2, + ACTIONS(5801), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1161), 2, + ACTIONS(5803), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1163), 2, + ACTIONS(5805), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1151), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1155), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1147), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [135799] = 21, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1153), 1, - anon_sym_DOT2, - ACTIONS(5666), 1, - anon_sym_QMARK2, - ACTIONS(5674), 1, - anon_sym_bit_DASHand, - ACTIONS(5676), 1, - anon_sym_bit_DASHxor, - ACTIONS(5678), 1, - anon_sym_bit_DASHor, - ACTIONS(5680), 1, - anon_sym_and, - ACTIONS(5682), 1, - anon_sym_xor, - ACTIONS(5684), 1, - anon_sym_or, - STATE(2873), 1, - sym_comment, - STATE(2875), 1, - sym_path, - STATE(3164), 1, - sym_cell_path, - ACTIONS(5451), 2, + ACTIONS(5789), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5453), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5660), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5668), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5672), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5662), 4, + anon_sym_RBRACE, + ACTIONS(5797), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5664), 4, + ACTIONS(5799), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5658), 6, + ACTIONS(5793), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [135880] = 20, + [137400] = 20, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(1083), 1, anon_sym_DOT2, - ACTIONS(5688), 1, + ACTIONS(5821), 1, anon_sym_LF, - ACTIONS(5704), 1, + ACTIONS(5837), 1, anon_sym_bit_DASHand, - ACTIONS(5706), 1, + ACTIONS(5839), 1, anon_sym_bit_DASHxor, - ACTIONS(5708), 1, + ACTIONS(5841), 1, anon_sym_bit_DASHor, - ACTIONS(5710), 1, + ACTIONS(5843), 1, anon_sym_and, - ACTIONS(5712), 1, + ACTIONS(5845), 1, anon_sym_xor, - ACTIONS(5714), 1, + ACTIONS(5847), 1, anon_sym_or, - STATE(2832), 1, + STATE(2912), 1, sym_path, - STATE(2874), 1, + STATE(2918), 1, sym_comment, - STATE(3008), 1, + STATE(3076), 1, sym_cell_path, - ACTIONS(5692), 2, + ACTIONS(5825), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5698), 2, + ACTIONS(5831), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5700), 2, + ACTIONS(5833), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5702), 2, + ACTIONS(5835), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5686), 4, + ACTIONS(5819), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(5694), 4, + ACTIONS(5827), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5696), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5690), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [135959] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1153), 1, - anon_sym_DOT2, - STATE(2875), 1, - sym_comment, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3020), 1, - sym_path, - ACTIONS(1442), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1440), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(5829), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [136011] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1153), 1, - anon_sym_DOT2, - STATE(2875), 1, - sym_path, - STATE(2876), 1, - sym_comment, - STATE(3211), 1, - sym_cell_path, - ACTIONS(1409), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1407), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(5823), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [136063] = 13, + [137479] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(5524), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(5558), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(5562), 1, anon_sym_DOT2, - ACTIONS(5555), 1, + ACTIONS(5566), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, + ACTIONS(5568), 1, anon_sym_DASH2, - ACTIONS(5559), 1, + ACTIONS(5570), 1, anon_sym_PLUS2, - STATE(2877), 1, + STATE(2919), 1, sym_comment, - STATE(3253), 1, + STATE(3287), 1, sym__var, - STATE(3556), 1, + STATE(3583), 1, sym__immediate_decimal, - STATE(3557), 2, + STATE(3582), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2121), 8, + ACTIONS(2156), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -308980,7 +314211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2123), 17, + aux_sym_unquoted_token1, + ACTIONS(2158), 17, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LBRACE, @@ -308998,31 +314230,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [136127] = 13, + [137544] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(5524), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(5558), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(5562), 1, anon_sym_DOT2, - ACTIONS(5555), 1, + ACTIONS(5566), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, + ACTIONS(5568), 1, anon_sym_DASH2, - ACTIONS(5559), 1, + ACTIONS(5570), 1, anon_sym_PLUS2, - STATE(2878), 1, + STATE(2920), 1, sym_comment, - STATE(3253), 1, + STATE(3287), 1, sym__var, - STATE(3559), 1, + STATE(3581), 1, sym__immediate_decimal, - STATE(3560), 2, + STATE(3580), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2125), 8, + ACTIONS(2176), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -309031,7 +314263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2127), 17, + aux_sym_unquoted_token1, + ACTIONS(2178), 17, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LBRACE, @@ -309049,17 +314282,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [136191] = 4, + [137609] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2879), 1, - sym_comment, - ACTIONS(1513), 2, - anon_sym_LF, + ACTIONS(1083), 1, anon_sym_DOT2, - ACTIONS(1511), 33, + ACTIONS(1469), 1, + anon_sym_LF, + STATE(2912), 1, + sym_path, + STATE(2921), 1, + sym_comment, + STATE(2959), 1, + sym_cell_path, + ACTIONS(1467), 32, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -309091,21 +314328,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [136237] = 7, + [137662] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1551), 1, + sym_identifier, + ACTIONS(5853), 1, + anon_sym_in, + ACTIONS(5859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5869), 1, + anon_sym_bit_DASHand, + ACTIONS(5871), 1, + anon_sym_bit_DASHxor, + ACTIONS(5873), 1, + anon_sym_bit_DASHor, + ACTIONS(5875), 1, + anon_sym_and, + ACTIONS(5877), 1, + anon_sym_xor, + ACTIONS(5879), 1, + anon_sym_or, + STATE(2922), 1, + sym_comment, + ACTIONS(5849), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5851), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5857), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5861), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5867), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5855), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5865), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5863), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [137740] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1153), 1, + ACTIONS(1159), 1, anon_sym_DOT2, - STATE(2875), 1, - sym_path, - STATE(2880), 1, + STATE(2923), 1, sym_comment, - STATE(3210), 1, + STATE(2976), 1, + sym_path, + STATE(3203), 1, sym_cell_path, - ACTIONS(1405), 2, + ACTIONS(1480), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1403), 30, + ACTIONS(1478), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -309136,38 +314431,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [136289] = 7, - ACTIONS(3), 1, + [137792] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(1159), 1, anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(2881), 1, + STATE(2924), 1, sym_comment, - STATE(3188), 1, + STATE(2976), 1, + sym_path, + STATE(3221), 1, sym_cell_path, - ACTIONS(1389), 5, + ACTIONS(1433), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1431), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1391), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -309181,35 +314476,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [136341] = 4, - ACTIONS(105), 1, + [137844] = 16, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2882), 1, + ACTIONS(5853), 1, + anon_sym_in, + ACTIONS(5859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5869), 1, + anon_sym_bit_DASHand, + ACTIONS(5871), 1, + anon_sym_bit_DASHxor, + STATE(2925), 1, sym_comment, - ACTIONS(1509), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1507), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5849), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(5851), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(5857), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5861), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5867), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5855), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + ACTIONS(5865), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1551), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(5863), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + [137914] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5859), 1, anon_sym_SLASH_SLASH, + STATE(2926), 1, + sym_comment, + ACTIONS(5851), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5857), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5861), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(5855), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1551), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 18, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -309220,381 +314577,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [136387] = 13, + [137970] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(5218), 1, anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2883), 1, + STATE(2425), 1, + sym_path, + STATE(2927), 1, sym_comment, - STATE(3253), 1, - sym__var, - STATE(3546), 1, - sym__immediate_decimal, - STATE(3541), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2097), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, + STATE(3161), 1, + sym_cell_path, + ACTIONS(1463), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2099), 17, - anon_sym_LBRACK, + anon_sym_LT2, + ACTIONS(1465), 27, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [136451] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_LF, - ACTIONS(5716), 1, - anon_sym_DOT2, - STATE(2884), 1, - sym_comment, - STATE(2889), 1, - aux_sym_cell_path_repeat1, - STATE(3005), 1, - sym_path, - ACTIONS(1440), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [136503] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2885), 1, - sym_comment, - ACTIONS(5718), 35, - 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, - [136547] = 15, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [138022] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5724), 1, + ACTIONS(5853), 1, anon_sym_in, - ACTIONS(5730), 1, + ACTIONS(5859), 1, anon_sym_SLASH_SLASH, - ACTIONS(5740), 1, + ACTIONS(5869), 1, anon_sym_bit_DASHand, - STATE(2886), 1, + ACTIONS(5871), 1, + anon_sym_bit_DASHxor, + ACTIONS(5873), 1, + anon_sym_bit_DASHor, + STATE(2928), 1, sym_comment, - ACTIONS(5720), 2, + ACTIONS(5849), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5722), 2, + ACTIONS(5851), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5728), 2, + ACTIONS(5857), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, + ACTIONS(5861), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5738), 2, + ACTIONS(5867), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5726), 3, + ACTIONS(5855), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5736), 3, + ACTIONS(5865), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5734), 4, + ACTIONS(5863), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 8, + ACTIONS(1553), 6, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [138094] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5853), 1, + anon_sym_in, + ACTIONS(5859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5869), 1, + anon_sym_bit_DASHand, + ACTIONS(5871), 1, anon_sym_bit_DASHxor, + ACTIONS(5873), 1, anon_sym_bit_DASHor, - [136615] = 13, + ACTIONS(5875), 1, + anon_sym_and, + STATE(2929), 1, + sym_comment, + ACTIONS(5849), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5851), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5857), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5861), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5867), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1551), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(5855), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5865), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5863), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [138168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + STATE(2930), 1, + sym_comment, + ACTIONS(5857), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1551), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 21, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [138216] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5218), 1, anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2887), 1, + STATE(2425), 1, + sym_path, + STATE(2931), 1, sym_comment, - STATE(3253), 1, - sym__var, - STATE(3561), 1, - sym__immediate_decimal, - STATE(3562), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2085), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, + STATE(3157), 1, + sym_cell_path, + ACTIONS(1455), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2087), 17, - anon_sym_LBRACK, + anon_sym_LT2, + ACTIONS(1457), 27, anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - 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, - [136679] = 13, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [138268] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2888), 1, + ACTIONS(1551), 1, + sym_identifier, + ACTIONS(5885), 1, + anon_sym_in, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5901), 1, + anon_sym_bit_DASHand, + ACTIONS(5903), 1, + anon_sym_bit_DASHxor, + ACTIONS(5905), 1, + anon_sym_bit_DASHor, + ACTIONS(5907), 1, + anon_sym_and, + ACTIONS(5909), 1, + anon_sym_xor, + ACTIONS(5911), 1, + anon_sym_or, + STATE(2932), 1, sym_comment, - STATE(3253), 1, - sym__var, - STATE(3558), 1, - sym__immediate_decimal, - STATE(3553), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2129), 8, + ACTIONS(5881), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5883), 2, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2131), 17, - anon_sym_LBRACK, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5893), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5899), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5887), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5897), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5895), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 6, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [136743] = 7, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [138346] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1438), 1, - anon_sym_LF, - ACTIONS(5716), 1, + ACTIONS(1159), 1, anon_sym_DOT2, - STATE(2889), 1, + STATE(2933), 1, sym_comment, - STATE(2912), 1, - aux_sym_cell_path_repeat1, - STATE(3005), 1, + STATE(2976), 1, sym_path, - ACTIONS(1436), 31, + STATE(3204), 1, + sym_cell_path, + ACTIONS(1457), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1455), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [136795] = 9, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [138398] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_SLASH_SLASH, - STATE(2890), 1, + ACTIONS(5659), 1, + aux_sym_unquoted_token5, + STATE(2934), 1, sym_comment, - ACTIONS(5742), 2, + ACTIONS(1545), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5746), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5744), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1528), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, + anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 18, - anon_sym_COLON, + ACTIONS(1547), 22, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -309607,23 +314967,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [136851] = 4, + [138446] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2891), 1, + ACTIONS(1159), 1, + anon_sym_DOT2, + STATE(2935), 1, sym_comment, - ACTIONS(1487), 2, + STATE(2976), 1, + sym_path, + STATE(3118), 1, + sym_cell_path, + ACTIONS(1402), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1485), 33, + ACTIONS(1400), 30, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -309649,75 +315012,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [136897] = 16, + [138498] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5724), 1, + ACTIONS(5853), 1, anon_sym_in, - ACTIONS(5730), 1, + ACTIONS(5859), 1, anon_sym_SLASH_SLASH, - ACTIONS(5740), 1, + ACTIONS(5869), 1, anon_sym_bit_DASHand, - ACTIONS(5752), 1, - anon_sym_bit_DASHxor, - STATE(2892), 1, + STATE(2936), 1, sym_comment, - ACTIONS(5720), 2, + ACTIONS(5849), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5722), 2, + ACTIONS(5851), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5728), 2, + ACTIONS(5857), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, + ACTIONS(5861), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5738), 2, + ACTIONS(5867), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5726), 3, + ACTIONS(5855), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5736), 3, + ACTIONS(5865), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5734), 4, + ACTIONS(5863), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 7, + ACTIONS(1553), 8, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [136967] = 7, + [138566] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5754), 1, + ACTIONS(5913), 1, anon_sym_DOT2, - STATE(2893), 1, + STATE(2937), 1, sym_comment, - STATE(2908), 1, + STATE(2956), 1, sym_path, STATE(3081), 1, sym_cell_path, - ACTIONS(1397), 2, + ACTIONS(1469), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1395), 30, + ACTIONS(1467), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -309748,94 +315110,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137019] = 18, + [138618] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5759), 1, + ACTIONS(5885), 1, anon_sym_in, - ACTIONS(5767), 1, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5901), 1, anon_sym_bit_DASHand, - ACTIONS(5769), 1, + ACTIONS(5903), 1, anon_sym_bit_DASHxor, - ACTIONS(5771), 1, + ACTIONS(5905), 1, anon_sym_bit_DASHor, - ACTIONS(5773), 1, + ACTIONS(5907), 1, anon_sym_and, - STATE(2894), 1, + ACTIONS(5909), 1, + anon_sym_xor, + STATE(2938), 1, sym_comment, - ACTIONS(5742), 2, + ACTIONS(1551), 2, + sym_identifier, + anon_sym_or, + ACTIONS(5881), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5746), 2, + ACTIONS(5889), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, + ACTIONS(5893), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5757), 2, + ACTIONS(5899), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5887), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5897), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5895), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [138694] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_in, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5901), 1, + anon_sym_bit_DASHand, + ACTIONS(5903), 1, + anon_sym_bit_DASHxor, + ACTIONS(5905), 1, + anon_sym_bit_DASHor, + ACTIONS(5907), 1, + anon_sym_and, + STATE(2939), 1, + sym_comment, + ACTIONS(5881), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5765), 2, + ACTIONS(5883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5893), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5899), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1528), 3, + ACTIONS(1551), 3, sym_identifier, anon_sym_xor, anon_sym_or, - ACTIONS(5744), 3, + ACTIONS(5887), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5763), 3, + ACTIONS(5897), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5761), 4, + ACTIONS(5895), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 6, - anon_sym_COLON, + ACTIONS(1553), 6, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [137093] = 7, - ACTIONS(105), 1, + [138768] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1153), 1, - anon_sym_DOT2, - STATE(2875), 1, - sym_path, - STATE(2895), 1, + ACTIONS(5885), 1, + anon_sym_in, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5901), 1, + anon_sym_bit_DASHand, + ACTIONS(5903), 1, + anon_sym_bit_DASHxor, + ACTIONS(5905), 1, + anon_sym_bit_DASHor, + STATE(2940), 1, sym_comment, - STATE(3197), 1, - sym_cell_path, - ACTIONS(1391), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1389), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(5881), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(5883), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5893), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5899), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5887), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5897), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1551), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(5895), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [138840] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5885), 1, anon_sym_in, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5901), 1, + anon_sym_bit_DASHand, + ACTIONS(5903), 1, + anon_sym_bit_DASHxor, + STATE(2941), 1, + sym_comment, + ACTIONS(5881), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5893), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5899), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5887), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5897), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1551), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(5895), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 7, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + [138910] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_in, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5901), 1, + anon_sym_bit_DASHand, + STATE(2942), 1, + sym_comment, + ACTIONS(5881), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5889), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5893), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5899), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5887), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + ACTIONS(5897), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1551), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(5895), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [138978] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_in, + ACTIONS(5891), 1, anon_sym_SLASH_SLASH, + STATE(2943), 1, + sym_comment, + ACTIONS(5881), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5883), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5893), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(5899), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5887), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5897), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1551), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(5895), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 9, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [139044] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + STATE(2944), 1, + sym_comment, + ACTIONS(5883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5893), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5887), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1551), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 18, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -309846,97 +315484,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [139100] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5859), 1, + anon_sym_SLASH_SLASH, + STATE(2945), 1, + sym_comment, + ACTIONS(5857), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5855), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1551), 9, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [137145] = 17, + ACTIONS(1553), 20, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [139152] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5724), 1, + ACTIONS(5853), 1, anon_sym_in, - ACTIONS(5730), 1, + ACTIONS(5859), 1, anon_sym_SLASH_SLASH, - ACTIONS(5740), 1, - anon_sym_bit_DASHand, - ACTIONS(5752), 1, - anon_sym_bit_DASHxor, - ACTIONS(5775), 1, - anon_sym_bit_DASHor, - STATE(2896), 1, + STATE(2946), 1, sym_comment, - ACTIONS(5720), 2, + ACTIONS(5849), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5722), 2, + ACTIONS(5851), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5728), 2, + ACTIONS(5857), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, + ACTIONS(5861), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5738), 2, + ACTIONS(5867), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5726), 3, + ACTIONS(5855), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5736), 3, + ACTIONS(5865), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5734), 4, + ACTIONS(5863), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 6, + ACTIONS(1553), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [139218] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2947), 1, + sym_comment, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1551), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 21, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [137217] = 8, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [139266] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5779), 1, - anon_sym_DOT2, - ACTIONS(5781), 1, - aux_sym_unquoted_token4, - ACTIONS(5783), 1, - aux_sym_unquoted_token6, - STATE(2897), 1, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + STATE(2948), 1, sym_comment, - ACTIONS(5777), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(1369), 5, - anon_sym_GT, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5887), 3, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1551), 9, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1371), 25, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 20, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [139318] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2949), 1, + sym_comment, + ACTIONS(5916), 35, + 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, + [139362] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5318), 1, + aux_sym_unquoted_token3, + STATE(2950), 1, + sym_comment, + ACTIONS(1375), 34, + sym_identifier, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -309950,79 +315752,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137271] = 20, - ACTIONS(3), 1, + [139408] = 20, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1528), 1, - sym_identifier, - ACTIONS(5748), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5759), 1, - anon_sym_in, - ACTIONS(5767), 1, + ACTIONS(1159), 1, + anon_sym_DOT2, + ACTIONS(5932), 1, anon_sym_bit_DASHand, - ACTIONS(5769), 1, + ACTIONS(5934), 1, anon_sym_bit_DASHxor, - ACTIONS(5771), 1, + ACTIONS(5936), 1, anon_sym_bit_DASHor, - ACTIONS(5773), 1, + ACTIONS(5938), 1, anon_sym_and, - ACTIONS(5785), 1, + ACTIONS(5940), 1, anon_sym_xor, - ACTIONS(5787), 1, + ACTIONS(5942), 1, anon_sym_or, - STATE(2898), 1, + STATE(2951), 1, sym_comment, - ACTIONS(5742), 2, + STATE(2976), 1, + sym_path, + STATE(3133), 1, + sym_cell_path, + ACTIONS(5789), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5791), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5920), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5746), 2, + ACTIONS(5926), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, + ACTIONS(5928), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5757), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5765), 2, + ACTIONS(5930), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5744), 3, + ACTIONS(5922), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5924), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5918), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [139486] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_in, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + STATE(2952), 1, + sym_comment, + ACTIONS(5881), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5893), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5887), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5763), 3, + ACTIONS(5897), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5761), 4, + ACTIONS(1551), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(5895), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 6, - anon_sym_COLON, + ACTIONS(1553), 11, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [137349] = 7, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [139550] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1153), 1, + ACTIONS(5944), 1, anon_sym_DOT2, - STATE(2899), 1, + ACTIONS(5946), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5948), 1, + aux_sym_unquoted_token2, + STATE(2953), 1, sym_comment, - STATE(2917), 1, - aux_sym_cell_path_repeat1, - STATE(3020), 1, - sym_path, - ACTIONS(1438), 2, + ACTIONS(1447), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1436), 30, + ACTIONS(1445), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -310053,21 +315906,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137401] = 7, - ACTIONS(105), 1, + [139602] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1153), 1, + ACTIONS(5218), 1, anon_sym_DOT2, - STATE(2875), 1, + STATE(2425), 1, sym_path, - STATE(2900), 1, + STATE(2954), 1, sym_comment, - STATE(3107), 1, + STATE(3160), 1, + sym_cell_path, + ACTIONS(1474), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1476), 27, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [139654] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5950), 1, + anon_sym_DOT2, + STATE(2955), 1, + sym_comment, + STATE(2956), 1, + sym_path, + STATE(3118), 1, sym_cell_path, - ACTIONS(1449), 2, + ACTIONS(1402), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1447), 30, + ACTIONS(1400), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -310098,72 +315996,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137453] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2901), 1, - sym_comment, - STATE(3253), 1, - sym__var, - STATE(3540), 1, - sym__immediate_decimal, - STATE(3538), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2101), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2103), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [137517] = 7, + [139706] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1153), 1, + ACTIONS(1159), 1, anon_sym_DOT2, - STATE(2875), 1, - sym_path, - STATE(2902), 1, + STATE(2956), 1, sym_comment, - STATE(3081), 1, - sym_cell_path, - ACTIONS(1397), 2, + STATE(2963), 1, + aux_sym_cell_path_repeat1, + STATE(3042), 1, + sym_path, + ACTIONS(1396), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1395), 30, + ACTIONS(1394), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -310194,30 +316041,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137569] = 7, + [139758] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5955), 1, anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(2903), 1, + ACTIONS(5957), 1, + aux_sym_unquoted_token4, + ACTIONS(5959), 1, + aux_sym_unquoted_token6, + STATE(2957), 1, sym_comment, - STATE(3162), 1, - sym_cell_path, - ACTIONS(1418), 5, + ACTIONS(5953), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(1375), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1420), 27, + ACTIONS(1377), 25, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -310239,186 +316087,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137621] = 18, - ACTIONS(3), 1, + [139812] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5724), 1, + ACTIONS(1159), 1, + anon_sym_DOT2, + STATE(2958), 1, + sym_comment, + STATE(2976), 1, + sym_path, + STATE(3152), 1, + sym_cell_path, + ACTIONS(1461), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1459), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - ACTIONS(5730), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5740), 1, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(5752), 1, anon_sym_bit_DASHxor, - ACTIONS(5775), 1, anon_sym_bit_DASHor, - ACTIONS(5789), 1, anon_sym_and, - STATE(2904), 1, + anon_sym_xor, + anon_sym_or, + [139864] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2959), 1, sym_comment, - ACTIONS(5720), 2, + ACTIONS(1534), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1532), 33, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(5722), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5728), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5738), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1528), 3, - sym_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5726), 3, + [139910] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + STATE(2960), 1, + sym_comment, + ACTIONS(5883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5889), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5887), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5736), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5734), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 6, + ACTIONS(1551), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 20, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [137695] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5724), 1, - anon_sym_in, - ACTIONS(5730), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5740), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(5752), 1, anon_sym_bit_DASHxor, - ACTIONS(5775), 1, anon_sym_bit_DASHor, - ACTIONS(5789), 1, - anon_sym_and, - ACTIONS(5791), 1, - anon_sym_xor, - STATE(2905), 1, + [139964] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5891), 1, + anon_sym_SLASH_SLASH, + STATE(2961), 1, sym_comment, - ACTIONS(1528), 2, - sym_identifier, - anon_sym_or, - ACTIONS(5720), 2, + ACTIONS(5881), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5722), 2, + ACTIONS(5883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5728), 2, + ACTIONS(5889), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, + ACTIONS(5893), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5738), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5726), 3, + ACTIONS(5887), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5736), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5734), 4, + ACTIONS(5895), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 6, + ACTIONS(1551), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 14, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [137771] = 15, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [140024] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5759), 1, + ACTIONS(5853), 1, anon_sym_in, - ACTIONS(5767), 1, - anon_sym_bit_DASHand, - STATE(2906), 1, + ACTIONS(5859), 1, + anon_sym_SLASH_SLASH, + STATE(2962), 1, sym_comment, - ACTIONS(5742), 2, + ACTIONS(5849), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5851), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5746), 2, + ACTIONS(5857), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, + ACTIONS(5861), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5757), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5765), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5744), 3, + ACTIONS(5855), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5763), 3, + ACTIONS(5865), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5761), 4, + ACTIONS(5863), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 8, + ACTIONS(1553), 11, anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [137839] = 6, + [140088] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2907), 1, + STATE(2963), 1, sym_comment, - STATE(2917), 1, + STATE(2978), 1, aux_sym_cell_path_repeat1, - STATE(3020), 1, + STATE(3042), 1, sym_path, - ACTIONS(1438), 3, + ACTIONS(1409), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1436), 30, + ACTIONS(1407), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -310449,38 +316364,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137889] = 7, - ACTIONS(105), 1, + [140138] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1153), 1, + ACTIONS(5218), 1, anon_sym_DOT2, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(2908), 1, - sym_comment, - STATE(3020), 1, + STATE(2425), 1, sym_path, - ACTIONS(1442), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1440), 30, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2964), 1, + sym_comment, + STATE(3215), 1, + sym_cell_path, + ACTIONS(1431), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1433), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -310494,39 +316409,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137941] = 5, - ACTIONS(3), 1, + [140190] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5483), 1, - aux_sym_unquoted_token5, - STATE(2909), 1, + STATE(2965), 1, sym_comment, - ACTIONS(1495), 12, - sym_identifier, + ACTIONS(1526), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1524), 33, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1497), 22, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -310537,131 +316448,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [137989] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5759), 1, - anon_sym_in, - ACTIONS(5767), 1, - anon_sym_bit_DASHand, - ACTIONS(5769), 1, - anon_sym_bit_DASHxor, - ACTIONS(5771), 1, - anon_sym_bit_DASHor, - ACTIONS(5773), 1, anon_sym_and, - ACTIONS(5785), 1, anon_sym_xor, - STATE(2910), 1, - sym_comment, - ACTIONS(1528), 2, - sym_identifier, - anon_sym_or, - ACTIONS(5742), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5746), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5757), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5765), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5744), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5763), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5761), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [138065] = 17, - ACTIONS(3), 1, + anon_sym_or, + [140236] = 20, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5759), 1, - anon_sym_in, - ACTIONS(5767), 1, + ACTIONS(1159), 1, + anon_sym_DOT2, + ACTIONS(5975), 1, anon_sym_bit_DASHand, - ACTIONS(5769), 1, + ACTIONS(5977), 1, anon_sym_bit_DASHxor, - ACTIONS(5771), 1, + ACTIONS(5979), 1, anon_sym_bit_DASHor, - STATE(2911), 1, + ACTIONS(5981), 1, + anon_sym_and, + ACTIONS(5983), 1, + anon_sym_xor, + ACTIONS(5985), 1, + anon_sym_or, + STATE(2966), 1, sym_comment, - ACTIONS(5742), 2, + STATE(2976), 1, + sym_path, + STATE(3135), 1, + sym_cell_path, + ACTIONS(5819), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5821), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5963), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5746), 2, + ACTIONS(5969), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, + ACTIONS(5971), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5757), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5765), 2, + ACTIONS(5973), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5744), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5763), 3, + ACTIONS(5965), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(5761), 4, + ACTIONS(5967), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5961), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [138137] = 6, + [140314] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1409), 1, anon_sym_LF, - ACTIONS(5793), 1, + ACTIONS(5987), 1, anon_sym_DOT2, - STATE(3005), 1, - sym_path, - STATE(2912), 2, + STATE(2967), 1, sym_comment, + STATE(2977), 1, aux_sym_cell_path_repeat1, - ACTIONS(1411), 31, + STATE(3077), 1, + sym_path, + ACTIONS(1407), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -310693,20 +316554,111 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138187] = 7, + [140366] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5859), 1, + anon_sym_SLASH_SLASH, + STATE(2968), 1, + sym_comment, + ACTIONS(5851), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5857), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5855), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1551), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 20, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [140420] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1397), 1, - anon_sym_LF, - ACTIONS(5716), 1, + ACTIONS(1159), 1, anon_sym_DOT2, - STATE(2884), 1, - sym_path, - STATE(2913), 1, + STATE(2969), 1, sym_comment, - STATE(3134), 1, + STATE(2976), 1, + sym_path, + STATE(3145), 1, sym_cell_path, - ACTIONS(1395), 31, + ACTIONS(1465), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1463), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [140472] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1396), 1, + anon_sym_LF, + ACTIONS(5987), 1, + anon_sym_DOT2, + STATE(2967), 1, + aux_sym_cell_path_repeat1, + STATE(2970), 1, + sym_comment, + STATE(3077), 1, + sym_path, + ACTIONS(1394), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -310738,124 +316690,70 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138239] = 14, + [140524] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5748), 1, + ACTIONS(5859), 1, anon_sym_SLASH_SLASH, - ACTIONS(5759), 1, - anon_sym_in, - STATE(2914), 1, + STATE(2971), 1, sym_comment, - ACTIONS(5742), 2, + ACTIONS(5849), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5851), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5746), 2, + ACTIONS(5857), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, + ACTIONS(5861), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5757), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5765), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5744), 3, + ACTIONS(5855), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5763), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1528), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(5761), 4, + ACTIONS(5863), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 9, + ACTIONS(1551), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 14, anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [138305] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2915), 1, - sym_comment, - STATE(3253), 1, - sym__var, - STATE(3515), 1, - sym__immediate_decimal, - STATE(3509), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2117), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2119), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [138369] = 7, + [140584] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5796), 1, + ACTIONS(1159), 1, anon_sym_DOT2, - ACTIONS(5798), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5800), 1, - aux_sym_unquoted_token2, - STATE(2916), 1, + STATE(2972), 1, sym_comment, - ACTIONS(1428), 2, + STATE(2978), 1, + aux_sym_cell_path_repeat1, + STATE(3042), 1, + sym_path, + ACTIONS(1409), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1426), 30, + ACTIONS(1407), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -310886,25 +316784,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [138421] = 6, + [140636] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5802), 1, - anon_sym_DOT2, - STATE(3020), 1, - sym_path, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2917), 2, + STATE(2973), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 30, + ACTIONS(1522), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1520), 33, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -310930,79 +316826,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [138471] = 20, - ACTIONS(105), 1, + [140682] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1153), 1, - anon_sym_DOT2, - ACTIONS(5819), 1, + ACTIONS(5853), 1, + anon_sym_in, + ACTIONS(5859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5869), 1, anon_sym_bit_DASHand, - ACTIONS(5821), 1, + ACTIONS(5871), 1, anon_sym_bit_DASHxor, - ACTIONS(5823), 1, + ACTIONS(5873), 1, anon_sym_bit_DASHor, - ACTIONS(5825), 1, + ACTIONS(5875), 1, anon_sym_and, - ACTIONS(5827), 1, + ACTIONS(5877), 1, anon_sym_xor, - ACTIONS(5829), 1, - anon_sym_or, - STATE(2875), 1, - sym_path, - STATE(2918), 1, + STATE(2974), 1, sym_comment, - STATE(3177), 1, - sym_cell_path, - ACTIONS(5686), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5688), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5807), 2, + ACTIONS(1551), 2, + sym_identifier, + anon_sym_or, + ACTIONS(5849), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5851), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5813), 2, + ACTIONS(5857), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5815), 2, + ACTIONS(5861), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5817), 2, + ACTIONS(5867), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5809), 4, - anon_sym_in, + ACTIONS(5855), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(5865), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5811), 4, + ACTIONS(5863), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [140758] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1159), 1, + anon_sym_DOT2, + STATE(2975), 1, + sym_comment, + STATE(2976), 1, + sym_path, + STATE(3260), 1, + sym_cell_path, + ACTIONS(1476), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1474), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5805), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [138549] = 7, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [140810] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1153), 1, + ACTIONS(1159), 1, anon_sym_DOT2, - STATE(2875), 1, - sym_path, - STATE(2919), 1, + STATE(2972), 1, + aux_sym_cell_path_repeat1, + STATE(2976), 1, sym_comment, - STATE(3221), 1, - sym_cell_path, - ACTIONS(1420), 2, + STATE(3042), 1, + sym_path, + ACTIONS(1396), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1418), 30, + ACTIONS(1394), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -311033,123 +316973,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [138601] = 13, - ACTIONS(3), 1, + [140862] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(1389), 1, + anon_sym_LF, + ACTIONS(5989), 1, anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2920), 1, + STATE(3077), 1, + sym_path, + STATE(2977), 2, sym_comment, - STATE(3253), 1, - sym__var, - STATE(3528), 1, - sym__immediate_decimal, - STATE(3519), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2105), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2107), 17, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 31, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [138665] = 13, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140912] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(5992), 1, anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2921), 1, + STATE(3042), 1, + sym_path, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2978), 2, sym_comment, - STATE(3253), 1, - sym__var, - STATE(3530), 1, - sym__immediate_decimal, - STATE(3529), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2089), 8, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2091), 17, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [140962] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1402), 1, + anon_sym_LF, + ACTIONS(5987), 1, + anon_sym_DOT2, + STATE(2970), 1, + sym_path, + STATE(2979), 1, + sym_comment, + STATE(3190), 1, + sym_cell_path, + ACTIONS(1400), 31, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [138729] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141014] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1153), 1, + ACTIONS(1159), 1, anon_sym_DOT2, - STATE(2875), 1, + STATE(2976), 1, sym_path, - STATE(2922), 1, + STATE(2980), 1, sym_comment, - STATE(3017), 1, + STATE(3081), 1, sym_cell_path, - ACTIONS(1401), 2, + ACTIONS(1469), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1399), 30, + ACTIONS(1467), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -311180,81 +317151,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [138781] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1528), 1, - sym_identifier, - ACTIONS(5724), 1, - anon_sym_in, - ACTIONS(5730), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5740), 1, - anon_sym_bit_DASHand, - ACTIONS(5752), 1, - anon_sym_bit_DASHxor, - ACTIONS(5775), 1, - anon_sym_bit_DASHor, - ACTIONS(5789), 1, - anon_sym_and, - ACTIONS(5791), 1, - anon_sym_xor, - ACTIONS(5831), 1, - anon_sym_or, - STATE(2923), 1, - sym_comment, - ACTIONS(5720), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5728), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5738), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5726), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5736), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5734), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [138859] = 7, + [141066] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5833), 1, + ACTIONS(1501), 1, anon_sym_DOT2, - STATE(2908), 1, - sym_path, - STATE(2924), 1, - sym_comment, - STATE(3017), 1, - sym_cell_path, - ACTIONS(1401), 2, - ts_builtin_sym_end, + ACTIONS(1538), 1, anon_sym_LF, - ACTIONS(1399), 30, + STATE(2981), 1, + sym_comment, + ACTIONS(1536), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1540), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -311283,350 +317194,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [138911] = 11, + [141115] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5748), 1, + ACTIONS(5999), 1, + anon_sym_in, + ACTIONS(6005), 1, anon_sym_SLASH_SLASH, - STATE(2925), 1, + ACTIONS(6015), 1, + anon_sym_bit_DASHand, + ACTIONS(6017), 1, + anon_sym_bit_DASHxor, + ACTIONS(6019), 1, + anon_sym_bit_DASHor, + STATE(2982), 1, sym_comment, - ACTIONS(5742), 2, + ACTIONS(5995), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5746), 2, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, + ACTIONS(6007), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5757), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5744), 3, + ACTIONS(6013), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5761), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, + ACTIONS(6011), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1551), 4, sym_identifier, - anon_sym_in, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 14, - anon_sym_COLON, + ACTIONS(6009), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 5, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138971] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2926), 1, - sym_comment, - STATE(3253), 1, - sym__var, - STATE(3536), 1, - sym__immediate_decimal, - STATE(3535), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2133), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2135), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [139035] = 8, + [141186] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5748), 1, + ACTIONS(5999), 1, + anon_sym_in, + ACTIONS(6005), 1, anon_sym_SLASH_SLASH, - STATE(2927), 1, + STATE(2983), 1, sym_comment, - ACTIONS(5742), 2, + ACTIONS(5995), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5746), 2, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5744), 3, + ACTIONS(6007), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6013), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1528), 7, + ACTIONS(6011), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1551), 4, sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 20, - anon_sym_COLON, + ACTIONS(6009), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 8, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [139089] = 20, - ACTIONS(105), 1, + [141251] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1153), 1, - anon_sym_DOT2, - ACTIONS(5850), 1, - anon_sym_bit_DASHand, - ACTIONS(5852), 1, - anon_sym_bit_DASHxor, - ACTIONS(5854), 1, - anon_sym_bit_DASHor, - ACTIONS(5856), 1, - anon_sym_and, - ACTIONS(5858), 1, - anon_sym_xor, - ACTIONS(5860), 1, - anon_sym_or, - STATE(2875), 1, - sym_path, - STATE(2928), 1, - sym_comment, - STATE(3223), 1, - sym_cell_path, - ACTIONS(5620), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5622), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5844), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5848), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5840), 4, + ACTIONS(5999), 1, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5842), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + ACTIONS(6005), 1, anon_sym_SLASH_SLASH, - ACTIONS(5836), 6, + ACTIONS(6015), 1, + anon_sym_bit_DASHand, + STATE(2984), 1, + sym_comment, + ACTIONS(5995), 2, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [139167] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5759), 1, - anon_sym_in, - STATE(2929), 1, - sym_comment, - ACTIONS(5742), 2, + ACTIONS(5997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5746), 2, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, + ACTIONS(6007), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5757), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5744), 3, + ACTIONS(6013), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5763), 3, + ACTIONS(6011), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5761), 4, + ACTIONS(6009), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 11, - anon_sym_COLON, + ACTIONS(1553), 7, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [139231] = 16, + [141318] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5759), 1, + ACTIONS(5999), 1, anon_sym_in, - ACTIONS(5767), 1, + ACTIONS(6005), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6015), 1, anon_sym_bit_DASHand, - ACTIONS(5769), 1, + ACTIONS(6017), 1, anon_sym_bit_DASHxor, - STATE(2930), 1, + STATE(2985), 1, sym_comment, - ACTIONS(5742), 2, + ACTIONS(5995), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5746), 2, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5750), 2, + ACTIONS(6007), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5757), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5765), 2, + ACTIONS(6013), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5744), 3, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5763), 3, + ACTIONS(6011), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5761), 4, + ACTIONS(6009), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 7, - anon_sym_COLON, + ACTIONS(1553), 6, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_bit_DASHor, - [139301] = 7, - ACTIONS(3), 1, + [141387] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_SLASH_SLASH, - STATE(2931), 1, + STATE(2986), 1, sym_comment, - ACTIONS(5746), 2, + ACTIONS(1515), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1513), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5744), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1528), 9, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 20, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -311637,85 +317442,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [139353] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2932), 1, - sym_comment, - STATE(3253), 1, - sym__var, - STATE(3552), 1, - sym__immediate_decimal, - STATE(3496), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2093), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2095), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [139417] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [141432] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2933), 1, + STATE(2987), 1, sym_comment, - ACTIONS(5746), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1528), 12, - sym_identifier, + ACTIONS(1583), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 21, - anon_sym_COLON, + ACTIONS(1585), 29, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -311731,98 +317483,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [139465] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - anon_sym_DASH2, - ACTIONS(5559), 1, - anon_sym_PLUS2, - STATE(2934), 1, - sym_comment, - STATE(3253), 1, - sym__var, - STATE(3548), 1, - sym__immediate_decimal, - STATE(3547), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2081), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2083), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [139529] = 11, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [141477] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5730), 1, + ACTIONS(6005), 1, anon_sym_SLASH_SLASH, - STATE(2935), 1, + STATE(2988), 1, sym_comment, - ACTIONS(5720), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5722), 2, + ACTIONS(5997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5728), 2, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, + ACTIONS(6007), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5726), 3, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5734), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 5, + ACTIONS(1551), 7, sym_identifier, + anon_sym_GT, anon_sym_in, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 14, + ACTIONS(1553), 17, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -311831,35 +317532,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [139589] = 8, + [141532] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5730), 1, + ACTIONS(6005), 1, anon_sym_SLASH_SLASH, - STATE(2936), 1, + STATE(2989), 1, sym_comment, - ACTIONS(5722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5728), 2, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5726), 3, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1528), 7, + ACTIONS(1551), 9, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 20, + ACTIONS(1553), 19, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -311877,49 +317576,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [139643] = 13, + [141583] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5724), 1, + ACTIONS(5999), 1, anon_sym_in, - ACTIONS(5730), 1, + ACTIONS(6005), 1, anon_sym_SLASH_SLASH, - STATE(2937), 1, + STATE(2990), 1, sym_comment, - ACTIONS(5720), 2, + ACTIONS(5995), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5722), 2, + ACTIONS(5997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5728), 2, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, + ACTIONS(6007), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5726), 3, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5736), 3, + ACTIONS(6011), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, + ACTIONS(1551), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(5734), 4, + ACTIONS(6009), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 11, + ACTIONS(1553), 10, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -311928,35 +317626,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [139707] = 4, - ACTIONS(105), 1, + [141646] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5142), 1, - aux_sym_unquoted_token3, - STATE(2938), 1, + ACTIONS(6005), 1, + anon_sym_SLASH_SLASH, + STATE(2991), 1, sym_comment, - ACTIONS(1369), 34, + ACTIONS(5997), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6003), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6001), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1551), 7, sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 19, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -311967,43 +317671,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [139753] = 7, - ACTIONS(105), 1, + [141699] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1153), 1, - anon_sym_DOT2, - STATE(2875), 1, - sym_path, - STATE(2939), 1, + ACTIONS(6005), 1, + anon_sym_SLASH_SLASH, + STATE(2992), 1, sym_comment, - STATE(3176), 1, - sym_cell_path, - ACTIONS(1424), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1422), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(5995), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(5997), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(6007), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(6001), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(6009), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1551), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1553), 13, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -312012,87 +317719,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [141758] = 18, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1075), 1, + anon_sym_LF, + ACTIONS(1095), 1, + anon_sym_bit_DASHand, + ACTIONS(1097), 1, + anon_sym_bit_DASHxor, + ACTIONS(1099), 1, + anon_sym_bit_DASHor, + ACTIONS(1101), 1, anon_sym_and, + ACTIONS(1103), 1, anon_sym_xor, + ACTIONS(1105), 1, anon_sym_or, - [139805] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5730), 1, - anon_sym_SLASH_SLASH, - STATE(2940), 1, + ACTIONS(1501), 1, + anon_sym_DOT2, + STATE(2993), 1, sym_comment, - ACTIONS(5728), 2, + ACTIONS(1079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1089), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5726), 3, + ACTIONS(1091), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1093), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1073), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1081), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1085), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1528), 9, - sym_identifier, + anon_sym_SLASH_SLASH, + ACTIONS(1077), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139857] = 5, - ACTIONS(3), 1, + [141831] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6021), 1, + anon_sym_QMARK2, + STATE(2994), 1, + sym_comment, + ACTIONS(1421), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1419), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [141878] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6023), 1, + anon_sym_DOT2, + STATE(2995), 1, + sym_comment, + STATE(3014), 1, + aux_sym_cell_path_repeat1, + STATE(3147), 1, + sym_path, + ACTIONS(1409), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1407), 29, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [141929] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2941), 1, + STATE(2996), 1, sym_comment, - ACTIONS(5728), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1528), 12, - sym_identifier, + ACTIONS(1511), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1509), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 21, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -312103,212 +317898,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [139905] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5730), 1, - anon_sym_SLASH_SLASH, - STATE(2942), 1, - sym_comment, - ACTIONS(5722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5728), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5726), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1528), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 18, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139961] = 14, + [141974] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5724), 1, + ACTIONS(5999), 1, anon_sym_in, - ACTIONS(5730), 1, + ACTIONS(6005), 1, anon_sym_SLASH_SLASH, - STATE(2943), 1, + ACTIONS(6015), 1, + anon_sym_bit_DASHand, + ACTIONS(6017), 1, + anon_sym_bit_DASHxor, + ACTIONS(6019), 1, + anon_sym_bit_DASHor, + ACTIONS(6025), 1, + anon_sym_and, + STATE(2997), 1, sym_comment, - ACTIONS(5720), 2, + ACTIONS(5995), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5722), 2, + ACTIONS(5997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5728), 2, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5732), 2, + ACTIONS(6007), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5738), 2, + ACTIONS(6013), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5726), 3, + ACTIONS(1551), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5736), 3, + ACTIONS(6011), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(5734), 4, + ACTIONS(6009), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 9, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140027] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2944), 1, - sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1528), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 20, + ACTIONS(1553), 5, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140074] = 16, + [142047] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5868), 1, + ACTIONS(5999), 1, anon_sym_in, - ACTIONS(5872), 1, + ACTIONS(6005), 1, anon_sym_SLASH_SLASH, - ACTIONS(5882), 1, + ACTIONS(6015), 1, anon_sym_bit_DASHand, - ACTIONS(5884), 1, + ACTIONS(6017), 1, anon_sym_bit_DASHxor, - STATE(2945), 1, + ACTIONS(6019), 1, + anon_sym_bit_DASHor, + ACTIONS(6025), 1, + anon_sym_and, + ACTIONS(6027), 1, + anon_sym_xor, + STATE(2998), 1, sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, + ACTIONS(1551), 2, + sym_identifier, + anon_sym_or, + ACTIONS(5995), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5866), 2, + ACTIONS(5997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5874), 2, + ACTIONS(6003), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6007), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5880), 2, + ACTIONS(6013), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5870), 3, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5878), 3, + ACTIONS(6011), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1528), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(5876), 4, + ACTIONS(6009), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 6, + ACTIONS(1553), 5, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - [140143] = 4, + [142122] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2946), 1, + STATE(2999), 1, sym_comment, - ACTIONS(1654), 5, + ACTIONS(1629), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1656), 29, + ACTIONS(1631), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -312338,133 +318053,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140188] = 17, + [142167] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5868), 1, + ACTIONS(1551), 1, + sym_identifier, + ACTIONS(5999), 1, anon_sym_in, - ACTIONS(5872), 1, + ACTIONS(6005), 1, anon_sym_SLASH_SLASH, - ACTIONS(5882), 1, + ACTIONS(6015), 1, anon_sym_bit_DASHand, - ACTIONS(5884), 1, + ACTIONS(6017), 1, anon_sym_bit_DASHxor, - ACTIONS(5886), 1, + ACTIONS(6019), 1, anon_sym_bit_DASHor, - STATE(2947), 1, - sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5866), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5874), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5880), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5870), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5878), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1528), 4, - sym_identifier, + ACTIONS(6025), 1, anon_sym_and, + ACTIONS(6027), 1, anon_sym_xor, + ACTIONS(6029), 1, anon_sym_or, - ACTIONS(5876), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [140259] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5868), 1, - anon_sym_in, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5882), 1, - anon_sym_bit_DASHand, - ACTIONS(5884), 1, - anon_sym_bit_DASHxor, - ACTIONS(5886), 1, - anon_sym_bit_DASHor, - ACTIONS(5888), 1, - anon_sym_and, - STATE(2948), 1, + STATE(3000), 1, sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, + ACTIONS(5995), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5866), 2, + ACTIONS(5997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5874), 2, + ACTIONS(6003), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6007), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5880), 2, + ACTIONS(6013), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1528), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(5870), 3, + ACTIONS(6001), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5878), 3, + ACTIONS(6011), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5876), 4, + ACTIONS(6009), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 5, + ACTIONS(1553), 5, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [140332] = 5, + [142244] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5890), 1, - anon_sym_QMARK2, - STATE(2949), 1, + STATE(3001), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1439), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1464), 30, + ACTIONS(1437), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -312489,35 +318151,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140379] = 5, - ACTIONS(105), 1, + [142289] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, - anon_sym_QMARK2, - STATE(2950), 1, + STATE(3002), 1, sym_comment, - ACTIONS(1466), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1464), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1659), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1661), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -312531,35 +318192,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140426] = 5, - ACTIONS(105), 1, + [142334] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(215), 1, - anon_sym_LF, - ACTIONS(5892), 1, - anon_sym_DOT2, - STATE(2951), 1, + STATE(3003), 1, sym_comment, - ACTIONS(213), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1445), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1447), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -312573,34 +318233,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140473] = 4, - ACTIONS(3), 1, + [142379] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2952), 1, + ACTIONS(1627), 1, + anon_sym_LF, + STATE(3004), 1, sym_comment, - ACTIONS(1624), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1626), 29, - anon_sym_COMMA, + ACTIONS(1625), 33, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -312614,18 +318274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140518] = 4, + [142424] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2953), 1, + STATE(3005), 1, sym_comment, - ACTIONS(1620), 5, + ACTIONS(1695), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1622), 29, + ACTIONS(1697), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -312655,24 +318315,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140563] = 7, + [142469] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1248), 1, - anon_sym_COLON, - ACTIONS(1517), 1, + ACTIONS(1538), 1, anon_sym_LF, - ACTIONS(5257), 1, + ACTIONS(1542), 1, + anon_sym_DASH, + ACTIONS(6031), 1, anon_sym_DOT2, - STATE(2954), 1, + STATE(3006), 1, sym_comment, - ACTIONS(1515), 3, + ACTIONS(1536), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(1519), 28, + ACTIONS(1540), 27, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, @@ -312699,15 +318359,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140614] = 4, - ACTIONS(105), 1, + [142520] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2955), 1, + STATE(3007), 1, sym_comment, - ACTIONS(1503), 2, + ACTIONS(1633), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1635), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [142565] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(215), 1, anon_sym_LF, + ACTIONS(6031), 1, anon_sym_DOT2, - ACTIONS(1501), 32, + STATE(3008), 1, + sym_comment, + ACTIONS(213), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -312740,46 +318442,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140659] = 11, + [142612] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - STATE(2956), 1, + STATE(3009), 1, sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, + ACTIONS(1651), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(5866), 2, + ACTIONS(1653), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5874), 2, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5870), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5876), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1528), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 13, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -312788,41 +318480,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [140718] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [142657] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - STATE(2957), 1, + STATE(3010), 1, sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5866), 2, + ACTIONS(1443), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1441), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5870), 3, + anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1528), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 19, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -312833,65 +318521,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [140771] = 13, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [142702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5868), 1, - anon_sym_in, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - STATE(2958), 1, + STATE(3011), 1, sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, + ACTIONS(1691), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(5866), 2, + ACTIONS(1693), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5874), 2, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5870), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5878), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1528), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(5876), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 10, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [140834] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [142747] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2959), 1, - sym_comment, - ACTIONS(1477), 2, + ACTIONS(3179), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1475), 32, + STATE(3012), 1, + sym_comment, + ACTIONS(3177), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -312899,10 +318580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_else, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_QMARK2, + anon_sym_catch, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -312924,76 +318606,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140879] = 19, - ACTIONS(3), 1, + [142792] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5868), 1, - anon_sym_in, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5882), 1, - anon_sym_bit_DASHand, - ACTIONS(5884), 1, - anon_sym_bit_DASHxor, - ACTIONS(5886), 1, - anon_sym_bit_DASHor, - ACTIONS(5888), 1, - anon_sym_and, - ACTIONS(5894), 1, - anon_sym_xor, - STATE(2960), 1, + ACTIONS(6033), 1, + anon_sym_QMARK2, + STATE(3013), 1, sym_comment, - ACTIONS(1528), 2, - sym_identifier, - anon_sym_or, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, + ACTIONS(1421), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1419), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(5866), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5874), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5880), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5870), 3, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5878), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5876), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [140954] = 6, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [142839] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5896), 1, + ACTIONS(6035), 1, anon_sym_DOT2, - STATE(3120), 1, + STATE(3147), 1, sym_path, - ACTIONS(1413), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2961), 2, + STATE(3014), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(1411), 29, + ACTIONS(1387), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -313023,78 +318691,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141003] = 20, - ACTIONS(3), 1, + [142888] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1528), 1, - sym_identifier, - ACTIONS(5868), 1, - anon_sym_in, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5882), 1, - anon_sym_bit_DASHand, - ACTIONS(5884), 1, - anon_sym_bit_DASHxor, - ACTIONS(5886), 1, - anon_sym_bit_DASHor, - ACTIONS(5888), 1, - anon_sym_and, - ACTIONS(5894), 1, - anon_sym_xor, - ACTIONS(5899), 1, - anon_sym_or, - STATE(2962), 1, + ACTIONS(6033), 1, + anon_sym_QMARK2, + STATE(3015), 1, sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, + ACTIONS(1421), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1419), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(5866), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5874), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5880), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5870), 3, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - ACTIONS(5878), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5876), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [141080] = 7, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [142935] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5901), 1, + ACTIONS(6023), 1, anon_sym_DOT2, - STATE(2963), 1, + STATE(3016), 1, sym_comment, - STATE(2989), 1, - aux_sym_cell_path_repeat1, - STATE(3120), 1, + STATE(3028), 1, sym_path, - ACTIONS(1442), 2, + STATE(3273), 1, + sym_cell_path, + ACTIONS(1402), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1440), 29, + ACTIONS(1400), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -313124,79 +318777,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141131] = 7, + [142986] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - STATE(2964), 1, + STATE(3017), 1, sym_comment, - ACTIONS(5862), 2, + ACTIONS(6003), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5870), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1528), 9, + ACTIONS(1551), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1530), 19, + ACTIONS(1553), 20, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141182] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1371), 1, - anon_sym_LF, - ACTIONS(5397), 1, - aux_sym_unquoted_token3, - STATE(2965), 1, - sym_comment, - ACTIONS(1369), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -313207,21 +318819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [141229] = 4, + [143033] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2966), 1, + STATE(3018), 1, sym_comment, - ACTIONS(1572), 5, + ACTIONS(1641), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1574), 29, + ACTIONS(1643), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -313251,34 +318860,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141274] = 4, - ACTIONS(3), 1, + [143078] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2967), 1, + ACTIONS(1377), 1, + anon_sym_LF, + ACTIONS(5550), 1, + aux_sym_unquoted_token3, + STATE(3019), 1, sym_comment, - ACTIONS(1616), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1618), 29, - anon_sym_COMMA, + ACTIONS(1375), 32, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -313292,27 +318902,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141319] = 8, + [143125] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5779), 1, + ACTIONS(5955), 1, anon_sym_DOT2, - ACTIONS(5781), 1, + ACTIONS(5957), 1, aux_sym_unquoted_token4, - ACTIONS(5783), 1, + ACTIONS(5959), 1, aux_sym_unquoted_token6, - STATE(2968), 1, + STATE(3020), 1, sym_comment, - ACTIONS(5903), 2, + ACTIONS(6038), 2, anon_sym_LT, anon_sym_EQ2, - ACTIONS(1369), 5, + ACTIONS(1375), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1371), 24, + ACTIONS(1377), 24, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, @@ -313337,18 +318947,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141372] = 4, + [143178] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2969), 1, + STATE(3021), 1, sym_comment, - ACTIONS(1576), 5, + ACTIONS(1591), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1578), 29, + ACTIONS(1593), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -313378,18 +318988,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141417] = 4, + [143223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2970), 1, + STATE(3022), 1, sym_comment, - ACTIONS(1658), 5, + ACTIONS(1671), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1660), 29, + ACTIONS(1673), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -313419,269 +319029,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141462] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - STATE(2971), 1, - sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5866), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5874), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5870), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1528), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1530), 17, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141517] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5868), 1, - anon_sym_in, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - STATE(2972), 1, - sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5866), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5874), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5880), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5870), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5878), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1528), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(5876), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 8, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141582] = 15, + [143268] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5868), 1, - anon_sym_in, - ACTIONS(5872), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5882), 1, - anon_sym_bit_DASHand, - STATE(2973), 1, - sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5866), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5874), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5880), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5870), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(5878), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1528), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(5876), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141649] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2974), 1, - sym_comment, - ACTIONS(1493), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1491), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [141694] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1517), 1, - anon_sym_LF, - ACTIONS(1521), 1, - anon_sym_DASH, - ACTIONS(5892), 1, - anon_sym_DOT2, - STATE(2975), 1, + STATE(3023), 1, sym_comment, - ACTIONS(1515), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1519), 27, + ACTIONS(1683), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [141745] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1497), 1, - anon_sym_LF, - ACTIONS(5905), 1, - aux_sym_unquoted_token5, - STATE(2976), 1, - sym_comment, - ACTIONS(1495), 32, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1685), 29, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -313695,17 +319070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141792] = 5, + [143313] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5907), 1, + ACTIONS(6021), 1, anon_sym_QMARK2, - STATE(2977), 1, + STATE(3024), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(1421), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1464), 31, + ACTIONS(1419), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -313737,17 +319112,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141839] = 5, + [143360] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5907), 1, - anon_sym_QMARK2, - STATE(2978), 1, + STATE(3025), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(1443), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1464), 31, + ACTIONS(1441), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -313758,6 +319131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -313779,76 +319153,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141886] = 4, - ACTIONS(105), 1, + [143405] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2979), 1, - sym_comment, - ACTIONS(1477), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(5955), 1, anon_sym_DOT2, - ACTIONS(1475), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(5957), 1, + aux_sym_unquoted_token4, + ACTIONS(5959), 1, + aux_sym_unquoted_token6, + STATE(3026), 1, + sym_comment, + ACTIONS(6040), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(1375), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [141931] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(215), 1, - anon_sym_LF, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2980), 1, - sym_comment, - ACTIONS(213), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1377), 24, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -313862,18 +319198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141978] = 4, + [143458] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2981), 1, + STATE(3027), 1, sym_comment, - ACTIONS(1636), 5, + ACTIONS(1545), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1638), 29, + ACTIONS(1547), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -313903,21 +319239,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142023] = 7, + [143503] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5901), 1, + ACTIONS(6023), 1, anon_sym_DOT2, - STATE(2963), 1, - sym_path, - STATE(2982), 1, + STATE(2995), 1, + aux_sym_cell_path_repeat1, + STATE(3028), 1, sym_comment, - STATE(3234), 1, - sym_cell_path, - ACTIONS(1397), 2, + STATE(3147), 1, + sym_path, + ACTIONS(1396), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1395), 29, + ACTIONS(1394), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -313947,55 +319283,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [142074] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2983), 1, - sym_comment, - ACTIONS(1580), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1582), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [142119] = 4, + [143554] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3030), 1, - anon_sym_LF, - STATE(2984), 1, + STATE(3029), 1, sym_comment, - ACTIONS(3028), 33, + ACTIONS(1439), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1437), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -314003,11 +319299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_else, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_catch, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -314029,73 +319324,146 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [142164] = 18, + [143599] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1084), 1, + ACTIONS(1276), 1, + anon_sym_COLON, + ACTIONS(1501), 1, + anon_sym_DOT2, + ACTIONS(1538), 1, anon_sym_LF, - ACTIONS(1104), 1, + STATE(3030), 1, + sym_comment, + ACTIONS(1536), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1540), 28, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(1106), 1, anon_sym_bit_DASHxor, - ACTIONS(1108), 1, anon_sym_bit_DASHor, - ACTIONS(1110), 1, anon_sym_and, - ACTIONS(1112), 1, anon_sym_xor, - ACTIONS(1114), 1, anon_sym_or, - ACTIONS(5257), 1, + [143650] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(215), 1, + anon_sym_LF, + ACTIONS(1501), 1, anon_sym_DOT2, - STATE(2985), 1, + STATE(3031), 1, sym_comment, - ACTIONS(1088), 2, + ACTIONS(213), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1098), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1100), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1102), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1082), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [143697] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1547), 1, + anon_sym_LF, + ACTIONS(6042), 1, + aux_sym_unquoted_token5, + STATE(3032), 1, + sym_comment, + ACTIONS(1545), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1090), 4, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1094), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1086), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [142237] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [143744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2986), 1, + STATE(3033), 1, sym_comment, - ACTIONS(1650), 5, + ACTIONS(1611), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1652), 29, + ACTIONS(1613), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -314125,18 +319493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142282] = 4, + [143789] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2987), 1, + STATE(3034), 1, sym_comment, - ACTIONS(1664), 5, + ACTIONS(1607), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1666), 29, + ACTIONS(1609), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -314166,38 +319534,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142327] = 8, - ACTIONS(3), 1, + [143834] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5779), 1, - anon_sym_DOT2, - ACTIONS(5781), 1, - aux_sym_unquoted_token4, - ACTIONS(5783), 1, - aux_sym_unquoted_token6, - STATE(2988), 1, + ACTIONS(1553), 1, + anon_sym_LF, + STATE(3035), 1, sym_comment, - ACTIONS(5909), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(1369), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1371), 24, + ACTIONS(6044), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(6048), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(6050), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(6046), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -314211,73 +319578,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142380] = 7, + [143886] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5901), 1, - anon_sym_DOT2, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(2989), 1, - sym_comment, - STATE(3120), 1, - sym_path, - ACTIONS(1438), 2, - ts_builtin_sym_end, + ACTIONS(1553), 1, anon_sym_LF, - ACTIONS(1436), 29, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + STATE(3036), 1, + sym_comment, + ACTIONS(6044), 2, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [142431] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LF, - STATE(2990), 1, - sym_comment, - ACTIONS(1632), 33, + ACTIONS(6048), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6046), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 24, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -314296,64 +319621,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142476] = 4, + [143936] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2991), 1, - sym_comment, - ACTIONS(1456), 2, + ACTIONS(1657), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1454), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [142521] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2992), 1, + STATE(3037), 1, sym_comment, - ACTIONS(1456), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1454), 31, + ACTIONS(1655), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -314378,34 +319661,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142566] = 4, - ACTIONS(3), 1, + [143980] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2993), 1, + ACTIONS(1593), 1, + anon_sym_LF, + STATE(3038), 1, sym_comment, - ACTIONS(1646), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1648), 29, - anon_sym_COMMA, + ACTIONS(1591), 32, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -314419,24 +319701,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142611] = 6, + [144024] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1517), 1, + ACTIONS(1601), 1, anon_sym_LF, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2994), 1, + STATE(3039), 1, sym_comment, - ACTIONS(1515), 4, + ACTIONS(1599), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1519), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -314462,64 +319741,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142660] = 14, + [144068] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1530), 1, + ACTIONS(1605), 1, anon_sym_LF, - ACTIONS(5925), 1, - anon_sym_bit_DASHand, - ACTIONS(5927), 1, - anon_sym_bit_DASHxor, - ACTIONS(5929), 1, - anon_sym_bit_DASHor, - STATE(2995), 1, + STATE(3040), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(1603), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5919), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5923), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5915), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5917), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5911), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1528), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - [142724] = 4, + [144112] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1578), 1, + ACTIONS(1639), 1, anon_sym_LF, - STATE(2996), 1, + STATE(3041), 1, sym_comment, - ACTIONS(1576), 32, + ACTIONS(1637), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -314552,17 +319821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142768] = 5, + [144156] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5931), 1, - aux_sym_unquoted_token5, - STATE(2997), 1, + STATE(3042), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1526), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1495), 30, + anon_sym_DOT2, + ACTIONS(1524), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -314593,200 +319861,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142814] = 17, + [144200] = 18, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5935), 1, - anon_sym_LF, - ACTIONS(5951), 1, + ACTIONS(1171), 1, anon_sym_bit_DASHand, - ACTIONS(5953), 1, + ACTIONS(1173), 1, anon_sym_bit_DASHxor, - ACTIONS(5955), 1, + ACTIONS(1175), 1, anon_sym_bit_DASHor, - ACTIONS(5957), 1, + ACTIONS(1177), 1, anon_sym_and, - ACTIONS(5959), 1, + ACTIONS(1179), 1, anon_sym_xor, - ACTIONS(5961), 1, + ACTIONS(1181), 1, anon_sym_or, - STATE(2998), 1, + ACTIONS(5470), 1, + anon_sym_DOT2, + STATE(3043), 1, sym_comment, - ACTIONS(5939), 2, + ACTIONS(1073), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1075), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1155), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(1165), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5947), 2, + ACTIONS(1167), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5949), 2, + ACTIONS(1169), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5933), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(5941), 4, + ACTIONS(1157), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5943), 4, + ACTIONS(1161), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5937), 6, + ACTIONS(1153), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [142884] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5963), 1, - anon_sym_DOT2, - STATE(3248), 1, - sym_path, - STATE(2999), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 22, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [142932] = 4, + [144272] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3000), 1, - sym_comment, - ACTIONS(1513), 2, + ACTIONS(1609), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1511), 31, + STATE(3044), 1, + sym_comment, + ACTIONS(1607), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [142976] = 5, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [144316] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2964), 1, + ACTIONS(1613), 1, anon_sym_LF, - ACTIONS(5966), 1, - sym__long_flag_identifier, - STATE(3001), 1, + STATE(3045), 1, sym_comment, - ACTIONS(2960), 31, + ACTIONS(1611), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [143022] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1521), 1, - anon_sym_DASH, - ACTIONS(5968), 1, - anon_sym_DOT2, - STATE(3002), 1, - sym_comment, - ACTIONS(1515), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1517), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1519), 27, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -314812,76 +319995,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143072] = 18, + [144360] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1165), 1, - anon_sym_bit_DASHand, - ACTIONS(1167), 1, - anon_sym_bit_DASHxor, - ACTIONS(1169), 1, - anon_sym_bit_DASHor, - ACTIONS(1171), 1, - anon_sym_and, - ACTIONS(1173), 1, - anon_sym_xor, - ACTIONS(1175), 1, - anon_sym_or, - ACTIONS(5331), 1, - anon_sym_DOT2, - STATE(3003), 1, + ACTIONS(1689), 1, + anon_sym_LF, + STATE(3046), 1, sym_comment, - ACTIONS(1082), 2, + ACTIONS(1687), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1084), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1149), 2, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1159), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1161), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1163), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1151), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1155), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1147), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143144] = 5, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [144404] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1517), 1, + ACTIONS(1585), 1, anon_sym_LF, - STATE(3004), 1, + STATE(3047), 1, sym_comment, - ACTIONS(1515), 4, + ACTIONS(1583), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1519), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -314907,106 +320075,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143190] = 4, + [144448] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3005), 1, - sym_comment, - ACTIONS(1487), 2, + ACTIONS(1677), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1485), 31, + STATE(3048), 1, + sym_comment, + ACTIONS(1675), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [143234] = 16, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_LF, - ACTIONS(5925), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(5927), 1, anon_sym_bit_DASHxor, - ACTIONS(5929), 1, anon_sym_bit_DASHor, - ACTIONS(5970), 1, anon_sym_and, - ACTIONS(5972), 1, anon_sym_xor, - STATE(3006), 1, + anon_sym_or, + [144492] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1649), 1, + anon_sym_LF, + STATE(3049), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(1647), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5919), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5923), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5915), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5917), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1528), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(5911), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143302] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [144536] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1570), 1, + ACTIONS(1589), 1, anon_sym_LF, - STATE(3007), 1, + STATE(3050), 1, sym_comment, - ACTIONS(1568), 32, + ACTIONS(1587), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -315039,67 +320195,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143346] = 17, + [144580] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5976), 1, + ACTIONS(1681), 1, anon_sym_LF, - ACTIONS(5992), 1, - anon_sym_bit_DASHand, - ACTIONS(5994), 1, - anon_sym_bit_DASHxor, - ACTIONS(5996), 1, - anon_sym_bit_DASHor, - ACTIONS(5998), 1, - anon_sym_and, - ACTIONS(6000), 1, - anon_sym_xor, - ACTIONS(6002), 1, - anon_sym_or, - STATE(3008), 1, + STATE(3051), 1, sym_comment, - ACTIONS(5980), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5986), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5988), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5990), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5974), 4, + ACTIONS(1679), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(5982), 4, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5984), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5978), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143416] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [144624] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1635), 1, anon_sym_LF, - STATE(3009), 1, + STATE(3052), 1, sym_comment, - ACTIONS(1620), 32, + ACTIONS(1633), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -315132,21 +320275,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143460] = 4, + [144668] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1666), 1, - anon_sym_LF, - STATE(3010), 1, + ACTIONS(5470), 1, + anon_sym_DOT2, + STATE(3053), 1, sym_comment, - ACTIONS(1664), 32, + ACTIONS(215), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(213), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -315172,14 +320316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143504] = 4, + [144714] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1652), 1, + ACTIONS(1631), 1, anon_sym_LF, - STATE(3011), 1, + STATE(3054), 1, sym_comment, - ACTIONS(1650), 32, + ACTIONS(1629), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -315212,21 +320356,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143548] = 4, + [144758] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3012), 1, - sym_comment, - ACTIONS(1513), 3, - ts_builtin_sym_end, + ACTIONS(1621), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1511), 30, + STATE(3055), 1, + sym_comment, + ACTIONS(1619), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -315252,14 +320396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143592] = 4, + [144802] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1648), 1, + ACTIONS(1693), 1, anon_sym_LF, - STATE(3013), 1, + STATE(3056), 1, sym_comment, - ACTIONS(1646), 32, + ACTIONS(1691), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -315292,14 +320436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143636] = 4, + [144846] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(215), 1, anon_sym_LF, - STATE(3014), 1, + STATE(3057), 1, sym_comment, - ACTIONS(1580), 32, + ACTIONS(213), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -315332,14 +320476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143680] = 4, + [144890] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1685), 1, anon_sym_LF, - STATE(3015), 1, + STATE(3058), 1, sym_comment, - ACTIONS(1524), 32, + ACTIONS(1683), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -315372,14 +320516,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143724] = 4, + [144934] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1590), 1, + ACTIONS(1673), 1, anon_sym_LF, - STATE(3016), 1, + STATE(3059), 1, sym_comment, - ACTIONS(1588), 32, + ACTIONS(1671), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -315412,16 +320556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143768] = 4, + [144978] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3017), 1, + STATE(3060), 1, sym_comment, - ACTIONS(1509), 3, + ACTIONS(1522), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1507), 30, + ACTIONS(1520), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -315452,22 +320596,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143812] = 5, + [145022] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5968), 1, - anon_sym_DOT2, - STATE(3018), 1, - sym_comment, - ACTIONS(215), 2, - ts_builtin_sym_end, + ACTIONS(1621), 1, anon_sym_LF, - ACTIONS(213), 30, + STATE(3061), 1, + sym_comment, + ACTIONS(1619), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -315493,64 +320636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143858] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6004), 1, - anon_sym_DOT2, - STATE(3019), 1, - sym_comment, - STATE(3068), 1, - aux_sym_cell_path_repeat1, - STATE(3248), 1, - sym_path, - ACTIONS(1440), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1442), 22, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143908] = 4, + [145066] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3020), 1, - sym_comment, - ACTIONS(1487), 3, - ts_builtin_sym_end, + ACTIONS(1661), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1485), 30, + STATE(3062), 1, + sym_comment, + ACTIONS(1659), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -315576,17 +320676,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143952] = 5, + [145110] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(215), 1, + ACTIONS(1697), 1, anon_sym_LF, - ACTIONS(1248), 1, - anon_sym_COLON, - STATE(3021), 1, + STATE(3063), 1, sym_comment, - ACTIONS(213), 31, + ACTIONS(1695), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -315617,14 +320716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143998] = 4, + [145154] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1428), 1, + ACTIONS(1653), 1, anon_sym_LF, - STATE(3022), 1, + STATE(3064), 1, sym_comment, - ACTIONS(1426), 32, + ACTIONS(1651), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -315657,22 +320756,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144042] = 8, + [145198] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6004), 1, + ACTIONS(6052), 1, anon_sym_DOT2, - STATE(3019), 1, - sym_path, - STATE(3023), 1, + STATE(3065), 1, sym_comment, - STATE(3270), 1, + STATE(3085), 1, + sym_path, + STATE(3387), 1, sym_cell_path, - ACTIONS(1420), 3, + ACTIONS(1455), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1457), 22, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6009), 8, + [145248] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6052), 1, + anon_sym_DOT2, + STATE(3066), 1, + sym_comment, + STATE(3085), 1, + sym_path, + STATE(3362), 1, + sym_cell_path, + ACTIONS(1474), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -315681,7 +320819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6006), 19, + ACTIONS(1476), 22, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -315701,16 +320840,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [144094] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [145298] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1562), 1, + ACTIONS(215), 1, anon_sym_LF, - STATE(3024), 1, + ACTIONS(1276), 1, + anon_sym_COLON, + STATE(3067), 1, sym_comment, - ACTIONS(1560), 32, + ACTIONS(213), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -315741,14 +320883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144138] = 4, + [145344] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1566), 1, + ACTIONS(1665), 1, anon_sym_LF, - STATE(3025), 1, + STATE(3068), 1, sym_comment, - ACTIONS(1564), 32, + ACTIONS(1663), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -315781,36 +320923,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144182] = 7, - ACTIONS(3), 1, + [145388] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(1542), 1, + anon_sym_DASH, + ACTIONS(6054), 1, anon_sym_DOT2, - ACTIONS(6014), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6016), 1, - aux_sym_unquoted_token2, - STATE(3026), 1, + STATE(3069), 1, sym_comment, - ACTIONS(1426), 5, + ACTIONS(1536), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1538), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1540), 27, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1428), 25, - anon_sym_COMMA, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -315824,21 +320966,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144232] = 4, + [145438] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(3157), 1, anon_sym_LF, - STATE(3027), 1, + ACTIONS(6056), 1, + sym__long_flag_identifier, + STATE(3070), 1, + sym_comment, + ACTIONS(3153), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [145484] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3071), 1, sym_comment, - ACTIONS(1628), 32, + ACTIONS(1511), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1509), 31, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [145528] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6058), 1, + aux_sym_unquoted_token5, + STATE(3072), 1, + sym_comment, + ACTIONS(1547), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1545), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -315864,21 +321088,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144276] = 4, + [145574] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6060), 1, + anon_sym_DOT2, + STATE(3292), 1, + sym_path, + STATE(3073), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 22, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [145622] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1574), 1, - anon_sym_LF, - STATE(3028), 1, + ACTIONS(5470), 1, + anon_sym_DOT2, + STATE(3074), 1, sym_comment, - ACTIONS(1572), 32, + ACTIONS(1536), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + ACTIONS(1538), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1540), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -315904,96 +321172,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144320] = 6, - ACTIONS(105), 1, + [145670] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5331), 1, + ACTIONS(6052), 1, anon_sym_DOT2, - STATE(3029), 1, + STATE(3075), 1, sym_comment, - ACTIONS(1515), 2, + STATE(3085), 1, + sym_path, + STATE(3362), 1, + sym_cell_path, + ACTIONS(1476), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1517), 2, - ts_builtin_sym_end, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6066), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(6063), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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, + [145722] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6071), 1, anon_sym_LF, - ACTIONS(1519), 28, - anon_sym_GT, + ACTIONS(6087), 1, + anon_sym_bit_DASHand, + ACTIONS(6089), 1, + anon_sym_bit_DASHxor, + ACTIONS(6091), 1, + anon_sym_bit_DASHor, + ACTIONS(6093), 1, + anon_sym_and, + ACTIONS(6095), 1, + anon_sym_xor, + ACTIONS(6097), 1, + anon_sym_or, + STATE(3076), 1, + sym_comment, + ACTIONS(6075), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(6081), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6083), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6085), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6069), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(6077), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6079), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(6073), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [144368] = 4, + [145792] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3077), 1, + sym_comment, + ACTIONS(1526), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1524), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [145836] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1642), 1, - anon_sym_LF, - STATE(3030), 1, + STATE(3078), 1, sym_comment, - ACTIONS(1640), 32, + ACTIONS(1522), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1520), 31, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [144412] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [145880] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1626), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3031), 1, + STATE(3079), 1, sym_comment, - ACTIONS(1624), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316026,21 +321389,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144456] = 4, + [145924] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1606), 1, - anon_sym_LF, - STATE(3032), 1, + ACTIONS(6054), 1, + anon_sym_DOT2, + STATE(3080), 1, sym_comment, - ACTIONS(1604), 32, + ACTIONS(215), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(213), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -316066,21 +321430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144500] = 4, + [145970] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1598), 1, - anon_sym_LF, - STATE(3033), 1, + STATE(3081), 1, sym_comment, - ACTIONS(1596), 32, + ACTIONS(1534), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1532), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -316106,14 +321470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144544] = 4, + [146014] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3034), 1, + STATE(3082), 1, sym_comment, - ACTIONS(1556), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316146,91 +321510,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144588] = 17, + [146058] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1530), 1, + ACTIONS(1553), 1, anon_sym_LF, - ACTIONS(5925), 1, - anon_sym_bit_DASHand, - ACTIONS(5927), 1, - anon_sym_bit_DASHxor, - ACTIONS(5929), 1, - anon_sym_bit_DASHor, - ACTIONS(5970), 1, - anon_sym_and, - ACTIONS(5972), 1, - anon_sym_xor, - ACTIONS(6018), 1, - anon_sym_or, - STATE(3035), 1, + STATE(3083), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(6044), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5919), 2, + ACTIONS(6048), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, + ACTIONS(6050), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5923), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1528), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(5915), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5917), 4, + ACTIONS(6046), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5911), 6, + ACTIONS(6101), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6099), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [144658] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - anon_sym_LF, - STATE(3036), 1, - sym_comment, - ACTIONS(1556), 32, + ACTIONS(1551), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -316239,14 +321556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144702] = 4, + [146114] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1618), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3037), 1, + STATE(3084), 1, sym_comment, - ACTIONS(1616), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316279,67 +321596,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144746] = 17, - ACTIONS(105), 1, + [146158] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - anon_sym_LF, - ACTIONS(5704), 1, - anon_sym_bit_DASHand, - ACTIONS(5706), 1, - anon_sym_bit_DASHxor, - ACTIONS(5708), 1, - anon_sym_bit_DASHor, - ACTIONS(5710), 1, - anon_sym_and, - ACTIONS(5712), 1, - anon_sym_xor, - ACTIONS(5714), 1, - anon_sym_or, - STATE(3038), 1, + ACTIONS(6052), 1, + anon_sym_DOT2, + STATE(3085), 1, sym_comment, - ACTIONS(5692), 2, + STATE(3116), 1, + aux_sym_cell_path_repeat1, + STATE(3292), 1, + sym_path, + ACTIONS(1394), 8, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1396), 22, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(5698), 2, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [146208] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LF, + STATE(3086), 1, + sym_comment, + ACTIONS(6048), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5700), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5702), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5686), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(5694), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5696), 4, + ACTIONS(6046), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5690), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144816] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - anon_sym_LF, - STATE(3039), 1, - sym_comment, - ACTIONS(1556), 32, + ACTIONS(1551), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316347,12 +321662,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -316372,64 +321681,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144860] = 5, + [146256] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5331), 1, - anon_sym_DOT2, - STATE(3040), 1, + STATE(3087), 1, sym_comment, - ACTIONS(215), 2, + ACTIONS(1439), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(213), 30, + anon_sym_DOT2, + ACTIONS(1437), 30, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [144906] = 6, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [146300] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1517), 1, + STATE(3088), 1, + sym_comment, + ACTIONS(1443), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1521), 1, + anon_sym_DOT2, + ACTIONS(1441), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, - STATE(3041), 1, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [146344] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1643), 1, + anon_sym_LF, + STATE(3089), 1, sym_comment, - ACTIONS(1515), 4, + ACTIONS(1641), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1519), 27, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -316455,67 +321801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144954] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1084), 1, - anon_sym_LF, - ACTIONS(1104), 1, - anon_sym_bit_DASHand, - ACTIONS(1106), 1, - anon_sym_bit_DASHxor, - ACTIONS(1108), 1, - anon_sym_bit_DASHor, - ACTIONS(1110), 1, - anon_sym_and, - ACTIONS(1112), 1, - anon_sym_xor, - ACTIONS(1114), 1, - anon_sym_or, - STATE(3042), 1, - sym_comment, - ACTIONS(1088), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1098), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1100), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1102), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1082), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1090), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1094), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1086), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [145024] = 4, + [146388] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1610), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3043), 1, + STATE(3090), 1, sym_comment, - ACTIONS(1608), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316548,14 +321841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145068] = 4, + [146432] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1497), 1, + ACTIONS(1553), 1, anon_sym_LF, - STATE(3044), 1, + STATE(3091), 1, sym_comment, - ACTIONS(1495), 32, + ACTIONS(6048), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1551), 30, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316564,8 +321860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -316588,14 +321882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145112] = 4, + [146478] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3045), 1, + STATE(3092), 1, sym_comment, - ACTIONS(1600), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316628,14 +321922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145156] = 4, + [146522] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1602), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3046), 1, + STATE(3093), 1, sym_comment, - ACTIONS(1600), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316668,21 +321962,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145200] = 4, + [146566] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(215), 1, + ACTIONS(1538), 1, anon_sym_LF, - STATE(3047), 1, + ACTIONS(1542), 1, + anon_sym_DASH, + STATE(3094), 1, sym_comment, - ACTIONS(213), 32, + ACTIONS(1536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1540), 27, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -316708,73 +322004,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145244] = 4, + [146614] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1660), 1, + ACTIONS(1553), 1, anon_sym_LF, - STATE(3048), 1, + STATE(3095), 1, sym_comment, - ACTIONS(1658), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(6044), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(6048), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6050), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6103), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6046), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(6101), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6099), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1551), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [145288] = 4, - ACTIONS(105), 1, + [146672] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1656), 1, - anon_sym_LF, - STATE(3049), 1, + ACTIONS(5218), 1, + anon_sym_DOT2, + STATE(2425), 1, + sym_path, + STATE(3096), 1, sym_comment, - ACTIONS(1654), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3215), 1, + sym_cell_path, + ACTIONS(4179), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1431), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1433), 23, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -316788,14 +322095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145332] = 4, + [146724] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1638), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3050), 1, + STATE(3097), 1, sym_comment, - ACTIONS(1636), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316828,65 +322135,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145376] = 15, + [146768] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1530), 1, + ACTIONS(1553), 1, anon_sym_LF, - ACTIONS(5925), 1, + ACTIONS(6105), 1, anon_sym_bit_DASHand, - ACTIONS(5927), 1, - anon_sym_bit_DASHxor, - ACTIONS(5929), 1, - anon_sym_bit_DASHor, - ACTIONS(5970), 1, - anon_sym_and, - STATE(3051), 1, + STATE(3098), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(6044), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5919), 2, + ACTIONS(6048), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, + ACTIONS(6050), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5923), 2, + ACTIONS(6103), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5915), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5917), 4, + ACTIONS(6046), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1528), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(5911), 6, + ACTIONS(6101), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6099), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [145442] = 4, + ACTIONS(1551), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [146828] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3052), 1, + STATE(3099), 1, sym_comment, - ACTIONS(1556), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -316919,33 +322223,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145486] = 4, - ACTIONS(105), 1, + [146872] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1614), 1, - anon_sym_LF, - STATE(3053), 1, + ACTIONS(6107), 1, + anon_sym_DOT2, + ACTIONS(6109), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6111), 1, + aux_sym_unquoted_token2, + STATE(3100), 1, sym_comment, - ACTIONS(1612), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1445), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1447), 25, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -316959,37 +322266,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145530] = 8, - ACTIONS(3), 1, + [146922] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(2966), 1, - sym_cell_path, - STATE(3054), 1, + ACTIONS(1538), 1, + anon_sym_LF, + STATE(3101), 1, sym_comment, - ACTIONS(4205), 2, - anon_sym_COMMA, + ACTIONS(1536), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(1403), 5, + ACTIONS(1540), 28, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1405), 23, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -317003,14 +322307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145582] = 4, + [146968] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(1669), 1, anon_sym_LF, - STATE(3055), 1, + STATE(3102), 1, sym_comment, - ACTIONS(1556), 32, + ACTIONS(1667), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -317043,47 +322347,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145626] = 13, + [147012] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1530), 1, + ACTIONS(1553), 1, anon_sym_LF, - ACTIONS(5925), 1, + ACTIONS(6105), 1, anon_sym_bit_DASHand, - ACTIONS(5927), 1, + ACTIONS(6113), 1, anon_sym_bit_DASHxor, - STATE(3056), 1, + STATE(3103), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(6044), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5919), 2, + ACTIONS(6048), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, + ACTIONS(6050), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5923), 2, + ACTIONS(6103), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5915), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5917), 4, + ACTIONS(6046), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5911), 6, + ACTIONS(6101), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6099), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1528), 8, + ACTIONS(1551), 8, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -317092,97 +322396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145688] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3057), 1, - sym_comment, - ACTIONS(3030), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3028), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_catch, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [145732] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6004), 1, - anon_sym_DOT2, - STATE(3019), 1, - sym_path, - STATE(3058), 1, - sym_comment, - STATE(3274), 1, - sym_cell_path, - ACTIONS(1389), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1391), 22, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [145782] = 4, + [147074] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1586), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3059), 1, + STATE(3104), 1, sym_comment, - ACTIONS(1584), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -317215,54 +322436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145826] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3060), 1, - sym_comment, - ACTIONS(1503), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1501), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [145870] = 4, + [147118] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(1547), 1, anon_sym_LF, - STATE(3061), 1, + STATE(3105), 1, sym_comment, - ACTIONS(1556), 32, + ACTIONS(1545), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -317295,142 +322476,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145914] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3062), 1, - sym_comment, - ACTIONS(1477), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1475), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [145958] = 12, + [147162] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1530), 1, + ACTIONS(1553), 1, anon_sym_LF, - ACTIONS(5925), 1, + ACTIONS(6105), 1, anon_sym_bit_DASHand, - STATE(3063), 1, + ACTIONS(6113), 1, + anon_sym_bit_DASHxor, + ACTIONS(6115), 1, + anon_sym_bit_DASHor, + STATE(3106), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(6044), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5919), 2, + ACTIONS(6048), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, + ACTIONS(6050), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5923), 2, + ACTIONS(6103), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5915), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5917), 4, + ACTIONS(6046), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5911), 6, + ACTIONS(6101), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6099), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1528), 9, + ACTIONS(1551), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [146018] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3064), 1, - sym_comment, - ACTIONS(1456), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1454), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [146062] = 4, + [147226] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3065), 1, + STATE(3107), 1, sym_comment, - ACTIONS(1556), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -317463,57 +322566,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146106] = 7, - ACTIONS(3), 1, + [147270] = 15, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6004), 1, - anon_sym_DOT2, - STATE(3019), 1, - sym_path, - STATE(3066), 1, + ACTIONS(1553), 1, + anon_sym_LF, + ACTIONS(6105), 1, + anon_sym_bit_DASHand, + ACTIONS(6113), 1, + anon_sym_bit_DASHxor, + ACTIONS(6115), 1, + anon_sym_bit_DASHor, + ACTIONS(6117), 1, + anon_sym_and, + STATE(3108), 1, sym_comment, - STATE(3270), 1, - sym_cell_path, - ACTIONS(1418), 8, - anon_sym_DOLLAR, + ACTIONS(6044), 2, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1420), 22, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146156] = 4, + ACTIONS(6048), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6050), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6103), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6046), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6101), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1551), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + ACTIONS(6099), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147336] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1670), 1, + ACTIONS(1581), 1, anon_sym_LF, - STATE(3067), 1, + STATE(3109), 1, sym_comment, - ACTIONS(1668), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -317546,114 +322657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146200] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6004), 1, - anon_sym_DOT2, - STATE(2999), 1, - aux_sym_cell_path_repeat1, - STATE(3068), 1, - sym_comment, - STATE(3248), 1, - sym_path, - ACTIONS(1436), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1438), 22, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146250] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5622), 1, - anon_sym_LF, - ACTIONS(5638), 1, - anon_sym_bit_DASHand, - ACTIONS(5640), 1, - anon_sym_bit_DASHxor, - ACTIONS(5642), 1, - anon_sym_bit_DASHor, - ACTIONS(5644), 1, - anon_sym_and, - ACTIONS(5646), 1, - anon_sym_xor, - ACTIONS(5648), 1, - anon_sym_or, - STATE(3069), 1, - sym_comment, - ACTIONS(5626), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5634), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5636), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5620), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(5628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5630), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5624), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [146320] = 5, + [147380] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6020), 1, + ACTIONS(6119), 1, anon_sym_QMARK2, - STATE(3070), 1, + STATE(3110), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1421), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1464), 29, + ACTIONS(1419), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -317683,18 +322698,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146366] = 5, + [147426] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6020), 1, + ACTIONS(6119), 1, anon_sym_QMARK2, - STATE(3071), 1, + STATE(3111), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1421), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1464), 29, + ACTIONS(1419), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -317724,276 +322739,126 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146412] = 4, + [147472] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1644), 1, + ACTIONS(1553), 1, anon_sym_LF, - STATE(3072), 1, - sym_comment, - ACTIONS(1519), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(6105), 1, anon_sym_bit_DASHand, + ACTIONS(6113), 1, anon_sym_bit_DASHxor, + ACTIONS(6115), 1, anon_sym_bit_DASHor, + ACTIONS(6117), 1, anon_sym_and, + ACTIONS(6121), 1, anon_sym_xor, - anon_sym_or, - [146456] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_LF, - STATE(3073), 1, + STATE(3112), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(6044), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5919), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5917), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5911), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [146510] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - anon_sym_LF, - STATE(3074), 1, - sym_comment, - ACTIONS(1556), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(6048), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(6050), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(6103), 2, 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, - [146554] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_LF, - STATE(3075), 1, - sym_comment, - ACTIONS(5913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5919), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5917), 4, + ACTIONS(6046), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1528), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(6101), 4, anon_sym_in, - anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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, - [146604] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - anon_sym_LF, - STATE(3076), 1, - sym_comment, - ACTIONS(1556), 32, + ACTIONS(1551), 5, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + anon_sym_or, + ACTIONS(6099), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [147540] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1075), 1, + anon_sym_LF, + ACTIONS(1095), 1, anon_sym_bit_DASHand, + ACTIONS(1097), 1, anon_sym_bit_DASHxor, + ACTIONS(1099), 1, anon_sym_bit_DASHor, + ACTIONS(1101), 1, anon_sym_and, + ACTIONS(1103), 1, anon_sym_xor, + ACTIONS(1105), 1, anon_sym_or, - [146648] = 10, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_LF, - STATE(3077), 1, + STATE(3113), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(1079), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5919), 2, + ACTIONS(1089), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, + ACTIONS(1091), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5915), 4, + ACTIONS(1093), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1073), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1081), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5917), 4, + ACTIONS(1085), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5911), 6, + ACTIONS(1077), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1528), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - 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, - [146704] = 5, + [147610] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5521), 1, - aux_sym_unquoted_token3, - STATE(3078), 1, - sym_comment, - ACTIONS(1371), 2, - ts_builtin_sym_end, + ACTIONS(1597), 1, anon_sym_LF, - ACTIONS(1369), 30, + STATE(3114), 1, + sym_comment, + ACTIONS(1595), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -318019,14 +322884,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146750] = 4, + [147654] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1558), 1, + STATE(3115), 1, + sym_comment, + ACTIONS(3179), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3079), 1, + ACTIONS(3177), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_catch, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [147698] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6052), 1, + anon_sym_DOT2, + STATE(3073), 1, + aux_sym_cell_path_repeat1, + STATE(3116), 1, + sym_comment, + STATE(3292), 1, + sym_path, + ACTIONS(1407), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1409), 22, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [147748] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + anon_sym_LF, + STATE(3117), 1, sym_comment, - ACTIONS(1556), 32, + ACTIONS(1579), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -318059,29 +323007,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146794] = 6, + [147792] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_LF, - STATE(3080), 1, + STATE(3118), 1, sym_comment, - ACTIONS(5919), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5917), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1528), 26, + ACTIONS(1515), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1513), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -318101,16 +323047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146842] = 4, + [147836] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3119), 1, sym_comment, - ACTIONS(1493), 3, + ACTIONS(1511), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1491), 30, + ACTIONS(1509), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -318141,21 +323087,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146886] = 4, + [147880] = 17, ACTIONS(105), 1, anon_sym_POUND, - STATE(3082), 1, + ACTIONS(1553), 1, + anon_sym_LF, + ACTIONS(6105), 1, + anon_sym_bit_DASHand, + ACTIONS(6113), 1, + anon_sym_bit_DASHxor, + ACTIONS(6115), 1, + anon_sym_bit_DASHor, + ACTIONS(6117), 1, + anon_sym_and, + ACTIONS(6121), 1, + anon_sym_xor, + ACTIONS(6123), 1, + anon_sym_or, + STATE(3120), 1, sym_comment, - ACTIONS(1503), 3, - ts_builtin_sym_end, + ACTIONS(6044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6048), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6050), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6103), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1551), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(6046), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6101), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6099), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [147950] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1581), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1501), 30, + STATE(3121), 1, + sym_comment, + ACTIONS(1579), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -318181,14 +323180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146930] = 4, + [147994] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(1447), 1, anon_sym_LF, - STATE(3083), 1, + STATE(3122), 1, sym_comment, - ACTIONS(1556), 32, + ACTIONS(1445), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -318221,102 +323220,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146974] = 11, + [148038] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1530), 1, + ACTIONS(5791), 1, anon_sym_LF, - STATE(3084), 1, + ACTIONS(5807), 1, + anon_sym_bit_DASHand, + ACTIONS(5809), 1, + anon_sym_bit_DASHxor, + ACTIONS(5811), 1, + anon_sym_bit_DASHor, + ACTIONS(5813), 1, + anon_sym_and, + ACTIONS(5815), 1, + anon_sym_xor, + ACTIONS(5817), 1, + anon_sym_or, + STATE(3123), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(5795), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5919), 2, + ACTIONS(5801), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, + ACTIONS(5803), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5923), 2, + ACTIONS(5805), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5915), 4, + ACTIONS(5789), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(5797), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(5917), 4, + ACTIONS(5799), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5911), 6, + ACTIONS(5793), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1528), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + [148108] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5821), 1, + anon_sym_LF, + ACTIONS(5837), 1, anon_sym_bit_DASHand, + ACTIONS(5839), 1, anon_sym_bit_DASHxor, + ACTIONS(5841), 1, anon_sym_bit_DASHor, + ACTIONS(5843), 1, anon_sym_and, + ACTIONS(5845), 1, anon_sym_xor, + ACTIONS(5847), 1, anon_sym_or, - [147032] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_LF, - STATE(3085), 1, + STATE(3124), 1, sym_comment, - ACTIONS(5919), 2, + ACTIONS(5825), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5831), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1528), 30, + ACTIONS(5833), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5835), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5819), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, + ACTIONS(5827), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5829), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5823), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [148178] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6127), 1, + anon_sym_LF, + ACTIONS(6143), 1, anon_sym_bit_DASHand, + ACTIONS(6145), 1, anon_sym_bit_DASHxor, + ACTIONS(6147), 1, anon_sym_bit_DASHor, + ACTIONS(6149), 1, anon_sym_and, + ACTIONS(6151), 1, anon_sym_xor, + ACTIONS(6153), 1, anon_sym_or, - [147078] = 4, + STATE(3125), 1, + sym_comment, + ACTIONS(6131), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6137), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6139), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6141), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6125), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(6133), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6135), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6129), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148248] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(1623), 1, anon_sym_LF, - STATE(3086), 1, + STATE(3126), 1, sym_comment, - ACTIONS(1556), 32, + ACTIONS(1540), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -318349,21 +323419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147122] = 4, + [148292] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1558), 1, - anon_sym_LF, - STATE(3087), 1, + ACTIONS(5636), 1, + aux_sym_unquoted_token3, + STATE(3127), 1, sym_comment, - ACTIONS(1556), 32, + ACTIONS(1377), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1375), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -318389,37 +323460,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147166] = 8, + [148338] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1530), 1, + ACTIONS(1553), 1, anon_sym_LF, - STATE(3088), 1, + STATE(3128), 1, sym_comment, - ACTIONS(5913), 2, + ACTIONS(6044), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5919), 2, + ACTIONS(6048), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5921), 2, + ACTIONS(6050), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5917), 4, + ACTIONS(6046), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1528), 22, + ACTIONS(6099), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [148392] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3129), 1, + sym_comment, + ACTIONS(213), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(215), 27, + anon_sym_COMMA, + anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -318433,15 +323544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147218] = 4, + [148435] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3130), 1, sym_comment, - ACTIONS(1558), 2, + ACTIONS(1605), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1556), 30, + ACTIONS(1603), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -318472,18 +323583,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147261] = 7, + [148478] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6004), 1, + ACTIONS(6052), 1, anon_sym_DOT2, - STATE(3019), 1, + STATE(3085), 1, sym_path, - STATE(3090), 1, + STATE(3131), 1, sym_comment, - STATE(3429), 1, + STATE(3470), 1, sym_cell_path, - ACTIONS(1399), 8, + ACTIONS(1467), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -318492,7 +323603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1401), 21, + ACTIONS(1469), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -318514,72 +323625,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147310] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3091), 1, - sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6024), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6030), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6034), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6026), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6028), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6022), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [147367] = 7, + [148527] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6036), 1, - anon_sym_DOT2, - ACTIONS(6038), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6040), 1, - aux_sym_unquoted_token2, - STATE(3092), 1, + STATE(3132), 1, sym_comment, - ACTIONS(1426), 5, + ACTIONS(1663), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1428), 24, + ACTIONS(1665), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -318602,27 +323664,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147416] = 7, + [148570] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6169), 1, + anon_sym_bit_DASHand, + ACTIONS(6171), 1, + anon_sym_bit_DASHxor, + ACTIONS(6173), 1, + anon_sym_bit_DASHor, + ACTIONS(6175), 1, + anon_sym_and, + ACTIONS(6177), 1, + anon_sym_xor, + ACTIONS(6179), 1, + anon_sym_or, + STATE(3133), 1, + sym_comment, + ACTIONS(6125), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(6127), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6163), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6165), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6167), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6159), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6161), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6155), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [148639] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6042), 1, + ACTIONS(6181), 1, anon_sym_DOT2, - ACTIONS(6044), 1, + ACTIONS(6183), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6046), 1, + ACTIONS(6185), 1, aux_sym_unquoted_token2, - STATE(3093), 1, + STATE(3134), 1, sym_comment, - ACTIONS(1426), 5, + ACTIONS(1445), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1428), 24, + ACTIONS(1447), 24, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -318644,70 +323758,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147465] = 12, + [148688] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6048), 1, + ACTIONS(6201), 1, anon_sym_bit_DASHand, - STATE(3094), 1, + ACTIONS(6203), 1, + anon_sym_bit_DASHxor, + ACTIONS(6205), 1, + anon_sym_bit_DASHor, + ACTIONS(6207), 1, + anon_sym_and, + ACTIONS(6209), 1, + anon_sym_xor, + ACTIONS(6211), 1, + anon_sym_or, + STATE(3135), 1, sym_comment, - ACTIONS(1530), 2, + ACTIONS(6069), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(6071), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6024), 2, + ACTIONS(6189), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6030), 2, + ACTIONS(6195), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, + ACTIONS(6197), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6034), 2, + ACTIONS(6199), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6026), 4, + ACTIONS(6191), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6028), 4, + ACTIONS(6193), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6022), 6, + ACTIONS(6187), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1528), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [147524] = 4, + [148757] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3161), 1, - anon_sym_LF, - STATE(3095), 1, + STATE(3136), 1, sym_comment, - ACTIONS(3159), 31, + ACTIONS(1522), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1520), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -318730,192 +323849,127 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147567] = 4, - ACTIONS(105), 1, + [148800] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + ACTIONS(6052), 1, + anon_sym_DOT2, + STATE(3085), 1, + sym_path, + STATE(3137), 1, sym_comment, - ACTIONS(1558), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1556), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + STATE(3486), 1, + sym_cell_path, + ACTIONS(1433), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6216), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(6213), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [147610] = 4, + 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, + [148851] = 17, ACTIONS(105), 1, anon_sym_POUND, - STATE(3097), 1, - sym_comment, - ACTIONS(1558), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1556), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(6233), 1, anon_sym_bit_DASHand, + ACTIONS(6235), 1, anon_sym_bit_DASHxor, + ACTIONS(6237), 1, anon_sym_bit_DASHor, + ACTIONS(6239), 1, anon_sym_and, + ACTIONS(6241), 1, anon_sym_xor, + ACTIONS(6243), 1, anon_sym_or, - [147653] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3098), 1, + STATE(3138), 1, sym_comment, - ACTIONS(1530), 2, + ACTIONS(1551), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1553), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6024), 2, + ACTIONS(6221), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6030), 2, + ACTIONS(6227), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, + ACTIONS(6229), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6028), 4, + ACTIONS(6231), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6223), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6225), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1528), 20, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(6219), 6, anon_sym_GT, - anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [147704] = 4, - ACTIONS(105), 1, + [148920] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3099), 1, + STATE(3139), 1, sym_comment, - ACTIONS(1656), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1654), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1599), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [147747] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3100), 1, - sym_comment, - ACTIONS(1497), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1495), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1601), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -318929,72 +323983,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147790] = 4, - ACTIONS(105), 1, + [148963] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3140), 1, sym_comment, - ACTIONS(1558), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1556), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1603), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [147833] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3102), 1, - sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6030), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1528), 28, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1605), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -319008,16 +324022,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147878] = 6, + [149006] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2999), 1, - aux_sym_cell_path_repeat1, - STATE(3103), 1, + ACTIONS(6245), 1, + anon_sym_QMARK2, + STATE(3141), 1, sym_comment, - STATE(3248), 1, - sym_path, - ACTIONS(1436), 8, + ACTIONS(1419), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -319026,7 +324038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1438), 22, + ACTIONS(1421), 23, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -319049,53 +324062,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147925] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3104), 1, - sym_comment, - ACTIONS(1558), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1556), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [147968] = 5, + [149051] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6050), 1, + ACTIONS(6245), 1, anon_sym_QMARK2, - STATE(3105), 1, + STATE(3142), 1, sym_comment, - ACTIONS(1464), 8, + ACTIONS(1419), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -319104,7 +324078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1466), 23, + ACTIONS(1421), 23, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -319128,56 +324102,56 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148013] = 6, - ACTIONS(105), 1, + [149096] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3106), 1, + STATE(3073), 1, + aux_sym_cell_path_repeat1, + STATE(3143), 1, sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6030), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6028), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1528), 24, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + STATE(3292), 1, + sym_path, + ACTIONS(1407), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1409), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [148060] = 4, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [149143] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3107), 1, + STATE(3144), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1693), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1664), 30, + ACTIONS(1691), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -319208,15 +324182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148103] = 4, + [149186] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3108), 1, + STATE(3145), 1, sym_comment, - ACTIONS(1558), 2, + ACTIONS(1681), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1556), 30, + ACTIONS(1679), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -319247,196 +324221,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148146] = 13, + [149229] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6048), 1, - anon_sym_bit_DASHand, - ACTIONS(6052), 1, - anon_sym_bit_DASHxor, - STATE(3109), 1, - sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, + ACTIONS(6249), 1, anon_sym_LF, - ACTIONS(6024), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6030), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6034), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6026), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6028), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1528), 6, + STATE(3146), 1, + sym_comment, + ACTIONS(6247), 31, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(6022), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [148207] = 4, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [149272] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3147), 1, sym_comment, - ACTIONS(1558), 2, + ACTIONS(1526), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1556), 30, + anon_sym_DOT2, + ACTIONS(1524), 29, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [148250] = 14, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [149315] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6048), 1, - anon_sym_bit_DASHand, - ACTIONS(6052), 1, - anon_sym_bit_DASHxor, - ACTIONS(6054), 1, - anon_sym_bit_DASHor, - STATE(3111), 1, - sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, + ACTIONS(6253), 1, anon_sym_LF, - ACTIONS(6024), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6030), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6034), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6026), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6028), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1528), 5, + STATE(3148), 1, + sym_comment, + ACTIONS(6251), 31, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(6022), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [148313] = 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [149358] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3112), 1, - sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, + ACTIONS(3273), 1, anon_sym_LF, - ACTIONS(6024), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6030), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6026), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6028), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6022), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 10, - anon_sym_SEMI, - anon_sym_PIPE, - 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, - [148368] = 4, + STATE(3149), 1, + sym_comment, + ACTIONS(3271), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [149401] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3150), 1, sym_comment, - ACTIONS(1558), 2, + ACTIONS(1589), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1556), 30, + ACTIONS(1587), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -319467,35 +324416,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148411] = 7, - ACTIONS(105), 1, + [149444] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3114), 1, + ACTIONS(6255), 1, + anon_sym_DOT2, + ACTIONS(6257), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6259), 1, + aux_sym_unquoted_token2, + STATE(3151), 1, sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6024), 2, - anon_sym_DASH, + ACTIONS(1445), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(6030), 2, + anon_sym_LT2, + ACTIONS(1447), 24, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6028), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1528), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -319509,66 +324458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148460] = 16, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6048), 1, - anon_sym_bit_DASHand, - ACTIONS(6052), 1, - anon_sym_bit_DASHxor, - ACTIONS(6054), 1, - anon_sym_bit_DASHor, - ACTIONS(6056), 1, - anon_sym_and, - ACTIONS(6058), 1, - anon_sym_xor, - STATE(3115), 1, - sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6024), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6030), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6034), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1528), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_or, - ACTIONS(6026), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6028), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6022), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [148527] = 4, + [149493] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3116), 1, + STATE(3152), 1, sym_comment, - ACTIONS(1558), 2, + ACTIONS(1697), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1556), 30, + ACTIONS(1695), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -319599,61 +324497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148570] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3117), 1, - sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6024), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6030), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6028), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6022), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1528), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [148623] = 5, + [149536] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(6261), 1, sym__long_flag_identifier, - STATE(3118), 1, + STATE(3153), 1, sym_comment, - ACTIONS(2964), 2, + ACTIONS(3157), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2960), 29, + ACTIONS(3153), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -319683,62 +324537,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148668] = 4, - ACTIONS(105), 1, + [149581] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3119), 1, + STATE(3154), 1, sym_comment, - ACTIONS(1644), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1519), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1437), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1439), 24, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [148711] = 4, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [149624] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3120), 1, - sym_comment, - ACTIONS(1487), 3, - ts_builtin_sym_end, + ACTIONS(4676), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1485), 29, + STATE(3155), 1, + sym_comment, + ACTIONS(4679), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -319761,25 +324615,102 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148754] = 5, + [149667] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3156), 1, + sym_comment, + ACTIONS(1441), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1443), 24, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [149710] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3157), 1, sym_comment, - ACTIONS(1517), 4, + ACTIONS(1647), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1649), 27, anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - ACTIONS(1519), 5, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [149753] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3158), 1, + sym_comment, + ACTIONS(1587), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1644), 23, + ACTIONS(1589), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -319801,14 +324732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148799] = 5, + [149796] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6050), 1, - anon_sym_QMARK2, - STATE(3122), 1, + ACTIONS(6263), 1, + aux_sym__immediate_decimal_token2, + STATE(3159), 1, sym_comment, - ACTIONS(1464), 8, + ACTIONS(2832), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -319817,13 +324748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1466), 23, - anon_sym_SEMI, + ACTIONS(2834), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, @@ -319841,18 +324772,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148844] = 4, + [149841] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3160), 1, sym_comment, - ACTIONS(1568), 5, + ACTIONS(1637), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1570), 27, + ACTIONS(1639), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -319880,26 +324811,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148887] = 6, + [149884] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6062), 1, - anon_sym_DOT2, - STATE(3124), 1, + STATE(3161), 1, sym_comment, - ACTIONS(1517), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(1519), 5, + ACTIONS(1679), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1644), 23, + ACTIONS(1681), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -319921,18 +324850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148934] = 7, + [149927] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6068), 1, + ACTIONS(6052), 1, anon_sym_DOT2, - ACTIONS(6070), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6072), 1, - aux_sym__unquoted_in_list_token2, - STATE(3125), 1, + STATE(3143), 1, + aux_sym_cell_path_repeat1, + STATE(3162), 1, sym_comment, - ACTIONS(6066), 8, + STATE(3292), 1, + sym_path, + ACTIONS(1394), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -319941,7 +324870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6064), 21, + ACTIONS(1396), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -319963,71 +324892,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148983] = 4, + [149976] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3053), 1, - anon_sym_LF, - STATE(3126), 1, + STATE(3163), 1, sym_comment, - ACTIONS(3051), 31, + ACTIONS(1631), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1629), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [149026] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3127), 1, - sym_comment, - ACTIONS(1495), 5, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1497), 27, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [150019] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3164), 1, + sym_comment, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320041,18 +324970,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149069] = 7, + [150062] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6004), 1, - anon_sym_DOT2, - STATE(3019), 1, - sym_path, - STATE(3128), 1, + ACTIONS(6263), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6265), 1, + aux_sym__immediate_decimal_token1, + STATE(3165), 1, sym_comment, - STATE(3444), 1, - sym_cell_path, - ACTIONS(1403), 8, + ACTIONS(2832), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -320061,12 +324988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1405), 21, + ACTIONS(2834), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -320083,32 +325011,81 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149118] = 4, - ACTIONS(3), 1, + [150109] = 14, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3129), 1, + ACTIONS(6233), 1, + anon_sym_bit_DASHand, + ACTIONS(6235), 1, + anon_sym_bit_DASHxor, + ACTIONS(6237), 1, + anon_sym_bit_DASHor, + STATE(3166), 1, sym_comment, - ACTIONS(1608), 5, - anon_sym_GT, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6221), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6227), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6229), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6231), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6223), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6225), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(6219), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1610), 27, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150172] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3167), 1, + sym_comment, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320122,15 +325099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149161] = 4, + [150215] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3168), 1, sym_comment, - ACTIONS(1660), 2, + ACTIONS(1585), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1658), 30, + ACTIONS(1583), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -320161,15 +325138,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149204] = 4, + [150258] = 16, ACTIONS(105), 1, anon_sym_POUND, - STATE(3131), 1, + ACTIONS(6233), 1, + anon_sym_bit_DASHand, + ACTIONS(6235), 1, + anon_sym_bit_DASHxor, + ACTIONS(6237), 1, + anon_sym_bit_DASHor, + ACTIONS(6239), 1, + anon_sym_and, + ACTIONS(6241), 1, + anon_sym_xor, + STATE(3169), 1, + sym_comment, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6221), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6227), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6229), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6231), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1551), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_or, + ACTIONS(6223), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6225), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6219), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150325] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3170), 1, sym_comment, - ACTIONS(1566), 2, + ACTIONS(1581), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1564), 30, + ACTIONS(1579), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -320200,32 +325228,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149247] = 4, - ACTIONS(3), 1, + [150368] = 15, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3132), 1, + ACTIONS(6233), 1, + anon_sym_bit_DASHand, + ACTIONS(6235), 1, + anon_sym_bit_DASHxor, + ACTIONS(6237), 1, + anon_sym_bit_DASHor, + ACTIONS(6239), 1, + anon_sym_and, + STATE(3171), 1, sym_comment, - ACTIONS(1560), 5, - anon_sym_GT, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6221), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6227), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6229), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6231), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1551), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_xor, + anon_sym_or, + ACTIONS(6223), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6225), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6219), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1562), 27, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150433] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3172), 1, + sym_comment, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320239,138 +325317,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149290] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6074), 1, - anon_sym_DOT2, - STATE(3133), 1, - sym_comment, - STATE(3167), 1, - sym_path, - STATE(3240), 1, - sym_cell_path, - ACTIONS(1399), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1401), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149339] = 4, + [150476] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1493), 1, - anon_sym_LF, - STATE(3134), 1, + ACTIONS(5932), 1, + anon_sym_bit_DASHand, + ACTIONS(5934), 1, + anon_sym_bit_DASHxor, + ACTIONS(5936), 1, + anon_sym_bit_DASHor, + ACTIONS(5938), 1, + anon_sym_and, + ACTIONS(5940), 1, + anon_sym_xor, + ACTIONS(5942), 1, + anon_sym_or, + STATE(3173), 1, sym_comment, - ACTIONS(1491), 31, + ACTIONS(5789), 2, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [149382] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6004), 1, - anon_sym_DOT2, - STATE(3019), 1, - sym_path, - STATE(3135), 1, - sym_comment, - STATE(3406), 1, - sym_cell_path, - ACTIONS(1422), 8, - anon_sym_DOLLAR, + ACTIONS(5791), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5920), 2, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1424), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149431] = 4, + ACTIONS(5926), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5928), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5930), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5922), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5924), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5918), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150545] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3174), 1, sym_comment, - ACTIONS(1618), 2, + ACTIONS(1581), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1616), 30, + ACTIONS(1579), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -320401,18 +325408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149474] = 4, + [150588] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3137), 1, + STATE(3175), 1, sym_comment, - ACTIONS(1519), 5, + ACTIONS(1687), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1644), 27, + ACTIONS(1689), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -320440,32 +325447,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149517] = 4, - ACTIONS(3), 1, + [150631] = 13, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3138), 1, + ACTIONS(6233), 1, + anon_sym_bit_DASHand, + ACTIONS(6235), 1, + anon_sym_bit_DASHxor, + STATE(3176), 1, sym_comment, - ACTIONS(1556), 5, - anon_sym_GT, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6221), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6227), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6229), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6231), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6223), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6225), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(6219), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150692] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3177), 1, + sym_comment, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320479,32 +325534,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149560] = 4, - ACTIONS(3), 1, + [150735] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3139), 1, + STATE(3178), 1, sym_comment, - ACTIONS(1556), 5, + ACTIONS(1643), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1641), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320518,54 +325573,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149603] = 4, - ACTIONS(3), 1, + [150778] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3140), 1, + ACTIONS(3234), 1, + anon_sym_LF, + STATE(3179), 1, sym_comment, - ACTIONS(1556), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, + ACTIONS(3232), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [150821] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6233), 1, + anon_sym_bit_DASHand, + STATE(3180), 1, + sym_comment, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6221), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6227), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(6229), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(6231), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6223), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6225), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6219), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1551), 7, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [149646] = 4, + [150880] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3181), 1, sym_comment, - ACTIONS(1558), 2, + ACTIONS(1581), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1556), 30, + ACTIONS(1579), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -320596,32 +325698,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149689] = 4, - ACTIONS(3), 1, + [150923] = 11, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3142), 1, + STATE(3182), 1, sym_comment, - ACTIONS(1556), 5, - anon_sym_GT, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6221), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6227), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6229), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6231), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6223), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6225), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6219), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1551), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [150980] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3183), 1, + sym_comment, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320635,18 +325783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149732] = 4, + [151023] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3184), 1, sym_comment, - ACTIONS(1556), 5, + ACTIONS(1675), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1558), 27, + ACTIONS(1677), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -320674,32 +325822,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149775] = 4, - ACTIONS(3), 1, + [151066] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3144), 1, + STATE(3185), 1, sym_comment, - ACTIONS(1556), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6221), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(6227), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(6229), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(6225), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320713,32 +325865,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149818] = 4, - ACTIONS(3), 1, + [151117] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3186), 1, sym_comment, - ACTIONS(1556), 5, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320752,71 +325904,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149861] = 4, + [151160] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3187), 1, sym_comment, - ACTIONS(1513), 3, + ACTIONS(1553), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1511), 29, + ACTIONS(6227), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1551), 28, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [149904] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3147), 1, - sym_comment, - ACTIONS(1556), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320830,32 +325944,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149947] = 4, - ACTIONS(3), 1, + [151205] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3188), 1, sym_comment, - ACTIONS(1556), 5, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320869,32 +325983,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149990] = 4, - ACTIONS(3), 1, + [151248] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3149), 1, + STATE(3189), 1, sym_comment, - ACTIONS(1556), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6227), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6225), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1551), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320908,32 +326024,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150033] = 4, - ACTIONS(3), 1, + [151295] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3150), 1, + ACTIONS(1515), 1, + anon_sym_LF, + STATE(3190), 1, sym_comment, - ACTIONS(1556), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1558), 27, - anon_sym_COMMA, + ACTIONS(1513), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [151338] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3191), 1, + sym_comment, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320947,32 +326102,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150076] = 4, + [151381] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3151), 1, + ACTIONS(6267), 1, + anon_sym_DOT2, + STATE(3162), 1, + sym_path, + STATE(3192), 1, sym_comment, - ACTIONS(1556), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, + STATE(3409), 1, + sym_cell_path, + ACTIONS(1400), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1402), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1558), 27, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [151430] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6052), 1, + anon_sym_DOT2, + STATE(3085), 1, + sym_path, + STATE(3193), 1, + sym_comment, + STATE(3479), 1, + sym_cell_path, + ACTIONS(1400), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1402), 21, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [151479] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3194), 1, + sym_comment, + ACTIONS(1661), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1659), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320986,18 +326225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150119] = 4, + [151522] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3152), 1, + STATE(3195), 1, sym_comment, - ACTIONS(1556), 5, + ACTIONS(1619), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1558), 27, + ACTIONS(1621), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -321025,32 +326264,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150162] = 4, - ACTIONS(3), 1, + [151565] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3196), 1, sym_comment, - ACTIONS(1668), 5, + ACTIONS(1547), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1545), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1670), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321064,18 +326303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150205] = 7, + [151608] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6004), 1, + ACTIONS(6052), 1, anon_sym_DOT2, - STATE(3019), 1, + STATE(3085), 1, sym_path, - STATE(3154), 1, + STATE(3197), 1, sym_comment, - STATE(3405), 1, + STATE(3448), 1, sym_cell_path, - ACTIONS(1407), 8, + ACTIONS(1478), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -321084,7 +326323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1409), 21, + ACTIONS(1480), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -321106,37 +326345,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [150254] = 4, + [151657] = 10, ACTIONS(105), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(3198), 1, sym_comment, - ACTIONS(1614), 2, + ACTIONS(1553), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1612), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(6221), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(6227), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6229), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6223), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6225), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(6219), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1551), 10, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -321145,32 +326390,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150297] = 4, - ACTIONS(3), 1, + [151712] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3199), 1, sym_comment, - ACTIONS(1564), 5, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1566), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321184,18 +326429,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150340] = 4, + [151755] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3157), 1, + STATE(3200), 1, sym_comment, - ACTIONS(1628), 5, + ACTIONS(1619), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1630), 27, + ACTIONS(1621), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -321223,32 +326468,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150383] = 4, - ACTIONS(3), 1, + [151798] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3158), 1, + STATE(3201), 1, sym_comment, - ACTIONS(1612), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1614), 27, - anon_sym_COMMA, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6221), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(6227), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6225), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1551), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321262,33 +326510,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150426] = 5, - ACTIONS(3), 1, + [151847] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6062), 1, - anon_sym_DOT2, - STATE(3159), 1, + STATE(3202), 1, sym_comment, - ACTIONS(213), 5, + ACTIONS(1581), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1579), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(215), 26, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321302,15 +326549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150471] = 4, + [151890] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3160), 1, + STATE(3203), 1, sym_comment, - ACTIONS(1578), 2, + ACTIONS(1653), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1576), 30, + ACTIONS(1651), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -321341,84 +326588,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150514] = 17, + [151933] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5819), 1, - anon_sym_bit_DASHand, - ACTIONS(5821), 1, - anon_sym_bit_DASHxor, - ACTIONS(5823), 1, - anon_sym_bit_DASHor, - ACTIONS(5825), 1, - anon_sym_and, - ACTIONS(5827), 1, - anon_sym_xor, - ACTIONS(5829), 1, - anon_sym_or, - STATE(3161), 1, + STATE(3204), 1, sym_comment, - ACTIONS(5686), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5688), 2, + ACTIONS(1649), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5813), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5815), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5817), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5809), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5811), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5805), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [150583] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3162), 1, - sym_comment, - ACTIONS(1640), 5, + ACTIONS(1647), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1642), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321432,113 +326627,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150626] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6004), 1, - anon_sym_DOT2, - STATE(3019), 1, - sym_path, - STATE(3163), 1, - sym_comment, - STATE(3401), 1, - sym_cell_path, - ACTIONS(1447), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1449), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150675] = 17, + [151976] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5850), 1, - anon_sym_bit_DASHand, - ACTIONS(5852), 1, - anon_sym_bit_DASHxor, - ACTIONS(5854), 1, - anon_sym_bit_DASHor, - ACTIONS(5856), 1, - anon_sym_and, - ACTIONS(5858), 1, - anon_sym_xor, - ACTIONS(5860), 1, - anon_sym_or, - STATE(3164), 1, + ACTIONS(1542), 1, + anon_sym_DASH, + STATE(3205), 1, sym_comment, - ACTIONS(5620), 2, + ACTIONS(1536), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5622), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5838), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5844), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5846), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5848), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5840), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5842), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5836), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [150744] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3165), 1, - sym_comment, - ACTIONS(1586), 2, + ACTIONS(1538), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1584), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1540), 27, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, @@ -321565,57 +326668,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150787] = 4, - ACTIONS(3), 1, + [152023] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3206), 1, sym_comment, - ACTIONS(1454), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1456), 24, + ACTIONS(1511), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1509), 29, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_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, - [150830] = 7, + [152066] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6004), 1, + ACTIONS(6274), 1, anon_sym_DOT2, - STATE(3103), 1, - aux_sym_cell_path_repeat1, - STATE(3167), 1, + ACTIONS(6276), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6278), 1, + aux_sym__unquoted_in_list_token2, + STATE(3207), 1, sym_comment, - STATE(3248), 1, - sym_path, - ACTIONS(1440), 8, + ACTIONS(6272), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -321624,7 +326727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1442), 21, + ACTIONS(6270), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -321646,18 +326749,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [150879] = 7, + [152115] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6077), 1, + ACTIONS(6276), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6278), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6280), 1, anon_sym_DOT2, - STATE(3167), 1, - sym_path, - STATE(3168), 1, + STATE(3208), 1, sym_comment, - STATE(3329), 1, - sym_cell_path, - ACTIONS(1395), 8, + ACTIONS(6272), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -321666,7 +326769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1397), 21, + ACTIONS(6270), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -321688,15 +326791,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [150928] = 4, + [152164] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3169), 1, + ACTIONS(3230), 1, + anon_sym_LF, + STATE(3209), 1, + sym_comment, + ACTIONS(3228), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [152207] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3210), 1, sym_comment, - ACTIONS(1562), 2, + ACTIONS(1447), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1560), 30, + ACTIONS(1445), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -321727,34 +326869,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150971] = 4, - ACTIONS(3), 1, + [152250] = 9, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3211), 1, sym_comment, - ACTIONS(1426), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1428), 27, - anon_sym_COMMA, + ACTIONS(1553), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6221), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(6227), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(6229), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(6225), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6219), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1551), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -321766,15 +326913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151014] = 4, + [152303] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3171), 1, + STATE(3212), 1, sym_comment, - ACTIONS(1558), 2, + ACTIONS(1623), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1556), 30, + ACTIONS(1540), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -321805,15 +326952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151057] = 4, + [152346] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3172), 1, + STATE(3213), 1, sym_comment, - ACTIONS(1558), 2, + ACTIONS(1635), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1556), 30, + ACTIONS(1633), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -321844,84 +326991,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151100] = 17, - ACTIONS(105), 1, + [152389] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6048), 1, - anon_sym_bit_DASHand, - ACTIONS(6052), 1, - anon_sym_bit_DASHxor, - ACTIONS(6054), 1, - anon_sym_bit_DASHor, - ACTIONS(6056), 1, - anon_sym_and, - ACTIONS(6058), 1, - anon_sym_xor, - ACTIONS(6080), 1, - anon_sym_or, - STATE(3173), 1, + ACTIONS(6282), 1, + aux_sym__immediate_decimal_token2, + STATE(3214), 1, sym_comment, - ACTIONS(1528), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1530), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6024), 2, + ACTIONS(2906), 8, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2908), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, - ACTIONS(6030), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6034), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6026), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6028), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6022), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [151169] = 4, - ACTIONS(105), 1, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [152434] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3174), 1, + STATE(3215), 1, sym_comment, - ACTIONS(1558), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1556), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1655), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1657), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321935,32 +327070,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151212] = 4, - ACTIONS(3), 1, + [152477] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3175), 1, + STATE(3216), 1, sym_comment, - ACTIONS(1584), 5, + ACTIONS(1601), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1599), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1586), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321974,15 +327109,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151255] = 4, + [152520] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3176), 1, + STATE(3217), 1, sym_comment, - ACTIONS(1582), 2, + ACTIONS(1593), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1580), 30, + ACTIONS(1591), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -322013,67 +327148,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151298] = 17, + [152563] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6096), 1, + ACTIONS(5975), 1, anon_sym_bit_DASHand, - ACTIONS(6098), 1, + ACTIONS(5977), 1, anon_sym_bit_DASHxor, - ACTIONS(6100), 1, + ACTIONS(5979), 1, anon_sym_bit_DASHor, - ACTIONS(6102), 1, + ACTIONS(5981), 1, anon_sym_and, - ACTIONS(6104), 1, + ACTIONS(5983), 1, anon_sym_xor, - ACTIONS(6106), 1, + ACTIONS(5985), 1, anon_sym_or, - STATE(3177), 1, + STATE(3218), 1, sym_comment, - ACTIONS(5974), 2, + ACTIONS(5819), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5976), 2, + ACTIONS(5821), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6084), 2, + ACTIONS(5963), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6090), 2, + ACTIONS(5969), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6092), 2, + ACTIONS(5971), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6094), 2, + ACTIONS(5973), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6086), 4, + ACTIONS(5965), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6088), 4, + ACTIONS(5967), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6082), 6, + ACTIONS(5961), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [151367] = 4, + [152632] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3178), 1, + STATE(3219), 1, sym_comment, - ACTIONS(1526), 2, + ACTIONS(1597), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1524), 30, + ACTIONS(1595), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -322104,15 +327239,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151410] = 4, + [152675] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3179), 1, + STATE(3220), 1, + sym_comment, + ACTIONS(1665), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1663), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [152718] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3221), 1, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1657), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1600), 30, + ACTIONS(1655), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -322143,18 +327317,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151453] = 4, + [152761] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3180), 1, + ACTIONS(6282), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6284), 1, + aux_sym__immediate_decimal_token1, + STATE(3222), 1, + sym_comment, + ACTIONS(2906), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2908), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [152808] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6052), 1, + anon_sym_DOT2, + STATE(3085), 1, + sym_path, + STATE(3223), 1, + sym_comment, + STATE(3452), 1, + sym_cell_path, + ACTIONS(1459), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1461), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [152857] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3224), 1, sym_comment, - ACTIONS(1604), 5, + ACTIONS(1579), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1606), 27, + ACTIONS(1581), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -322182,18 +327439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151496] = 4, + [152900] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(3225), 1, sym_comment, - ACTIONS(1524), 5, + ACTIONS(1579), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1526), 27, + ACTIONS(1581), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -322221,32 +327478,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151539] = 4, - ACTIONS(105), 1, + [152943] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3226), 1, sym_comment, - ACTIONS(1648), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1646), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1579), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1581), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -322260,93 +327517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151582] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3183), 1, - sym_comment, - ACTIONS(1503), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1501), 29, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [151625] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3155), 1, - anon_sym_LF, - STATE(3184), 1, - sym_comment, - ACTIONS(3153), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [151668] = 4, + [152986] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3185), 1, + STATE(3227), 1, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1673), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1600), 30, + ACTIONS(1671), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -322377,15 +327556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151711] = 4, + [153029] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3186), 1, + STATE(3228), 1, sym_comment, - ACTIONS(1570), 2, + ACTIONS(1685), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1568), 30, + ACTIONS(1683), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -322416,68 +327595,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151754] = 15, - ACTIONS(105), 1, + [153072] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6048), 1, - anon_sym_bit_DASHand, - ACTIONS(6052), 1, - anon_sym_bit_DASHxor, - ACTIONS(6054), 1, - anon_sym_bit_DASHor, - ACTIONS(6056), 1, - anon_sym_and, - STATE(3187), 1, + STATE(3229), 1, sym_comment, - ACTIONS(1530), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6024), 2, - anon_sym_DASH, + ACTIONS(1579), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(6030), 2, + anon_sym_LT2, + ACTIONS(1581), 27, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6032), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6034), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1528), 4, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(6026), 4, + [153115] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3230), 1, + sym_comment, + ACTIONS(215), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(213), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6028), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6022), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [151819] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [153158] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3188), 1, + STATE(3231), 1, sym_comment, - ACTIONS(1588), 5, + ACTIONS(1579), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1590), 27, + ACTIONS(1581), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -322505,75 +327712,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151862] = 7, - ACTIONS(3), 1, + [153201] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6004), 1, - anon_sym_DOT2, - STATE(3019), 1, - sym_path, - STATE(3189), 1, + ACTIONS(1589), 1, + anon_sym_LF, + STATE(3232), 1, sym_comment, - STATE(3416), 1, - sym_cell_path, - ACTIONS(1395), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1397), 21, + ACTIONS(1587), 31, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_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, - [151911] = 5, - ACTIONS(105), 1, + [153244] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3233), 1, + sym_comment, + ACTIONS(1579), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1581), 27, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [153287] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3190), 1, + STATE(3234), 1, sym_comment, - ACTIONS(1515), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1517), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1519), 28, + ACTIONS(1579), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1581), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -322587,58 +327829,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151956] = 5, + [153330] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6108), 1, - aux_sym__immediate_decimal_token2, - STATE(3191), 1, + STATE(3235), 1, sym_comment, - ACTIONS(2874), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2876), 23, - anon_sym_LBRACK, + ACTIONS(1579), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1581), 27, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [152001] = 4, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [153373] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3192), 1, + STATE(3236), 1, sym_comment, - ACTIONS(1596), 5, + ACTIONS(1579), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1598), 27, + ACTIONS(1581), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -322666,145 +327907,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152044] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4739), 1, - anon_sym_LF, - STATE(3193), 1, - sym_comment, - ACTIONS(4742), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [152087] = 17, + [153416] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_bit_DASHand, - ACTIONS(1167), 1, + ACTIONS(1173), 1, anon_sym_bit_DASHxor, - ACTIONS(1169), 1, + ACTIONS(1175), 1, anon_sym_bit_DASHor, - ACTIONS(1171), 1, + ACTIONS(1177), 1, anon_sym_and, - ACTIONS(1173), 1, + ACTIONS(1179), 1, anon_sym_xor, - ACTIONS(1175), 1, + ACTIONS(1181), 1, anon_sym_or, - STATE(3194), 1, + STATE(3237), 1, sym_comment, - ACTIONS(1082), 2, + ACTIONS(1073), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1084), 2, + ACTIONS(1075), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1149), 2, + ACTIONS(1155), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1159), 2, + ACTIONS(1165), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1161), 2, + ACTIONS(1167), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1163), 2, + ACTIONS(1169), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1151), 4, + ACTIONS(1157), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1155), 4, + ACTIONS(1161), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1147), 6, + ACTIONS(1153), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [152156] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3195), 1, - sym_comment, - ACTIONS(1475), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1477), 24, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [152199] = 4, + [153485] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3196), 1, + STATE(3238), 1, sym_comment, - ACTIONS(1598), 2, + ACTIONS(1627), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1596), 30, + ACTIONS(1625), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -322835,32 +327998,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152242] = 4, - ACTIONS(105), 1, + [153528] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3197), 1, + STATE(3239), 1, sym_comment, - ACTIONS(1590), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1588), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1579), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1581), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -322874,32 +328037,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152285] = 4, - ACTIONS(105), 1, + [153571] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3198), 1, + STATE(3240), 1, sym_comment, - ACTIONS(1428), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1426), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1579), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1581), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -322913,32 +328076,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152328] = 4, - ACTIONS(105), 1, + [153614] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3241), 1, sym_comment, - ACTIONS(1606), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1604), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1579), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1581), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -322952,32 +328115,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152371] = 4, - ACTIONS(105), 1, + [153657] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3200), 1, + STATE(3242), 1, sym_comment, - ACTIONS(1638), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1636), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1579), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1581), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -322991,58 +328154,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152414] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6110), 1, - aux_sym__immediate_decimal_token2, - STATE(3201), 1, - sym_comment, - ACTIONS(2782), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2784), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [152459] = 4, + [153700] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3202), 1, + STATE(3243), 1, sym_comment, - ACTIONS(1600), 5, + ACTIONS(1540), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1602), 27, + ACTIONS(1623), 27, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -323070,17 +328193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152502] = 4, + [153743] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3203), 1, + STATE(3244), 1, sym_comment, - ACTIONS(1670), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1668), 30, + ACTIONS(1536), 2, anon_sym_SEMI, anon_sym_PIPE, + ACTIONS(1538), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1540), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -323109,16 +328233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152545] = 6, + [153788] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6112), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6114), 1, - aux_sym__immediate_decimal_token2, - STATE(3204), 1, + ACTIONS(6052), 1, + anon_sym_DOT2, + STATE(3085), 1, + sym_path, + STATE(3245), 1, sym_comment, - ACTIONS(2806), 8, + STATE(3460), 1, + sym_cell_path, + ACTIONS(1463), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -323127,13 +328253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2808), 22, + ACTIONS(1465), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -323150,71 +328275,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [152592] = 4, + [153837] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6118), 1, - anon_sym_LF, - STATE(3205), 1, + STATE(3246), 1, sym_comment, - ACTIONS(6116), 31, + ACTIONS(1677), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1675), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [152635] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3206), 1, - sym_comment, - ACTIONS(1600), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1602), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -323228,54 +328314,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152678] = 4, - ACTIONS(105), 1, + [153880] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6122), 1, - anon_sym_LF, - STATE(3207), 1, + ACTIONS(6286), 1, + anon_sym_DOT2, + STATE(3162), 1, + sym_path, + STATE(3247), 1, sym_comment, - ACTIONS(6120), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3267), 1, + sym_cell_path, + ACTIONS(1467), 8, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1469), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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, - [152721] = 4, + [153929] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3208), 1, + STATE(3248), 1, sym_comment, - ACTIONS(1630), 2, + ACTIONS(1669), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1628), 30, + ACTIONS(1667), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -323306,18 +328395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152764] = 7, + [153972] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6070), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6072), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6124), 1, - anon_sym_DOT2, - STATE(3209), 1, + ACTIONS(6289), 1, + aux_sym__immediate_decimal_token2, + STATE(3249), 1, sym_comment, - ACTIONS(6066), 8, + ACTIONS(2984), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -323326,12 +328411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6064), 21, + ACTIONS(2986), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -323348,32 +328435,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [152813] = 4, - ACTIONS(105), 1, + [154017] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3210), 1, + STATE(3250), 1, sym_comment, - ACTIONS(1574), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1572), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1595), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1597), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -323387,15 +328474,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152856] = 4, + [154060] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6052), 1, + anon_sym_DOT2, + STATE(3085), 1, + sym_path, + STATE(3251), 1, + sym_comment, + STATE(3496), 1, + sym_cell_path, + ACTIONS(1431), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1433), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [154109] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3211), 1, + STATE(3252), 1, sym_comment, - ACTIONS(1652), 2, + ACTIONS(1689), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1650), 30, + ACTIONS(1687), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -323426,32 +328555,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152899] = 4, - ACTIONS(105), 1, + [154152] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3212), 1, + ACTIONS(6291), 1, + anon_sym_DOT2, + STATE(3253), 1, sym_comment, - ACTIONS(215), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(213), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(213), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(215), 26, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -323465,75 +328595,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152942] = 6, + [154197] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6110), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6126), 1, - aux_sym__immediate_decimal_token1, - STATE(3213), 1, + ACTIONS(6291), 1, + anon_sym_DOT2, + STATE(3254), 1, sym_comment, - ACTIONS(2782), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2784), 22, - anon_sym_LBRACK, + ACTIONS(1538), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + ACTIONS(1540), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [152989] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1521), 1, + anon_sym_LT2, + ACTIONS(1623), 23, anon_sym_DASH, - STATE(3214), 1, - sym_comment, - ACTIONS(1515), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1517), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1519), 27, - anon_sym_GT, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -323547,32 +328636,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153036] = 4, - ACTIONS(105), 1, + [154244] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3215), 1, + STATE(3255), 1, sym_comment, - ACTIONS(1622), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1620), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1667), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1669), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -323586,15 +328675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153079] = 4, + [154287] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3216), 1, + STATE(3256), 1, sym_comment, - ACTIONS(1626), 2, + ACTIONS(1621), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1624), 30, + ACTIONS(1619), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -323625,15 +328714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153122] = 4, + [154330] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3217), 1, + STATE(3257), 1, sym_comment, - ACTIONS(1610), 2, + ACTIONS(1621), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1608), 30, + ACTIONS(1619), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -323664,63 +328753,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153165] = 4, - ACTIONS(105), 1, + [154373] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - anon_sym_LF, - STATE(3218), 1, + STATE(3258), 1, sym_comment, - ACTIONS(1524), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(1538), 4, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_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, - [153208] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3219), 1, - sym_comment, - ACTIONS(213), 5, + anon_sym_EQ_GT, + ACTIONS(1540), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(215), 27, - anon_sym_COMMA, + ACTIONS(1623), 23, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -323742,55 +328793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153251] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6114), 1, - aux_sym__immediate_decimal_token2, - STATE(3220), 1, - sym_comment, - ACTIONS(2806), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2808), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [153296] = 4, + [154418] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3221), 1, + STATE(3259), 1, sym_comment, - ACTIONS(1642), 2, + ACTIONS(1613), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1640), 30, + ACTIONS(1611), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -323821,15 +328832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153339] = 4, + [154461] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3222), 1, + STATE(3260), 1, sym_comment, - ACTIONS(1634), 2, + ACTIONS(1639), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1632), 30, + ACTIONS(1637), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -323860,68 +328871,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153382] = 17, + [154504] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6142), 1, - anon_sym_bit_DASHand, - ACTIONS(6144), 1, - anon_sym_bit_DASHxor, - ACTIONS(6146), 1, - anon_sym_bit_DASHor, - ACTIONS(6148), 1, - anon_sym_and, - ACTIONS(6150), 1, - anon_sym_xor, - ACTIONS(6152), 1, - anon_sym_or, - STATE(3223), 1, + STATE(3261), 1, sym_comment, - ACTIONS(5933), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5935), 2, + ACTIONS(1609), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6130), 2, + ACTIONS(1607), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6136), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6138), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6140), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6132), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6134), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6128), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [153451] = 6, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [154547] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3262), 1, + sym_comment, + ACTIONS(4676), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4679), 29, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [154589] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6154), 1, - anon_sym_DOT2, - ACTIONS(6156), 1, + ACTIONS(6293), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6295), 1, aux_sym__immediate_decimal_token2, - STATE(3224), 1, + STATE(3263), 1, + sym_comment, + ACTIONS(2906), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2908), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + 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, + [154635] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3264), 1, sym_comment, - ACTIONS(2806), 8, + ACTIONS(2984), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -323930,12 +329002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2808), 21, + ACTIONS(2986), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -323952,31 +329026,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153497] = 5, + [154677] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6158), 1, - aux_sym__immediate_decimal_token2, - STATE(3225), 1, + STATE(3265), 1, sym_comment, - ACTIONS(2806), 6, + ACTIONS(3256), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2808), 24, + aux_sym__unquoted_in_list_token1, + ACTIONS(3258), 23, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -323991,17 +329062,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [153541] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [154719] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6160), 1, + ACTIONS(1476), 1, + anon_sym_SEMI, + ACTIONS(5218), 1, anon_sym_DOT2, - ACTIONS(6164), 1, - aux_sym__immediate_decimal_token2, - STATE(3226), 1, + STATE(2425), 1, + sym_path, + STATE(3266), 1, sym_comment, - ACTIONS(2904), 8, - anon_sym_DOLLAR, + STATE(3362), 1, + sym_cell_path, + ACTIONS(6299), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -324009,11 +329085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2906), 21, + ACTIONS(6297), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_null, @@ -324029,18 +329106,12 @@ 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, - [153587] = 6, + [154769] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6166), 1, - anon_sym_DOT2, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token2, - STATE(3227), 1, + STATE(3267), 1, sym_comment, - ACTIONS(2904), 8, + ACTIONS(1532), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -324049,12 +329120,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2906), 21, + ACTIONS(1534), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -324071,15 +329144,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153633] = 4, + [154811] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3228), 1, + STATE(3268), 1, sym_comment, - ACTIONS(3161), 2, + ACTIONS(6253), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3159), 29, + ACTIONS(6251), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -324109,15 +329182,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153675] = 4, + [154853] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3229), 1, + STATE(3269), 1, sym_comment, - ACTIONS(6118), 2, + ACTIONS(6249), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6116), 29, + ACTIONS(6247), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -324147,12 +329220,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153717] = 4, + [154895] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3230), 1, + STATE(3270), 1, sym_comment, - ACTIONS(2782), 8, + ACTIONS(2906), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -324161,7 +329234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2784), 23, + ACTIONS(2908), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -324185,15 +329258,95 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153759] = 4, + [154937] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6301), 1, + anon_sym_DOT2, + STATE(3271), 1, + sym_comment, + STATE(3288), 1, + aux_sym_cell_path_repeat1, + STATE(3419), 1, + sym_path, + ACTIONS(1394), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1396), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + 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, + [154985] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3231), 1, + ACTIONS(1377), 1, + anon_sym_RBRACE, + ACTIONS(5959), 1, + aux_sym_unquoted_token3, + STATE(3272), 1, + sym_comment, + ACTIONS(1375), 29, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [155029] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3273), 1, sym_comment, - ACTIONS(6122), 2, + ACTIONS(1515), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6120), 29, + ACTIONS(1513), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -324223,66 +329376,226 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153801] = 4, + [155071] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3232), 1, + STATE(3274), 1, sym_comment, - ACTIONS(3155), 2, + ACTIONS(3273), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3153), 29, + ACTIONS(3271), 29, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [155113] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6303), 1, + anon_sym_DOT2, + ACTIONS(6305), 1, + aux_sym__immediate_decimal_token2, + STATE(3275), 1, + sym_comment, + ACTIONS(2934), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2936), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [155159] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6307), 1, + anon_sym_DOT2, + ACTIONS(6311), 1, + aux_sym__immediate_decimal_token2, + STATE(3276), 1, + sym_comment, + ACTIONS(2934), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2936), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [155205] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3277), 1, + sym_comment, + ACTIONS(1589), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1587), 29, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_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, + [155247] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3278), 1, + sym_comment, + ACTIONS(1520), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1522), 23, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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, - [153843] = 4, + [155289] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3233), 1, + ACTIONS(6313), 1, + anon_sym_DOT2, + STATE(3419), 1, + sym_path, + STATE(3279), 2, sym_comment, - ACTIONS(2874), 8, - anon_sym_DOLLAR, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2876), 23, + aux_sym_unquoted_token1, + ACTIONS(1389), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -324297,17 +329610,15 @@ 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, - [153885] = 4, + [155335] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3234), 1, + STATE(3280), 1, sym_comment, - ACTIONS(1493), 2, + ACTIONS(3234), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1491), 29, + ACTIONS(3232), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -324337,16 +329648,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153927] = 6, + [155377] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6171), 1, + ACTIONS(6316), 1, anon_sym_DOT2, - ACTIONS(6173), 1, + ACTIONS(6319), 1, aux_sym__immediate_decimal_token2, - STATE(3235), 1, + STATE(3281), 1, sym_comment, - ACTIONS(2904), 8, + ACTIONS(2934), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -324355,7 +329666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2906), 21, + ACTIONS(2936), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -324377,15 +329688,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153973] = 4, + [155423] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3236), 1, + STATE(3282), 1, sym_comment, - ACTIONS(4739), 2, + ACTIONS(3230), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4742), 29, + ACTIONS(3228), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -324415,30 +329726,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154015] = 6, + [155465] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6177), 1, + ACTIONS(6321), 1, + anon_sym_DOT2, + ACTIONS(6323), 1, aux_sym__immediate_decimal_token2, - STATE(3237), 1, + STATE(3283), 1, sym_comment, - ACTIONS(2782), 7, + ACTIONS(2832), 8, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2784), 22, + ACTIONS(2834), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -324455,16 +329766,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154061] = 6, + [155511] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6114), 1, + ACTIONS(6263), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6179), 1, + ACTIONS(6325), 1, anon_sym_DOT2, - STATE(3238), 1, + STATE(3284), 1, sym_comment, - ACTIONS(2806), 8, + ACTIONS(2832), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -324473,7 +329784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2808), 21, + ACTIONS(2834), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -324495,51 +329806,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154107] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1371), 1, - anon_sym_RBRACE, - ACTIONS(5783), 1, - aux_sym_unquoted_token3, - STATE(3239), 1, - sym_comment, - ACTIONS(1369), 29, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [154151] = 4, + [155557] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3240), 1, + STATE(3285), 1, sym_comment, - ACTIONS(1507), 8, + ACTIONS(2832), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -324548,7 +329820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1509), 23, + ACTIONS(2834), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -324572,105 +329844,74 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154193] = 5, + [155599] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - aux_sym_unquoted_token5, - STATE(3241), 1, + ACTIONS(6301), 1, + anon_sym_DOT2, + STATE(3279), 1, + aux_sym_cell_path_repeat1, + STATE(3286), 1, sym_comment, - ACTIONS(1495), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1497), 25, - anon_sym_COMMA, + STATE(3419), 1, + sym_path, + ACTIONS(1407), 8, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [154237] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3242), 1, - sym_comment, - ACTIONS(1526), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1524), 29, - anon_sym_SEMI, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1409), 20, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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, - [154279] = 4, + [155647] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3243), 1, + ACTIONS(6301), 1, + anon_sym_DOT2, + STATE(3287), 1, sym_comment, - ACTIONS(3034), 8, - anon_sym_DOLLAR, + STATE(3294), 1, + sym_path, + STATE(3516), 1, + sym_cell_path, + ACTIONS(1400), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3036), 23, + aux_sym_unquoted_token1, + ACTIONS(1402), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -324685,32 +329926,32 @@ 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, - [154321] = 6, + [155695] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6156), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6184), 1, - aux_sym__immediate_decimal_token1, - STATE(3244), 1, + STATE(3279), 1, + aux_sym_cell_path_repeat1, + STATE(3288), 1, sym_comment, - ACTIONS(2806), 7, - anon_sym_DOLLAR, + STATE(3419), 1, + sym_path, + ACTIONS(1407), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2808), 22, + aux_sym_unquoted_token1, + ACTIONS(1409), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -324725,30 +329966,33 @@ 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, - [154367] = 4, + [155741] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3245), 1, + ACTIONS(6328), 1, + anon_sym_DOT2, + STATE(3271), 1, + sym_path, + STATE(3289), 1, sym_comment, - ACTIONS(1511), 8, - anon_sym_DOLLAR, + STATE(3444), 1, + sym_cell_path, + ACTIONS(1400), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1513), 23, - anon_sym_SEMI, + aux_sym_unquoted_token1, + ACTIONS(1402), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -324763,68 +330007,73 @@ 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, - [154409] = 4, - ACTIONS(105), 1, + [155789] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3246), 1, + ACTIONS(6331), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6333), 1, + aux_sym__immediate_decimal_token2, + STATE(3290), 1, sym_comment, - ACTIONS(3053), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3051), 29, - anon_sym_SEMI, + ACTIONS(2832), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2834), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_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, - [154451] = 4, + [155835] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + ACTIONS(6301), 1, + anon_sym_DOT2, + STATE(3291), 1, sym_comment, - ACTIONS(2806), 8, - anon_sym_DOLLAR, + STATE(3294), 1, + sym_path, + STATE(3530), 1, + sym_cell_path, + ACTIONS(1467), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2808), 23, + aux_sym_unquoted_token1, + ACTIONS(1469), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -324839,14 +330088,12 @@ 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, - [154493] = 4, + [155883] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3248), 1, + STATE(3292), 1, sym_comment, - ACTIONS(1485), 8, + ACTIONS(1524), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -324855,7 +330102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1487), 23, + ACTIONS(1526), 23, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -324879,34 +330126,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154535] = 8, + [155925] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1420), 1, - anon_sym_SEMI, - ACTIONS(5097), 1, + ACTIONS(6335), 1, anon_sym_DOT2, - STATE(2387), 1, + STATE(3271), 1, sym_path, - STATE(3249), 1, + STATE(3293), 1, sym_comment, - STATE(3270), 1, + STATE(3434), 1, sym_cell_path, - ACTIONS(6188), 7, + ACTIONS(1467), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6186), 20, + aux_sym_unquoted_token1, + ACTIONS(1469), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -324921,31 +330167,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [154585] = 5, + [155973] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6190), 1, - aux_sym__immediate_decimal_token2, - STATE(3250), 1, + ACTIONS(6301), 1, + anon_sym_DOT2, + STATE(3286), 1, + aux_sym_cell_path_repeat1, + STATE(3294), 1, sym_comment, - ACTIONS(2782), 6, + STATE(3419), 1, + sym_path, + ACTIONS(1394), 8, anon_sym_DASH, anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2784), 24, + aux_sym_unquoted_token1, + ACTIONS(1396), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -324960,30 +330208,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [154629] = 5, + [156021] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6192), 1, + ACTIONS(6323), 1, aux_sym__immediate_decimal_token2, - STATE(3251), 1, + ACTIONS(6338), 1, + aux_sym__immediate_decimal_token1, + STATE(3295), 1, sym_comment, - ACTIONS(2874), 6, + ACTIONS(2832), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2876), 24, + aux_sym__unquoted_in_list_token1, + ACTIONS(2834), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -324999,25 +330246,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [154673] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [156067] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1517), 1, - anon_sym_LBRACE, - ACTIONS(6194), 1, - anon_sym_DASH, - ACTIONS(6197), 1, - anon_sym_DOT2, - STATE(3252), 1, + ACTIONS(6340), 1, + aux_sym_unquoted_token5, + STATE(3296), 1, sym_comment, - ACTIONS(1519), 5, + ACTIONS(1545), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1644), 22, + ACTIONS(1547), 25, + anon_sym_COMMA, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -325039,32 +330287,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [154720] = 7, + [156111] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6199), 1, - anon_sym_DOT2, - STATE(3253), 1, + ACTIONS(6342), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6344), 1, + aux_sym__immediate_decimal_token2, + STATE(3297), 1, sym_comment, - STATE(3314), 1, - sym_path, - STATE(3512), 1, - sym_cell_path, - ACTIONS(1395), 7, + ACTIONS(2906), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1397), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(2908), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -325079,14 +330325,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [154767] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [156157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6201), 1, - anon_sym_SEMI, - STATE(3254), 1, + STATE(3298), 1, sym_comment, - ACTIONS(213), 7, + ACTIONS(3616), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325094,12 +330340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(3618), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325117,14 +330364,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154810] = 5, + [156198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6156), 1, - aux_sym__immediate_decimal_token2, - STATE(3255), 1, + STATE(3299), 1, sym_comment, - ACTIONS(2806), 7, + ACTIONS(3672), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325132,12 +330377,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2808), 22, + ACTIONS(3674), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325155,14 +330401,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154853] = 5, + [156239] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6203), 1, - anon_sym_SEMI, - STATE(3256), 1, + STATE(3300), 1, sym_comment, - ACTIONS(213), 7, + ACTIONS(3676), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325170,12 +330414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(3678), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325193,12 +330438,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154896] = 5, + [156280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6346), 1, anon_sym_SEMI, - STATE(3257), 1, + STATE(3301), 1, sym_comment, ACTIONS(213), 7, anon_sym_DOLLAR, @@ -325231,18 +330476,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154939] = 7, + [156323] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6199), 1, - anon_sym_DOT2, - STATE(3258), 1, + ACTIONS(6348), 1, + aux_sym__immediate_decimal_token2, + STATE(3302), 1, sym_comment, - STATE(3354), 1, - aux_sym_cell_path_repeat1, - STATE(3469), 1, - sym_path, - ACTIONS(1440), 7, + ACTIONS(2984), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -325250,13 +330491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1442), 20, + aux_sym_unquoted_token1, + ACTIONS(2986), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -325271,14 +330514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [154986] = 5, + [156366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6207), 1, - anon_sym_SEMI, - STATE(3259), 1, + STATE(3303), 1, sym_comment, - ACTIONS(213), 7, + ACTIONS(3664), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325286,12 +330527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(3666), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325309,14 +330551,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155029] = 5, + [156407] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6209), 1, - anon_sym_SEMI, - STATE(3260), 1, + STATE(3304), 1, sym_comment, - ACTIONS(213), 7, + ACTIONS(3680), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325324,12 +330564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(3682), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325347,12 +330588,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155072] = 4, + [156448] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3261), 1, + STATE(3305), 1, sym_comment, - ACTIONS(3694), 7, + ACTIONS(3577), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325360,7 +330601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3696), 23, + ACTIONS(3579), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325384,12 +330625,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155113] = 4, + [156489] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3262), 1, + STATE(3306), 1, sym_comment, - ACTIONS(3698), 7, + ACTIONS(3703), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325397,7 +330638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3700), 23, + ACTIONS(3705), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325421,28 +330662,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155154] = 5, + [156530] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_DOT2, - STATE(3263), 1, + STATE(3307), 1, sym_comment, - ACTIONS(3115), 8, + ACTIONS(3707), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3117), 21, + ACTIONS(3709), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -325459,66 +330699,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155197] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1371), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - aux_sym_unquoted_token3, - STATE(3264), 1, - sym_comment, - ACTIONS(1369), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [155240] = 5, + [156571] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6213), 1, - anon_sym_DOT2, - STATE(3265), 1, + STATE(3308), 1, sym_comment, - ACTIONS(3109), 8, + ACTIONS(3711), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3111), 21, + ACTIONS(3713), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -325535,14 +330736,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155283] = 5, + [156612] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6215), 1, - anon_sym_SEMI, - STATE(3266), 1, + STATE(3309), 1, sym_comment, - ACTIONS(213), 7, + ACTIONS(3654), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325550,12 +330749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(3656), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325573,53 +330773,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155326] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6217), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6219), 1, - aux_sym__immediate_decimal_token2, - STATE(3267), 1, - sym_comment, - ACTIONS(2806), 7, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2808), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - 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, - [155371] = 5, + [156653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6177), 1, + ACTIONS(6323), 1, aux_sym__immediate_decimal_token2, - STATE(3268), 1, + STATE(3310), 1, sym_comment, - ACTIONS(2782), 7, + ACTIONS(2832), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325627,7 +330788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2784), 22, + ACTIONS(2834), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325650,14 +330811,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155414] = 5, + [156696] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_SEMI, - STATE(3269), 1, + STATE(3311), 1, sym_comment, - ACTIONS(213), 7, + ACTIONS(3650), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325665,12 +330824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(3652), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325688,12 +330848,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155457] = 4, + [156737] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3270), 1, + STATE(3312), 1, sym_comment, - ACTIONS(1640), 7, + ACTIONS(3715), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325701,13 +330861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1642), 23, - anon_sym_SEMI, + ACTIONS(3717), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325725,14 +330885,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155498] = 5, + [156778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_SEMI, - STATE(3271), 1, + STATE(3313), 1, sym_comment, - ACTIONS(213), 7, + ACTIONS(3642), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325740,12 +330898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(3644), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325763,52 +330922,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155541] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6225), 1, - sym__long_flag_identifier, - STATE(3272), 1, - sym_comment, - ACTIONS(2960), 12, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2964), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [155584] = 5, + [156819] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6227), 1, - aux_sym__immediate_decimal_token2, - STATE(3273), 1, + STATE(3314), 1, sym_comment, - ACTIONS(2874), 7, + ACTIONS(3638), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325816,12 +330935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2876), 22, + ACTIONS(3640), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325839,12 +330959,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155627] = 4, + [156860] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3274), 1, + STATE(3315), 1, sym_comment, - ACTIONS(1588), 7, + ACTIONS(3719), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325852,13 +330972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1590), 23, - anon_sym_SEMI, + ACTIONS(3721), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325876,28 +330996,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155668] = 5, + [156901] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_DOT2, - STATE(3275), 1, + STATE(3316), 1, sym_comment, - ACTIONS(3097), 8, + ACTIONS(3723), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3099), 21, + ACTIONS(3725), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -325914,12 +331033,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155711] = 4, + [156942] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3276), 1, + STATE(3317), 1, sym_comment, - ACTIONS(3702), 7, + ACTIONS(3632), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325927,7 +331046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3704), 23, + ACTIONS(3634), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325951,12 +331070,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155752] = 4, + [156983] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3277), 1, + ACTIONS(6350), 1, + anon_sym_SEMI, + STATE(3318), 1, sym_comment, - ACTIONS(3706), 7, + ACTIONS(213), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -325964,13 +331085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3708), 23, + ACTIONS(215), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -325988,56 +331108,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155793] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - STATE(3278), 1, - sym_comment, - ACTIONS(6231), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6245), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 14, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [155848] = 4, + [157026] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3279), 1, + STATE(3319), 1, sym_comment, - ACTIONS(3307), 7, + ACTIONS(3620), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -326045,7 +331121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3309), 23, + ACTIONS(3622), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326069,197 +331145,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [155889] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - STATE(3280), 1, - sym_comment, - ACTIONS(1528), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1530), 20, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [155940] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3281), 1, - sym_comment, - ACTIONS(4739), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1628), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1630), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [155983] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - STATE(3282), 1, - sym_comment, - ACTIONS(6231), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6245), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6247), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1530), 10, - anon_sym_COMMA, - anon_sym_RBRACE, - 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, - [156040] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3283), 1, - sym_comment, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1528), 3, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1530), 21, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [156087] = 7, + [157067] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6199), 1, + ACTIONS(6356), 1, anon_sym_DOT2, - STATE(3284), 1, + STATE(3320), 1, sym_comment, - STATE(3321), 1, - aux_sym_cell_path_repeat1, - STATE(3469), 1, - sym_path, - ACTIONS(1436), 7, + ACTIONS(6354), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1438), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(6352), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -326274,490 +331181,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [156134] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [157110] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3285), 1, - sym_comment, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1528), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1530), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [156177] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5123), 1, - aux_sym__unquoted_in_list_token3, - STATE(3286), 1, + STATE(3321), 1, sym_comment, - ACTIONS(5099), 10, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - 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(5107), 19, + ACTIONS(3727), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, aux_sym__unquoted_in_list_token1, - [156220] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - STATE(3287), 1, - sym_comment, - ACTIONS(1528), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1530), 18, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [156273] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - STATE(3288), 1, - sym_comment, - ACTIONS(6231), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6249), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6245), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6247), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1530), 8, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156332] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - ACTIONS(6251), 1, - anon_sym_bit_DASHand, - STATE(3289), 1, - sym_comment, - ACTIONS(6231), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6249), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6245), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6247), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1530), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156393] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - ACTIONS(6251), 1, - anon_sym_bit_DASHand, - ACTIONS(6253), 1, - anon_sym_bit_DASHxor, - STATE(3290), 1, - sym_comment, - ACTIONS(6231), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6249), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6245), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6247), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1530), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156456] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - ACTIONS(6251), 1, - anon_sym_bit_DASHand, - ACTIONS(6253), 1, - anon_sym_bit_DASHxor, - ACTIONS(6255), 1, - anon_sym_bit_DASHor, - STATE(3291), 1, - sym_comment, - ACTIONS(6231), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6249), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6245), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6247), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1530), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156521] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - ACTIONS(6251), 1, - anon_sym_bit_DASHand, - ACTIONS(6253), 1, - anon_sym_bit_DASHxor, - ACTIONS(6255), 1, - anon_sym_bit_DASHor, - ACTIONS(6257), 1, - anon_sym_and, - STATE(3292), 1, - sym_comment, - ACTIONS(6231), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6249), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1530), 4, + ACTIONS(3729), 23, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(6245), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6247), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [156588] = 18, + anon_sym_DOT, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [157151] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - ACTIONS(6251), 1, - anon_sym_bit_DASHand, - ACTIONS(6253), 1, - anon_sym_bit_DASHxor, - ACTIONS(6255), 1, - anon_sym_bit_DASHor, - ACTIONS(6257), 1, - anon_sym_and, - ACTIONS(6259), 1, - anon_sym_xor, - STATE(3293), 1, + ACTIONS(6358), 1, + anon_sym_DOT2, + STATE(3322), 1, sym_comment, - ACTIONS(6231), 2, + ACTIONS(213), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6237), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(215), 24, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6249), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1530), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(6245), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6247), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [156657] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, - anon_sym_PLUS, - ACTIONS(6251), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(6253), 1, anon_sym_bit_DASHxor, - ACTIONS(6255), 1, anon_sym_bit_DASHor, - ACTIONS(6257), 1, anon_sym_and, - ACTIONS(6259), 1, anon_sym_xor, - ACTIONS(6261), 1, anon_sym_or, - STATE(3294), 1, + [157194] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3323), 1, sym_comment, - ACTIONS(1530), 2, + ACTIONS(3731), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3733), 23, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(6231), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6237), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6249), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6245), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6247), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [156728] = 5, + anon_sym_DOT, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [157235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6263), 1, - anon_sym_DOT2, - STATE(3295), 1, + STATE(3324), 1, sym_comment, - ACTIONS(3103), 8, + ACTIONS(3745), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3105), 21, + ACTIONS(3747), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -326774,14 +331332,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [156771] = 5, + [157276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_SEMI, - STATE(3296), 1, + STATE(3325), 1, sym_comment, - ACTIONS(213), 7, + ACTIONS(3329), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -326789,12 +331345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(3331), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -326812,12 +331369,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [156814] = 4, + [157317] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, + STATE(3326), 1, sym_comment, - ACTIONS(3665), 7, + ACTIONS(3749), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -326825,7 +331382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3667), 23, + ACTIONS(3751), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326849,12 +331406,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [156855] = 4, + [157358] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3298), 1, + STATE(3327), 1, sym_comment, - ACTIONS(3659), 7, + ACTIONS(3755), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -326862,7 +331419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3661), 23, + ACTIONS(3757), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326886,12 +331443,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [156896] = 4, + [157399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3299), 1, + STATE(3328), 1, sym_comment, - ACTIONS(3651), 7, + ACTIONS(3759), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -326899,7 +331456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3653), 23, + ACTIONS(3761), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326923,14 +331480,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [156937] = 5, + [157440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6267), 1, - anon_sym_SEMI, - STATE(3300), 1, + STATE(3329), 1, sym_comment, - ACTIONS(213), 7, + ACTIONS(3767), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -326938,12 +331493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(3769), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -326961,12 +331517,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [156980] = 4, + [157481] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3301), 1, + STATE(3330), 1, sym_comment, - ACTIONS(3647), 7, + ACTIONS(3771), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -326974,7 +331530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3649), 23, + ACTIONS(3773), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326998,12 +331554,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157021] = 4, + [157522] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3302), 1, + STATE(3331), 1, sym_comment, - ACTIONS(3639), 7, + ACTIONS(3775), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -327011,7 +331567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3641), 23, + ACTIONS(3777), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327035,12 +331591,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157062] = 4, + [157563] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3303), 1, + STATE(3332), 1, sym_comment, - ACTIONS(3635), 7, + ACTIONS(3612), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -327048,7 +331604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3637), 23, + ACTIONS(3614), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327072,12 +331628,50 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157103] = 4, + [157604] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3304), 1, + ACTIONS(6360), 1, + anon_sym_DOT2, + STATE(3333), 1, + sym_comment, + ACTIONS(213), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(215), 24, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [157647] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3334), 1, sym_comment, - ACTIONS(3615), 7, + ACTIONS(3604), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -327085,7 +331679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3617), 23, + ACTIONS(3606), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327109,12 +331703,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157144] = 4, + [157688] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3305), 1, + ACTIONS(1538), 1, + anon_sym_EQ_GT, + ACTIONS(6358), 1, + anon_sym_DOT2, + STATE(3335), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1623), 23, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [157733] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3336), 1, sym_comment, - ACTIONS(3611), 7, + ACTIONS(3779), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -327122,7 +331755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3613), 23, + ACTIONS(3781), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327146,28 +331779,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157185] = 5, + [157774] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5205), 1, - anon_sym_DOT2, - STATE(3306), 1, + ACTIONS(6362), 1, + anon_sym_SEMI, + STATE(3337), 1, sym_comment, - ACTIONS(2806), 8, + ACTIONS(213), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2808), 21, + ACTIONS(215), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -327184,12 +331817,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157228] = 4, + [157817] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, + STATE(3338), 1, sym_comment, - ACTIONS(3557), 7, + ACTIONS(3596), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -327197,7 +331830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3559), 23, + ACTIONS(3598), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327221,10 +331854,87 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157269] = 4, + [157858] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + ACTIONS(6356), 1, + anon_sym_DOT2, + STATE(3339), 1, + sym_comment, + ACTIONS(215), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1364), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1361), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + 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, + [157903] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5216), 1, + aux_sym__unquoted_in_list_token3, + STATE(3340), 1, + sym_comment, + ACTIONS(5192), 10, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + 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(5200), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + aux_sym__unquoted_in_list_token1, + [157946] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3341), 1, sym_comment, ACTIONS(3513), 7, anon_sym_DOLLAR, @@ -327258,12 +331968,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157310] = 4, + [157987] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, + STATE(3342), 1, sym_comment, - ACTIONS(3505), 7, + ACTIONS(3509), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -327271,7 +331981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3507), 23, + ACTIONS(3511), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327295,12 +332005,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157351] = 4, + [158028] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, + ACTIONS(6344), 1, + aux_sym__immediate_decimal_token2, + STATE(3343), 1, sym_comment, - ACTIONS(3501), 7, + ACTIONS(2906), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -327308,13 +332020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3503), 23, + ACTIONS(2908), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -327332,12 +332043,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157392] = 4, + [158071] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3311), 1, + ACTIONS(6364), 1, + anon_sym_SEMI, + STATE(3344), 1, sym_comment, - ACTIONS(3331), 7, + ACTIONS(213), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -327345,13 +332058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3333), 23, + ACTIONS(215), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -327369,29 +332081,183 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157433] = 4, + [158114] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + ACTIONS(6386), 1, + anon_sym_bit_DASHand, + ACTIONS(6388), 1, + anon_sym_bit_DASHxor, + ACTIONS(6390), 1, + anon_sym_bit_DASHor, + ACTIONS(6392), 1, + anon_sym_and, + ACTIONS(6394), 1, + anon_sym_xor, + ACTIONS(6396), 1, + anon_sym_or, + STATE(3345), 1, + sym_comment, + ACTIONS(1553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6384), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6370), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [158185] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + ACTIONS(6386), 1, + anon_sym_bit_DASHand, + ACTIONS(6388), 1, + anon_sym_bit_DASHxor, + ACTIONS(6390), 1, + anon_sym_bit_DASHor, + ACTIONS(6392), 1, + anon_sym_and, + ACTIONS(6394), 1, + anon_sym_xor, + STATE(3346), 1, + sym_comment, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6384), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1553), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(6370), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [158254] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + ACTIONS(6386), 1, + anon_sym_bit_DASHand, + ACTIONS(6388), 1, + anon_sym_bit_DASHxor, + ACTIONS(6390), 1, + anon_sym_bit_DASHor, + ACTIONS(6392), 1, + anon_sym_and, + STATE(3347), 1, + sym_comment, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6384), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1553), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + ACTIONS(6370), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [158321] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6333), 1, + aux_sym__immediate_decimal_token2, + STATE(3348), 1, sym_comment, - ACTIONS(3034), 6, + ACTIONS(2832), 8, anon_sym_DASH, anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3036), 24, + aux_sym_unquoted_token1, + ACTIONS(2834), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -327406,28 +332272,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [157474] = 4, + [158364] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + ACTIONS(6386), 1, + anon_sym_bit_DASHand, + ACTIONS(6388), 1, + anon_sym_bit_DASHxor, + ACTIONS(6390), 1, + anon_sym_bit_DASHor, + STATE(3349), 1, sym_comment, - ACTIONS(2874), 6, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6384), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6370), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158429] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + ACTIONS(6386), 1, + anon_sym_bit_DASHand, + ACTIONS(6388), 1, + anon_sym_bit_DASHxor, + STATE(3350), 1, + sym_comment, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6384), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6370), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158492] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3351), 1, + sym_comment, + ACTIONS(3505), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2876), 24, + aux_sym__unquoted_in_list_token1, + ACTIONS(3507), 23, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -327443,32 +332404,562 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [157515] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [158533] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6199), 1, - anon_sym_DOT2, - STATE(3284), 1, - aux_sym_cell_path_repeat1, - STATE(3314), 1, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + ACTIONS(6386), 1, + anon_sym_bit_DASHand, + STATE(3352), 1, sym_comment, - STATE(3469), 1, - sym_path, - ACTIONS(1440), 7, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6384), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6370), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158594] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6368), 1, anon_sym_DASH, - anon_sym__, + ACTIONS(6378), 1, + anon_sym_PLUS, + STATE(3353), 1, + sym_comment, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6384), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6370), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158653] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + STATE(3354), 1, + sym_comment, + ACTIONS(1551), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1553), 18, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [158706] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3355), 1, + sym_comment, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1551), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1553), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [158749] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3356), 1, + sym_comment, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 3, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1553), 21, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [158796] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + STATE(3357), 1, + sym_comment, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6370), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + 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, + [158853] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6398), 1, + anon_sym_SEMI, + STATE(3358), 1, + sym_comment, + ACTIONS(213), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(215), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [158896] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + STATE(3359), 1, + sym_comment, + ACTIONS(1551), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1553), 20, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [158947] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6400), 1, + sym__long_flag_identifier, + STATE(3360), 1, + sym_comment, + ACTIONS(3153), 12, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3157), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [158990] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH, + ACTIONS(6378), 1, + anon_sym_PLUS, + STATE(3361), 1, + sym_comment, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 14, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [159045] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3362), 1, + sym_comment, + ACTIONS(1637), 7, + anon_sym_DOLLAR, + anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1442), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(1639), 23, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159086] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5959), 1, + aux_sym_unquoted_token3, + STATE(3363), 1, + sym_comment, + ACTIONS(1375), 29, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [159127] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3364), 1, + sym_comment, + ACTIONS(3501), 7, anon_sym_DOLLAR, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3503), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159168] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token2, + STATE(3365), 1, + sym_comment, + ACTIONS(2984), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2986), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -327483,12 +332974,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [157562] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159211] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1377), 1, + anon_sym_LBRACE, + ACTIONS(5959), 1, + aux_sym_unquoted_token3, + STATE(3366), 1, + sym_comment, + ACTIONS(1375), 28, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [159254] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6404), 1, anon_sym_SEMI, - STATE(3315), 1, + STATE(3367), 1, sym_comment, ACTIONS(213), 7, anon_sym_DOLLAR, @@ -327521,12 +333052,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157605] = 5, + [159297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6271), 1, + ACTIONS(6406), 1, anon_sym_SEMI, - STATE(3316), 1, + STATE(3368), 1, sym_comment, ACTIONS(213), 7, anon_sym_DOLLAR, @@ -327559,12 +333090,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157648] = 5, + [159340] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6273), 1, + ACTIONS(6408), 1, anon_sym_SEMI, - STATE(3317), 1, + STATE(3369), 1, sym_comment, ACTIONS(213), 7, anon_sym_DOLLAR, @@ -327597,66 +333128,65 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157691] = 5, + [159383] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - aux_sym_unquoted_token5, - STATE(3318), 1, + ACTIONS(6410), 1, + anon_sym_SEMI, + STATE(3370), 1, sym_comment, - ACTIONS(1495), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1497), 24, + ACTIONS(213), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [157734] = 4, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(215), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159426] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3319), 1, + ACTIONS(6412), 1, + anon_sym_SEMI, + STATE(3371), 1, sym_comment, - ACTIONS(2782), 6, + ACTIONS(213), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2784), 24, + aux_sym__unquoted_in_list_token1, + ACTIONS(215), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -327672,15 +333202,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [157775] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159469] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6275), 1, + ACTIONS(6052), 1, anon_sym_DOT2, - STATE(3320), 1, + STATE(3085), 1, + sym_path, + STATE(3372), 1, sym_comment, - ACTIONS(3129), 8, - anon_sym_DOLLAR, + STATE(3602), 1, + sym_cell_path, + ACTIONS(6416), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -327688,11 +333223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3131), 21, + ACTIONS(6414), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_null, @@ -327708,33 +333244,28 @@ 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, - [157818] = 6, + [159516] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6277), 1, + ACTIONS(5298), 1, anon_sym_DOT2, - STATE(3469), 1, - sym_path, - STATE(3321), 2, + STATE(3373), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 7, + ACTIONS(2832), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1413), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(2834), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -327749,31 +333280,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [157863] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159559] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6280), 1, + ACTIONS(6418), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6282), 1, + ACTIONS(6420), 1, aux_sym__immediate_decimal_token2, - STATE(3322), 1, + STATE(3374), 1, sym_comment, - ACTIONS(2782), 7, + ACTIONS(2832), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2784), 21, + aux_sym_unquoted_token1, + ACTIONS(2834), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -327788,32 +333321,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [157908] = 7, + [159604] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_DOT2, - STATE(3258), 1, - sym_path, - STATE(3323), 1, + STATE(3375), 1, sym_comment, - STATE(3492), 1, - sym_cell_path, - ACTIONS(1399), 7, + ACTIONS(3479), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1401), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(3481), 23, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -327828,28 +333356,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [157955] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159645] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6287), 1, - anon_sym_DOT2, - STATE(3324), 1, + STATE(3376), 1, sym_comment, - ACTIONS(3123), 8, + ACTIONS(3475), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3125), 21, + ACTIONS(3477), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -327866,28 +333395,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [157998] = 4, + [159686] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3325), 1, + STATE(3377), 1, sym_comment, - ACTIONS(2806), 6, + ACTIONS(3471), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2808), 24, + aux_sym__unquoted_in_list_token1, + ACTIONS(3473), 23, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -327903,12 +333430,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [158039] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159727] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3326), 1, + STATE(3378), 1, sym_comment, - ACTIONS(3303), 7, + ACTIONS(3467), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -327916,7 +333445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3305), 23, + ACTIONS(3469), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327940,30 +333469,109 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158080] = 4, - ACTIONS(105), 1, + [159768] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5783), 1, - aux_sym_unquoted_token3, - STATE(3327), 1, + ACTIONS(6422), 1, + anon_sym_SEMI, + STATE(3379), 1, sym_comment, - ACTIONS(1369), 29, - anon_sym_GT, + ACTIONS(213), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(215), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159811] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6424), 1, + anon_sym_SEMI, + STATE(3380), 1, + sym_comment, + ACTIONS(213), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(215), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159854] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1538), 1, + anon_sym_LBRACE, + ACTIONS(6360), 1, + anon_sym_DOT2, + ACTIONS(6426), 1, + anon_sym_DASH, + STATE(3381), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_GT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1623), 22, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -327977,27 +333585,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158121] = 4, + [159901] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3328), 1, + STATE(3382), 1, sym_comment, - ACTIONS(1501), 8, + ACTIONS(3463), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1503), 22, + ACTIONS(3465), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328014,27 +333622,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158162] = 4, + [159942] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3329), 1, + STATE(3383), 1, sym_comment, - ACTIONS(1491), 8, + ACTIONS(3459), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1493), 22, + ACTIONS(3461), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328051,31 +333659,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158203] = 6, + [159983] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6295), 1, - anon_sym_DOT2, - STATE(3330), 1, + STATE(3384), 1, sym_comment, - ACTIONS(6297), 2, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6292), 8, + ACTIONS(3431), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6289), 19, + ACTIONS(3433), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328090,28 +333694,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [158248] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [160024] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6295), 1, - anon_sym_DOT2, - STATE(3331), 1, + ACTIONS(6429), 1, + anon_sym_SEMI, + STATE(3385), 1, sym_comment, - ACTIONS(213), 8, + ACTIONS(213), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 21, + ACTIONS(215), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328128,31 +333734,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158291] = 6, + [160067] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6295), 1, - anon_sym_DOT2, - STATE(3332), 1, + ACTIONS(6431), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6433), 1, + aux_sym__immediate_decimal_token2, + STATE(3386), 1, sym_comment, - ACTIONS(215), 2, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1358), 8, - anon_sym_DOLLAR, + ACTIONS(2906), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1355), 19, + aux_sym_unquoted_token1, + ACTIONS(2908), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328167,12 +333773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [158336] = 4, + [160112] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3333), 1, + STATE(3387), 1, sym_comment, - ACTIONS(3481), 7, + ACTIONS(1647), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -328180,13 +333786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3483), 23, + ACTIONS(1649), 23, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -328204,12 +333810,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158377] = 4, + [160153] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3334), 1, + STATE(3388), 1, sym_comment, - ACTIONS(3323), 7, + ACTIONS(3427), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -328217,7 +333823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3325), 23, + ACTIONS(3429), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -328241,27 +333847,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158418] = 4, + [160194] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3335), 1, + ACTIONS(6435), 1, + anon_sym_DOT2, + STATE(3389), 1, sym_comment, - ACTIONS(3477), 7, + ACTIONS(3212), 8, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3479), 23, + ACTIONS(3214), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328278,22 +333885,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158459] = 6, + [160237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1517), 1, - anon_sym_EQ_GT, - ACTIONS(6299), 1, - anon_sym_DOT2, - STATE(3336), 1, + STATE(3390), 1, sym_comment, - ACTIONS(1519), 5, + ACTIONS(4676), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1663), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1644), 23, + ACTIONS(1665), 23, anon_sym_DASH, anon_sym_in, anon_sym_STAR_STAR, @@ -328317,27 +333923,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158504] = 4, + [160280] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3337), 1, + ACTIONS(6437), 1, + anon_sym_DOT2, + ACTIONS(6439), 1, + aux_sym__immediate_decimal_token2, + STATE(3391), 1, sym_comment, - ACTIONS(3449), 7, - anon_sym_DOLLAR, + ACTIONS(2934), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3451), 23, + aux_sym_unquoted_token1, + ACTIONS(2936), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328352,34 +333962,30 @@ 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, - [158545] = 7, + [160325] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_DOT2, - ACTIONS(6303), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6305), 1, - aux_sym__unquoted_in_list_token2, - STATE(3338), 1, + ACTIONS(6441), 1, + anon_sym_QMARK2, + STATE(3392), 1, sym_comment, - ACTIONS(6066), 7, + ACTIONS(1419), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6064), 20, + aux_sym_unquoted_token1, + ACTIONS(1421), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328394,27 +334000,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [158592] = 4, + [160368] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3339), 1, + ACTIONS(6052), 1, + anon_sym_DOT2, + STATE(3085), 1, + sym_path, + STATE(3393), 1, sym_comment, - ACTIONS(3445), 7, - anon_sym_DOLLAR, + STATE(3606), 1, + sym_cell_path, + ACTIONS(6445), 7, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3447), 23, + ACTIONS(6443), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328429,29 +334040,30 @@ 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, - [158633] = 4, + [160415] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + ACTIONS(6441), 1, + anon_sym_QMARK2, + STATE(3394), 1, sym_comment, - ACTIONS(3441), 7, - anon_sym_DOLLAR, + ACTIONS(1419), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3443), 23, + aux_sym_unquoted_token1, + ACTIONS(1421), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328466,29 +334078,31 @@ 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, - [158674] = 4, + [160458] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, + ACTIONS(6420), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6447), 1, + anon_sym_DOT2, + STATE(3395), 1, sym_comment, - ACTIONS(3437), 7, - anon_sym_DOLLAR, + ACTIONS(2832), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3439), 23, + aux_sym_unquoted_token1, + ACTIONS(2834), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328503,29 +334117,28 @@ 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, - [158715] = 4, + [160503] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3342), 1, + ACTIONS(6449), 1, + anon_sym_DOT2, + STATE(3396), 1, sym_comment, - ACTIONS(3433), 7, + ACTIONS(3171), 8, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3435), 23, + ACTIONS(3173), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328542,27 +334155,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158756] = 4, + [160546] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3343), 1, + ACTIONS(6451), 1, + anon_sym_DOT2, + STATE(3397), 1, sym_comment, - ACTIONS(3429), 7, + ACTIONS(3198), 8, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3431), 23, + ACTIONS(3200), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328579,27 +334193,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158797] = 4, + [160589] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3344), 1, + ACTIONS(6453), 1, + anon_sym_DOT2, + STATE(3398), 1, sym_comment, - ACTIONS(3425), 7, + ACTIONS(3206), 8, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3427), 23, + ACTIONS(3208), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328616,32 +334231,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [158838] = 7, + [160632] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6199), 1, + ACTIONS(6356), 1, anon_sym_DOT2, - STATE(3314), 1, - sym_path, - STATE(3345), 1, + STATE(3399), 1, sym_comment, - STATE(3508), 1, - sym_cell_path, - ACTIONS(1399), 7, + ACTIONS(6352), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6458), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1401), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(6455), 19, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328656,27 +334270,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [158885] = 4, + [160677] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3346), 1, + ACTIONS(6461), 1, + anon_sym_DOT2, + ACTIONS(6463), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6465), 1, + aux_sym__unquoted_in_list_token2, + STATE(3400), 1, sym_comment, - ACTIONS(3417), 7, - anon_sym_DOLLAR, + ACTIONS(6272), 7, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3419), 23, + ACTIONS(6270), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328691,29 +334310,30 @@ 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, - [158926] = 4, + [160724] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3347), 1, + ACTIONS(6295), 1, + aux_sym__immediate_decimal_token2, + STATE(3401), 1, sym_comment, - ACTIONS(3413), 7, - anon_sym_DOLLAR, + ACTIONS(2906), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3415), 23, + aux_sym_unquoted_token1, + ACTIONS(2908), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328728,14 +334348,12 @@ 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, - [158967] = 4, + [160767] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3348), 1, + STATE(3402), 1, sym_comment, - ACTIONS(3409), 7, + ACTIONS(3375), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -328743,7 +334361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3411), 23, + ACTIONS(3377), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -328767,27 +334385,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159008] = 4, + [160808] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3349), 1, + STATE(3403), 1, sym_comment, - ACTIONS(3327), 7, + ACTIONS(1509), 8, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3329), 23, + ACTIONS(1511), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328804,12 +334422,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159049] = 4, + [160849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3350), 1, + STATE(3404), 1, sym_comment, - ACTIONS(3405), 7, + ACTIONS(3343), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -328817,7 +334435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3407), 23, + ACTIONS(3345), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -328841,12 +334459,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159090] = 4, + [160890] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3351), 1, + STATE(3405), 1, sym_comment, - ACTIONS(3397), 7, + ACTIONS(3333), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -328854,7 +334472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3399), 23, + ACTIONS(3335), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -328878,12 +334496,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159131] = 4, + [160931] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3352), 1, + STATE(3406), 1, sym_comment, - ACTIONS(3393), 7, + ACTIONS(3351), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -328891,7 +334509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3395), 23, + ACTIONS(3353), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -328915,27 +334533,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159172] = 4, + [160972] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3353), 1, + ACTIONS(6467), 1, + anon_sym_DOT2, + STATE(3407), 1, sym_comment, - ACTIONS(3385), 7, + ACTIONS(3163), 8, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3387), 23, + ACTIONS(3165), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328952,31 +334571,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159213] = 6, + [161015] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3321), 1, - aux_sym_cell_path_repeat1, - STATE(3354), 1, + ACTIONS(6469), 1, + anon_sym_DOT2, + STATE(3408), 1, sym_comment, - STATE(3469), 1, - sym_path, - ACTIONS(1436), 7, + ACTIONS(3238), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1438), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(3240), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -328991,65 +334607,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [159258] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - aux_sym_unquoted_token5, - STATE(3355), 1, - sym_comment, - ACTIONS(1495), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1497), 24, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [159301] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [161058] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3356), 1, + STATE(3409), 1, sym_comment, - ACTIONS(3381), 7, + ACTIONS(1513), 8, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3383), 23, + ACTIONS(1515), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329066,32 +334646,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159342] = 7, + [161099] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6307), 1, + ACTIONS(6463), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6465), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6471), 1, anon_sym_DOT2, - STATE(3258), 1, - sym_path, - STATE(3357), 1, + STATE(3410), 1, sym_comment, - STATE(3475), 1, - sym_cell_path, - ACTIONS(1395), 7, + ACTIONS(6272), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1397), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(6270), 20, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329106,20 +334686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [159389] = 5, + [161146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_DOT2, - STATE(3358), 1, + ACTIONS(6340), 1, + aux_sym_unquoted_token5, + STATE(3411), 1, sym_comment, - ACTIONS(213), 5, + ACTIONS(1545), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(215), 24, + ACTIONS(1547), 24, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, @@ -329144,32 +334724,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159432] = 7, + [161189] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6303), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6305), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6310), 1, - anon_sym_DOT2, - STATE(3359), 1, + STATE(3412), 1, sym_comment, - ACTIONS(6066), 7, + ACTIONS(1437), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6064), 20, + aux_sym_unquoted_token1, + ACTIONS(1439), 22, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329184,27 +334761,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [159479] = 4, + [161230] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3360), 1, + ACTIONS(6473), 1, + anon_sym_DOT2, + ACTIONS(6476), 1, + aux_sym__immediate_decimal_token2, + STATE(3413), 1, sym_comment, - ACTIONS(3373), 7, - anon_sym_DOLLAR, + ACTIONS(2934), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3375), 23, + aux_sym_unquoted_token1, + ACTIONS(2936), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329219,29 +334800,29 @@ 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, - [159520] = 4, + [161275] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3361), 1, + STATE(3414), 1, sym_comment, - ACTIONS(3369), 7, - anon_sym_DOLLAR, + ACTIONS(1441), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3371), 23, + aux_sym_unquoted_token1, + ACTIONS(1443), 22, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329256,29 +334837,28 @@ 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, - [159561] = 4, + [161316] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3362), 1, + ACTIONS(6356), 1, + anon_sym_DOT2, + STATE(3415), 1, sym_comment, - ACTIONS(3365), 7, + ACTIONS(213), 8, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3367), 23, + ACTIONS(215), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329295,27 +334875,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159602] = 4, + [161359] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3363), 1, + ACTIONS(6333), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6478), 1, + anon_sym_DOT2, + STATE(3416), 1, sym_comment, - ACTIONS(3361), 7, - anon_sym_DOLLAR, + ACTIONS(2832), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3363), 23, + aux_sym_unquoted_token1, + ACTIONS(2834), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329330,29 +334914,113 @@ 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, - [159643] = 4, + [161404] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3364), 1, + ACTIONS(6340), 1, + aux_sym_unquoted_token5, + STATE(3417), 1, sym_comment, - ACTIONS(3357), 7, - anon_sym_DOLLAR, + ACTIONS(1545), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1547), 24, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [161447] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6483), 1, + anon_sym_DASH, + ACTIONS(6493), 1, + anon_sym_PLUS, + ACTIONS(6501), 1, + anon_sym_bit_DASHand, + ACTIONS(6503), 1, + anon_sym_bit_DASHxor, + STATE(3418), 1, + sym_comment, + ACTIONS(6481), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6487), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6491), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6495), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6499), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6497), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 5, + anon_sym_EQ_GT, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161509] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3419), 1, + sym_comment, + ACTIONS(1524), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3359), 23, + aux_sym_unquoted_token1, + ACTIONS(1526), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329367,29 +335035,29 @@ 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, - [159684] = 4, + [161549] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3365), 1, + ACTIONS(6505), 1, + anon_sym_DOT2, + STATE(3420), 1, sym_comment, - ACTIONS(3353), 7, - anon_sym_DOLLAR, + ACTIONS(3198), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3355), 23, + aux_sym_unquoted_token1, + ACTIONS(3200), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329404,14 +335072,12 @@ 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, - [159725] = 4, + [161591] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3366), 1, + STATE(3421), 1, sym_comment, - ACTIONS(3349), 7, + ACTIONS(1441), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -329419,13 +335085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3351), 23, + ACTIONS(1443), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -329443,24 +335108,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159766] = 4, + [161631] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3367), 1, + ACTIONS(6433), 1, + aux_sym__immediate_decimal_token2, + STATE(3422), 1, sym_comment, - ACTIONS(3345), 7, - anon_sym_DOLLAR, + ACTIONS(2906), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3347), 23, + aux_sym_unquoted_token1, + ACTIONS(2908), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -329478,14 +335145,56 @@ 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, - [159807] = 4, + [161673] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(3368), 1, + ACTIONS(6483), 1, + anon_sym_DASH, + ACTIONS(6493), 1, + anon_sym_PLUS, + STATE(3423), 1, + sym_comment, + ACTIONS(6481), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6487), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6491), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6495), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6497), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 9, + anon_sym_EQ_GT, + 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, + [161729] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3424), 1, sym_comment, - ACTIONS(3341), 7, + ACTIONS(1437), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -329493,13 +335202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3343), 23, + ACTIONS(1439), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -329517,12 +335225,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159848] = 4, + [161769] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3369), 1, + STATE(3425), 1, sym_comment, - ACTIONS(3335), 7, + ACTIONS(3256), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -329530,13 +335238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3337), 23, + ACTIONS(3258), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -329554,66 +335261,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159889] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DOT2, - STATE(3370), 1, - sym_comment, - ACTIONS(213), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(215), 24, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [159932] = 5, + [161809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6295), 1, - anon_sym_DOT2, - STATE(3371), 1, + STATE(3426), 1, sym_comment, - ACTIONS(6312), 8, + ACTIONS(1625), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6297), 21, + ACTIONS(1627), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329630,115 +335297,70 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159975] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6314), 1, - anon_sym_DOT2, - ACTIONS(6316), 1, - aux_sym__immediate_decimal_token2, - STATE(3372), 1, - sym_comment, - ACTIONS(2904), 7, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2906), 20, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - 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, - [160019] = 19, + [161849] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_EQ_GT, - ACTIONS(6320), 1, + ACTIONS(6483), 1, anon_sym_DASH, - ACTIONS(6330), 1, + ACTIONS(6493), 1, anon_sym_PLUS, - ACTIONS(6338), 1, - anon_sym_bit_DASHand, - ACTIONS(6340), 1, - anon_sym_bit_DASHxor, - ACTIONS(6342), 1, - anon_sym_bit_DASHor, - ACTIONS(6344), 1, - anon_sym_and, - ACTIONS(6346), 1, - anon_sym_xor, - ACTIONS(6348), 1, - anon_sym_or, - STATE(3373), 1, + STATE(3427), 1, sym_comment, - ACTIONS(6318), 2, + ACTIONS(1551), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6324), 2, + ACTIONS(6487), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, + ACTIONS(6491), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, + ACTIONS(1553), 19, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6336), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6322), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6334), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [160089] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [161899] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3374), 1, + ACTIONS(6507), 1, + anon_sym_DOT2, + STATE(3428), 1, sym_comment, - ACTIONS(6066), 7, - anon_sym_DOLLAR, + ACTIONS(3171), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6064), 22, + aux_sym_unquoted_token1, + ACTIONS(3173), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329753,14 +335375,12 @@ 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, - [160129] = 4, + [161941] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3375), 1, + STATE(3429), 1, sym_comment, - ACTIONS(6352), 7, + ACTIONS(5614), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -329768,7 +335388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6350), 22, + ACTIONS(5612), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -329791,62 +335411,96 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [160169] = 18, + [161981] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6320), 1, + ACTIONS(6483), 1, anon_sym_DASH, - ACTIONS(6330), 1, + ACTIONS(6493), 1, anon_sym_PLUS, - ACTIONS(6338), 1, - anon_sym_bit_DASHand, - ACTIONS(6340), 1, - anon_sym_bit_DASHxor, - ACTIONS(6342), 1, - anon_sym_bit_DASHor, - ACTIONS(6344), 1, - anon_sym_and, - ACTIONS(6346), 1, - anon_sym_xor, - STATE(3376), 1, + STATE(3430), 1, sym_comment, - ACTIONS(1530), 2, - anon_sym_EQ_GT, - anon_sym_or, - ACTIONS(6318), 2, + ACTIONS(6481), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6324), 2, + ACTIONS(6487), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, + ACTIONS(6491), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, + ACTIONS(6495), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6336), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6322), 4, + ACTIONS(6497), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1553), 13, anon_sym_in, + anon_sym_EQ_GT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6334), 4, + 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, + [162035] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3431), 1, + sym_comment, + ACTIONS(6487), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6491), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 3, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1553), 20, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [160237] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [162081] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3377), 1, + ACTIONS(6511), 1, + anon_sym_COMMA, + STATE(3432), 1, sym_comment, - ACTIONS(2806), 7, + ACTIONS(6513), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -329854,9 +335508,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2808), 22, + ACTIONS(6509), 21, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -329877,25 +335530,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [160277] = 4, + [162123] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3378), 1, + ACTIONS(6420), 1, + aux_sym__immediate_decimal_token2, + STATE(3433), 1, sym_comment, - ACTIONS(1576), 7, - anon_sym_DOLLAR, + ACTIONS(2832), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1578), 22, + aux_sym_unquoted_token1, + ACTIONS(2834), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -329911,18 +335567,12 @@ 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, - [160317] = 6, + [162165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6158), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6354), 1, - anon_sym_DOT2, - STATE(3379), 1, + STATE(3434), 1, sym_comment, - ACTIONS(2806), 7, + ACTIONS(1532), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -329930,13 +335580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2808), 20, + aux_sym_unquoted_token1, + ACTIONS(1534), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -329951,88 +335603,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [160361] = 6, + [162205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6359), 1, - anon_sym_COMMA, - STATE(3380), 1, + STATE(3435), 1, sym_comment, - ACTIONS(6364), 2, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6361), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6356), 19, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(6489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1551), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - 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, - [160405] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6190), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6366), 1, - aux_sym__immediate_decimal_token1, - STATE(3381), 1, - sym_comment, - ACTIONS(2782), 6, + anon_sym_LT2, + ACTIONS(1553), 22, anon_sym_DASH, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2784), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - 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, - [160449] = 4, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [162247] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3382), 1, + STATE(3436), 1, sym_comment, - ACTIONS(6370), 7, + ACTIONS(6517), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -330040,7 +335653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6368), 22, + ACTIONS(6515), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -330063,15 +335676,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [160489] = 5, + [162287] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3383), 1, + STATE(3437), 1, sym_comment, - ACTIONS(6297), 2, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6292), 7, + ACTIONS(2832), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -330079,7 +335689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6289), 20, + ACTIONS(2834), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -330100,126 +335710,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [160531] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_DASH, - ACTIONS(6330), 1, - anon_sym_PLUS, - ACTIONS(6338), 1, - anon_sym_bit_DASHand, - ACTIONS(6340), 1, - anon_sym_bit_DASHxor, - ACTIONS(6342), 1, - anon_sym_bit_DASHor, - ACTIONS(6344), 1, - anon_sym_and, - STATE(3384), 1, - sym_comment, - ACTIONS(6318), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6336), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1530), 3, - anon_sym_EQ_GT, - anon_sym_xor, - anon_sym_or, - ACTIONS(6322), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6334), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [160597] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_DASH, - ACTIONS(6330), 1, - anon_sym_PLUS, - ACTIONS(6338), 1, - anon_sym_bit_DASHand, - ACTIONS(6340), 1, - anon_sym_bit_DASHxor, - ACTIONS(6342), 1, - anon_sym_bit_DASHor, - STATE(3385), 1, - sym_comment, - ACTIONS(6318), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6336), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1530), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(6322), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6334), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [160661] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [162327] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6158), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6372), 1, - aux_sym__immediate_decimal_token1, - STATE(3386), 1, + ACTIONS(6521), 1, + anon_sym_COMMA, + STATE(3438), 1, sym_comment, - ACTIONS(2806), 6, + ACTIONS(6523), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2808), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6519), 21, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -330235,15 +335747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [160705] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [162369] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3387), 1, + STATE(3439), 1, sym_comment, - ACTIONS(6350), 2, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6377), 7, + ACTIONS(6354), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -330251,7 +335762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6374), 20, + ACTIONS(6352), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -330272,179 +335783,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [160747] = 15, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [162409] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6320), 1, + ACTIONS(6483), 1, anon_sym_DASH, - ACTIONS(6330), 1, + ACTIONS(6493), 1, anon_sym_PLUS, - ACTIONS(6338), 1, - anon_sym_bit_DASHand, - ACTIONS(6340), 1, - anon_sym_bit_DASHxor, - STATE(3388), 1, + STATE(3440), 1, sym_comment, - ACTIONS(6318), 2, + ACTIONS(1551), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6324), 2, + ACTIONS(6487), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, + ACTIONS(6491), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, + ACTIONS(6495), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6336), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6322), 4, + ACTIONS(1553), 17, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6334), 4, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 5, - anon_sym_EQ_GT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - [160809] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3389), 1, - sym_comment, - ACTIONS(215), 2, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1358), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1355), 20, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - 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, - [160851] = 14, + [162461] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6320), 1, + ACTIONS(6483), 1, anon_sym_DASH, - ACTIONS(6330), 1, + ACTIONS(6493), 1, anon_sym_PLUS, - ACTIONS(6338), 1, - anon_sym_bit_DASHand, - STATE(3390), 1, + STATE(3441), 1, sym_comment, - ACTIONS(6318), 2, + ACTIONS(6481), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6324), 2, + ACTIONS(6487), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, + ACTIONS(6491), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, + ACTIONS(6495), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6336), 2, + ACTIONS(6499), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6322), 4, + ACTIONS(6485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6334), 4, + ACTIONS(6497), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 6, + ACTIONS(1553), 7, anon_sym_EQ_GT, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [160911] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6219), 1, - aux_sym__immediate_decimal_token2, - STATE(3391), 1, - sym_comment, - ACTIONS(2806), 7, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2808), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - 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, - [160953] = 4, + [162519] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3392), 1, + STATE(3442), 1, sym_comment, - ACTIONS(6382), 7, + ACTIONS(3232), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -330452,7 +335885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6380), 22, + ACTIONS(3234), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -330475,59 +335908,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [160993] = 13, + [162559] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6320), 1, + ACTIONS(6483), 1, anon_sym_DASH, - ACTIONS(6330), 1, + ACTIONS(6493), 1, anon_sym_PLUS, - STATE(3393), 1, + ACTIONS(6501), 1, + anon_sym_bit_DASHand, + STATE(3443), 1, sym_comment, - ACTIONS(6318), 2, + ACTIONS(6481), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6324), 2, + ACTIONS(6487), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, + ACTIONS(6491), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, + ACTIONS(6495), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6336), 2, + ACTIONS(6499), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6322), 4, + ACTIONS(6485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6334), 4, + ACTIONS(6497), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 7, + ACTIONS(1553), 6, anon_sym_EQ_GT, - anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [161051] = 5, + [162619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token2, - STATE(3394), 1, + STATE(3444), 1, sym_comment, - ACTIONS(2782), 7, + ACTIONS(1513), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -330535,7 +335967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2784), 21, + aux_sym_unquoted_token1, + ACTIONS(1515), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -330557,29 +335990,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [161093] = 5, + [162659] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6384), 1, - aux_sym__immediate_decimal_token2, - STATE(3395), 1, + STATE(3445), 1, sym_comment, - ACTIONS(2874), 7, + ACTIONS(6527), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2876), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6525), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -330594,54 +336024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [161135] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_DASH, - ACTIONS(6330), 1, - anon_sym_PLUS, - STATE(3396), 1, - sym_comment, - ACTIONS(1528), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1530), 17, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [161187] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [162699] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3397), 1, + STATE(3446), 1, sym_comment, - ACTIONS(6388), 7, + ACTIONS(6272), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -330649,7 +336039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6386), 22, + ACTIONS(6270), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -330672,49 +336062,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161227] = 5, + [162739] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3398), 1, - sym_comment, - ACTIONS(6326), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1528), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1530), 22, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [161269] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3399), 1, + ACTIONS(6529), 1, + anon_sym_DOT2, + STATE(3447), 1, sym_comment, - ACTIONS(1454), 7, + ACTIONS(3206), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -330722,15 +336077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1456), 22, + aux_sym_unquoted_token1, + ACTIONS(3208), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -330745,51 +336099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [161309] = 7, + [162781] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3400), 1, - sym_comment, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1528), 3, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1530), 20, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [161355] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3401), 1, + STATE(3448), 1, sym_comment, - ACTIONS(1664), 7, + ACTIONS(1651), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -330797,7 +336112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1666), 22, + ACTIONS(1653), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -330820,140 +336135,159 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161395] = 12, + [162821] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6320), 1, + ACTIONS(6483), 1, anon_sym_DASH, - ACTIONS(6330), 1, + ACTIONS(6493), 1, anon_sym_PLUS, - STATE(3402), 1, + ACTIONS(6501), 1, + anon_sym_bit_DASHand, + ACTIONS(6503), 1, + anon_sym_bit_DASHxor, + ACTIONS(6531), 1, + anon_sym_bit_DASHor, + STATE(3449), 1, sym_comment, - ACTIONS(6318), 2, + ACTIONS(6481), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6324), 2, + ACTIONS(6487), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, + ACTIONS(6491), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, + ACTIONS(6495), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6322), 4, + ACTIONS(6499), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1553), 4, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(6485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6334), 4, + ACTIONS(6497), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 9, - anon_sym_EQ_GT, - 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, - [161451] = 9, + [162885] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6320), 1, + ACTIONS(6483), 1, anon_sym_DASH, - ACTIONS(6330), 1, + ACTIONS(6493), 1, anon_sym_PLUS, - STATE(3403), 1, + ACTIONS(6501), 1, + anon_sym_bit_DASHand, + ACTIONS(6503), 1, + anon_sym_bit_DASHxor, + ACTIONS(6531), 1, + anon_sym_bit_DASHor, + ACTIONS(6533), 1, + anon_sym_and, + STATE(3450), 1, sym_comment, - ACTIONS(1528), 2, + ACTIONS(6481), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6324), 2, + ACTIONS(6487), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, + ACTIONS(6491), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1530), 19, - anon_sym_in, - anon_sym_EQ_GT, + ACTIONS(6495), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(6499), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1553), 3, + anon_sym_EQ_GT, + anon_sym_xor, + anon_sym_or, + ACTIONS(6485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6497), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [162951] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6483), 1, + anon_sym_DASH, + ACTIONS(6493), 1, + anon_sym_PLUS, + ACTIONS(6501), 1, anon_sym_bit_DASHand, + ACTIONS(6503), 1, anon_sym_bit_DASHxor, + ACTIONS(6531), 1, anon_sym_bit_DASHor, + ACTIONS(6533), 1, anon_sym_and, + ACTIONS(6535), 1, anon_sym_xor, - anon_sym_or, - [161501] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_DASH, - ACTIONS(6330), 1, - anon_sym_PLUS, - STATE(3404), 1, + STATE(3451), 1, sym_comment, - ACTIONS(6318), 2, + ACTIONS(1553), 2, + anon_sym_EQ_GT, + anon_sym_or, + ACTIONS(6481), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6324), 2, + ACTIONS(6487), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, + ACTIONS(6491), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, + ACTIONS(6495), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6334), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 13, + ACTIONS(6499), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6485), 4, anon_sym_in, - anon_sym_EQ_GT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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, - [161555] = 4, + ACTIONS(6497), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [163019] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3405), 1, + STATE(3452), 1, sym_comment, - ACTIONS(1650), 7, + ACTIONS(1695), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -330961,7 +336295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1652), 22, + ACTIONS(1697), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -330984,26 +336318,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161595] = 4, + [163059] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3406), 1, + STATE(3453), 1, sym_comment, - ACTIONS(1580), 7, - anon_sym_DOLLAR, + ACTIONS(2832), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1582), 22, + aux_sym_unquoted_token1, + ACTIONS(2834), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -331018,14 +336354,12 @@ 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, - [161635] = 4, + [163099] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3407), 1, + STATE(3454), 1, sym_comment, - ACTIONS(1475), 7, + ACTIONS(2906), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -331033,7 +336367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1477), 22, + aux_sym_unquoted_token1, + ACTIONS(2908), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -331041,7 +336376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT2, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -331056,26 +336390,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [161675] = 4, + [163139] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3408), 1, + STATE(3455), 1, sym_comment, - ACTIONS(1654), 7, - anon_sym_DOLLAR, + ACTIONS(2984), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1656), 22, + aux_sym_unquoted_token1, + ACTIONS(2986), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -331090,28 +336426,28 @@ 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, - [161715] = 4, + [163179] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3409), 1, + STATE(3456), 1, sym_comment, - ACTIONS(1636), 7, - anon_sym_DOLLAR, + ACTIONS(3256), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1638), 22, + aux_sym_unquoted_token1, + ACTIONS(3258), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -331126,14 +336462,12 @@ 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, - [161755] = 4, + [163219] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3410), 1, + STATE(3457), 1, sym_comment, - ACTIONS(1646), 7, + ACTIONS(1691), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331141,7 +336475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1648), 22, + ACTIONS(1693), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331164,12 +336498,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161795] = 4, + [163259] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3411), 1, + STATE(3458), 1, sym_comment, - ACTIONS(5425), 7, + ACTIONS(6539), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331177,7 +336511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5423), 22, + ACTIONS(6537), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331200,48 +336534,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161835] = 4, + [163299] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3412), 1, - sym_comment, - ACTIONS(1658), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1660), 22, - anon_sym_LBRACK, + ACTIONS(6544), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - 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, + STATE(3459), 1, + sym_comment, + ACTIONS(6509), 2, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161875] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3413), 1, - sym_comment, - ACTIONS(213), 7, + ACTIONS(6546), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331249,9 +336552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(215), 22, + ACTIONS(6541), 19, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -331270,14 +336572,12 @@ 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, - [161915] = 4, + [163343] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3414), 1, + STATE(3460), 1, sym_comment, - ACTIONS(1524), 7, + ACTIONS(1679), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331285,7 +336585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1526), 22, + ACTIONS(1681), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331308,12 +336608,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161955] = 4, + [163383] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3415), 1, + STATE(3461), 1, sym_comment, - ACTIONS(6392), 7, + ACTIONS(1587), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331321,7 +336621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6390), 22, + ACTIONS(1589), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331344,12 +336644,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161995] = 4, + [163423] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3416), 1, + STATE(3462), 1, sym_comment, - ACTIONS(1491), 7, + ACTIONS(6352), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6458), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331357,7 +336660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1493), 22, + ACTIONS(6455), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331378,14 +336681,12 @@ 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, - [162035] = 4, + [163465] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3417), 1, + STATE(3463), 1, sym_comment, - ACTIONS(1600), 7, + ACTIONS(2984), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331393,7 +336694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1602), 22, + ACTIONS(2986), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331416,12 +336717,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162075] = 4, + [163505] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3418), 1, + STATE(3464), 1, sym_comment, - ACTIONS(1600), 7, + ACTIONS(2906), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331429,7 +336730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1602), 22, + ACTIONS(2908), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331452,12 +336753,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162115] = 4, + [163545] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3419), 1, + STATE(3465), 1, sym_comment, - ACTIONS(1632), 7, + ACTIONS(6525), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6552), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331465,7 +336769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1634), 22, + ACTIONS(6549), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331486,14 +336790,15 @@ 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, - [162155] = 4, + [163587] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3420), 1, + STATE(3466), 1, sym_comment, - ACTIONS(3034), 7, + ACTIONS(215), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1364), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331501,7 +336806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3036), 22, + ACTIONS(1361), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331522,52 +336827,100 @@ 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, - [162195] = 6, + [163629] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1517), 1, - anon_sym_LBRACE, - ACTIONS(6194), 1, + ACTIONS(1553), 1, + anon_sym_EQ_GT, + ACTIONS(6483), 1, anon_sym_DASH, - STATE(3421), 1, + ACTIONS(6493), 1, + anon_sym_PLUS, + ACTIONS(6501), 1, + anon_sym_bit_DASHand, + ACTIONS(6503), 1, + anon_sym_bit_DASHxor, + ACTIONS(6531), 1, + anon_sym_bit_DASHor, + ACTIONS(6533), 1, + anon_sym_and, + ACTIONS(6535), 1, + anon_sym_xor, + ACTIONS(6555), 1, + anon_sym_or, + STATE(3467), 1, sym_comment, - ACTIONS(1519), 5, + ACTIONS(6481), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(6487), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1644), 22, - anon_sym_in, + ACTIONS(6489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6491), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(6495), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(6499), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6497), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [162239] = 4, + [163699] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3422), 1, + ACTIONS(6557), 1, + anon_sym_DOT2, + STATE(3468), 1, + sym_comment, + ACTIONS(3212), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3214), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + 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, + [163741] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3469), 1, sym_comment, - ACTIONS(1616), 7, + ACTIONS(6561), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331575,7 +336928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1618), 22, + ACTIONS(6559), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331598,12 +336951,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162279] = 4, + [163781] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3423), 1, + STATE(3470), 1, sym_comment, - ACTIONS(6312), 7, + ACTIONS(1532), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331611,7 +336964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6297), 22, + ACTIONS(1534), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331634,12 +336987,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162319] = 4, + [163821] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3424), 1, + STATE(3471), 1, sym_comment, - ACTIONS(1596), 7, + ACTIONS(1671), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331647,7 +337000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1598), 22, + ACTIONS(1673), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331670,12 +337023,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162359] = 4, + [163861] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3425), 1, + STATE(3472), 1, sym_comment, - ACTIONS(3051), 7, + ACTIONS(1683), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331683,7 +337036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3053), 22, + ACTIONS(1685), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331706,12 +337059,101 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162399] = 4, + [163901] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3426), 1, + ACTIONS(1538), 1, + anon_sym_LBRACE, + ACTIONS(6426), 1, + anon_sym_DASH, + STATE(3473), 1, + sym_comment, + ACTIONS(1540), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1623), 22, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [163945] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACE, + ACTIONS(6565), 1, + anon_sym_DASH, + ACTIONS(6575), 1, + anon_sym_PLUS, + ACTIONS(6583), 1, + anon_sym_bit_DASHand, + ACTIONS(6585), 1, + anon_sym_bit_DASHxor, + ACTIONS(6587), 1, + anon_sym_bit_DASHor, + ACTIONS(6589), 1, + anon_sym_and, + ACTIONS(6591), 1, + anon_sym_xor, + ACTIONS(6593), 1, + anon_sym_or, + STATE(3474), 1, + sym_comment, + ACTIONS(6563), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6569), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6571), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6573), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6577), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6581), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6567), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6579), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164015] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3475), 1, sym_comment, - ACTIONS(1604), 7, + ACTIONS(213), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331719,7 +337161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1606), 22, + ACTIONS(215), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331742,12 +337184,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162439] = 4, + [164055] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3427), 1, + STATE(3476), 1, sym_comment, - ACTIONS(1620), 7, + ACTIONS(1619), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331755,7 +337197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1622), 22, + ACTIONS(1621), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331778,63 +337220,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162479] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_LBRACE, - ACTIONS(6396), 1, - anon_sym_DASH, - ACTIONS(6406), 1, - anon_sym_PLUS, - ACTIONS(6414), 1, - anon_sym_bit_DASHand, - ACTIONS(6416), 1, - anon_sym_bit_DASHxor, - ACTIONS(6418), 1, - anon_sym_bit_DASHor, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_xor, - ACTIONS(6424), 1, - anon_sym_or, - STATE(3428), 1, - sym_comment, - ACTIONS(6394), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6400), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6402), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6412), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6398), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6410), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [162549] = 4, + [164095] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3429), 1, + STATE(3477), 1, sym_comment, - ACTIONS(1507), 7, + ACTIONS(1619), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331842,7 +337233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1509), 22, + ACTIONS(1621), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331865,62 +337256,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162589] = 18, + [164135] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6565), 1, anon_sym_DASH, - ACTIONS(6406), 1, + ACTIONS(6575), 1, anon_sym_PLUS, - ACTIONS(6414), 1, + ACTIONS(6583), 1, anon_sym_bit_DASHand, - ACTIONS(6416), 1, + ACTIONS(6585), 1, anon_sym_bit_DASHxor, - ACTIONS(6418), 1, + ACTIONS(6587), 1, anon_sym_bit_DASHor, - ACTIONS(6420), 1, + ACTIONS(6589), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6591), 1, anon_sym_xor, - STATE(3430), 1, + STATE(3478), 1, sym_comment, - ACTIONS(1530), 2, + ACTIONS(1553), 2, anon_sym_LBRACE, anon_sym_or, - ACTIONS(6394), 2, + ACTIONS(6563), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, + ACTIONS(6577), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6412), 2, + ACTIONS(6581), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6398), 4, + ACTIONS(6567), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6410), 4, + ACTIONS(6579), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [162657] = 4, + [164203] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3431), 1, + STATE(3479), 1, sym_comment, - ACTIONS(1624), 7, + ACTIONS(1513), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -331928,7 +337319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1626), 22, + ACTIONS(1515), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -331951,97 +337342,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162697] = 17, + [164243] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6565), 1, anon_sym_DASH, - ACTIONS(6406), 1, + ACTIONS(6575), 1, anon_sym_PLUS, - ACTIONS(6414), 1, + ACTIONS(6583), 1, anon_sym_bit_DASHand, - ACTIONS(6416), 1, + ACTIONS(6585), 1, anon_sym_bit_DASHxor, - ACTIONS(6418), 1, + ACTIONS(6587), 1, anon_sym_bit_DASHor, - ACTIONS(6420), 1, + ACTIONS(6589), 1, anon_sym_and, - STATE(3432), 1, + STATE(3480), 1, sym_comment, - ACTIONS(6394), 2, + ACTIONS(6563), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, + ACTIONS(6577), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6412), 2, + ACTIONS(6581), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1530), 3, + ACTIONS(1553), 3, anon_sym_LBRACE, anon_sym_xor, anon_sym_or, - ACTIONS(6398), 4, + ACTIONS(6567), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6410), 4, + ACTIONS(6579), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [162763] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3433), 1, - sym_comment, - ACTIONS(1475), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1477), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [162803] = 4, + [164309] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3434), 1, + STATE(3481), 1, sym_comment, - ACTIONS(2874), 7, + ACTIONS(1633), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -332049,7 +337404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2876), 22, + ACTIONS(1635), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -332072,64 +337427,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162843] = 16, + [164349] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6565), 1, anon_sym_DASH, - ACTIONS(6406), 1, + ACTIONS(6575), 1, anon_sym_PLUS, - ACTIONS(6414), 1, + ACTIONS(6583), 1, anon_sym_bit_DASHand, - ACTIONS(6416), 1, + ACTIONS(6585), 1, anon_sym_bit_DASHxor, - ACTIONS(6418), 1, + ACTIONS(6587), 1, anon_sym_bit_DASHor, - STATE(3435), 1, + STATE(3482), 1, sym_comment, - ACTIONS(6394), 2, + ACTIONS(6563), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, + ACTIONS(6577), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6412), 2, + ACTIONS(6581), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1530), 4, + ACTIONS(1553), 4, anon_sym_LBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(6398), 4, + ACTIONS(6567), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6410), 4, + ACTIONS(6579), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [162907] = 6, + [164413] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6426), 1, + ACTIONS(6595), 1, anon_sym_DOT2, - ACTIONS(6429), 1, - aux_sym__immediate_decimal_token2, - STATE(3436), 1, + STATE(3483), 1, sym_comment, - ACTIONS(2904), 7, + ACTIONS(3163), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -332137,7 +337490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2906), 20, + aux_sym_unquoted_token1, + ACTIONS(3165), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -332158,61 +337512,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [162951] = 15, + [164455] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6565), 1, anon_sym_DASH, - ACTIONS(6406), 1, + ACTIONS(6575), 1, anon_sym_PLUS, - ACTIONS(6414), 1, + ACTIONS(6583), 1, anon_sym_bit_DASHand, - ACTIONS(6416), 1, + ACTIONS(6585), 1, anon_sym_bit_DASHxor, - STATE(3437), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6394), 2, + ACTIONS(6563), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, + ACTIONS(6577), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6412), 2, + ACTIONS(6581), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6398), 4, + ACTIONS(6567), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6410), 4, + ACTIONS(6579), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 5, + ACTIONS(1553), 5, anon_sym_LBRACE, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [163013] = 5, + [164517] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6433), 1, - anon_sym_COMMA, - STATE(3438), 1, + STATE(3485), 1, sym_comment, - ACTIONS(6435), 7, + ACTIONS(6599), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -332220,8 +337572,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6431), 21, + ACTIONS(6597), 22, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -332242,62 +337595,97 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [163055] = 14, + [164557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + STATE(3486), 1, + sym_comment, + ACTIONS(1657), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6604), 7, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(6406), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(6601), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + 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, + [164599] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6565), 1, + anon_sym_DASH, + ACTIONS(6575), 1, anon_sym_PLUS, - ACTIONS(6414), 1, + ACTIONS(6583), 1, anon_sym_bit_DASHand, - STATE(3439), 1, + STATE(3487), 1, sym_comment, - ACTIONS(6394), 2, + ACTIONS(6563), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, + ACTIONS(6577), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6412), 2, + ACTIONS(6581), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6398), 4, + ACTIONS(6567), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6410), 4, + ACTIONS(6579), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 6, + ACTIONS(1553), 6, anon_sym_LBRACE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [163115] = 6, + [164659] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6219), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6437), 1, + ACTIONS(6607), 1, anon_sym_DOT2, - STATE(3440), 1, + STATE(3488), 1, sym_comment, - ACTIONS(2806), 7, + ACTIONS(3238), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -332305,7 +337693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2808), 20, + aux_sym_unquoted_token1, + ACTIONS(3240), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -332326,44 +337715,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [163159] = 13, + [164701] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6565), 1, anon_sym_DASH, - ACTIONS(6406), 1, + ACTIONS(6575), 1, anon_sym_PLUS, - STATE(3441), 1, + STATE(3489), 1, sym_comment, - ACTIONS(6394), 2, + ACTIONS(6563), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, + ACTIONS(6577), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6412), 2, + ACTIONS(6581), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6398), 4, + ACTIONS(6567), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6410), 4, + ACTIONS(6579), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 7, + ACTIONS(1553), 7, anon_sym_LBRACE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, @@ -332371,14 +337760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163217] = 5, + [164759] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6440), 1, - anon_sym_COMMA, - STATE(3442), 1, + STATE(3490), 1, sym_comment, - ACTIONS(6442), 7, + ACTIONS(3271), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -332386,8 +337773,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6364), 21, + ACTIONS(3273), 22, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -332408,31 +337796,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [163259] = 10, + [164799] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6565), 1, anon_sym_DASH, - ACTIONS(6406), 1, + ACTIONS(6575), 1, anon_sym_PLUS, - STATE(3443), 1, + STATE(3491), 1, sym_comment, - ACTIONS(1528), 2, + ACTIONS(1551), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, + ACTIONS(6577), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1530), 17, + ACTIONS(1553), 17, anon_sym_in, anon_sym_LBRACE, anon_sym_EQ_EQ, @@ -332450,12 +337838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163311] = 4, + [164851] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3444), 1, + STATE(3492), 1, sym_comment, - ACTIONS(1572), 7, + ACTIONS(1675), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -332463,7 +337851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1574), 22, + ACTIONS(1677), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -332486,21 +337874,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [163351] = 5, + [164891] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3445), 1, + STATE(3493), 1, sym_comment, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1528), 5, + ACTIONS(1551), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1530), 22, + ACTIONS(1553), 22, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, @@ -332523,12 +337911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163393] = 4, + [164933] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3446), 1, + STATE(3494), 1, sym_comment, - ACTIONS(2782), 7, + ACTIONS(1663), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -332536,7 +337924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2784), 22, + ACTIONS(1665), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -332559,25 +337947,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [163433] = 7, + [164973] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3447), 1, + STATE(3495), 1, sym_comment, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1528), 3, + ACTIONS(1551), 3, anon_sym_GT, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1530), 20, + ACTIONS(1553), 20, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, @@ -332598,29 +337986,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163479] = 5, + [165019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6444), 1, - anon_sym_QMARK2, - STATE(3448), 1, + STATE(3496), 1, sym_comment, - ACTIONS(1464), 7, + ACTIONS(1655), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1466), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1657), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -332635,41 +338020,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [163521] = 12, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [165059] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6565), 1, anon_sym_DASH, - ACTIONS(6406), 1, + ACTIONS(6575), 1, anon_sym_PLUS, - STATE(3449), 1, + STATE(3497), 1, sym_comment, - ACTIONS(6394), 2, + ACTIONS(6563), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, + ACTIONS(6577), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6398), 4, + ACTIONS(6567), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6410), 4, + ACTIONS(6579), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 9, + ACTIONS(1553), 9, anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, @@ -332679,49 +338066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163577] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6444), 1, - anon_sym_QMARK2, - STATE(3450), 1, - sym_comment, - ACTIONS(1464), 7, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1466), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - 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, - [163619] = 4, + [165115] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3451), 1, + STATE(3498), 1, sym_comment, - ACTIONS(1454), 7, + ACTIONS(1687), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -332729,7 +338079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1456), 22, + ACTIONS(1689), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -332752,28 +338102,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [163659] = 9, + [165155] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6565), 1, anon_sym_DASH, - ACTIONS(6406), 1, + ACTIONS(6575), 1, anon_sym_PLUS, - STATE(3452), 1, + STATE(3499), 1, sym_comment, - ACTIONS(1528), 2, + ACTIONS(1551), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1530), 19, + ACTIONS(1553), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_bit_DASHshl, @@ -332793,12 +338143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163709] = 4, + [165205] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3453), 1, + STATE(3500), 1, sym_comment, - ACTIONS(1628), 7, + ACTIONS(1607), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -332806,7 +338156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1630), 22, + ACTIONS(1609), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -332829,36 +338179,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [163749] = 11, + [165245] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6565), 1, anon_sym_DASH, - ACTIONS(6406), 1, + ACTIONS(6575), 1, anon_sym_PLUS, - STATE(3454), 1, + STATE(3501), 1, sym_comment, - ACTIONS(6394), 2, + ACTIONS(6563), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6400), 2, + ACTIONS(6569), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6402), 2, + ACTIONS(6571), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, + ACTIONS(6573), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, + ACTIONS(6577), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6410), 4, + ACTIONS(6579), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 13, + ACTIONS(1553), 13, anon_sym_in, anon_sym_LBRACE, anon_sym_not_DASHin, @@ -332872,12 +338222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163803] = 4, + [165299] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3455), 1, + STATE(3502), 1, sym_comment, - ACTIONS(3159), 7, + ACTIONS(1659), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -332885,7 +338235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3161), 22, + ACTIONS(1661), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -332908,25 +338258,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [163843] = 4, + [165339] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3456), 1, + ACTIONS(6609), 1, + aux_sym__immediate_decimal_token2, + STATE(3503), 1, sym_comment, - ACTIONS(1560), 7, - anon_sym_DOLLAR, + ACTIONS(2984), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1562), 22, + aux_sym_unquoted_token1, + ACTIONS(2986), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -332942,14 +338295,12 @@ 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, - [163883] = 4, + [165381] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3457), 1, + STATE(3504), 1, sym_comment, - ACTIONS(1564), 7, + ACTIONS(1603), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -332957,7 +338308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1566), 22, + ACTIONS(1605), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -332980,27 +338331,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [163923] = 4, + [165421] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3458), 1, + STATE(3505), 1, sym_comment, - ACTIONS(1511), 7, + ACTIONS(1611), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1513), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1613), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333015,64 +338365,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [163962] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6446), 1, - sym__long_flag_identifier, - STATE(3459), 1, - sym_comment, - ACTIONS(2960), 12, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2964), 15, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [164003] = 5, + [165461] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6448), 1, - anon_sym_DOT2, - STATE(3460), 1, + STATE(3506), 1, sym_comment, - ACTIONS(3109), 7, + ACTIONS(1599), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3111), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(1601), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333087,77 +338401,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [164044] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1534), 1, - anon_sym_PLUS, - ACTIONS(6450), 1, - anon_sym_DASH, - ACTIONS(6464), 1, - anon_sym_bit_DASHand, - ACTIONS(6466), 1, - anon_sym_bit_DASHxor, - ACTIONS(6468), 1, - anon_sym_bit_DASHor, - ACTIONS(6470), 1, - anon_sym_and, - ACTIONS(6472), 1, - anon_sym_xor, - ACTIONS(6474), 1, - anon_sym_or, - STATE(3461), 1, - sym_comment, - ACTIONS(1532), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1538), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6454), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6456), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6458), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6462), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6452), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6460), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164111] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [165501] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6476), 1, - anon_sym_DOT2, - STATE(3462), 1, + STATE(3507), 1, sym_comment, - ACTIONS(3115), 7, + ACTIONS(1591), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3117), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(1593), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333172,112 +338437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [164152] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5866), 1, - anon_sym_PLUS, - ACTIONS(5882), 1, - anon_sym_bit_DASHand, - ACTIONS(5884), 1, - anon_sym_bit_DASHxor, - ACTIONS(5886), 1, - anon_sym_bit_DASHor, - ACTIONS(6478), 1, - anon_sym_DASH, - ACTIONS(6480), 1, - anon_sym_and, - ACTIONS(6482), 1, - anon_sym_xor, - ACTIONS(6484), 1, - anon_sym_or, - STATE(3463), 1, - sym_comment, - ACTIONS(5862), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5864), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5870), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5872), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5874), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5880), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5876), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5878), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [164219] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5578), 1, - anon_sym_PLUS, - ACTIONS(5596), 1, - anon_sym_bit_DASHand, - ACTIONS(5598), 1, - anon_sym_bit_DASHxor, - ACTIONS(5600), 1, - anon_sym_bit_DASHor, - ACTIONS(6486), 1, - anon_sym_DASH, - ACTIONS(6488), 1, - anon_sym_and, - ACTIONS(6490), 1, - anon_sym_xor, - ACTIONS(6492), 1, - anon_sym_or, - STATE(3464), 1, - sym_comment, - ACTIONS(5576), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5582), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5584), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5586), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5588), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5594), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5590), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5592), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [164286] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [165541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - anon_sym_DOT2, - STATE(3465), 1, + STATE(3508), 1, sym_comment, - ACTIONS(3097), 7, + ACTIONS(1520), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -333285,13 +338452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3099), 20, + aux_sym_unquoted_token1, + ACTIONS(1522), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333306,14 +338475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [164327] = 5, + [165581] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6496), 1, - anon_sym_DOT2, - STATE(3466), 1, + STATE(3509), 1, sym_comment, - ACTIONS(3123), 7, + ACTIONS(1509), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -333321,13 +338488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3125), 20, + aux_sym_unquoted_token1, + ACTIONS(1511), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333342,28 +338511,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [164368] = 5, + [165621] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6498), 1, - anon_sym_DOT2, - STATE(3467), 1, + STATE(3510), 1, sym_comment, - ACTIONS(3129), 7, + ACTIONS(3256), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3131), 20, + aux_sym_unquoted_token1, + ACTIONS(3258), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333378,76 +338546,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [164409] = 18, + [165660] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2760), 1, + ACTIONS(5883), 1, anon_sym_PLUS, - ACTIONS(6500), 1, - anon_sym_DASH, - ACTIONS(6514), 1, + ACTIONS(5901), 1, anon_sym_bit_DASHand, - ACTIONS(6516), 1, + ACTIONS(5903), 1, anon_sym_bit_DASHxor, - ACTIONS(6518), 1, + ACTIONS(5905), 1, anon_sym_bit_DASHor, - ACTIONS(6520), 1, + ACTIONS(6611), 1, + anon_sym_DASH, + ACTIONS(6613), 1, anon_sym_and, - ACTIONS(6522), 1, + ACTIONS(6615), 1, anon_sym_xor, - ACTIONS(6524), 1, + ACTIONS(6617), 1, anon_sym_or, - STATE(3468), 1, + STATE(3511), 1, sym_comment, - ACTIONS(2758), 2, + ACTIONS(5881), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(2764), 2, + ACTIONS(5887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6504), 2, + ACTIONS(5889), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6506), 2, + ACTIONS(5891), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, + ACTIONS(5893), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6512), 2, + ACTIONS(5899), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6502), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6510), 4, + ACTIONS(5895), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164476] = 4, + ACTIONS(5897), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [165727] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3469), 1, + STATE(3512), 1, sym_comment, - ACTIONS(1485), 7, + ACTIONS(3604), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1487), 21, + aux_sym_unquoted_token1, + ACTIONS(3606), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333462,111 +338630,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [164515] = 18, + [165766] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, + ACTIONS(6044), 1, anon_sym_PLUS, - ACTIONS(5740), 1, + ACTIONS(6619), 1, + anon_sym_DASH, + ACTIONS(6633), 1, anon_sym_bit_DASHand, - ACTIONS(5752), 1, + ACTIONS(6635), 1, anon_sym_bit_DASHxor, - ACTIONS(5775), 1, + ACTIONS(6637), 1, anon_sym_bit_DASHor, - ACTIONS(6526), 1, - anon_sym_DASH, - ACTIONS(6528), 1, + ACTIONS(6639), 1, anon_sym_and, - ACTIONS(6530), 1, + ACTIONS(6641), 1, anon_sym_xor, - ACTIONS(6532), 1, + ACTIONS(6643), 1, anon_sym_or, - STATE(3470), 1, + STATE(3513), 1, sym_comment, - ACTIONS(5720), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5726), 2, + ACTIONS(6046), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5728), 2, + ACTIONS(6099), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6623), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5730), 2, + ACTIONS(6625), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5732), 2, + ACTIONS(6627), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(5738), 2, + ACTIONS(6631), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(5734), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5736), 4, + ACTIONS(6621), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [164582] = 4, + ACTIONS(6629), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [165833] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3471), 1, + STATE(3514), 1, sym_comment, - ACTIONS(1501), 7, + ACTIONS(3612), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1503), 21, + aux_sym_unquoted_token1, + ACTIONS(3614), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - 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, - [164621] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3472), 1, - sym_comment, - ACTIONS(6540), 2, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6537), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6534), 19, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -333582,125 +338714,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [164662] = 18, + [165872] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, + ACTIONS(2734), 1, anon_sym_PLUS, - ACTIONS(5767), 1, - anon_sym_bit_DASHand, - ACTIONS(5769), 1, - anon_sym_bit_DASHxor, - ACTIONS(5771), 1, - anon_sym_bit_DASHor, - ACTIONS(6542), 1, - anon_sym_DASH, - ACTIONS(6544), 1, - anon_sym_and, - ACTIONS(6546), 1, - anon_sym_xor, - ACTIONS(6548), 1, - anon_sym_or, - STATE(3473), 1, - sym_comment, - ACTIONS(5744), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5746), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5748), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5750), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5757), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5765), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5761), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5763), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [164729] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6320), 1, + ACTIONS(6645), 1, anon_sym_DASH, - ACTIONS(6330), 1, - anon_sym_PLUS, - ACTIONS(6338), 1, + ACTIONS(6659), 1, anon_sym_bit_DASHand, - ACTIONS(6340), 1, + ACTIONS(6661), 1, anon_sym_bit_DASHxor, - ACTIONS(6342), 1, + ACTIONS(6663), 1, anon_sym_bit_DASHor, - ACTIONS(6344), 1, + ACTIONS(6665), 1, anon_sym_and, - ACTIONS(6346), 1, + ACTIONS(6667), 1, anon_sym_xor, - ACTIONS(6348), 1, + ACTIONS(6669), 1, anon_sym_or, - STATE(3474), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6318), 2, + ACTIONS(2732), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6324), 2, + ACTIONS(2738), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6649), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6328), 2, + ACTIONS(6651), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6332), 2, + ACTIONS(6653), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6336), 2, + ACTIONS(6657), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6322), 4, + ACTIONS(6647), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6334), 4, + ACTIONS(6655), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164796] = 4, + [165939] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3475), 1, + STATE(3516), 1, sym_comment, - ACTIONS(1491), 7, + ACTIONS(1513), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1493), 21, + aux_sym_unquoted_token1, + ACTIONS(1515), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333715,146 +338798,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [164835] = 4, + [165978] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3476), 1, + ACTIONS(6671), 1, + sym__long_flag_identifier, + STATE(3517), 1, sym_comment, - ACTIONS(2806), 7, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2808), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3153), 12, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, + anon_sym_DASH, + anon_sym_not, 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_decimal_token1, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [164874] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3477), 1, - sym_comment, - ACTIONS(2782), 7, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2784), 21, + ACTIONS(3157), 15, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, - 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, - [164913] = 18, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [166019] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_DASH, - ACTIONS(6241), 1, + ACTIONS(1798), 1, anon_sym_PLUS, - ACTIONS(6251), 1, + ACTIONS(6673), 1, + anon_sym_DASH, + ACTIONS(6679), 1, anon_sym_bit_DASHand, - ACTIONS(6253), 1, + ACTIONS(6681), 1, anon_sym_bit_DASHxor, - ACTIONS(6255), 1, + ACTIONS(6683), 1, anon_sym_bit_DASHor, - ACTIONS(6257), 1, + ACTIONS(6685), 1, anon_sym_and, - ACTIONS(6259), 1, + ACTIONS(6687), 1, anon_sym_xor, - ACTIONS(6261), 1, + ACTIONS(6689), 1, anon_sym_or, - STATE(3478), 1, + STATE(3518), 1, sym_comment, - ACTIONS(6231), 2, + ACTIONS(1796), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6235), 2, + ACTIONS(1802), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6237), 2, + ACTIONS(1804), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6239), 2, + ACTIONS(1806), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6249), 2, + ACTIONS(1812), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6245), 4, + ACTIONS(6677), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1810), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6247), 4, + ACTIONS(6675), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [164980] = 4, + [166086] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3479), 1, + STATE(3519), 1, sym_comment, - ACTIONS(2874), 7, + ACTIONS(3329), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2876), 21, + aux_sym_unquoted_token1, + ACTIONS(3331), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333869,27 +338918,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165019] = 4, + [166125] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3480), 1, + STATE(3520), 1, sym_comment, - ACTIONS(3034), 7, + ACTIONS(3427), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3036), 21, + aux_sym_unquoted_token1, + ACTIONS(3429), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -333904,273 +338953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165058] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4701), 1, - anon_sym_PLUS, - ACTIONS(4723), 1, - anon_sym_bit_DASHand, - ACTIONS(4725), 1, - anon_sym_bit_DASHxor, - ACTIONS(4727), 1, - anon_sym_bit_DASHor, - ACTIONS(4729), 1, - anon_sym_and, - ACTIONS(4731), 1, - anon_sym_xor, - ACTIONS(4733), 1, - anon_sym_or, - ACTIONS(6550), 1, - anon_sym_DASH, - STATE(3481), 1, - sym_comment, - ACTIONS(4699), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4703), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4707), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4709), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4721), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4711), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4719), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [165125] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2687), 1, - anon_sym_PLUS, - ACTIONS(6552), 1, - anon_sym_DASH, - ACTIONS(6566), 1, - anon_sym_bit_DASHand, - ACTIONS(6568), 1, - anon_sym_bit_DASHxor, - ACTIONS(6570), 1, - anon_sym_bit_DASHor, - ACTIONS(6572), 1, - anon_sym_and, - ACTIONS(6574), 1, - anon_sym_xor, - ACTIONS(6576), 1, - anon_sym_or, - STATE(3482), 1, - sym_comment, - ACTIONS(2685), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2691), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6556), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6558), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6560), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6564), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6554), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6562), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [165192] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1674), 1, - anon_sym_PLUS, - ACTIONS(6578), 1, - anon_sym_DASH, - ACTIONS(6592), 1, - anon_sym_bit_DASHand, - ACTIONS(6594), 1, - anon_sym_bit_DASHxor, - ACTIONS(6596), 1, - anon_sym_bit_DASHor, - ACTIONS(6598), 1, - anon_sym_and, - ACTIONS(6600), 1, - anon_sym_xor, - ACTIONS(6602), 1, - anon_sym_or, - STATE(3483), 1, - sym_comment, - ACTIONS(1672), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1678), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6582), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6584), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6586), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6590), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6580), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6588), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [165259] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6024), 1, - anon_sym_PLUS, - ACTIONS(6604), 1, - anon_sym_DASH, - ACTIONS(6618), 1, - anon_sym_bit_DASHand, - ACTIONS(6620), 1, - anon_sym_bit_DASHxor, - ACTIONS(6622), 1, - anon_sym_bit_DASHor, - ACTIONS(6624), 1, - anon_sym_and, - ACTIONS(6626), 1, - anon_sym_xor, - ACTIONS(6628), 1, - anon_sym_or, - STATE(3484), 1, - sym_comment, - ACTIONS(6022), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6608), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6610), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6612), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6616), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6606), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6614), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [165326] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6396), 1, - anon_sym_DASH, - ACTIONS(6406), 1, - anon_sym_PLUS, - ACTIONS(6414), 1, - anon_sym_bit_DASHand, - ACTIONS(6416), 1, - anon_sym_bit_DASHxor, - ACTIONS(6418), 1, - anon_sym_bit_DASHor, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_xor, - ACTIONS(6424), 1, - anon_sym_or, - STATE(3485), 1, - sym_comment, - ACTIONS(6394), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6400), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6402), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6404), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6408), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6412), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6398), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6410), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [165393] = 5, + [166164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6295), 1, - anon_sym_DOT2, - STATE(3486), 1, + STATE(3521), 1, sym_comment, - ACTIONS(1367), 7, + ACTIONS(3616), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1365), 20, + aux_sym_unquoted_token1, + ACTIONS(3618), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -334185,28 +338988,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165434] = 5, + [166203] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6295), 1, - anon_sym_DOT2, - STATE(3487), 1, + STATE(3522), 1, sym_comment, - ACTIONS(6632), 7, + ACTIONS(3620), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6630), 20, + aux_sym_unquoted_token1, + ACTIONS(3622), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -334221,28 +339023,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165475] = 5, + [166242] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6634), 1, - anon_sym_DOT2, - STATE(3488), 1, + STATE(3523), 1, sym_comment, - ACTIONS(3103), 7, + ACTIONS(3632), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3105), 20, + aux_sym_unquoted_token1, + ACTIONS(3634), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -334257,61 +339058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165516] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1751), 1, - anon_sym_PLUS, - ACTIONS(6636), 1, - anon_sym_DASH, - ACTIONS(6642), 1, - anon_sym_bit_DASHand, - ACTIONS(6644), 1, - anon_sym_bit_DASHxor, - ACTIONS(6646), 1, - anon_sym_bit_DASHor, - ACTIONS(6648), 1, - anon_sym_and, - ACTIONS(6650), 1, - anon_sym_xor, - ACTIONS(6652), 1, - anon_sym_or, - STATE(3489), 1, - sym_comment, - ACTIONS(1749), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1757), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1759), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1765), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6640), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1763), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6638), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [165583] = 4, + [166281] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3490), 1, + STATE(3524), 1, sym_comment, - ACTIONS(6656), 7, + ACTIONS(6693), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -334319,7 +339071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6654), 21, + ACTIONS(6691), 21, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -334341,24 +339093,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [165622] = 4, + [166320] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3491), 1, + STATE(3525), 1, sym_comment, - ACTIONS(6658), 7, - anon_sym_DOLLAR, + ACTIONS(3638), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6540), 21, + aux_sym_unquoted_token1, + ACTIONS(3640), 21, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -334374,29 +339128,27 @@ 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, - [165661] = 4, + [166359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3492), 1, + STATE(3526), 1, sym_comment, - ACTIONS(1507), 7, + ACTIONS(3779), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1509), 21, + aux_sym_unquoted_token1, + ACTIONS(3781), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -334411,104 +339163,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165700] = 18, + [166398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5913), 1, - anon_sym_PLUS, - ACTIONS(6660), 1, - anon_sym_DASH, - ACTIONS(6674), 1, - anon_sym_bit_DASHand, - ACTIONS(6676), 1, - anon_sym_bit_DASHxor, - ACTIONS(6678), 1, - anon_sym_bit_DASHor, - ACTIONS(6680), 1, - anon_sym_and, - ACTIONS(6682), 1, - anon_sym_xor, - ACTIONS(6684), 1, - anon_sym_or, - STATE(3493), 1, - sym_comment, - ACTIONS(5911), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5917), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6672), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6662), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6670), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [165767] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5123), 1, - aux_sym__unquoted_in_list_token3, - STATE(3494), 1, + STATE(3527), 1, sym_comment, - ACTIONS(5099), 8, + ACTIONS(3431), 7, + anon_sym_DASH, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3433), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5107), 19, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - aux_sym__unquoted_in_list_token1, - [165808] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [166437] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3495), 1, + STATE(3528), 1, sym_comment, - ACTIONS(3393), 6, + ACTIONS(3642), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3395), 21, + aux_sym_unquoted_token1, + ACTIONS(3644), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334530,19 +339233,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165846] = 4, + [166476] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3496), 1, + STATE(3529), 1, sym_comment, - ACTIONS(3307), 6, + ACTIONS(3459), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3309), 21, + aux_sym_unquoted_token1, + ACTIONS(3461), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334564,19 +339268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165884] = 4, + [166515] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3497), 1, + STATE(3530), 1, sym_comment, - ACTIONS(3505), 6, + ACTIONS(1532), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3507), 21, + aux_sym_unquoted_token1, + ACTIONS(1534), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334598,25 +339303,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165922] = 4, + [166554] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3498), 1, + ACTIONS(5851), 1, + anon_sym_PLUS, + ACTIONS(5869), 1, + anon_sym_bit_DASHand, + ACTIONS(5871), 1, + anon_sym_bit_DASHxor, + ACTIONS(5873), 1, + anon_sym_bit_DASHor, + ACTIONS(6695), 1, + anon_sym_DASH, + ACTIONS(6697), 1, + anon_sym_and, + ACTIONS(6699), 1, + anon_sym_xor, + ACTIONS(6701), 1, + anon_sym_or, + STATE(3531), 1, sym_comment, - ACTIONS(6188), 6, + ACTIONS(5849), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5855), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5857), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5859), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5861), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5867), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5863), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5865), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [166621] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3532), 1, + sym_comment, + ACTIONS(3654), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6186), 21, + aux_sym_unquoted_token1, + ACTIONS(3656), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -334632,19 +339387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165960] = 4, + [166660] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3499), 1, + STATE(3533), 1, sym_comment, - ACTIONS(3413), 6, + ACTIONS(2832), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3415), 21, + aux_sym_unquoted_token1, + ACTIONS(2834), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334666,25 +339422,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [165998] = 4, + [166699] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3500), 1, + STATE(3534), 1, sym_comment, - ACTIONS(3159), 6, - anon_sym_DOLLAR, + ACTIONS(2906), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3161), 21, + aux_sym_unquoted_token1, + ACTIONS(2908), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -334698,21 +339457,20 @@ 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, - [166036] = 4, + [166738] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3501), 1, + STATE(3535), 1, sym_comment, - ACTIONS(3409), 6, + ACTIONS(2984), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3411), 21, + aux_sym_unquoted_token1, + ACTIONS(2986), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334734,19 +339492,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166074] = 4, + [166777] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3502), 1, + STATE(3536), 1, sym_comment, - ACTIONS(3405), 6, + ACTIONS(3664), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3407), 21, + aux_sym_unquoted_token1, + ACTIONS(3666), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334768,19 +339527,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166112] = 4, + [166816] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3503), 1, + ACTIONS(1699), 1, + anon_sym_PLUS, + ACTIONS(6703), 1, + anon_sym_DASH, + ACTIONS(6717), 1, + anon_sym_bit_DASHand, + ACTIONS(6719), 1, + anon_sym_bit_DASHxor, + ACTIONS(6721), 1, + anon_sym_bit_DASHor, + ACTIONS(6723), 1, + anon_sym_and, + ACTIONS(6725), 1, + anon_sym_xor, + ACTIONS(6727), 1, + anon_sym_or, + STATE(3537), 1, + sym_comment, + ACTIONS(1701), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1707), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6709), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6711), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6715), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6705), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6713), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [166883] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3538), 1, sym_comment, - ACTIONS(3397), 6, + ACTIONS(3479), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3399), 21, + aux_sym_unquoted_token1, + ACTIONS(3481), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334802,19 +339611,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166150] = 4, + [166922] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5216), 1, + aux_sym__unquoted_in_list_token3, + STATE(3539), 1, + sym_comment, + ACTIONS(5192), 8, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + aux_sym__unquoted_in_list_token1, + [166963] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3504), 1, + ACTIONS(1557), 1, + anon_sym_PLUS, + ACTIONS(6729), 1, + anon_sym_DASH, + ACTIONS(6743), 1, + anon_sym_bit_DASHand, + ACTIONS(6745), 1, + anon_sym_bit_DASHxor, + ACTIONS(6747), 1, + anon_sym_bit_DASHor, + ACTIONS(6749), 1, + anon_sym_and, + ACTIONS(6751), 1, + anon_sym_xor, + ACTIONS(6753), 1, + anon_sym_or, + STATE(3540), 1, + sym_comment, + ACTIONS(1555), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1561), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6733), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6735), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6741), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6731), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6739), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [167030] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3541), 1, sym_comment, - ACTIONS(3385), 6, + ACTIONS(3672), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3387), 21, + aux_sym_unquoted_token1, + ACTIONS(3674), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334836,19 +339731,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166188] = 4, + [167069] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3505), 1, + STATE(3542), 1, sym_comment, - ACTIONS(3501), 6, + ACTIONS(6757), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(6755), 21, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [167108] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3543), 1, + sym_comment, + ACTIONS(3767), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3503), 21, + aux_sym_unquoted_token1, + ACTIONS(3769), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334870,25 +339801,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166226] = 4, + [167147] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3506), 1, + STATE(3544), 1, sym_comment, - ACTIONS(6688), 6, + ACTIONS(3759), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6686), 21, + aux_sym_unquoted_token1, + ACTIONS(3761), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -334904,19 +339836,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166264] = 4, + [167186] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3507), 1, + STATE(3545), 1, sym_comment, - ACTIONS(3481), 6, + ACTIONS(3755), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3483), 21, + aux_sym_unquoted_token1, + ACTIONS(3757), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334938,19 +339871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166302] = 4, + [167225] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3508), 1, + STATE(3546), 1, sym_comment, - ACTIONS(1507), 6, + ACTIONS(3463), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1509), 21, + aux_sym_unquoted_token1, + ACTIONS(3465), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -334972,19 +339906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166340] = 4, + [167264] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3509), 1, + STATE(3547), 1, sym_comment, - ACTIONS(3381), 6, + ACTIONS(3775), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3383), 21, + aux_sym_unquoted_token1, + ACTIONS(3777), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335006,25 +339941,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166378] = 4, + [167303] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3510), 1, + STATE(3548), 1, sym_comment, - ACTIONS(6688), 6, + ACTIONS(3596), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6686), 21, + aux_sym_unquoted_token1, + ACTIONS(3598), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -335040,19 +339976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166416] = 4, + [167342] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3511), 1, + STATE(3549), 1, sym_comment, - ACTIONS(3694), 6, + ACTIONS(3351), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3696), 21, + aux_sym_unquoted_token1, + ACTIONS(3353), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335074,19 +340011,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166454] = 4, + [167381] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3512), 1, + ACTIONS(5708), 1, + anon_sym_PLUS, + ACTIONS(5726), 1, + anon_sym_bit_DASHand, + ACTIONS(5728), 1, + anon_sym_bit_DASHxor, + ACTIONS(5730), 1, + anon_sym_bit_DASHor, + ACTIONS(6759), 1, + anon_sym_DASH, + ACTIONS(6761), 1, + anon_sym_and, + ACTIONS(6763), 1, + anon_sym_xor, + ACTIONS(6765), 1, + anon_sym_or, + STATE(3550), 1, sym_comment, - ACTIONS(1491), 6, + ACTIONS(5706), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5718), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5724), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5720), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5722), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [167448] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3551), 1, + sym_comment, + ACTIONS(3749), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1493), 21, + aux_sym_unquoted_token1, + ACTIONS(3751), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335108,19 +340095,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166492] = 4, + [167487] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3513), 1, + STATE(3552), 1, sym_comment, - ACTIONS(3698), 6, + ACTIONS(3577), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3700), 21, + aux_sym_unquoted_token1, + ACTIONS(3579), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335142,19 +340130,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166530] = 4, + [167526] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3514), 1, + ACTIONS(6221), 1, + anon_sym_PLUS, + ACTIONS(6767), 1, + anon_sym_DASH, + ACTIONS(6781), 1, + anon_sym_bit_DASHand, + ACTIONS(6783), 1, + anon_sym_bit_DASHxor, + ACTIONS(6785), 1, + anon_sym_bit_DASHor, + ACTIONS(6787), 1, + anon_sym_and, + ACTIONS(6789), 1, + anon_sym_xor, + ACTIONS(6791), 1, + anon_sym_or, + STATE(3553), 1, + sym_comment, + ACTIONS(6219), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6225), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6771), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6773), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6775), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6779), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6769), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6777), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [167593] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3554), 1, sym_comment, - ACTIONS(3477), 6, + ACTIONS(3333), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3479), 21, + aux_sym_unquoted_token1, + ACTIONS(3335), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335176,19 +340214,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166568] = 4, + [167632] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3515), 1, + STATE(3555), 1, sym_comment, - ACTIONS(3373), 6, + ACTIONS(3467), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3375), 21, + aux_sym_unquoted_token1, + ACTIONS(3469), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335210,59 +340249,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166606] = 4, + [167671] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3516), 1, - sym_comment, - ACTIONS(3557), 6, + ACTIONS(6565), 1, anon_sym_DASH, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3559), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(6575), 1, anon_sym_PLUS, - 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, - [166644] = 4, + ACTIONS(6583), 1, + anon_sym_bit_DASHand, + ACTIONS(6585), 1, + anon_sym_bit_DASHxor, + ACTIONS(6587), 1, + anon_sym_bit_DASHor, + ACTIONS(6589), 1, + anon_sym_and, + ACTIONS(6591), 1, + anon_sym_xor, + ACTIONS(6593), 1, + anon_sym_or, + STATE(3556), 1, + sym_comment, + ACTIONS(6563), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6569), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6571), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6573), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6577), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6581), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6567), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6579), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [167738] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3517), 1, + ACTIONS(4426), 1, + anon_sym_PLUS, + ACTIONS(4444), 1, + anon_sym_bit_DASHand, + ACTIONS(4446), 1, + anon_sym_bit_DASHxor, + ACTIONS(4712), 1, + anon_sym_bit_DASHor, + ACTIONS(4714), 1, + anon_sym_and, + ACTIONS(4716), 1, + anon_sym_xor, + ACTIONS(4718), 1, + anon_sym_or, + ACTIONS(6793), 1, + anon_sym_DASH, + STATE(3557), 1, sym_comment, - ACTIONS(6692), 6, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4432), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4434), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4436), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4442), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4438), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4440), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [167805] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3558), 1, + sym_comment, + ACTIONS(3343), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6690), 21, + aux_sym_unquoted_token1, + ACTIONS(3345), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -335278,19 +340382,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166682] = 4, + [167844] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3518), 1, + STATE(3559), 1, sym_comment, - ACTIONS(3702), 6, + ACTIONS(1536), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3704), 21, + aux_sym_unquoted_token1, + ACTIONS(1538), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335312,19 +340417,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166720] = 4, + [167883] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3519), 1, + STATE(3560), 1, sym_comment, - ACTIONS(3369), 6, + ACTIONS(3471), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3371), 21, + aux_sym_unquoted_token1, + ACTIONS(3473), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335346,26 +340452,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166758] = 5, + [167922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6696), 1, - anon_sym_COMMA, - STATE(3520), 1, + STATE(3561), 1, sym_comment, - ACTIONS(6698), 6, + ACTIONS(3501), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6694), 20, + aux_sym_unquoted_token1, + ACTIONS(3503), 21, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -335381,26 +340487,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166798] = 5, + [167961] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6702), 1, + ACTIONS(6797), 1, anon_sym_COMMA, - STATE(3521), 1, + STATE(3562), 1, sym_comment, - ACTIONS(6704), 6, + ACTIONS(6799), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6700), 20, + aux_sym_unquoted_token1, + ACTIONS(6795), 20, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -335416,25 +340523,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166838] = 4, + [168002] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3522), 1, + STATE(3563), 1, sym_comment, - ACTIONS(6708), 6, + ACTIONS(3771), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6706), 21, + aux_sym_unquoted_token1, + ACTIONS(3773), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -335450,19 +340558,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166876] = 4, + [168041] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3523), 1, + STATE(3564), 1, sym_comment, - ACTIONS(3449), 6, + ACTIONS(3375), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3451), 21, + aux_sym_unquoted_token1, + ACTIONS(3377), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335484,25 +340593,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166914] = 4, + [168080] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3524), 1, + STATE(3565), 1, sym_comment, - ACTIONS(6632), 6, + ACTIONS(3475), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6630), 21, + aux_sym_unquoted_token1, + ACTIONS(3477), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -335518,19 +340628,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166952] = 4, + [168119] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3525), 1, + STATE(3566), 1, sym_comment, - ACTIONS(3445), 6, + ACTIONS(6803), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3447), 21, + aux_sym_unquoted_token1, + ACTIONS(6801), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335552,59 +340663,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166990] = 4, + [168158] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3526), 1, - sym_comment, - ACTIONS(3441), 6, + ACTIONS(6368), 1, anon_sym_DASH, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3443), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(6378), 1, anon_sym_PLUS, - 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, - [167028] = 4, + ACTIONS(6386), 1, + anon_sym_bit_DASHand, + ACTIONS(6388), 1, + anon_sym_bit_DASHxor, + ACTIONS(6390), 1, + anon_sym_bit_DASHor, + ACTIONS(6392), 1, + anon_sym_and, + ACTIONS(6394), 1, + anon_sym_xor, + ACTIONS(6396), 1, + anon_sym_or, + STATE(3567), 1, + sym_comment, + ACTIONS(6366), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6380), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6384), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6370), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6382), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [168225] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3527), 1, + STATE(3568), 1, sym_comment, - ACTIONS(1367), 6, + ACTIONS(6807), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1365), 21, + aux_sym_unquoted_token1, + ACTIONS(6805), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -335620,19 +340747,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167066] = 4, + [168264] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3528), 1, + STATE(3569), 1, sym_comment, - ACTIONS(3365), 6, + ACTIONS(3513), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3367), 21, + aux_sym_unquoted_token1, + ACTIONS(3515), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335654,19 +340782,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167104] = 4, + [168303] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3529), 1, + STATE(3570), 1, sym_comment, - ACTIONS(3361), 6, + ACTIONS(3745), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3363), 21, + aux_sym_unquoted_token1, + ACTIONS(3747), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335688,19 +340817,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167142] = 4, + [168342] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3530), 1, + STATE(3571), 1, sym_comment, - ACTIONS(3357), 6, + ACTIONS(3676), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3359), 21, + aux_sym_unquoted_token1, + ACTIONS(3678), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335722,19 +340852,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167180] = 4, + [168381] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3531), 1, + STATE(3572), 1, sym_comment, - ACTIONS(6712), 6, + ACTIONS(3680), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6710), 21, + aux_sym_unquoted_token1, + ACTIONS(3682), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335756,25 +340887,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167218] = 4, + [168420] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3532), 1, + STATE(3573), 1, sym_comment, - ACTIONS(6716), 6, + ACTIONS(6755), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6714), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6809), 19, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -335790,26 +340923,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167256] = 4, + [168461] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3533), 1, + ACTIONS(6356), 1, + anon_sym_DOT2, + STATE(3574), 1, sym_comment, - ACTIONS(6720), 6, + ACTIONS(6817), 7, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6718), 21, + ACTIONS(6815), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -335824,25 +340959,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167294] = 4, + [168502] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3534), 1, + STATE(3575), 1, sym_comment, - ACTIONS(6724), 6, + ACTIONS(3509), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(6722), 21, + aux_sym_unquoted_token1, + ACTIONS(3511), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -335858,19 +340994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167332] = 4, + [168541] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3535), 1, + STATE(3576), 1, sym_comment, - ACTIONS(3353), 6, + ACTIONS(3650), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3355), 21, + aux_sym_unquoted_token1, + ACTIONS(3652), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335892,19 +341029,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167370] = 4, + [168580] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3536), 1, + ACTIONS(5997), 1, + anon_sym_PLUS, + ACTIONS(6015), 1, + anon_sym_bit_DASHand, + ACTIONS(6017), 1, + anon_sym_bit_DASHxor, + ACTIONS(6019), 1, + anon_sym_bit_DASHor, + ACTIONS(6819), 1, + anon_sym_DASH, + ACTIONS(6821), 1, + anon_sym_and, + ACTIONS(6823), 1, + anon_sym_xor, + ACTIONS(6825), 1, + anon_sym_or, + STATE(3577), 1, + sym_comment, + ACTIONS(5995), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6001), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6003), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6005), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6007), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6013), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6009), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6011), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [168647] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3578), 1, sym_comment, - ACTIONS(3349), 6, + ACTIONS(3731), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3351), 21, + aux_sym_unquoted_token1, + ACTIONS(3733), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335926,25 +341113,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167408] = 4, + [168686] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3537), 1, + STATE(3579), 1, sym_comment, - ACTIONS(3153), 6, - anon_sym_DOLLAR, + ACTIONS(3505), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3155), 21, + aux_sym_unquoted_token1, + ACTIONS(3507), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -335958,21 +341148,20 @@ 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, - [167446] = 4, + [168725] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3538), 1, + STATE(3580), 1, sym_comment, - ACTIONS(3345), 6, + ACTIONS(3703), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3347), 21, + aux_sym_unquoted_token1, + ACTIONS(3705), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -335994,19 +341183,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167484] = 4, + [168764] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3539), 1, + STATE(3581), 1, sym_comment, - ACTIONS(3513), 6, + ACTIONS(3707), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3515), 21, + aux_sym_unquoted_token1, + ACTIONS(3709), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -336028,19 +341218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167522] = 4, + [168803] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3540), 1, + STATE(3582), 1, sym_comment, - ACTIONS(3341), 6, + ACTIONS(3711), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3343), 21, + aux_sym_unquoted_token1, + ACTIONS(3713), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -336062,19 +341253,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167560] = 4, + [168842] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3541), 1, + STATE(3583), 1, sym_comment, - ACTIONS(3335), 6, + ACTIONS(3715), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3337), 21, + aux_sym_unquoted_token1, + ACTIONS(3717), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -336096,25 +341288,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167598] = 4, + [168881] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3542), 1, + STATE(3584), 1, sym_comment, - ACTIONS(3051), 6, - anon_sym_DOLLAR, + ACTIONS(3719), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3053), 21, + aux_sym_unquoted_token1, + ACTIONS(3721), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -336128,21 +341323,20 @@ 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, - [167636] = 4, + [168920] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3543), 1, + STATE(3585), 1, sym_comment, - ACTIONS(3425), 6, + ACTIONS(3723), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3427), 21, + aux_sym_unquoted_token1, + ACTIONS(3725), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -336164,26 +341358,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167674] = 4, + [168959] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3544), 1, + ACTIONS(6356), 1, + anon_sym_DOT2, + STATE(3586), 1, sym_comment, - ACTIONS(3429), 6, + ACTIONS(1373), 7, anon_sym_DASH, - anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3431), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1371), 20, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -336198,19 +341394,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167712] = 4, + [169000] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3545), 1, + ACTIONS(2805), 1, + anon_sym_PLUS, + ACTIONS(6827), 1, + anon_sym_DASH, + ACTIONS(6841), 1, + anon_sym_bit_DASHand, + ACTIONS(6843), 1, + anon_sym_bit_DASHxor, + ACTIONS(6845), 1, + anon_sym_bit_DASHor, + ACTIONS(6847), 1, + anon_sym_and, + ACTIONS(6849), 1, + anon_sym_xor, + ACTIONS(6851), 1, + anon_sym_or, + STATE(3587), 1, + sym_comment, + ACTIONS(2803), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6831), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6833), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6835), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6839), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6829), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6837), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169067] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3588), 1, sym_comment, - ACTIONS(3437), 6, + ACTIONS(3727), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3439), 21, + aux_sym_unquoted_token1, + ACTIONS(3729), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -336232,25 +341478,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167750] = 4, + [169106] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3546), 1, + ACTIONS(6483), 1, + anon_sym_DASH, + ACTIONS(6493), 1, + anon_sym_PLUS, + ACTIONS(6501), 1, + anon_sym_bit_DASHand, + ACTIONS(6503), 1, + anon_sym_bit_DASHxor, + ACTIONS(6531), 1, + anon_sym_bit_DASHor, + ACTIONS(6533), 1, + anon_sym_and, + ACTIONS(6535), 1, + anon_sym_xor, + ACTIONS(6555), 1, + anon_sym_or, + STATE(3589), 1, + sym_comment, + ACTIONS(6481), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6487), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6491), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6495), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6499), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6497), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169173] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3590), 1, sym_comment, - ACTIONS(3331), 6, + ACTIONS(6817), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3333), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6815), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336266,25 +341561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167788] = 4, + [169211] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3547), 1, + STATE(3591), 1, sym_comment, - ACTIONS(3327), 6, + ACTIONS(6299), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3329), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6297), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336300,25 +341595,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167826] = 4, + [169249] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3548), 1, + STATE(3592), 1, sym_comment, - ACTIONS(3323), 6, + ACTIONS(6855), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3325), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6853), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336334,21 +341629,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167864] = 5, + [169287] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6728), 1, - anon_sym_COMMA, - STATE(3549), 1, + STATE(3593), 1, sym_comment, - ACTIONS(6730), 6, + ACTIONS(6859), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6726), 20, + aux_sym_unquoted_token1, + ACTIONS(6857), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -336369,25 +341663,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167904] = 4, + [169325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3550), 1, + STATE(3594), 1, sym_comment, - ACTIONS(3433), 6, + ACTIONS(6863), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3435), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6861), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336403,25 +341697,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167942] = 4, + [169363] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3551), 1, + STATE(3595), 1, sym_comment, - ACTIONS(3417), 6, + ACTIONS(6867), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3419), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6865), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336437,25 +341731,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167980] = 4, + [169401] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3552), 1, + STATE(3596), 1, sym_comment, - ACTIONS(3303), 6, + ACTIONS(6871), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3305), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6869), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336471,25 +341765,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168018] = 4, + [169439] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3553), 1, + STATE(3597), 1, sym_comment, - ACTIONS(3665), 6, + ACTIONS(6875), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3667), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6873), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336505,21 +341799,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168056] = 4, + [169477] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3554), 1, + STATE(3598), 1, sym_comment, - ACTIONS(1515), 6, + ACTIONS(6879), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1517), 21, + aux_sym_unquoted_token1, + ACTIONS(6877), 20, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -336539,25 +341833,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168094] = 4, + [169515] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3555), 1, + ACTIONS(6883), 1, + anon_sym_COMMA, + STATE(3599), 1, sym_comment, - ACTIONS(3706), 6, + ACTIONS(6885), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3708), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6881), 20, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336573,25 +341868,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168132] = 4, + [169555] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3556), 1, + ACTIONS(6889), 1, + anon_sym_COMMA, + STATE(3600), 1, sym_comment, - ACTIONS(3611), 6, + ACTIONS(6891), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3613), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6887), 20, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336607,25 +341903,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168170] = 4, + [169595] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3557), 1, + STATE(3601), 1, sym_comment, - ACTIONS(3615), 6, + ACTIONS(6855), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3617), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6853), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336641,25 +341937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168208] = 4, + [169633] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3558), 1, + STATE(3602), 1, sym_comment, - ACTIONS(3659), 6, + ACTIONS(6895), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3661), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6893), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336675,25 +341971,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168246] = 4, + [169671] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3559), 1, + STATE(3603), 1, sym_comment, - ACTIONS(3635), 6, + ACTIONS(1373), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3637), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1371), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336709,27 +342005,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168284] = 4, + [169709] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3560), 1, + STATE(3604), 1, sym_comment, - ACTIONS(3639), 6, + ACTIONS(3228), 6, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3641), 21, + ACTIONS(3230), 21, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -336743,27 +342037,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168322] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [169747] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3561), 1, + STATE(3605), 1, sym_comment, - ACTIONS(3647), 6, + ACTIONS(3271), 6, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3649), 21, + ACTIONS(3273), 21, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -336777,25 +342071,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168360] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [169785] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3562), 1, + STATE(3606), 1, sym_comment, - ACTIONS(3651), 6, + ACTIONS(6899), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3653), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(6897), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336811,26 +342107,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168398] = 4, + [169823] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3563), 1, + STATE(3607), 1, sym_comment, - ACTIONS(6734), 6, + ACTIONS(3232), 6, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 20, + ACTIONS(3234), 21, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -336844,20 +342139,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168435] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [169861] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3564), 1, + STATE(3608), 1, sym_comment, - ACTIONS(6738), 6, + ACTIONS(6903), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6736), 20, + ACTIONS(6901), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -336877,19 +342175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168472] = 4, + [169899] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3565), 1, + STATE(3609), 1, sym_comment, - ACTIONS(6742), 6, + ACTIONS(6907), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(6740), 20, + ACTIONS(6905), 20, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -336910,24 +342208,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168509] = 4, + [169936] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3566), 1, + STATE(3610), 1, sym_comment, - ACTIONS(6746), 6, + ACTIONS(6911), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6744), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(6909), 20, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -336943,38 +342241,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168546] = 15, + [169973] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6748), 1, + ACTIONS(6913), 1, anon_sym_LPAREN, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6752), 1, + ACTIONS(6917), 1, anon_sym_LT, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6756), 1, + ACTIONS(6921), 1, anon_sym_EQ2, - ACTIONS(6758), 1, + ACTIONS(6923), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6925), 1, anon_sym_DASH2, - ACTIONS(6762), 1, + ACTIONS(6927), 1, anon_sym_PLUS2, - STATE(3567), 1, + STATE(3611), 1, sym_comment, - STATE(3737), 1, + STATE(3757), 1, sym__var, - STATE(3859), 1, + STATE(3894), 1, sym__immediate_decimal, - ACTIONS(1977), 2, + ACTIONS(2066), 2, sym_identifier, anon_sym_DASH, - STATE(3860), 2, + STATE(3890), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1979), 7, + ACTIONS(2068), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -336982,38 +342280,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168600] = 15, + [170027] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6766), 1, + ACTIONS(6931), 1, anon_sym_LT, - ACTIONS(6768), 1, + ACTIONS(6933), 1, anon_sym_EQ2, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3568), 1, + STATE(3612), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3938), 1, + STATE(3971), 1, sym__immediate_decimal, - ACTIONS(1995), 2, + ACTIONS(2004), 2, sym_identifier, anon_sym_DASH, - STATE(3939), 2, + STATE(3970), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1997), 7, + ACTIONS(2006), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337021,38 +342319,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168654] = 15, + [170081] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6913), 1, + anon_sym_LPAREN, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, - anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6923), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6925), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6927), 1, anon_sym_PLUS2, - ACTIONS(6776), 1, + ACTIONS(6941), 1, anon_sym_LT, - ACTIONS(6778), 1, + ACTIONS(6943), 1, anon_sym_EQ2, - STATE(3569), 1, + STATE(3613), 1, sym_comment, - STATE(3710), 1, + STATE(3757), 1, sym__var, - STATE(3940), 1, + STATE(3897), 1, sym__immediate_decimal, - ACTIONS(1957), 2, + ACTIONS(2032), 2, sym_identifier, anon_sym_DASH, - STATE(3941), 2, + STATE(3895), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1959), 7, + ACTIONS(2034), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337060,38 +342358,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168708] = 15, + [170135] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - ACTIONS(6780), 1, + ACTIONS(6945), 1, anon_sym_LT, - ACTIONS(6782), 1, + ACTIONS(6947), 1, anon_sym_EQ2, - STATE(3570), 1, + STATE(3614), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3942), 1, + STATE(3977), 1, sym__immediate_decimal, - ACTIONS(2011), 2, + ACTIONS(2058), 2, sym_identifier, anon_sym_DASH, - STATE(3900), 2, + STATE(3976), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2013), 7, + ACTIONS(2060), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337099,38 +342397,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168762] = 15, + [170189] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - ACTIONS(6784), 1, + ACTIONS(6949), 1, anon_sym_LT, - ACTIONS(6786), 1, + ACTIONS(6951), 1, anon_sym_EQ2, - STATE(3571), 1, + STATE(3615), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3944), 1, + STATE(3975), 1, sym__immediate_decimal, - ACTIONS(2019), 2, + ACTIONS(2050), 2, sym_identifier, anon_sym_DASH, - STATE(3947), 2, + STATE(3974), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2021), 7, + ACTIONS(2052), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337138,38 +342436,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168816] = 15, + [170243] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6748), 1, - anon_sym_LPAREN, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6758), 1, + ACTIONS(6929), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6762), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - ACTIONS(6788), 1, + ACTIONS(6953), 1, anon_sym_LT, - ACTIONS(6790), 1, + ACTIONS(6955), 1, anon_sym_EQ2, - STATE(3572), 1, + STATE(3616), 1, sym_comment, - STATE(3737), 1, + STATE(3760), 1, sym__var, - STATE(3861), 1, + STATE(3973), 1, sym__immediate_decimal, - ACTIONS(2003), 2, + ACTIONS(2024), 2, sym_identifier, anon_sym_DASH, - STATE(3866), 2, + STATE(3972), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2005), 7, + ACTIONS(2026), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337177,34 +342475,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168870] = 13, + [170297] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3573), 1, + STATE(3617), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3913), 1, + STATE(3999), 1, sym__immediate_decimal, - ACTIONS(2093), 2, + ACTIONS(2172), 2, sym_identifier, anon_sym_DASH, - STATE(3914), 2, + STATE(4002), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2095), 7, + ACTIONS(2174), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337212,34 +342510,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168918] = 13, + [170345] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3574), 1, + STATE(3618), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(4034), 1, + STATE(3990), 1, sym__immediate_decimal, - ACTIONS(2085), 2, + ACTIONS(2148), 2, sym_identifier, anon_sym_DASH, - STATE(4033), 2, + STATE(3989), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2087), 7, + ACTIONS(2150), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337247,34 +342545,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168966] = 13, + [170393] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3575), 1, + STATE(3619), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3934), 1, + STATE(3957), 1, sym__immediate_decimal, - ACTIONS(2105), 2, + ACTIONS(2140), 2, sym_identifier, anon_sym_DASH, - STATE(3935), 2, + STATE(3983), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2107), 7, + ACTIONS(2142), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337282,34 +342580,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169014] = 13, + [170441] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3576), 1, + STATE(3620), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3932), 1, + STATE(3985), 1, sym__immediate_decimal, - ACTIONS(2089), 2, + ACTIONS(2128), 2, sym_identifier, anon_sym_DASH, - STATE(3933), 2, + STATE(3997), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2091), 7, + ACTIONS(2130), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337317,34 +342615,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169062] = 13, + [170489] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3577), 1, + STATE(3621), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3930), 1, + STATE(4005), 1, sym__immediate_decimal, - ACTIONS(2133), 2, + ACTIONS(2132), 2, sym_identifier, anon_sym_DASH, - STATE(3931), 2, + STATE(4004), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2135), 7, + ACTIONS(2134), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337352,34 +342650,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169110] = 13, + [170537] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3578), 1, + STATE(3622), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3936), 1, + STATE(4000), 1, sym__immediate_decimal, - ACTIONS(2117), 2, + ACTIONS(2180), 2, sym_identifier, anon_sym_DASH, - STATE(3937), 2, + STATE(3998), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2119), 7, + ACTIONS(2182), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337387,34 +342685,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169158] = 13, + [170585] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3579), 1, + STATE(3623), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(4029), 1, + STATE(4007), 1, sym__immediate_decimal, - ACTIONS(2129), 2, + ACTIONS(2160), 2, sym_identifier, anon_sym_DASH, - STATE(4028), 2, + STATE(4011), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2131), 7, + ACTIONS(2162), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337422,34 +342720,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169206] = 13, + [170633] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3580), 1, + STATE(3624), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3919), 1, + STATE(3979), 1, sym__immediate_decimal, - ACTIONS(2101), 2, + ACTIONS(2176), 2, sym_identifier, anon_sym_DASH, - STATE(3929), 2, + STATE(3978), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2103), 7, + ACTIONS(2178), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337457,34 +342755,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169254] = 13, + [170681] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3581), 1, + STATE(3625), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3917), 1, + STATE(3981), 1, sym__immediate_decimal, - ACTIONS(2097), 2, + ACTIONS(2156), 2, sym_identifier, anon_sym_DASH, - STATE(3918), 2, + STATE(3980), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2099), 7, + ACTIONS(2158), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337492,34 +342790,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169302] = 13, + [170729] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3582), 1, + STATE(3626), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(4038), 1, + STATE(3995), 1, sym__immediate_decimal, - ACTIONS(2121), 2, + ACTIONS(2144), 2, sym_identifier, anon_sym_DASH, - STATE(4037), 2, + STATE(3993), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2123), 7, + ACTIONS(2146), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337527,34 +342825,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169350] = 13, + [170777] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3583), 1, + STATE(3627), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(4036), 1, + STATE(3992), 1, sym__immediate_decimal, - ACTIONS(2125), 2, + ACTIONS(2136), 2, sym_identifier, anon_sym_DASH, - STATE(4035), 2, + STATE(3991), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2127), 7, + ACTIONS(2138), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337562,34 +342860,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169398] = 13, + [170825] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6754), 1, + ACTIONS(6919), 1, anon_sym_DOT2, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(6770), 1, + ACTIONS(6935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6772), 1, + ACTIONS(6937), 1, anon_sym_DASH2, - ACTIONS(6774), 1, + ACTIONS(6939), 1, anon_sym_PLUS2, - STATE(3584), 1, + STATE(3628), 1, sym_comment, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(3915), 1, + STATE(3988), 1, sym__immediate_decimal, - ACTIONS(2081), 2, + ACTIONS(2152), 2, sym_identifier, anon_sym_DASH, - STATE(3916), 2, + STATE(3987), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2083), 7, + ACTIONS(2154), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -337597,139 +342895,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169446] = 14, + [170873] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, + ACTIONS(2052), 1, anon_sym_LF, - ACTIONS(6792), 1, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6794), 1, + ACTIONS(6959), 1, anon_sym_LT, - ACTIONS(6796), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6798), 1, + ACTIONS(6963), 1, anon_sym_EQ2, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token1, - STATE(2866), 1, - sym__var, - STATE(3585), 1, - sym_comment, - STATE(4343), 1, - sym__immediate_decimal, - ACTIONS(6802), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4346), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1957), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [169495] = 14, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(1997), 1, - anon_sym_LF, - ACTIONS(6792), 1, - anon_sym_LPAREN, - ACTIONS(6796), 1, - anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6804), 1, - anon_sym_LT, - ACTIONS(6806), 1, - anon_sym_EQ2, - STATE(2866), 1, + STATE(2903), 1, sym__var, - STATE(3586), 1, + STATE(3629), 1, sym_comment, - STATE(4339), 1, + STATE(4381), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4342), 2, + STATE(4379), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1995), 5, + ACTIONS(2050), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [169544] = 14, + [170922] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(1979), 1, + ACTIONS(2068), 1, anon_sym_LF, - ACTIONS(6796), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6808), 1, + ACTIONS(6969), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6971), 1, anon_sym_LT, - ACTIONS(6812), 1, + ACTIONS(6973), 1, anon_sym_EQ2, - ACTIONS(6814), 1, + ACTIONS(6975), 1, aux_sym__immediate_decimal_token1, - STATE(2833), 1, + STATE(2915), 1, sym__var, - STATE(3587), 1, + STATE(3630), 1, sym_comment, - STATE(4242), 1, + STATE(4281), 1, sym__immediate_decimal, - ACTIONS(6816), 2, + ACTIONS(6977), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4239), 2, + STATE(4282), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1977), 5, + ACTIONS(2066), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [169593] = 16, + [170971] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(77), 1, anon_sym_PLUS, ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2707), 1, + ACTIONS(2768), 1, anon_sym_DASH, - ACTIONS(6818), 1, + ACTIONS(6979), 1, sym_identifier, - ACTIONS(6820), 1, + ACTIONS(6981), 1, anon_sym_DOLLAR, - ACTIONS(6822), 1, + ACTIONS(6983), 1, anon_sym_DOT, - STATE(413), 1, + STATE(409), 1, sym__val_number_decimal, - STATE(426), 1, + STATE(422), 1, sym__val_number, - STATE(2872), 1, + STATE(2900), 1, sym_val_number, - STATE(2902), 1, + STATE(2935), 1, sym__var, - STATE(3194), 1, + STATE(3237), 1, sym_val_variable, - STATE(3588), 1, + STATE(3631), 1, sym_comment, - STATE(5075), 1, + STATE(5076), 1, sym__where_predicate, ACTIONS(89), 2, aux_sym__val_number_token4, @@ -337739,69 +343002,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - [169646] = 14, + [171024] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2021), 1, + ACTIONS(2026), 1, anon_sym_LF, - ACTIONS(6792), 1, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6824), 1, + ACTIONS(6985), 1, anon_sym_LT, - ACTIONS(6826), 1, + ACTIONS(6987), 1, anon_sym_EQ2, - STATE(2866), 1, + STATE(2903), 1, sym__var, - STATE(3589), 1, + STATE(3632), 1, sym_comment, - STATE(4360), 1, + STATE(4378), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4362), 2, + STATE(4376), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2024), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [171073] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2034), 1, + anon_sym_LF, + ACTIONS(6961), 1, + anon_sym_DOT2, + ACTIONS(6969), 1, + anon_sym_LPAREN, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6989), 1, + anon_sym_LT, + ACTIONS(6991), 1, + anon_sym_EQ2, + STATE(2915), 1, + sym__var, + STATE(3633), 1, + sym_comment, + STATE(4269), 1, + sym__immediate_decimal, + ACTIONS(6977), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4272), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2019), 5, + ACTIONS(2032), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [169695] = 16, + [171122] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(359), 1, aux_sym__val_number_decimal_token1, - ACTIONS(527), 1, + ACTIONS(531), 1, anon_sym_PLUS, - ACTIONS(2651), 1, + ACTIONS(2663), 1, anon_sym_DASH, - ACTIONS(6828), 1, + ACTIONS(6993), 1, sym_identifier, - ACTIONS(6830), 1, + ACTIONS(6995), 1, anon_sym_DOLLAR, - ACTIONS(6832), 1, + ACTIONS(6997), 1, anon_sym_DOT, - STATE(368), 1, - sym__val_number, - STATE(379), 1, + STATE(369), 1, sym__val_number_decimal, - STATE(2746), 1, + STATE(389), 1, + sym__val_number, + STATE(2819), 1, sym_val_number, - STATE(2866), 1, + STATE(2903), 1, sym__var, - STATE(3042), 1, + STATE(3113), 1, sym_val_variable, - STATE(3590), 1, + STATE(3634), 1, sym_comment, - STATE(4497), 1, + STATE(4864), 1, sym__where_predicate, ACTIONS(363), 2, aux_sym__val_number_token4, @@ -337811,3400 +343109,3819 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - [169748] = 14, + [171175] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2013), 1, + ACTIONS(2060), 1, anon_sym_LF, - ACTIONS(6792), 1, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6834), 1, + ACTIONS(6999), 1, anon_sym_LT, - ACTIONS(6836), 1, + ACTIONS(7001), 1, anon_sym_EQ2, - STATE(2866), 1, + STATE(2903), 1, sym__var, - STATE(3591), 1, + STATE(3635), 1, sym_comment, - STATE(4347), 1, + STATE(4384), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4359), 2, + STATE(4383), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2011), 5, + ACTIONS(2058), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [169797] = 14, + [171224] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2005), 1, + ACTIONS(2006), 1, anon_sym_LF, - ACTIONS(6796), 1, + ACTIONS(6957), 1, + anon_sym_LPAREN, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6808), 1, + ACTIONS(6965), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7003), 1, + anon_sym_LT, + ACTIONS(7005), 1, + anon_sym_EQ2, + STATE(2903), 1, + sym__var, + STATE(3636), 1, + sym_comment, + STATE(4375), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4373), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2004), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [171273] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(7007), 1, anon_sym_LPAREN, - ACTIONS(6814), 1, + ACTIONS(7009), 1, + anon_sym_LT, + ACTIONS(7011), 1, + anon_sym_DOT2, + ACTIONS(7013), 1, + anon_sym_EQ2, + ACTIONS(7015), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6838), 1, + STATE(2955), 1, + sym__var, + STATE(3637), 1, + sym_comment, + STATE(4484), 1, + sym__immediate_decimal, + ACTIONS(2068), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7017), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4481), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2066), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [171321] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, + anon_sym_DOT2, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7021), 1, anon_sym_LT, - ACTIONS(6840), 1, + ACTIONS(7023), 1, anon_sym_EQ2, - STATE(2833), 1, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token1, + STATE(2935), 1, + sym__var, + STATE(3638), 1, + sym_comment, + STATE(4909), 1, + sym__immediate_decimal, + ACTIONS(2060), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4905), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2058), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [171369] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3639), 1, + sym_comment, + ACTIONS(1437), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(1439), 15, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [171397] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DOLLAR, + ACTIONS(2034), 1, + anon_sym_LF, + ACTIONS(5076), 1, + anon_sym_DOT2, + ACTIONS(7029), 1, + anon_sym_LPAREN, + ACTIONS(7031), 1, + anon_sym_LT, + ACTIONS(7033), 1, + anon_sym_EQ2, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token1, + STATE(3640), 1, + sym_comment, + STATE(4171), 1, + sym__var, + STATE(4468), 1, + sym__immediate_decimal, + ACTIONS(7037), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4467), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2032), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [171445] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, + anon_sym_DOT2, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7039), 1, + anon_sym_LT, + ACTIONS(7041), 1, + anon_sym_EQ2, + STATE(2935), 1, + sym__var, + STATE(3641), 1, + sym_comment, + STATE(4892), 1, + sym__immediate_decimal, + ACTIONS(2006), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4886), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2004), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [171493] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3642), 1, + sym_comment, + ACTIONS(1441), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(1443), 15, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [171521] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(7007), 1, + anon_sym_LPAREN, + ACTIONS(7011), 1, + anon_sym_DOT2, + ACTIONS(7015), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7043), 1, + anon_sym_LT, + ACTIONS(7045), 1, + anon_sym_EQ2, + STATE(2955), 1, + sym__var, + STATE(3643), 1, + sym_comment, + STATE(4487), 1, + sym__immediate_decimal, + ACTIONS(2034), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7017), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4485), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2032), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [171569] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DOLLAR, + ACTIONS(2068), 1, + anon_sym_LF, + ACTIONS(5076), 1, + anon_sym_DOT2, + ACTIONS(7029), 1, + anon_sym_LPAREN, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7047), 1, + anon_sym_LT, + ACTIONS(7049), 1, + anon_sym_EQ2, + STATE(3644), 1, + sym_comment, + STATE(4171), 1, + sym__var, + STATE(4465), 1, + sym__immediate_decimal, + ACTIONS(7037), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4463), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2066), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [171617] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DOLLAR, + ACTIONS(2060), 1, + anon_sym_LF, + ACTIONS(5076), 1, + anon_sym_DOT2, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7053), 1, + anon_sym_LT, + ACTIONS(7055), 1, + anon_sym_EQ2, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token1, + STATE(2597), 1, + sym__immediate_decimal, + STATE(3645), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2596), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2058), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [171665] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, + anon_sym_DOT2, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7061), 1, + anon_sym_LT, + ACTIONS(7063), 1, + anon_sym_EQ2, + STATE(2935), 1, + sym__var, + STATE(3646), 1, + sym_comment, + STATE(4896), 1, + sym__immediate_decimal, + ACTIONS(2026), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4894), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2024), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [171713] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(5957), 1, + aux_sym_unquoted_token4, + ACTIONS(5959), 1, + aux_sym_unquoted_token6, + ACTIONS(7065), 1, + anon_sym_LPAREN, + ACTIONS(7067), 1, + anon_sym_LT, + ACTIONS(7069), 1, + anon_sym_DOT2, + ACTIONS(7071), 1, + anon_sym_EQ2, + ACTIONS(7073), 1, + aux_sym__immediate_decimal_token1, + STATE(2865), 1, + sym__var, + STATE(3647), 1, + sym_comment, + STATE(4494), 1, + sym__immediate_decimal, + ACTIONS(7075), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4459), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1377), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [171763] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DOLLAR, + ACTIONS(2052), 1, + anon_sym_LF, + ACTIONS(5076), 1, + anon_sym_DOT2, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7077), 1, + anon_sym_LT, + ACTIONS(7079), 1, + anon_sym_EQ2, + STATE(2595), 1, + sym__immediate_decimal, + STATE(3648), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2593), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2050), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [171811] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DOLLAR, + ACTIONS(2026), 1, + anon_sym_LF, + ACTIONS(5076), 1, + anon_sym_DOT2, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7081), 1, + anon_sym_LT, + ACTIONS(7083), 1, + anon_sym_EQ2, + STATE(2592), 1, + sym__immediate_decimal, + STATE(3649), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2591), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2024), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [171859] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, + anon_sym_DOT2, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7085), 1, + anon_sym_LT, + ACTIONS(7087), 1, + anon_sym_EQ2, + STATE(2935), 1, + sym__var, + STATE(3650), 1, + sym_comment, + STATE(4903), 1, + sym__immediate_decimal, + ACTIONS(2052), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4900), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2050), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [171907] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DOLLAR, + ACTIONS(2006), 1, + anon_sym_LF, + ACTIONS(5076), 1, + anon_sym_DOT2, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7089), 1, + anon_sym_LT, + ACTIONS(7091), 1, + anon_sym_EQ2, + STATE(2590), 1, + sym__immediate_decimal, + STATE(3651), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2589), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2004), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [171955] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2130), 1, + anon_sym_LF, + ACTIONS(6957), 1, + anon_sym_LPAREN, + ACTIONS(6961), 1, + anon_sym_DOT2, + ACTIONS(6965), 1, + aux_sym__immediate_decimal_token1, + STATE(2903), 1, + sym__var, + STATE(3652), 1, + sym_comment, + STATE(4354), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4348), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2128), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [171998] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2182), 1, + anon_sym_LF, + ACTIONS(6957), 1, + anon_sym_LPAREN, + ACTIONS(6961), 1, + anon_sym_DOT2, + ACTIONS(6965), 1, + aux_sym__immediate_decimal_token1, + STATE(2903), 1, + sym__var, + STATE(3653), 1, + sym_comment, + STATE(4400), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4399), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2180), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [172041] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7093), 1, + anon_sym_DASH, + ACTIONS(7095), 1, + anon_sym_DOT, + ACTIONS(7097), 1, + anon_sym_PLUS, + ACTIONS(7099), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7103), 1, + anon_sym_DQUOTE, + ACTIONS(7107), 1, + aux_sym_unquoted_token1, + STATE(1246), 1, + sym__str_double_quotes, + STATE(3654), 1, + sym_comment, + STATE(5613), 1, + sym__val_number_decimal, + ACTIONS(7105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(920), 2, + sym_val_string, + sym_unquoted, + ACTIONS(7101), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [172088] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1828), 1, + anon_sym_DOLLAR, + ACTIONS(2162), 1, + anon_sym_LF, + ACTIONS(6957), 1, + anon_sym_LPAREN, + ACTIONS(6961), 1, + anon_sym_DOT2, + ACTIONS(6965), 1, + aux_sym__immediate_decimal_token1, + STATE(2903), 1, sym__var, - STATE(3592), 1, + STATE(3655), 1, sym_comment, - STATE(4229), 1, + STATE(4344), 1, sym__immediate_decimal, - ACTIONS(6816), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4226), 2, + STATE(4343), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2003), 5, + ACTIONS(2160), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [169846] = 14, + [172131] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2021), 1, + ACTIONS(2174), 1, anon_sym_LF, - ACTIONS(4864), 1, - anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6844), 1, - anon_sym_LT, - ACTIONS(6846), 1, - anon_sym_EQ2, - ACTIONS(6848), 1, + ACTIONS(6961), 1, + anon_sym_DOT2, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - STATE(2494), 1, - sym__immediate_decimal, - STATE(3593), 1, - sym_comment, - STATE(4121), 1, + STATE(2903), 1, sym__var, - ACTIONS(6850), 2, + STATE(3656), 1, + sym_comment, + STATE(4346), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2495), 2, + STATE(4345), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2019), 4, + ACTIONS(2172), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH, anon_sym_RBRACE, - [169894] = 14, + [172174] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2142), 1, + anon_sym_LF, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6854), 1, - anon_sym_LT, - ACTIONS(6856), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6858), 1, - anon_sym_EQ2, - ACTIONS(6860), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2903), 1, sym__var, - STATE(3594), 1, + STATE(3657), 1, sym_comment, - STATE(4575), 1, + STATE(4410), 1, sym__immediate_decimal, - ACTIONS(2013), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4568), 2, + STATE(4355), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2011), 3, + ACTIONS(2140), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - [169942] = 14, + anon_sym_RBRACE, + [172217] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2178), 1, + anon_sym_LF, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6864), 1, - anon_sym_LT, - ACTIONS(6866), 1, - anon_sym_EQ2, - STATE(2902), 1, + STATE(2903), 1, sym__var, - STATE(3595), 1, + STATE(3658), 1, sym_comment, - STATE(4582), 1, + STATE(4386), 1, sym__immediate_decimal, - ACTIONS(1959), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4577), 2, + STATE(4385), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1957), 3, + ACTIONS(2176), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - [169990] = 14, + anon_sym_RBRACE, + [172260] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(6856), 1, - anon_sym_DOT2, - ACTIONS(6868), 1, + ACTIONS(2158), 1, + anon_sym_LF, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6870), 1, - anon_sym_LT, - ACTIONS(6872), 1, - anon_sym_EQ2, - ACTIONS(6874), 1, + ACTIONS(6961), 1, + anon_sym_DOT2, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - STATE(2893), 1, + STATE(2903), 1, sym__var, - STATE(3596), 1, + STATE(3659), 1, sym_comment, - STATE(4364), 1, + STATE(4388), 1, sym__immediate_decimal, - ACTIONS(1979), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6876), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4350), 2, + STATE(4387), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1977), 3, + ACTIONS(2156), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - [170038] = 14, + anon_sym_RBRACE, + [172303] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(2013), 1, + ACTIONS(2154), 1, anon_sym_LF, - ACTIONS(4864), 1, - anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(6961), 1, + anon_sym_DOT2, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6878), 1, - anon_sym_LT, - ACTIONS(6880), 1, - anon_sym_EQ2, - STATE(2483), 1, - sym__immediate_decimal, - STATE(3597), 1, - sym_comment, - STATE(4121), 1, + STATE(2903), 1, sym__var, - ACTIONS(6850), 2, + STATE(3660), 1, + sym_comment, + STATE(4390), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2484), 2, + STATE(4389), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2011), 4, + ACTIONS(2152), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH, anon_sym_RBRACE, - [170086] = 14, + [172346] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2150), 1, + anon_sym_LF, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6882), 1, - anon_sym_LT, - ACTIONS(6884), 1, - anon_sym_EQ2, - STATE(2902), 1, + STATE(2903), 1, sym__var, - STATE(3598), 1, + STATE(3661), 1, sym_comment, - STATE(4566), 1, + STATE(4392), 1, sym__immediate_decimal, - ACTIONS(2021), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4543), 2, + STATE(4391), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2019), 3, + ACTIONS(2148), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - [170134] = 14, + anon_sym_RBRACE, + [172389] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, + ACTIONS(2138), 1, anon_sym_LF, - ACTIONS(4864), 1, - anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(6961), 1, + anon_sym_DOT2, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6886), 1, - anon_sym_LT, - ACTIONS(6888), 1, - anon_sym_EQ2, - STATE(2477), 1, - sym__immediate_decimal, - STATE(3599), 1, - sym_comment, - STATE(4121), 1, + STATE(2903), 1, sym__var, - ACTIONS(6850), 2, + STATE(3662), 1, + sym_comment, + STATE(4394), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2478), 2, + STATE(4393), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1957), 4, + ACTIONS(2136), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH, anon_sym_RBRACE, - [170182] = 14, + [172432] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2146), 1, + anon_sym_LF, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6890), 1, - anon_sym_LT, - ACTIONS(6892), 1, - anon_sym_EQ2, - STATE(2902), 1, + STATE(2903), 1, sym__var, - STATE(3600), 1, + STATE(3663), 1, sym_comment, - STATE(4597), 1, + STATE(4398), 1, sym__immediate_decimal, - ACTIONS(1997), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4661), 2, + STATE(4397), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1995), 3, + ACTIONS(2144), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - [170230] = 14, + anon_sym_RBRACE, + [172475] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1828), 1, anon_sym_DOLLAR, - ACTIONS(6856), 1, - anon_sym_DOT2, - ACTIONS(6868), 1, + ACTIONS(2134), 1, + anon_sym_LF, + ACTIONS(6957), 1, anon_sym_LPAREN, - ACTIONS(6874), 1, + ACTIONS(6961), 1, + anon_sym_DOT2, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6894), 1, - anon_sym_LT, - ACTIONS(6896), 1, - anon_sym_EQ2, - STATE(2893), 1, + STATE(2903), 1, sym__var, - STATE(3601), 1, + STATE(3664), 1, sym_comment, - STATE(4317), 1, + STATE(4402), 1, sym__immediate_decimal, - ACTIONS(2005), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6876), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4307), 2, + STATE(4401), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2003), 3, + ACTIONS(2132), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - [170278] = 14, + anon_sym_RBRACE, + [172518] = 14, + ACTIONS(35), 1, + anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, - anon_sym_DOLLAR, - ACTIONS(2005), 1, - anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6898), 1, + ACTIONS(7109), 1, anon_sym_LPAREN, - ACTIONS(6900), 1, + ACTIONS(7111), 1, anon_sym_LT, - ACTIONS(6902), 1, + ACTIONS(7113), 1, anon_sym_EQ2, - ACTIONS(6904), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token1, - STATE(3602), 1, + STATE(3665), 1, sym_comment, - STATE(4187), 1, + STATE(4271), 1, sym__var, - STATE(4447), 1, + STATE(4556), 1, sym__immediate_decimal, - ACTIONS(6906), 2, + ACTIONS(2032), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2034), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7117), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4445), 2, + STATE(4552), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2003), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [170326] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3603), 1, - sym_comment, - ACTIONS(1454), 2, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1456), 15, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [170354] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3604), 1, - sym_comment, - ACTIONS(1475), 2, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1477), 15, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + [172565] = 14, + ACTIONS(35), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [170382] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, - anon_sym_DOLLAR, - ACTIONS(1979), 1, - anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6898), 1, + ACTIONS(7109), 1, anon_sym_LPAREN, - ACTIONS(6904), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6908), 1, + ACTIONS(7119), 1, anon_sym_LT, - ACTIONS(6910), 1, + ACTIONS(7121), 1, anon_sym_EQ2, - STATE(3605), 1, + STATE(3666), 1, sym_comment, - STATE(4187), 1, + STATE(4271), 1, sym__var, - STATE(4453), 1, + STATE(4902), 1, sym__immediate_decimal, - ACTIONS(6906), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4455), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1977), 4, + ACTIONS(2066), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [170430] = 14, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(305), 1, - anon_sym_DOLLAR, - ACTIONS(1997), 1, + ACTIONS(2068), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4864), 1, - anon_sym_DOT2, - ACTIONS(6842), 1, - anon_sym_LPAREN, - ACTIONS(6848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6912), 1, - anon_sym_LT, - ACTIONS(6914), 1, - anon_sym_EQ2, - STATE(2543), 1, - sym__immediate_decimal, - STATE(3606), 1, - sym_comment, - STATE(4121), 1, - sym__var, - ACTIONS(6850), 2, + ACTIONS(7117), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2469), 2, + STATE(4501), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1995), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [170478] = 12, - ACTIONS(105), 1, + [172612] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(2095), 1, - anon_sym_LF, - ACTIONS(6792), 1, + ACTIONS(5957), 1, + aux_sym_unquoted_token4, + ACTIONS(5959), 1, + aux_sym_unquoted_token6, + ACTIONS(7065), 1, anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(7069), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7073), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, + ACTIONS(7123), 1, + anon_sym_LT, + ACTIONS(7125), 1, + anon_sym_EQ2, + STATE(2865), 1, sym__var, - STATE(3607), 1, + STATE(3667), 1, sym_comment, - STATE(4313), 1, + STATE(5429), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(1377), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7075), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4315), 2, + STATE(5430), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [170521] = 14, + [172661] = 14, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(7129), 1, anon_sym_LT, - ACTIONS(6920), 1, + ACTIONS(7131), 1, anon_sym_EQ2, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2650), 1, + STATE(2730), 1, sym__immediate_decimal, - STATE(3608), 1, + STATE(3668), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2019), 2, + ACTIONS(2058), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2021), 2, + ACTIONS(2060), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2649), 2, + STATE(2733), 2, sym_expr_parenthesized, sym_val_variable, - [170568] = 14, + [172708] = 14, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6926), 1, + ACTIONS(7137), 1, anon_sym_LT, - ACTIONS(6928), 1, + ACTIONS(7139), 1, anon_sym_EQ2, - STATE(2653), 1, + STATE(2735), 1, sym__immediate_decimal, - STATE(3609), 1, + STATE(3669), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2011), 2, + ACTIONS(2050), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2013), 2, + ACTIONS(2052), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2652), 2, + STATE(2737), 2, sym_expr_parenthesized, sym_val_variable, - [170615] = 14, + [172755] = 14, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6930), 1, + ACTIONS(7141), 1, anon_sym_LT, - ACTIONS(6932), 1, + ACTIONS(7143), 1, anon_sym_EQ2, - STATE(2655), 1, + STATE(2739), 1, sym__immediate_decimal, - STATE(3610), 1, + STATE(3670), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(1957), 2, + ACTIONS(2024), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1959), 2, + ACTIONS(2026), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2608), 2, + STATE(2729), 2, sym_expr_parenthesized, sym_val_variable, - [170662] = 12, + [172802] = 14, + ACTIONS(35), 1, + anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2131), 1, - anon_sym_LF, - ACTIONS(6792), 1, - anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7127), 1, + anon_sym_LPAREN, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, - sym__var, - STATE(3611), 1, - sym_comment, - STATE(4391), 1, + ACTIONS(7145), 1, + anon_sym_LT, + ACTIONS(7147), 1, + anon_sym_EQ2, + STATE(2743), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(3671), 1, + sym_comment, + STATE(4263), 1, + sym__var, + ACTIONS(2004), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2006), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4393), 2, + STATE(2749), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2129), 5, - anon_sym_SEMI, + [172849] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1625), 1, + anon_sym_DASH, + STATE(3672), 1, + sym_comment, + ACTIONS(1627), 14, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [170705] = 12, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [172875] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(2087), 1, + ACTIONS(2174), 1, anon_sym_LF, - ACTIONS(6792), 1, - anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, - sym__var, - STATE(3612), 1, - sym_comment, - STATE(4389), 1, + STATE(2627), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(3673), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4390), 2, + STATE(2564), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2085), 5, + ACTIONS(2172), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [170748] = 12, + [172917] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2162), 1, anon_sym_LF, - ACTIONS(6792), 1, - anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, - sym__var, - STATE(3613), 1, - sym_comment, - STATE(4386), 1, + STATE(2563), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(3674), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4388), 2, + STATE(2562), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2125), 5, + ACTIONS(2160), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [170791] = 12, + [172959] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(2123), 1, + ACTIONS(2138), 1, anon_sym_LF, - ACTIONS(6792), 1, - anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, - sym__var, - STATE(3614), 1, - sym_comment, - STATE(4383), 1, + STATE(2612), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(3675), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4385), 2, + STATE(2610), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2121), 5, + ACTIONS(2136), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [170834] = 14, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(105), 1, + [173001] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(7093), 1, + anon_sym_DASH, + ACTIONS(7097), 1, + anon_sym_PLUS, + ACTIONS(7099), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7149), 1, + anon_sym_DOT, + ACTIONS(7153), 1, + anon_sym_DQUOTE, + ACTIONS(7157), 1, + aux_sym_unquoted_token1, + STATE(1382), 1, + sym__str_double_quotes, + STATE(3676), 1, + sym_comment, + STATE(5582), 1, + sym__val_number_decimal, + ACTIONS(7155), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(933), 2, + sym_val_string, + sym_unquoted, + ACTIONS(7151), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [173045] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6934), 1, + ACTIONS(7161), 1, anon_sym_LT, - ACTIONS(6936), 1, + ACTIONS(7163), 1, anon_sym_EQ2, - STATE(2658), 1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, + sym__var, + STATE(3313), 1, sym__immediate_decimal, - STATE(3615), 1, + STATE(3677), 1, sym_comment, - STATE(4274), 1, - sym__var, - ACTIONS(1995), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1997), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2657), 2, + STATE(3314), 2, sym_expr_parenthesized, sym_val_variable, - [170881] = 14, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(105), 1, + ACTIONS(2006), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [173089] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6938), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(6940), 1, + ACTIONS(7171), 1, anon_sym_LT, - ACTIONS(6942), 1, + ACTIONS(7173), 1, anon_sym_EQ2, - ACTIONS(6944), 1, + ACTIONS(7175), 1, aux_sym__immediate_decimal_token1, - STATE(3616), 1, + STATE(3678), 1, sym_comment, - STATE(4255), 1, + STATE(4359), 1, sym__var, - STATE(4545), 1, + STATE(5187), 1, sym__immediate_decimal, - ACTIONS(1977), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1979), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6946), 2, + ACTIONS(7177), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4544), 2, + STATE(5199), 2, sym_expr_parenthesized, sym_val_variable, - [170928] = 12, - ACTIONS(105), 1, + ACTIONS(2068), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [173133] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(2119), 1, - anon_sym_LF, - ACTIONS(6792), 1, + ACTIONS(7065), 1, anon_sym_LPAREN, - ACTIONS(6796), 1, - anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7073), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, + ACTIONS(7179), 1, + anon_sym_LT, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7183), 1, + anon_sym_EQ2, + STATE(2865), 1, sym__var, - STATE(3617), 1, + STATE(3679), 1, sym_comment, - STATE(4284), 1, + STATE(5169), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(7075), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4334), 2, + STATE(5170), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2117), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2068), 3, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [170971] = 12, + anon_sym_if, + anon_sym_EQ_GT, + [173177] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(2107), 1, + ACTIONS(2142), 1, anon_sym_LF, - ACTIONS(6792), 1, - anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, - sym__var, - STATE(3618), 1, - sym_comment, - STATE(4331), 1, + STATE(2568), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(3680), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4332), 2, + STATE(2567), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2105), 5, + ACTIONS(2140), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [171014] = 14, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(105), 1, + [173219] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT2, - ACTIONS(6938), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7065), 1, anon_sym_LPAREN, - ACTIONS(6944), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6948), 1, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7185), 1, anon_sym_LT, - ACTIONS(6950), 1, + ACTIONS(7187), 1, anon_sym_EQ2, - STATE(3619), 1, - sym_comment, - STATE(4255), 1, + ACTIONS(7189), 1, + aux_sym__immediate_decimal_token1, + STATE(2865), 1, sym__var, - STATE(4540), 1, + STATE(3681), 1, + sym_comment, + STATE(5166), 1, sym__immediate_decimal, - ACTIONS(2003), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2005), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6946), 2, + ACTIONS(7075), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4538), 2, + STATE(5168), 2, sym_expr_parenthesized, sym_val_variable, - [171061] = 14, + ACTIONS(2034), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [173263] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(6952), 1, + ACTIONS(2140), 1, anon_sym_DASH, - ACTIONS(6954), 1, - anon_sym_DOT, - ACTIONS(6956), 1, - anon_sym_PLUS, - ACTIONS(6958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6962), 1, - anon_sym_DQUOTE, - ACTIONS(6966), 1, - aux_sym_unquoted_token1, - STATE(1233), 1, - sym__str_double_quotes, - STATE(3620), 1, - sym_comment, - STATE(5551), 1, - sym__val_number_decimal, - ACTIONS(6964), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(870), 2, - sym_val_string, - sym_unquoted, - ACTIONS(6960), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [171108] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2091), 1, - anon_sym_LF, - ACTIONS(6792), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, + STATE(2688), 1, sym__var, - STATE(3621), 1, + STATE(3682), 1, sym_comment, - STATE(4326), 1, + STATE(4636), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4327), 2, + STATE(4631), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2142), 4, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [171151] = 12, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173305] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2135), 1, - anon_sym_LF, - ACTIONS(6792), 1, + ACTIONS(2128), 1, + anon_sym_DASH, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, + STATE(2688), 1, sym__var, - STATE(3622), 1, + STATE(3683), 1, sym_comment, - STATE(4324), 1, + STATE(4630), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4325), 2, + STATE(4628), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2133), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2130), 4, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [171194] = 12, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173347] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, - anon_sym_DOLLAR, - ACTIONS(2103), 1, - anon_sym_LF, - ACTIONS(6792), 1, + ACTIONS(2172), 1, + anon_sym_DASH, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, + STATE(2688), 1, sym__var, - STATE(3623), 1, + STATE(3684), 1, sym_comment, - STATE(4322), 1, + STATE(4627), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4323), 2, + STATE(4502), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2101), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2174), 4, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [171237] = 12, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173389] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(2099), 1, - anon_sym_LF, - ACTIONS(6792), 1, - anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, + ACTIONS(7195), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_EQ2, + STATE(2688), 1, sym__var, - STATE(3624), 1, - sym_comment, - STATE(4301), 1, + STATE(3309), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(3685), 1, + sym_comment, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4321), 2, + STATE(3311), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2097), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, + ACTIONS(2026), 3, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - [171280] = 12, - ACTIONS(105), 1, + [173433] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(2083), 1, - anon_sym_LF, - ACTIONS(6792), 1, - anon_sym_LPAREN, - ACTIONS(6796), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2866), 1, + ACTIONS(7199), 1, + anon_sym_LT, + ACTIONS(7201), 1, + anon_sym_EQ2, + STATE(2688), 1, sym__var, - STATE(3625), 1, - sym_comment, - STATE(4319), 1, + STATE(3299), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(3686), 1, + sym_comment, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4320), 2, + STATE(3303), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2081), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, + ACTIONS(2052), 3, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - [171323] = 12, - ACTIONS(105), 1, + [173477] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2160), 1, + anon_sym_DASH, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3626), 1, + STATE(3687), 1, sym_comment, - STATE(4581), 1, + STATE(4503), 1, sym__immediate_decimal, - ACTIONS(2087), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4476), 2, + STATE(4508), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2085), 3, - anon_sym_SEMI, + ACTIONS(2162), 4, anon_sym_PIPE, - anon_sym_DASH, - [171365] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6952), 1, - anon_sym_DASH, - ACTIONS(6956), 1, - anon_sym_PLUS, - ACTIONS(6958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6968), 1, - anon_sym_DOT, - ACTIONS(6972), 1, - anon_sym_DQUOTE, - ACTIONS(6976), 1, - aux_sym_unquoted_token1, - STATE(1432), 1, - sym__str_double_quotes, - STATE(3627), 1, - sym_comment, - STATE(5485), 1, - sym__val_number_decimal, - ACTIONS(6974), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(909), 2, - sym_val_string, - sym_unquoted, - ACTIONS(6970), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [171409] = 13, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173519] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6980), 1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7203), 1, anon_sym_LT, - ACTIONS(6982), 1, + ACTIONS(7205), 1, anon_sym_EQ2, - ACTIONS(6984), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3348), 1, + STATE(3304), 1, sym__immediate_decimal, - STATE(3628), 1, + STATE(3688), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3347), 2, + STATE(3300), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2013), 3, + ACTIONS(2060), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [171453] = 13, - ACTIONS(3), 1, + [173563] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(2182), 1, + anon_sym_LF, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7051), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6988), 1, - anon_sym_LT, - ACTIONS(6990), 1, - anon_sym_EQ2, - STATE(2682), 1, - sym__var, - STATE(3346), 1, + STATE(2617), 1, sym__immediate_decimal, - STATE(3629), 1, + STATE(3689), 1, sym_comment, - ACTIONS(6986), 2, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3344), 2, + STATE(2616), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2021), 3, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(2180), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [171497] = 12, - ACTIONS(105), 1, + [173605] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2132), 1, + anon_sym_DASH, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3630), 1, + STATE(3690), 1, sym_comment, - STATE(4615), 1, + STATE(4736), 1, sym__immediate_decimal, - ACTIONS(2131), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4618), 2, + STATE(4733), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2129), 3, - anon_sym_SEMI, + ACTIONS(2134), 4, anon_sym_PIPE, - anon_sym_DASH, - [171539] = 12, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173647] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2180), 1, + anon_sym_DASH, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3631), 1, + STATE(3691), 1, sym_comment, - STATE(4726), 1, + STATE(4527), 1, sym__immediate_decimal, - ACTIONS(2095), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4728), 2, + STATE(4717), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 3, - anon_sym_SEMI, + ACTIONS(2182), 4, anon_sym_PIPE, - anon_sym_DASH, - [171581] = 12, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173689] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(2144), 1, + anon_sym_DASH, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(2095), 1, - anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6842), 1, - anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2560), 1, - sym__immediate_decimal, - STATE(3632), 1, - sym_comment, - STATE(4121), 1, + STATE(2688), 1, sym__var, - ACTIONS(6850), 2, + STATE(3692), 1, + sym_comment, + STATE(4715), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2561), 2, + STATE(4682), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2146), 4, anon_sym_PIPE, - anon_sym_RBRACE, - [171623] = 12, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173731] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(2083), 1, - anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6842), 1, - anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2569), 1, - sym__immediate_decimal, - STATE(3633), 1, - sym_comment, - STATE(4121), 1, + ACTIONS(7207), 1, + anon_sym_LT, + ACTIONS(7209), 1, + anon_sym_EQ2, + STATE(2688), 1, sym__var, - ACTIONS(6850), 2, + STATE(3693), 1, + sym_comment, + STATE(4610), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2575), 2, + STATE(4609), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2081), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2060), 3, anon_sym_PIPE, - anon_sym_RBRACE, - [171665] = 12, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_EQ_GT, + [173775] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(2136), 1, + anon_sym_DASH, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(2103), 1, - anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6842), 1, - anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2488), 1, - sym__immediate_decimal, - STATE(3634), 1, - sym_comment, - STATE(4121), 1, + STATE(2688), 1, sym__var, - ACTIONS(6850), 2, + STATE(3694), 1, + sym_comment, + STATE(4681), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2593), 2, + STATE(4677), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2101), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2138), 4, anon_sym_PIPE, - anon_sym_RBRACE, - [171707] = 12, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173817] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2148), 1, + anon_sym_DASH, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3635), 1, + STATE(3695), 1, sym_comment, - STATE(4729), 1, + STATE(4670), 1, sym__immediate_decimal, - ACTIONS(2083), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4602), 2, + STATE(4668), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2081), 3, - anon_sym_SEMI, + ACTIONS(2150), 4, anon_sym_PIPE, - anon_sym_DASH, - [171749] = 13, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173859] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7175), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6992), 1, + ACTIONS(7211), 1, anon_sym_LT, - ACTIONS(6994), 1, + ACTIONS(7213), 1, anon_sym_EQ2, - STATE(2682), 1, + STATE(3696), 1, + sym_comment, + STATE(4359), 1, sym__var, - STATE(3353), 1, + STATE(5185), 1, sym__immediate_decimal, - STATE(3636), 1, - sym_comment, - ACTIONS(6986), 2, + ACTIONS(7177), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3352), 2, + STATE(5186), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1997), 3, + ACTIONS(2034), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [171793] = 12, - ACTIONS(105), 1, + [173903] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2152), 1, + anon_sym_DASH, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3637), 1, + STATE(3697), 1, sym_comment, - STATE(4567), 1, + STATE(4653), 1, sym__immediate_decimal, - ACTIONS(2127), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4580), 2, + STATE(4652), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2125), 3, - anon_sym_SEMI, + ACTIONS(2154), 4, anon_sym_PIPE, - anon_sym_DASH, - [171835] = 13, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [173945] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6952), 1, - anon_sym_DASH, - ACTIONS(6954), 1, - anon_sym_DOT, - ACTIONS(6956), 1, - anon_sym_PLUS, - ACTIONS(6958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6962), 1, - anon_sym_DQUOTE, - ACTIONS(6966), 1, - aux_sym_unquoted_token1, - STATE(1233), 1, - sym__str_double_quotes, - STATE(3638), 1, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7191), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7215), 1, + anon_sym_LT, + ACTIONS(7217), 1, + anon_sym_EQ2, + STATE(2688), 1, + sym__var, + STATE(3698), 1, sym_comment, - STATE(5551), 1, - sym__val_number_decimal, - ACTIONS(6964), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(870), 2, - sym_val_string, - sym_unquoted, - ACTIONS(6960), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [171879] = 12, - ACTIONS(105), 1, + STATE(4594), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4593), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2006), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [173989] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2156), 1, + anon_sym_DASH, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3639), 1, + STATE(3699), 1, sym_comment, - STATE(4745), 1, + STATE(4649), 1, sym__immediate_decimal, - ACTIONS(2099), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4796), 2, + STATE(4648), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2097), 3, - anon_sym_SEMI, + ACTIONS(2158), 4, anon_sym_PIPE, - anon_sym_DASH, - [171921] = 12, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [174031] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(2176), 1, + anon_sym_DASH, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(2099), 1, - anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6842), 1, - anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2577), 1, - sym__immediate_decimal, - STATE(3640), 1, - sym_comment, - STATE(4121), 1, + STATE(2688), 1, sym__var, - ACTIONS(6850), 2, + STATE(3700), 1, + sym_comment, + STATE(4633), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2581), 2, + STATE(4626), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2097), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2178), 4, anon_sym_PIPE, - anon_sym_RBRACE, - [171963] = 12, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [174073] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(6852), 1, - anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2935), 1, sym__var, - STATE(3641), 1, + STATE(3701), 1, sym_comment, - STATE(4556), 1, + STATE(4802), 1, sym__immediate_decimal, - ACTIONS(2123), 2, + ACTIONS(2134), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4565), 2, + STATE(4804), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2121), 3, + ACTIONS(2132), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [172005] = 12, + [174115] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(6852), 1, - anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2935), 1, sym__var, - STATE(3642), 1, + STATE(3702), 1, sym_comment, - STATE(4809), 1, + STATE(4807), 1, sym__immediate_decimal, - ACTIONS(2103), 2, + ACTIONS(2182), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, STATE(4819), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2101), 3, + ACTIONS(2180), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [172047] = 12, + [174157] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2107), 1, - anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(7019), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(2567), 1, - sym__immediate_decimal, - STATE(3643), 1, - sym_comment, - STATE(4121), 1, + STATE(2935), 1, sym__var, - ACTIONS(6850), 2, + STATE(3703), 1, + sym_comment, + STATE(4832), 1, + sym__immediate_decimal, + ACTIONS(2146), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2563), 2, + STATE(4834), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2105), 4, + ACTIONS(2144), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [172089] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1632), 1, anon_sym_DASH, - STATE(3644), 1, + [174199] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, + anon_sym_DOT2, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token1, + STATE(2935), 1, + sym__var, + STATE(3704), 1, sym_comment, - ACTIONS(1634), 14, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(4836), 1, + sym__immediate_decimal, + ACTIONS(2138), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4865), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2136), 3, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [172115] = 13, - ACTIONS(3), 1, + anon_sym_DASH, + [174241] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(6996), 1, - anon_sym_LPAREN, - ACTIONS(6998), 1, - anon_sym_LT, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(7002), 1, - anon_sym_EQ2, - ACTIONS(7004), 1, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(2775), 1, + STATE(2935), 1, sym__var, - STATE(3645), 1, + STATE(3705), 1, sym_comment, - STATE(5113), 1, + STATE(4871), 1, sym__immediate_decimal, - ACTIONS(7006), 2, + ACTIONS(2150), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5115), 2, + STATE(4881), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1979), 3, + ACTIONS(2148), 3, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [172159] = 13, + anon_sym_DASH, + [174283] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6952), 1, + ACTIONS(7093), 1, anon_sym_DASH, - ACTIONS(6954), 1, + ACTIONS(7095), 1, anon_sym_DOT, - ACTIONS(6956), 1, + ACTIONS(7097), 1, anon_sym_PLUS, - ACTIONS(6958), 1, + ACTIONS(7099), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6962), 1, + ACTIONS(7103), 1, anon_sym_DQUOTE, - ACTIONS(6966), 1, + ACTIONS(7107), 1, aux_sym_unquoted_token1, - STATE(1233), 1, + STATE(1246), 1, sym__str_double_quotes, - STATE(3646), 1, + STATE(3706), 1, sym_comment, - STATE(5551), 1, + STATE(5613), 1, + sym__val_number_decimal, + ACTIONS(7105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(920), 2, + sym_val_string, + sym_unquoted, + ACTIONS(7101), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [174327] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7093), 1, + anon_sym_DASH, + ACTIONS(7095), 1, + anon_sym_DOT, + ACTIONS(7097), 1, + anon_sym_PLUS, + ACTIONS(7099), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7103), 1, + anon_sym_DQUOTE, + ACTIONS(7107), 1, + aux_sym_unquoted_token1, + STATE(1246), 1, + sym__str_double_quotes, + STATE(3707), 1, + sym_comment, + STATE(5613), 1, sym__val_number_decimal, - ACTIONS(6964), 2, + ACTIONS(7105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(889), 2, + STATE(893), 2, sym_val_string, sym_unquoted, - ACTIONS(6960), 3, + ACTIONS(7101), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - [172203] = 12, + [174371] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(2119), 1, + ACTIONS(2130), 1, anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(7051), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2555), 1, + STATE(2482), 1, sym__immediate_decimal, - STATE(3647), 1, + STATE(3708), 1, sym_comment, - STATE(4121), 1, + STATE(4148), 1, sym__var, - ACTIONS(6850), 2, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2544), 2, + STATE(2566), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2117), 4, + ACTIONS(2128), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [172245] = 12, - ACTIONS(105), 1, + [174413] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + ACTIONS(7219), 1, + anon_sym_LT, + ACTIONS(7221), 1, + anon_sym_EQ2, + STATE(2688), 1, sym__var, - STATE(3648), 1, + STATE(3709), 1, sym_comment, - STATE(4826), 1, + STATE(4608), 1, sym__immediate_decimal, - ACTIONS(2135), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4851), 2, + STATE(4602), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2133), 3, - anon_sym_SEMI, + ACTIONS(2052), 3, anon_sym_PIPE, - anon_sym_DASH, - [172287] = 12, + anon_sym_if, + anon_sym_EQ_GT, + [174457] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(2135), 1, + ACTIONS(2178), 1, anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(7051), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2589), 1, + STATE(2600), 1, sym__immediate_decimal, - STATE(3649), 1, + STATE(3710), 1, sym_comment, - STATE(4121), 1, + STATE(4148), 1, sym__var, - ACTIONS(6850), 2, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2579), 2, + STATE(2599), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2133), 4, + ACTIONS(2176), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [172329] = 13, + [174499] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7008), 1, - anon_sym_LT, - ACTIONS(7010), 1, - anon_sym_EQ2, - STATE(2682), 1, - sym__var, - STATE(3351), 1, - sym__immediate_decimal, - STATE(3650), 1, + ACTIONS(7093), 1, + anon_sym_DASH, + ACTIONS(7097), 1, + anon_sym_PLUS, + ACTIONS(7099), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7149), 1, + anon_sym_DOT, + ACTIONS(7153), 1, + anon_sym_DQUOTE, + ACTIONS(7157), 1, + aux_sym_unquoted_token1, + STATE(1382), 1, + sym__str_double_quotes, + STATE(3711), 1, sym_comment, - ACTIONS(6986), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3350), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1959), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [172373] = 12, + STATE(5582), 1, + sym__val_number_decimal, + ACTIONS(7155), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(928), 2, + sym_val_string, + sym_unquoted, + ACTIONS(7151), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [174543] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(6852), 1, - anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + STATE(2935), 1, sym__var, - STATE(3651), 1, + STATE(3712), 1, sym_comment, - STATE(4853), 1, + STATE(4883), 1, sym__immediate_decimal, - ACTIONS(2091), 2, + ACTIONS(2154), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4857), 2, + STATE(4498), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 3, + ACTIONS(2152), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [172415] = 13, - ACTIONS(3), 1, + [174585] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(2158), 1, + anon_sym_LF, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(7012), 1, + ACTIONS(7051), 1, anon_sym_LPAREN, - ACTIONS(7014), 1, - anon_sym_LT, - ACTIONS(7016), 1, - anon_sym_EQ2, - ACTIONS(7018), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(3652), 1, + STATE(2602), 1, + sym__immediate_decimal, + STATE(3713), 1, sym_comment, - STATE(4300), 1, + STATE(4148), 1, sym__var, - STATE(5142), 1, - sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5155), 2, + STATE(2601), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2005), 3, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(2156), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [172459] = 13, + [174627] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(1377), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7022), 1, - anon_sym_LT, - ACTIONS(7024), 1, - anon_sym_EQ2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3653), 1, - sym_comment, - STATE(4524), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4600), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2021), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [172503] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(5957), 1, + aux_sym_unquoted_token4, + ACTIONS(5959), 1, + aux_sym_unquoted_token6, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7175), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7030), 1, + ACTIONS(7223), 1, anon_sym_LT, - ACTIONS(7032), 1, + ACTIONS(7225), 1, + anon_sym_DOT2, + ACTIONS(7227), 1, anon_sym_EQ2, - STATE(2682), 1, - sym__var, - STATE(3654), 1, + STATE(3714), 1, sym_comment, - STATE(4636), 1, + STATE(4359), 1, + sym__var, + STATE(5212), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + ACTIONS(7177), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4607), 2, + STATE(5206), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2013), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [172547] = 13, - ACTIONS(3), 1, + [174675] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7034), 1, - anon_sym_LT, - ACTIONS(7036), 1, - anon_sym_EQ2, - STATE(2682), 1, + STATE(2935), 1, sym__var, - STATE(3655), 1, + STATE(3715), 1, sym_comment, - STATE(4656), 1, + STATE(4698), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + ACTIONS(2162), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4641), 2, + STATE(4679), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1959), 3, + ACTIONS(2160), 3, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [172591] = 12, + anon_sym_DASH, + [174717] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(2123), 1, + ACTIONS(2154), 1, anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(7051), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2536), 1, + STATE(2606), 1, sym__immediate_decimal, - STATE(3656), 1, + STATE(3716), 1, sym_comment, - STATE(4121), 1, + STATE(4148), 1, sym__var, - ACTIONS(6850), 2, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2537), 2, + STATE(2603), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2121), 4, + ACTIONS(2152), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [172633] = 12, + [174759] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2150), 1, anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(7051), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2538), 1, + STATE(2608), 1, sym__immediate_decimal, - STATE(3657), 1, + STATE(3717), 1, sym_comment, - STATE(4121), 1, + STATE(4148), 1, sym__var, - ACTIONS(6850), 2, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2540), 2, + STATE(2607), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2125), 4, + ACTIONS(2148), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [172675] = 13, - ACTIONS(3), 1, + [174801] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7038), 1, - anon_sym_LT, - ACTIONS(7040), 1, - anon_sym_EQ2, - STATE(2682), 1, + STATE(2935), 1, sym__var, - STATE(3658), 1, + STATE(3718), 1, sym_comment, - STATE(4669), 1, + STATE(4916), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + ACTIONS(2158), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4662), 2, + STATE(4915), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1997), 3, + ACTIONS(2156), 3, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [172719] = 12, + anon_sym_DASH, + [174843] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2087), 1, - anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(7019), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(2548), 1, - sym__immediate_decimal, - STATE(3659), 1, - sym_comment, - STATE(4121), 1, + STATE(2935), 1, sym__var, - ACTIONS(6850), 2, + STATE(3719), 1, + sym_comment, + STATE(4912), 1, + sym__immediate_decimal, + ACTIONS(2178), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2554), 2, + STATE(4911), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2085), 4, + ACTIONS(2176), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [172761] = 12, + anon_sym_DASH, + [174885] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2131), 1, - anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(7019), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(2557), 1, - sym__immediate_decimal, - STATE(3660), 1, - sym_comment, - STATE(4121), 1, + STATE(2935), 1, sym__var, - ACTIONS(6850), 2, + STATE(3720), 1, + sym_comment, + STATE(4732), 1, + sym__immediate_decimal, + ACTIONS(2174), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2562), 2, + STATE(4714), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2129), 4, + ACTIONS(2172), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [172803] = 13, - ACTIONS(3), 1, + anon_sym_DASH, + [174927] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(6996), 1, - anon_sym_LPAREN, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(7004), 1, + ACTIONS(7019), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7042), 1, - anon_sym_LT, - ACTIONS(7044), 1, - anon_sym_EQ2, - STATE(2775), 1, + STATE(2935), 1, sym__var, - STATE(3661), 1, + STATE(3721), 1, sym_comment, - STATE(5116), 1, + STATE(4744), 1, sym__immediate_decimal, - ACTIONS(7006), 2, + ACTIONS(2130), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5117), 2, + STATE(4741), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2005), 3, + ACTIONS(2128), 3, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [172847] = 12, + anon_sym_DASH, + [174969] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(305), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(2091), 1, + ACTIONS(2134), 1, anon_sym_LF, - ACTIONS(4864), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6842), 1, + ACTIONS(7051), 1, anon_sym_LPAREN, - ACTIONS(6848), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2574), 1, + STATE(2622), 1, sym__immediate_decimal, - STATE(3662), 1, + STATE(3722), 1, sym_comment, - STATE(4121), 1, + STATE(4148), 1, sym__var, - ACTIONS(6850), 2, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2571), 2, + STATE(2618), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 4, + ACTIONS(2132), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [172889] = 13, - ACTIONS(3), 1, + [175011] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(7012), 1, + ACTIONS(7019), 1, anon_sym_LPAREN, - ACTIONS(7018), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LT, - ACTIONS(7048), 1, - anon_sym_EQ2, - STATE(3663), 1, - sym_comment, - STATE(4300), 1, + STATE(2935), 1, sym__var, - STATE(5140), 1, + STATE(3723), 1, + sym_comment, + STATE(4759), 1, sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(2142), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5141), 2, + STATE(4753), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1979), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [172933] = 12, - ACTIONS(105), 1, + ACTIONS(2140), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [175053] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, + ACTIONS(7229), 1, + anon_sym_LT, + ACTIONS(7231), 1, + anon_sym_EQ2, + STATE(2688), 1, sym__var, - STATE(3664), 1, + STATE(3724), 1, sym_comment, - STATE(4638), 1, + STATE(4600), 1, sym__immediate_decimal, - ACTIONS(2119), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4608), 2, + STATE(4597), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2117), 3, - anon_sym_SEMI, + ACTIONS(2026), 3, anon_sym_PIPE, - anon_sym_DASH, - [172975] = 12, + anon_sym_if, + anon_sym_EQ_GT, + [175097] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1781), 1, + ACTIONS(381), 1, anon_sym_DOLLAR, - ACTIONS(6852), 1, - anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(2146), 1, + anon_sym_LF, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7051), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(2902), 1, - sym__var, - STATE(3665), 1, - sym_comment, - STATE(4654), 1, + STATE(2614), 1, sym__immediate_decimal, - ACTIONS(2107), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6862), 2, + STATE(3725), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4640), 2, + STATE(2613), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2105), 3, + ACTIONS(2144), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [173017] = 13, + anon_sym_RBRACE, + [175139] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6952), 1, + ACTIONS(7235), 1, + anon_sym_EQ, + ACTIONS(7237), 1, + anon_sym_COLON, + ACTIONS(7239), 1, + anon_sym_COMMA, + ACTIONS(7241), 1, + anon_sym_LPAREN, + ACTIONS(7243), 1, anon_sym_DASH, - ACTIONS(6956), 1, - anon_sym_PLUS, - ACTIONS(6958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6968), 1, - anon_sym_DOT, - ACTIONS(6972), 1, - anon_sym_DQUOTE, - ACTIONS(6976), 1, - aux_sym_unquoted_token1, - STATE(1432), 1, - sym__str_double_quotes, - STATE(3666), 1, + STATE(3726), 1, sym_comment, - STATE(5485), 1, - sym__val_number_decimal, - ACTIONS(6974), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(921), 2, - sym_val_string, - sym_unquoted, - ACTIONS(6970), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [173061] = 13, + STATE(3830), 1, + sym_flag_capsule, + STATE(3896), 1, + sym_param_value, + STATE(3982), 1, + sym_param_type, + ACTIONS(7233), 6, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175178] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(6996), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(7000), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(6340), 1, + aux_sym_unquoted_token5, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7004), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7050), 1, - anon_sym_LT, - ACTIONS(7052), 1, - anon_sym_EQ2, - STATE(2775), 1, + STATE(2688), 1, sym__var, - STATE(3667), 1, + STATE(3727), 1, sym_comment, - STATE(5289), 1, + STATE(4583), 1, sym__immediate_decimal, - ACTIONS(2005), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7006), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5456), 2, + STATE(4584), 2, sym_expr_parenthesized, sym_val_variable, - [173104] = 14, + ACTIONS(1547), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [175219] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7054), 1, + ACTIONS(7245), 1, sym_identifier, - ACTIONS(7059), 1, + ACTIONS(7250), 1, anon_sym_DOLLAR, - ACTIONS(7062), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7065), 1, + ACTIONS(7256), 1, anon_sym_DASH_DASH, - ACTIONS(7068), 1, + ACTIONS(7259), 1, anon_sym_DASH, - STATE(3676), 1, + STATE(3726), 1, sym_param_long_flag, - STATE(3801), 1, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - ACTIONS(7057), 2, + ACTIONS(7248), 2, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(3668), 2, + STATE(3728), 2, sym_comment, aux_sym_parameter_parens_repeat1, - [173149] = 12, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(105), 1, + [175264] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(2058), 1, + anon_sym_DASH, + ACTIONS(2060), 1, + anon_sym_LBRACE, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2681), 1, - sym__immediate_decimal, - STATE(3669), 1, + ACTIONS(7207), 1, + anon_sym_LT, + ACTIONS(7262), 1, + anon_sym_EQ2, + STATE(2688), 1, + sym__var, + STATE(3729), 1, sym_comment, - STATE(4274), 1, + STATE(4610), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4609), 2, + sym_expr_parenthesized, + sym_val_variable, + [175309] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7264), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_DOT2, + ACTIONS(7268), 1, + anon_sym_EQ2, + ACTIONS(7270), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, sym__var, - ACTIONS(2089), 2, - anon_sym_SEMI, + STATE(3730), 1, + sym_comment, + STATE(4594), 1, + sym__immediate_decimal, + ACTIONS(2006), 2, anon_sym_PIPE, - ACTIONS(2091), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6924), 2, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2680), 2, + STATE(4593), 2, sym_expr_parenthesized, sym_val_variable, - [173190] = 12, + [175352] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2691), 1, + STATE(2649), 1, sym__immediate_decimal, - STATE(3670), 1, + STATE(3731), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2101), 2, + ACTIONS(2160), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2103), 2, + ACTIONS(2162), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2690), 2, + STATE(2648), 2, sym_expr_parenthesized, sym_val_variable, - [173231] = 13, + [175393] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2032), 1, + anon_sym_DASH, + ACTIONS(2034), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7071), 1, - anon_sym_LT, + ACTIONS(7065), 1, + anon_sym_LPAREN, ACTIONS(7073), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7075), 1, + ACTIONS(7185), 1, + anon_sym_LT, + ACTIONS(7274), 1, anon_sym_EQ2, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2865), 1, sym__var, - STATE(3671), 1, + STATE(3732), 1, sym_comment, - STATE(4524), 1, + STATE(5366), 1, sym__immediate_decimal, - ACTIONS(2021), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + ACTIONS(7075), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4600), 2, + STATE(5372), 2, sym_expr_parenthesized, sym_val_variable, - [173274] = 12, + [175438] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2687), 1, + STATE(2654), 1, sym__immediate_decimal, - STATE(3672), 1, + STATE(3733), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2133), 2, + ACTIONS(2172), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2135), 2, + ACTIONS(2174), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2686), 2, + STATE(2661), 2, sym_expr_parenthesized, sym_val_variable, - [173315] = 12, + [175479] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2669), 1, + STATE(2657), 1, sym__immediate_decimal, - STATE(3673), 1, + STATE(3734), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2117), 2, + ACTIONS(2128), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2119), 2, + ACTIONS(2130), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2596), 2, + STATE(2655), 2, sym_expr_parenthesized, sym_val_variable, - [173356] = 12, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(105), 1, + [175520] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7266), 1, + anon_sym_DOT2, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2679), 1, - sym__immediate_decimal, - STATE(3674), 1, + ACTIONS(7276), 1, + anon_sym_LT, + ACTIONS(7278), 1, + anon_sym_EQ2, + STATE(2688), 1, + sym__var, + STATE(3735), 1, sym_comment, - STATE(4274), 1, + STATE(4600), 1, + sym__immediate_decimal, + ACTIONS(2026), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4597), 2, + sym_expr_parenthesized, + sym_val_variable, + [175563] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7065), 1, + anon_sym_LPAREN, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7189), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7280), 1, + anon_sym_LT, + ACTIONS(7282), 1, + anon_sym_EQ2, + STATE(2865), 1, sym__var, - ACTIONS(2105), 2, - anon_sym_SEMI, + STATE(3736), 1, + sym_comment, + STATE(5426), 1, + sym__immediate_decimal, + ACTIONS(2034), 2, anon_sym_PIPE, - ACTIONS(2107), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6924), 2, + anon_sym_EQ_GT, + ACTIONS(7075), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2677), 2, + STATE(5425), 2, sym_expr_parenthesized, sym_val_variable, - [173397] = 14, + [175606] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2003), 1, + ACTIONS(2066), 1, anon_sym_DASH, - ACTIONS(2005), 1, + ACTIONS(2068), 1, anon_sym_LBRACE, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(6996), 1, + ACTIONS(7065), 1, anon_sym_LPAREN, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7004), 1, + ACTIONS(7073), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7081), 1, + ACTIONS(7179), 1, anon_sym_LT, - ACTIONS(7083), 1, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7284), 1, anon_sym_EQ2, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3675), 1, + STATE(3737), 1, sym_comment, - STATE(5372), 1, + STATE(5382), 1, sym__immediate_decimal, - ACTIONS(7006), 2, + ACTIONS(7075), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5373), 2, + STATE(5384), 2, sym_expr_parenthesized, sym_val_variable, - [173442] = 11, + [175651] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7087), 1, - anon_sym_EQ, - ACTIONS(7089), 1, - anon_sym_COLON, - ACTIONS(7091), 1, - anon_sym_COMMA, - ACTIONS(7093), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(7095), 1, - anon_sym_DASH, - STATE(3676), 1, - sym_comment, - STATE(3825), 1, - sym_flag_capsule, - STATE(3863), 1, - sym_param_value, - STATE(4046), 1, - sym_param_type, - ACTIONS(7085), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173481] = 12, - ACTIONS(35), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(6916), 1, - anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2683), 1, - sym__immediate_decimal, - STATE(3677), 1, - sym_comment, - STATE(4274), 1, + ACTIONS(7286), 1, + anon_sym_LT, + ACTIONS(7288), 1, + anon_sym_EQ2, + STATE(2688), 1, sym__var, - ACTIONS(2085), 2, - anon_sym_SEMI, + STATE(3738), 1, + sym_comment, + STATE(4608), 1, + sym__immediate_decimal, + ACTIONS(2052), 2, anon_sym_PIPE, - ACTIONS(2087), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6924), 2, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2667), 2, + STATE(4602), 2, sym_expr_parenthesized, sym_val_variable, - [173522] = 12, + [175694] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2701), 1, + STATE(2659), 1, sym__immediate_decimal, - STATE(3678), 1, + STATE(3739), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2093), 2, + ACTIONS(2140), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2095), 2, + ACTIONS(2142), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2699), 2, + STATE(2658), 2, sym_expr_parenthesized, sym_val_variable, - [173563] = 14, + [175735] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(6952), 1, - anon_sym_DASH, - ACTIONS(6956), 1, - anon_sym_PLUS, - ACTIONS(6958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6966), 1, - aux_sym_unquoted_token1, - ACTIONS(7097), 1, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7099), 1, - anon_sym_DOT, - STATE(1110), 1, + ACTIONS(6340), 1, + aux_sym_unquoted_token5, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7191), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, sym__var, - STATE(1386), 1, + STATE(3740), 1, + sym_comment, + STATE(4566), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4567), 2, + sym_expr_parenthesized, sym_val_variable, - STATE(1387), 1, - sym_unquoted, - STATE(3679), 1, + ACTIONS(1547), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [175776] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7266), 1, + anon_sym_DOT2, + ACTIONS(7270), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7290), 1, + anon_sym_LT, + ACTIONS(7292), 1, + anon_sym_EQ2, + STATE(2688), 1, + sym__var, + STATE(3741), 1, sym_comment, - STATE(5551), 1, - sym__val_number_decimal, - ACTIONS(6960), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [173608] = 13, + STATE(4610), 1, + sym__immediate_decimal, + ACTIONS(2060), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4609), 2, + sym_expr_parenthesized, + sym_val_variable, + [175819] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(6996), 1, + ACTIONS(7065), 1, anon_sym_LPAREN, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7004), 1, + ACTIONS(7073), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7101), 1, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7294), 1, anon_sym_LT, - ACTIONS(7103), 1, + ACTIONS(7296), 1, anon_sym_EQ2, - STATE(2775), 1, + STATE(2865), 1, sym__var, - STATE(3680), 1, + STATE(3742), 1, sym_comment, - STATE(5460), 1, + STATE(5424), 1, sym__immediate_decimal, - ACTIONS(1979), 2, + ACTIONS(2068), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(7006), 2, + ACTIONS(7075), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5459), 2, + STATE(5423), 2, sym_expr_parenthesized, sym_val_variable, - [173651] = 12, + [175862] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2694), 1, + STATE(2701), 1, sym__immediate_decimal, - STATE(3681), 1, + STATE(3743), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2097), 2, + ACTIONS(2132), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2099), 2, + ACTIONS(2134), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2702), 2, + sym_expr_parenthesized, + sym_val_variable, + [175903] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2024), 1, + anon_sym_DASH, + ACTIONS(2026), 1, + anon_sym_LBRACE, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7191), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7229), 1, + anon_sym_LT, + ACTIONS(7298), 1, + anon_sym_EQ2, + STATE(2688), 1, + sym__var, + STATE(3744), 1, + sym_comment, + STATE(4600), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2693), 2, + STATE(4597), 2, sym_expr_parenthesized, sym_val_variable, - [173692] = 12, + [175948] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2697), 1, + STATE(2703), 1, sym__immediate_decimal, - STATE(3682), 1, + STATE(3745), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2081), 2, + ACTIONS(2180), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2083), 2, + ACTIONS(2182), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2696), 2, + STATE(2704), 2, sym_expr_parenthesized, sym_val_variable, - [173733] = 14, + [175989] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, + ACTIONS(4144), 1, anon_sym_COLON, - ACTIONS(6952), 1, + ACTIONS(7093), 1, anon_sym_DASH, - ACTIONS(6956), 1, + ACTIONS(7097), 1, anon_sym_PLUS, - ACTIONS(6958), 1, + ACTIONS(7099), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6966), 1, + ACTIONS(7107), 1, aux_sym_unquoted_token1, - ACTIONS(7097), 1, + ACTIONS(7300), 1, anon_sym_DOLLAR, - ACTIONS(7099), 1, + ACTIONS(7302), 1, anon_sym_DOT, - STATE(1110), 1, + STATE(1127), 1, sym__var, - STATE(1219), 1, - sym_unquoted, - STATE(1220), 1, + STATE(1240), 1, sym_val_variable, - STATE(3683), 1, + STATE(1242), 1, + sym_unquoted, + STATE(3746), 1, sym_comment, - STATE(5551), 1, + STATE(5613), 1, sym__val_number_decimal, - ACTIONS(6960), 3, + ACTIONS(7101), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - [173778] = 12, + [176034] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2651), 1, + STATE(2720), 1, sym__immediate_decimal, - STATE(3684), 1, + STATE(3747), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2129), 2, + ACTIONS(2144), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2131), 2, + ACTIONS(2146), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2638), 2, - sym_expr_parenthesized, - sym_val_variable, - [173819] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1995), 1, - anon_sym_DASH, - ACTIONS(1997), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7105), 1, - anon_sym_LT, - ACTIONS(7107), 1, - anon_sym_EQ2, - ACTIONS(7109), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3685), 1, - sym_comment, - STATE(4669), 1, - sym__immediate_decimal, - ACTIONS(7111), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4662), 2, - sym_expr_parenthesized, - sym_val_variable, - [173864] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH, - ACTIONS(1959), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7109), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7113), 1, - anon_sym_LT, - ACTIONS(7115), 1, - anon_sym_EQ2, - STATE(2682), 1, - sym__var, - STATE(3686), 1, - sym_comment, - STATE(4656), 1, - sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4641), 2, + STATE(2710), 2, sym_expr_parenthesized, sym_val_variable, - [173909] = 12, + [176075] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2612), 1, + STATE(2711), 1, sym__immediate_decimal, - STATE(3687), 1, + STATE(3748), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2121), 2, + ACTIONS(2136), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2123), 2, + ACTIONS(2138), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2670), 2, + STATE(2712), 2, sym_expr_parenthesized, sym_val_variable, - [173950] = 14, + [176116] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2011), 1, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7093), 1, anon_sym_DASH, - ACTIONS(2013), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7097), 1, + anon_sym_PLUS, + ACTIONS(7099), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7107), 1, + aux_sym_unquoted_token1, + ACTIONS(7300), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7109), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7117), 1, - anon_sym_LT, - ACTIONS(7119), 1, - anon_sym_EQ2, - STATE(2682), 1, + ACTIONS(7302), 1, + anon_sym_DOT, + STATE(1127), 1, sym__var, - STATE(3688), 1, - sym_comment, - STATE(4636), 1, - sym__immediate_decimal, - ACTIONS(7111), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4607), 2, - sym_expr_parenthesized, + STATE(1412), 1, sym_val_variable, - [173995] = 12, + STATE(1413), 1, + sym_unquoted, + STATE(3749), 1, + sym_comment, + STATE(5613), 1, + sym__val_number_decimal, + ACTIONS(7101), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [176161] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6916), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2661), 1, + STATE(2716), 1, sym__immediate_decimal, - STATE(3689), 1, + STATE(3750), 1, sym_comment, - STATE(4274), 1, + STATE(4263), 1, sym__var, - ACTIONS(2125), 2, + ACTIONS(2148), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2127), 2, + ACTIONS(2150), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6924), 2, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2685), 2, + STATE(2718), 2, sym_expr_parenthesized, sym_val_variable, - [174036] = 13, + [176202] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2004), 1, + anon_sym_DASH, + ACTIONS(2006), 1, + anon_sym_LBRACE, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7121), 1, + ACTIONS(7215), 1, anon_sym_LT, - ACTIONS(7123), 1, + ACTIONS(7304), 1, anon_sym_EQ2, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3690), 1, + STATE(3751), 1, sym_comment, - STATE(4669), 1, + STATE(4594), 1, sym__immediate_decimal, - ACTIONS(1997), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4662), 2, + STATE(4593), 2, sym_expr_parenthesized, sym_val_variable, - [174079] = 13, + [176247] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2050), 1, + anon_sym_DASH, + ACTIONS(2052), 1, + anon_sym_LBRACE, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7125), 1, + ACTIONS(7219), 1, anon_sym_LT, - ACTIONS(7127), 1, + ACTIONS(7306), 1, anon_sym_EQ2, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3691), 1, + STATE(3752), 1, sym_comment, - STATE(4656), 1, + STATE(4608), 1, sym__immediate_decimal, - ACTIONS(1959), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4641), 2, + STATE(4602), 2, sym_expr_parenthesized, sym_val_variable, - [174122] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + [176292] = 12, + ACTIONS(35), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7127), 1, + anon_sym_LPAREN, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7129), 1, - anon_sym_LT, - ACTIONS(7131), 1, - anon_sym_EQ2, - STATE(2682), 1, - sym__var, - STATE(3692), 1, - sym_comment, - STATE(4636), 1, + STATE(2727), 1, sym__immediate_decimal, - ACTIONS(2013), 2, + STATE(3753), 1, + sym_comment, + STATE(4263), 1, + sym__var, + ACTIONS(2176), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + ACTIONS(2178), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4607), 2, + STATE(2666), 2, sym_expr_parenthesized, sym_val_variable, - [174165] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2019), 1, - anon_sym_DASH, - ACTIONS(2021), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + [176333] = 12, + ACTIONS(35), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7109), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7133), 1, - anon_sym_LT, - ACTIONS(7135), 1, - anon_sym_EQ2, - STATE(2682), 1, - sym__var, - STATE(3693), 1, - sym_comment, - STATE(4524), 1, - sym__immediate_decimal, - ACTIONS(7111), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4600), 2, - sym_expr_parenthesized, - sym_val_variable, - [174210] = 14, - ACTIONS(3), 1, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_DASH, - ACTIONS(1979), 1, - anon_sym_LBRACE, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(6996), 1, - anon_sym_LPAREN, - ACTIONS(7000), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(7004), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7137), 1, - anon_sym_LT, - ACTIONS(7139), 1, - anon_sym_EQ2, - STATE(2775), 1, - sym__var, - STATE(3694), 1, - sym_comment, - STATE(5366), 1, - sym__immediate_decimal, - ACTIONS(7006), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(5369), 2, - sym_expr_parenthesized, - sym_val_variable, - [174255] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3695), 1, - sym_comment, - STATE(4720), 1, + STATE(2725), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + STATE(3754), 1, + sym_comment, + STATE(4263), 1, + sym__var, + ACTIONS(2156), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2158), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4709), 2, + STATE(2708), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2083), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [174293] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7141), 1, - sym_identifier, - ACTIONS(7143), 1, - anon_sym_RBRACK, - ACTIONS(7145), 1, + [176374] = 12, + ACTIONS(35), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, - anon_sym_DASH_DASH, - ACTIONS(7151), 1, - anon_sym_DASH, - STATE(3668), 1, - aux_sym_parameter_parens_repeat1, - STATE(3676), 1, - sym_param_long_flag, - STATE(3696), 1, - sym_comment, - STATE(3801), 1, - sym__param_name, - STATE(3887), 1, - sym_param_short_flag, - STATE(3888), 1, - sym_param_opt, - STATE(3890), 1, - sym_param_rest, - STATE(4185), 1, - sym_parameter, - [174339] = 11, - ACTIONS(3), 1, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3305), 1, + STATE(2721), 1, sym__immediate_decimal, - STATE(3697), 1, + STATE(3755), 1, sym_comment, - ACTIONS(6986), 2, + STATE(4263), 1, + sym__var, + ACTIONS(2152), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2154), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3304), 2, + STATE(2723), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2123), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [174377] = 15, + [176415] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7310), 1, + anon_sym_RPAREN, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7153), 1, - anon_sym_PIPE, - STATE(3698), 1, - sym_comment, - STATE(3735), 1, + STATE(3726), 1, sym_param_long_flag, - STATE(3738), 1, + STATE(3728), 1, aux_sym_parameter_parens_repeat1, - STATE(3851), 1, + STATE(3756), 1, + sym_comment, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - [174423] = 15, + [176461] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(1400), 1, + anon_sym_DASH, + ACTIONS(7320), 1, + anon_sym_DOT2, + STATE(3757), 1, + sym_comment, + STATE(3774), 1, + sym_path, + STATE(3919), 1, + sym_cell_path, + ACTIONS(1402), 9, sym_identifier, - ACTIONS(7145), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(7147), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, - anon_sym_DASH, - ACTIONS(7155), 1, - anon_sym_RPAREN, - STATE(3676), 1, - sym_param_long_flag, - STATE(3699), 1, - sym_comment, - STATE(3708), 1, - aux_sym_parameter_parens_repeat1, - STATE(3801), 1, - sym__param_name, - STATE(3887), 1, - sym_param_short_flag, - STATE(3888), 1, - sym_param_opt, - STATE(3890), 1, - sym_param_rest, - STATE(4185), 1, - sym_parameter, - [174469] = 15, + [176491] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(1387), 1, + anon_sym_DASH, + ACTIONS(7323), 1, + anon_sym_DOT2, + STATE(3913), 1, + sym_path, + STATE(3758), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1389), 9, sym_identifier, - ACTIONS(7145), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(7147), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, - anon_sym_DASH, - ACTIONS(7157), 1, - anon_sym_RPAREN, - STATE(3668), 1, - aux_sym_parameter_parens_repeat1, - STATE(3676), 1, - sym_param_long_flag, - STATE(3700), 1, - sym_comment, - STATE(3801), 1, - sym__param_name, - STATE(3887), 1, - sym_param_short_flag, - STATE(3888), 1, - sym_param_opt, - STATE(3890), 1, - sym_param_rest, - STATE(4185), 1, - sym_parameter, - [174515] = 6, + [176519] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7159), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7161), 1, - aux_sym__immediate_decimal_token2, - STATE(3701), 1, - sym_comment, - ACTIONS(2782), 3, - sym_identifier, + ACTIONS(1407), 1, anon_sym_DASH, + ACTIONS(7326), 1, anon_sym_DOT2, - ACTIONS(2784), 8, + STATE(3758), 1, + aux_sym_cell_path_repeat1, + STATE(3759), 1, + sym_comment, + STATE(3913), 1, + sym_path, + ACTIONS(1409), 9, + sym_identifier, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -341213,20 +346930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174543] = 7, + [176549] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(1400), 1, anon_sym_DASH, - ACTIONS(7163), 1, + ACTIONS(7326), 1, anon_sym_DOT2, - STATE(3702), 1, + STATE(3760), 1, sym_comment, - STATE(3736), 1, - aux_sym_cell_path_repeat1, - STATE(3857), 1, + STATE(3781), 1, sym_path, - ACTIONS(1442), 9, + STATE(3919), 1, + sym_cell_path, + ACTIONS(1402), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -341236,226 +346953,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174573] = 15, + [176579] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7165), 1, + ACTIONS(7328), 1, anon_sym_RBRACK, - STATE(3676), 1, + STATE(3726), 1, sym_param_long_flag, - STATE(3703), 1, + STATE(3761), 1, sym_comment, - STATE(3707), 1, + STATE(3776), 1, aux_sym_parameter_parens_repeat1, - STATE(3801), 1, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - [174619] = 11, + [176625] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2034), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7211), 1, + anon_sym_LT, + ACTIONS(7213), 1, + anon_sym_EQ2, + ACTIONS(7330), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3704), 1, + STATE(3762), 1, sym_comment, - STATE(4701), 1, + STATE(4359), 1, + sym__var, + STATE(5185), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + ACTIONS(7177), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4698), 2, + STATE(5186), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2135), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [174657] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6952), 1, - anon_sym_DASH, - ACTIONS(6956), 1, - anon_sym_PLUS, - ACTIONS(6958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6976), 1, - aux_sym_unquoted_token1, - ACTIONS(7167), 1, - anon_sym_DOLLAR, - ACTIONS(7169), 1, - anon_sym_DOT, - STATE(1129), 1, - sym__var, - STATE(1590), 1, - sym_unquoted, - STATE(1591), 1, - sym_val_variable, - STATE(3705), 1, - sym_comment, - STATE(5485), 1, - sym__val_number_decimal, - ACTIONS(6970), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [174699] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7054), 1, - sym_identifier, - ACTIONS(7057), 1, - anon_sym_PIPE, - ACTIONS(7059), 1, - anon_sym_DOLLAR, - ACTIONS(7062), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7065), 1, - anon_sym_DASH_DASH, - ACTIONS(7068), 1, - anon_sym_DASH, - STATE(3735), 1, - sym_param_long_flag, - STATE(3851), 1, - sym__param_name, - STATE(3887), 1, - sym_param_short_flag, - STATE(3888), 1, - sym_param_opt, - STATE(3890), 1, - sym_param_rest, - STATE(4185), 1, - sym_parameter, - STATE(3706), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - [174743] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7141), 1, - sym_identifier, - ACTIONS(7145), 1, - anon_sym_DOLLAR, - ACTIONS(7147), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, - anon_sym_DASH_DASH, - ACTIONS(7151), 1, - anon_sym_DASH, - ACTIONS(7171), 1, - anon_sym_RBRACK, - STATE(3668), 1, - aux_sym_parameter_parens_repeat1, - STATE(3676), 1, - sym_param_long_flag, - STATE(3707), 1, - sym_comment, - STATE(3801), 1, - sym__param_name, - STATE(3887), 1, - sym_param_short_flag, - STATE(3888), 1, - sym_param_opt, - STATE(3890), 1, - sym_param_rest, - STATE(4185), 1, - sym_parameter, - [174789] = 15, + [176667] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7173), 1, + ACTIONS(7332), 1, anon_sym_RPAREN, - STATE(3668), 1, - aux_sym_parameter_parens_repeat1, - STATE(3676), 1, + STATE(3726), 1, sym_param_long_flag, - STATE(3708), 1, + STATE(3763), 1, sym_comment, - STATE(3801), 1, + STATE(3777), 1, + aux_sym_parameter_parens_repeat1, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - [174835] = 11, + [176713] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(6340), 1, + aux_sym_unquoted_token5, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3709), 1, + STATE(3764), 1, sym_comment, - STATE(4704), 1, + STATE(4583), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + ACTIONS(1547), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4702), 2, + STATE(4584), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2103), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [174873] = 7, + [176753] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, + STATE(3758), 1, + aux_sym_cell_path_repeat1, + STATE(3765), 1, + sym_comment, + STATE(3913), 1, + sym_path, + ACTIONS(1407), 2, anon_sym_DASH, - ACTIONS(7163), 1, anon_sym_DOT2, - STATE(3702), 1, - sym_path, - STATE(3710), 1, - sym_comment, - STATE(3881), 1, - sym_cell_path, - ACTIONS(1397), 9, + ACTIONS(1409), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -341465,150 +347094,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174903] = 11, + [176781] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3303), 1, + STATE(3377), 1, sym__immediate_decimal, - STATE(3711), 1, + STATE(3766), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3302), 2, + STATE(3378), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2127), 3, + ACTIONS(2130), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [174941] = 7, + [176819] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DASH, - ACTIONS(7163), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(5486), 1, anon_sym_DOT2, - STATE(3712), 1, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, + sym__var, + STATE(3375), 1, + sym__immediate_decimal, + STATE(3767), 1, sym_comment, - STATE(3749), 1, - aux_sym_cell_path_repeat1, - STATE(3857), 1, - sym_path, - ACTIONS(1442), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(7167), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3376), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2142), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174971] = 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + [176857] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3301), 1, + STATE(3336), 1, sym__immediate_decimal, - STATE(3713), 1, + STATE(3768), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3299), 2, + STATE(3331), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2087), 3, + ACTIONS(2134), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [175009] = 11, + [176895] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3326), 1, + STATE(3382), 1, sym__immediate_decimal, - STATE(3714), 1, + STATE(3769), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3279), 2, + STATE(3383), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2095), 3, + ACTIONS(2174), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [175047] = 11, + [176933] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3334), 1, + STATE(3384), 1, sym__immediate_decimal, - STATE(3715), 1, + STATE(3770), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3349), 2, + STATE(3388), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2083), 3, + ACTIONS(2162), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [175085] = 6, + [176971] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1411), 1, + ACTIONS(7245), 1, + sym_identifier, + ACTIONS(7248), 1, + anon_sym_PIPE, + ACTIONS(7250), 1, + anon_sym_DOLLAR, + ACTIONS(7253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7256), 1, + anon_sym_DASH_DASH, + ACTIONS(7259), 1, anon_sym_DASH, - ACTIONS(7175), 1, + STATE(3798), 1, + sym_param_long_flag, + STATE(3923), 1, + sym_param_short_flag, + STATE(3925), 1, + sym_param_opt, + STATE(3929), 1, + sym_param_rest, + STATE(3930), 1, + sym__param_name, + STATE(4192), 1, + sym_parameter, + STATE(3771), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + [177015] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1467), 1, + anon_sym_DASH, + ACTIONS(7326), 1, anon_sym_DOT2, - STATE(3857), 1, - sym_path, - STATE(3716), 2, + STATE(3772), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1413), 9, + STATE(3781), 1, + sym_path, + STATE(3914), 1, + sym_cell_path, + ACTIONS(1469), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -341618,76 +347282,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175113] = 11, + [177045] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(6340), 1, + aux_sym_unquoted_token5, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(6978), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3298), 1, - sym__immediate_decimal, - STATE(3717), 1, + STATE(3773), 1, sym_comment, - ACTIONS(6986), 2, + STATE(4566), 1, + sym__immediate_decimal, + ACTIONS(1547), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3297), 2, + STATE(4567), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2131), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [175151] = 13, + [177085] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6952), 1, + ACTIONS(1394), 1, anon_sym_DASH, - ACTIONS(6956), 1, - anon_sym_PLUS, - ACTIONS(6958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6976), 1, - aux_sym_unquoted_token1, - ACTIONS(7167), 1, - anon_sym_DOLLAR, - ACTIONS(7169), 1, - anon_sym_DOT, - STATE(1129), 1, - sym__var, - STATE(1340), 1, - sym_val_variable, - STATE(1345), 1, - sym_unquoted, - STATE(3718), 1, - sym_comment, - STATE(5485), 1, - sym__val_number_decimal, - ACTIONS(6970), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [175193] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7178), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7180), 1, - aux_sym__immediate_decimal_token2, - STATE(3719), 1, + ACTIONS(7326), 1, + anon_sym_DOT2, + STATE(3765), 1, + aux_sym_cell_path_repeat1, + STATE(3774), 1, sym_comment, - ACTIONS(2806), 3, + STATE(3913), 1, + sym_path, + ACTIONS(1396), 9, sym_identifier, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(2808), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -341696,327 +347333,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175221] = 15, + [177115] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7182), 1, - anon_sym_RBRACK, - STATE(3676), 1, - sym_param_long_flag, - STATE(3720), 1, + ACTIONS(7334), 1, + anon_sym_PIPE, + STATE(3775), 1, sym_comment, - STATE(3743), 1, - aux_sym_parameter_parens_repeat1, + STATE(3798), 1, + sym_param_long_flag, STATE(3801), 1, - sym__param_name, - STATE(3887), 1, + aux_sym_parameter_parens_repeat1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(3930), 1, + sym__param_name, + STATE(4192), 1, sym_parameter, - [175267] = 13, + [177161] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6952), 1, - anon_sym_DASH, - ACTIONS(6956), 1, - anon_sym_PLUS, - ACTIONS(6958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6966), 1, - aux_sym_unquoted_token1, - ACTIONS(7097), 1, + ACTIONS(7308), 1, + sym_identifier, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7099), 1, - anon_sym_DOT, - STATE(1110), 1, - sym__var, - STATE(1386), 1, - sym_val_variable, - STATE(1387), 1, - sym_unquoted, - STATE(3721), 1, + ACTIONS(7314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_DASH_DASH, + ACTIONS(7318), 1, + anon_sym_DASH, + ACTIONS(7336), 1, + anon_sym_RBRACK, + STATE(3726), 1, + sym_param_long_flag, + STATE(3728), 1, + aux_sym_parameter_parens_repeat1, + STATE(3776), 1, sym_comment, - STATE(5551), 1, - sym__val_number_decimal, - ACTIONS(6960), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [175309] = 15, + STATE(3828), 1, + sym__param_name, + STATE(3923), 1, + sym_param_short_flag, + STATE(3925), 1, + sym_param_opt, + STATE(3929), 1, + sym_param_rest, + STATE(4192), 1, + sym_parameter, + [177207] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7184), 1, + ACTIONS(7338), 1, anon_sym_RPAREN, - STATE(3676), 1, + STATE(3726), 1, sym_param_long_flag, - STATE(3700), 1, + STATE(3728), 1, aux_sym_parameter_parens_repeat1, - STATE(3722), 1, + STATE(3777), 1, sym_comment, - STATE(3801), 1, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - [175355] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3723), 1, - sym_comment, - STATE(4715), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4710), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2095), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [175393] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3368), 1, - sym__immediate_decimal, - STATE(3724), 1, - sym_comment, - ACTIONS(6986), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3367), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2103), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [175431] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3311), 1, - sym__immediate_decimal, - STATE(3725), 1, - sym_comment, - ACTIONS(6986), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3369), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2099), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [175469] = 11, + [177253] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7093), 1, + anon_sym_DASH, + ACTIONS(7097), 1, + anon_sym_PLUS, + ACTIONS(7099), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7107), 1, + aux_sym_unquoted_token1, + ACTIONS(7300), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7302), 1, + anon_sym_DOT, + STATE(1127), 1, sym__var, - STATE(3726), 1, - sym_comment, - STATE(4708), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4705), 2, - sym_expr_parenthesized, + STATE(1412), 1, sym_val_variable, - ACTIONS(2099), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [175507] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3727), 1, + STATE(1413), 1, + sym_unquoted, + STATE(3778), 1, sym_comment, - STATE(4494), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4493), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2131), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [175545] = 11, + STATE(5613), 1, + sym__val_number_decimal, + ACTIONS(7101), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [177295] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7093), 1, + anon_sym_DASH, + ACTIONS(7097), 1, + anon_sym_PLUS, + ACTIONS(7099), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7107), 1, + aux_sym_unquoted_token1, + ACTIONS(7300), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7302), 1, + anon_sym_DOT, + STATE(1127), 1, sym__var, - STATE(3728), 1, - sym_comment, - STATE(4501), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4500), 2, - sym_expr_parenthesized, + STATE(1240), 1, sym_val_variable, - ACTIONS(2087), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [175583] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3360), 1, - sym__immediate_decimal, - STATE(3729), 1, + STATE(1242), 1, + sym_unquoted, + STATE(3779), 1, sym_comment, - ACTIONS(6986), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3356), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2119), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [175621] = 11, + STATE(5613), 1, + sym__val_number_decimal, + ACTIONS(7101), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [177337] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3362), 1, + STATE(3312), 1, sym__immediate_decimal, - STATE(3730), 1, + STATE(3780), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3361), 2, + STATE(3308), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2107), 3, + ACTIONS(2158), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [175659] = 7, + [177375] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1399), 1, + ACTIONS(1394), 1, anon_sym_DASH, - ACTIONS(7186), 1, + ACTIONS(7326), 1, anon_sym_DOT2, - STATE(3712), 1, - sym_path, - STATE(3731), 1, + STATE(3759), 1, + aux_sym_cell_path_repeat1, + STATE(3781), 1, sym_comment, - STATE(3878), 1, - sym_cell_path, - ACTIONS(1401), 9, + STATE(3913), 1, + sym_path, + ACTIONS(1396), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -342026,74 +347534,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175689] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3732), 1, - sym_comment, - STATE(4503), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4502), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2127), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [175727] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3733), 1, - sym_comment, - STATE(4507), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4504), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2123), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [175765] = 7, + [177405] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1399), 1, + ACTIONS(1467), 1, anon_sym_DASH, - ACTIONS(7163), 1, + ACTIONS(7340), 1, anon_sym_DOT2, - STATE(3702), 1, + STATE(3774), 1, sym_path, - STATE(3734), 1, + STATE(3782), 1, sym_comment, - STATE(3878), 1, + STATE(3914), 1, sym_cell_path, - ACTIONS(1401), 9, + ACTIONS(1469), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -342103,48 +347557,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175795] = 11, + [177435] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7089), 1, - anon_sym_COLON, - ACTIONS(7091), 1, - anon_sym_COMMA, - ACTIONS(7093), 1, - anon_sym_LPAREN, - ACTIONS(7095), 1, - anon_sym_DASH, - ACTIONS(7189), 1, - anon_sym_EQ, - STATE(3735), 1, + ACTIONS(7343), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7345), 1, + aux_sym__immediate_decimal_token2, + STATE(3783), 1, sym_comment, - STATE(3863), 1, - sym_param_value, - STATE(3877), 1, - sym_flag_capsule, - STATE(4053), 1, - sym_param_type, - ACTIONS(7085), 5, + ACTIONS(2832), 3, sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175833] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1436), 1, anon_sym_DASH, - ACTIONS(7163), 1, anon_sym_DOT2, - STATE(3716), 1, - aux_sym_cell_path_repeat1, - STATE(3736), 1, - sym_comment, - STATE(3857), 1, - sym_path, - ACTIONS(1438), 9, - sym_identifier, + ACTIONS(2834), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -342153,362 +347579,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175863] = 7, + [177463] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_DASH, - ACTIONS(7191), 1, - anon_sym_DOT2, - STATE(3712), 1, - sym_path, - STATE(3737), 1, - sym_comment, - STATE(3881), 1, - sym_cell_path, - ACTIONS(1397), 9, + ACTIONS(7308), 1, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(7312), 1, anon_sym_DOLLAR, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - [175893] = 15, + ACTIONS(7318), 1, + anon_sym_DASH, + ACTIONS(7347), 1, + anon_sym_RPAREN, + STATE(3726), 1, + sym_param_long_flag, + STATE(3728), 1, + aux_sym_parameter_parens_repeat1, + STATE(3784), 1, + sym_comment, + STATE(3828), 1, + sym__param_name, + STATE(3923), 1, + sym_param_short_flag, + STATE(3925), 1, + sym_param_opt, + STATE(3929), 1, + sym_param_rest, + STATE(4192), 1, + sym_parameter, + [177509] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7194), 1, - anon_sym_PIPE, - STATE(3706), 1, - aux_sym_parameter_parens_repeat1, - STATE(3735), 1, + ACTIONS(7349), 1, + anon_sym_RBRACK, + STATE(3726), 1, sym_param_long_flag, - STATE(3738), 1, + STATE(3728), 1, + aux_sym_parameter_parens_repeat1, + STATE(3785), 1, sym_comment, - STATE(3851), 1, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - [175939] = 11, + [177555] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3739), 1, + STATE(3328), 1, + sym__immediate_decimal, + STATE(3786), 1, sym_comment, - STATE(4692), 1, + ACTIONS(7167), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3327), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2146), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [177593] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, + sym__var, + STATE(3330), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + STATE(3787), 1, + sym_comment, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4691), 2, + STATE(3329), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2119), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [175977] = 15, + ACTIONS(2182), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [177631] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7093), 1, + anon_sym_DASH, + ACTIONS(7097), 1, + anon_sym_PLUS, + ACTIONS(7099), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7157), 1, + aux_sym_unquoted_token1, + ACTIONS(7351), 1, + anon_sym_DOLLAR, + ACTIONS(7353), 1, + anon_sym_DOT, + STATE(1173), 1, + sym__var, + STATE(1586), 1, + sym_unquoted, + STATE(1587), 1, + sym_val_variable, + STATE(3788), 1, + sym_comment, + STATE(5582), 1, + sym__val_number_decimal, + ACTIONS(7151), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [177673] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7093), 1, + anon_sym_DASH, + ACTIONS(7097), 1, + anon_sym_PLUS, + ACTIONS(7099), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7157), 1, + aux_sym_unquoted_token1, + ACTIONS(7351), 1, + anon_sym_DOLLAR, + ACTIONS(7353), 1, + anon_sym_DOT, + STATE(1173), 1, + sym__var, + STATE(1292), 1, + sym_unquoted, + STATE(1293), 1, + sym_val_variable, + STATE(3789), 1, + sym_comment, + STATE(5582), 1, + sym__val_number_decimal, + ACTIONS(7151), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [177715] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7196), 1, - anon_sym_RPAREN, - STATE(3676), 1, + ACTIONS(7355), 1, + anon_sym_RBRACK, + STATE(3726), 1, sym_param_long_flag, - STATE(3740), 1, + STATE(3790), 1, sym_comment, - STATE(3742), 1, + STATE(3799), 1, aux_sym_parameter_parens_repeat1, - STATE(3801), 1, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - [176023] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3741), 1, - sym_comment, - STATE(4694), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4693), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2107), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [176061] = 15, + [177761] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7198), 1, + ACTIONS(7357), 1, anon_sym_RPAREN, - STATE(3668), 1, - aux_sym_parameter_parens_repeat1, - STATE(3676), 1, + STATE(3726), 1, sym_param_long_flag, - STATE(3742), 1, + STATE(3756), 1, + aux_sym_parameter_parens_repeat1, + STATE(3791), 1, sym_comment, - STATE(3801), 1, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - [176107] = 15, + [177807] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7359), 1, anon_sym_RBRACK, - STATE(3668), 1, - aux_sym_parameter_parens_repeat1, - STATE(3676), 1, + STATE(3726), 1, sym_param_long_flag, - STATE(3743), 1, + STATE(3785), 1, + aux_sym_parameter_parens_repeat1, + STATE(3792), 1, sym_comment, - STATE(3801), 1, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - [176153] = 15, + [177853] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, + sym__var, + STATE(3307), 1, + sym__immediate_decimal, + STATE(3793), 1, + sym_comment, + ACTIONS(7167), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3306), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2178), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [177891] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7308), 1, sym_identifier, - ACTIONS(7145), 1, + ACTIONS(7312), 1, anon_sym_DOLLAR, - ACTIONS(7147), 1, + ACTIONS(7314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7149), 1, + ACTIONS(7316), 1, anon_sym_DASH_DASH, - ACTIONS(7151), 1, + ACTIONS(7318), 1, anon_sym_DASH, - ACTIONS(7202), 1, - anon_sym_RBRACK, - STATE(3676), 1, + ACTIONS(7361), 1, + anon_sym_RPAREN, + STATE(3726), 1, sym_param_long_flag, - STATE(3696), 1, + STATE(3784), 1, aux_sym_parameter_parens_repeat1, - STATE(3744), 1, + STATE(3794), 1, sym_comment, - STATE(3801), 1, + STATE(3828), 1, sym__param_name, - STATE(3887), 1, + STATE(3923), 1, sym_param_short_flag, - STATE(3888), 1, + STATE(3925), 1, sym_param_opt, - STATE(3890), 1, + STATE(3929), 1, sym_param_rest, - STATE(4185), 1, + STATE(4192), 1, sym_parameter, - [176199] = 11, + [177937] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3364), 1, + STATE(3316), 1, sym__immediate_decimal, - STATE(3745), 1, + STATE(3795), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3363), 2, + STATE(3315), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2091), 3, + ACTIONS(2154), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [176237] = 11, + [177975] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3366), 1, + STATE(3323), 1, sym__immediate_decimal, - STATE(3746), 1, + STATE(3796), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3365), 2, + STATE(3321), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2135), 3, + ACTIONS(2150), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [176275] = 11, + [178013] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3747), 1, - sym_comment, - STATE(4696), 1, + STATE(3326), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + STATE(3797), 1, + sym_comment, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4695), 2, + STATE(3324), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2091), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [176313] = 13, + ACTIONS(2138), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [178051] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6952), 1, + ACTIONS(7237), 1, + anon_sym_COLON, + ACTIONS(7239), 1, + anon_sym_COMMA, + ACTIONS(7241), 1, + anon_sym_LPAREN, + ACTIONS(7243), 1, anon_sym_DASH, - ACTIONS(6956), 1, - anon_sym_PLUS, - ACTIONS(6958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6966), 1, - aux_sym_unquoted_token1, - ACTIONS(7097), 1, + ACTIONS(7363), 1, + anon_sym_EQ, + STATE(3798), 1, + sym_comment, + STATE(3892), 1, + sym_flag_capsule, + STATE(3896), 1, + sym_param_value, + STATE(4103), 1, + sym_param_type, + ACTIONS(7233), 5, + sym_identifier, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(7099), 1, - anon_sym_DOT, - STATE(1110), 1, - sym__var, - STATE(1219), 1, - sym_unquoted, - STATE(1220), 1, - sym_val_variable, - STATE(3748), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [178089] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7308), 1, + sym_identifier, + ACTIONS(7312), 1, + anon_sym_DOLLAR, + ACTIONS(7314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_DASH_DASH, + ACTIONS(7318), 1, + anon_sym_DASH, + ACTIONS(7365), 1, + anon_sym_RBRACK, + STATE(3726), 1, + sym_param_long_flag, + STATE(3728), 1, + aux_sym_parameter_parens_repeat1, + STATE(3799), 1, sym_comment, - STATE(5551), 1, - sym__val_number_decimal, - ACTIONS(6960), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [176355] = 6, + STATE(3828), 1, + sym__param_name, + STATE(3923), 1, + sym_param_short_flag, + STATE(3925), 1, + sym_param_opt, + STATE(3929), 1, + sym_param_rest, + STATE(4192), 1, + sym_parameter, + [178135] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3716), 1, - aux_sym_cell_path_repeat1, - STATE(3749), 1, + ACTIONS(7367), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token2, + STATE(3800), 1, sym_comment, - STATE(3857), 1, - sym_path, - ACTIONS(1436), 2, + ACTIONS(2906), 3, + sym_identifier, anon_sym_DASH, anon_sym_DOT2, - ACTIONS(1438), 9, - sym_identifier, + ACTIONS(2908), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -342517,446 +348065,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176383] = 12, + [178163] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7308), 1, + sym_identifier, + ACTIONS(7312), 1, + anon_sym_DOLLAR, + ACTIONS(7314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_DASH_DASH, + ACTIONS(7318), 1, + anon_sym_DASH, + ACTIONS(7371), 1, + anon_sym_PIPE, + STATE(3771), 1, + aux_sym_parameter_parens_repeat1, + STATE(3798), 1, + sym_param_long_flag, + STATE(3801), 1, + sym_comment, + STATE(3923), 1, + sym_param_short_flag, + STATE(3925), 1, + sym_param_opt, + STATE(3929), 1, + sym_param_rest, + STATE(3930), 1, + sym__param_name, + STATE(4192), 1, + sym_parameter, + [178209] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4293), 1, + ACTIONS(2034), 1, + anon_sym_EQ_GT, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(7065), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(7073), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7204), 1, + ACTIONS(7280), 1, anon_sym_LT, - ACTIONS(7206), 1, + ACTIONS(7282), 1, anon_sym_EQ2, - ACTIONS(7208), 1, - aux_sym__immediate_decimal_token1, - STATE(3189), 1, + STATE(2865), 1, sym__var, - STATE(3310), 1, - sym__immediate_decimal, - STATE(3750), 1, + STATE(3802), 1, sym_comment, - ACTIONS(5371), 2, + STATE(5426), 1, + sym__immediate_decimal, + ACTIONS(7075), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3309), 2, + STATE(5425), 2, sym_expr_parenthesized, sym_val_variable, - [176422] = 12, + [178251] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_DASH, - ACTIONS(2091), 1, + ACTIONS(1547), 1, anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(6340), 1, + aux_sym_unquoted_token5, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3751), 1, - sym_comment, - STATE(4696), 1, + STATE(3405), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + STATE(3803), 1, + sym_comment, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4695), 2, + STATE(3406), 2, sym_expr_parenthesized, sym_val_variable, - [176461] = 12, + [178290] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2105), 1, - anon_sym_DASH, - ACTIONS(2107), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(6995), 1, + anon_sym_DOLLAR, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_LT, + ACTIONS(7377), 1, + anon_sym_EQ2, + STATE(2903), 1, sym__var, - STATE(3752), 1, + STATE(3804), 1, sym_comment, - STATE(4694), 1, + STATE(4361), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4693), 2, + STATE(4360), 2, sym_expr_parenthesized, sym_val_variable, - [176500] = 12, + [178329] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2117), 1, - anon_sym_DASH, - ACTIONS(2119), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(5096), 1, + anon_sym_DOT2, + ACTIONS(7379), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7381), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7383), 1, + anon_sym_LT, + ACTIONS(7385), 1, + anon_sym_EQ2, + ACTIONS(7387), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2395), 1, sym__var, - STATE(3753), 1, - sym_comment, - STATE(4692), 1, + STATE(2696), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + STATE(3805), 1, + sym_comment, + ACTIONS(5104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4691), 2, + STATE(2697), 2, sym_expr_parenthesized, sym_val_variable, - [176539] = 12, + [178368] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2093), 1, - anon_sym_DASH, - ACTIONS(2095), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3754), 1, + STATE(3806), 1, sym_comment, - STATE(4715), 1, + STATE(4527), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(2182), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4710), 2, + STATE(4717), 2, sym_expr_parenthesized, sym_val_variable, - [176578] = 12, + [178405] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_DASH, - ACTIONS(2083), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3755), 1, + STATE(3807), 1, sym_comment, - STATE(4720), 1, + STATE(4736), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(2134), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4709), 2, + STATE(4733), 2, sym_expr_parenthesized, sym_val_variable, - [176617] = 12, + [178442] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_DASH, - ACTIONS(2099), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(5096), 1, + anon_sym_DOT2, + ACTIONS(7379), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7381), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7387), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7389), 1, + anon_sym_LT, + ACTIONS(7391), 1, + anon_sym_EQ2, + STATE(2395), 1, sym__var, - STATE(3756), 1, - sym_comment, - STATE(4708), 1, + STATE(2680), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + STATE(3808), 1, + sym_comment, + ACTIONS(5104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4705), 2, + STATE(2691), 2, sym_expr_parenthesized, sym_val_variable, - [176656] = 12, + [178481] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(7210), 1, - anon_sym_DOLLAR, - ACTIONS(7212), 1, - anon_sym_DASH, - ACTIONS(7214), 1, - anon_sym_LBRACE, - STATE(2913), 1, - sym__var, - STATE(3205), 1, - sym_val_closure, - STATE(3207), 1, - sym_block, - STATE(3757), 1, - sym_comment, - STATE(3884), 1, - sym__flag, - STATE(1380), 2, - sym__blosure, - sym_val_variable, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [176695] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4137), 1, - anon_sym_not, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(7220), 1, - anon_sym_DASH, - STATE(1782), 1, - sym__var, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3758), 1, - sym_comment, - ACTIONS(4141), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [176730] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7222), 1, - anon_sym_LT, - ACTIONS(7224), 1, - anon_sym_EQ2, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3759), 1, + STATE(3809), 1, sym_comment, - STATE(4552), 1, + STATE(4681), 1, sym__immediate_decimal, - ACTIONS(7079), 2, + ACTIONS(2138), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4518), 2, + STATE(4677), 2, sym_expr_parenthesized, sym_val_variable, - [176769] = 11, + [178518] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3760), 1, + ACTIONS(7393), 1, + anon_sym_LPAREN, + ACTIONS(7395), 1, + anon_sym_DOLLAR, + ACTIONS(7397), 1, + anon_sym_LT, + ACTIONS(7399), 1, + anon_sym_EQ2, + STATE(3810), 1, sym_comment, - STATE(4696), 1, + STATE(4271), 1, + sym__var, + STATE(4640), 1, sym__immediate_decimal, - ACTIONS(2091), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + ACTIONS(7117), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4695), 2, + STATE(4639), 2, sym_expr_parenthesized, sym_val_variable, - [176806] = 10, + [178557] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4393), 1, - anon_sym_not, - ACTIONS(6830), 1, - anon_sym_DOLLAR, - ACTIONS(7226), 1, - anon_sym_LPAREN, - ACTIONS(7228), 1, - anon_sym_DASH, - STATE(2866), 1, - sym__var, - STATE(3007), 1, - sym__expr_unary_minus, - STATE(3761), 1, + ACTIONS(7401), 1, + anon_sym_DOT2, + ACTIONS(7404), 1, + aux_sym__immediate_decimal_token2, + STATE(3811), 1, sym_comment, - ACTIONS(4397), 2, - anon_sym_true, - anon_sym_false, - STATE(3043), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [176841] = 12, + ACTIONS(2934), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2936), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [178584] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2101), 1, - anon_sym_DASH, - ACTIONS(2103), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(6981), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7406), 1, + anon_sym_LPAREN, + ACTIONS(7408), 1, + anon_sym_LT, + ACTIONS(7410), 1, + anon_sym_EQ2, + STATE(2935), 1, sym__var, - STATE(3762), 1, + STATE(3812), 1, sym_comment, - STATE(4704), 1, + STATE(4775), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4702), 2, + STATE(4773), 2, sym_expr_parenthesized, sym_val_variable, - [176880] = 12, + [178623] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2121), 1, - anon_sym_DASH, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(6981), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7406), 1, + anon_sym_LPAREN, + ACTIONS(7412), 1, + anon_sym_LT, + ACTIONS(7414), 1, + anon_sym_EQ2, + STATE(2935), 1, sym__var, - STATE(3763), 1, + STATE(3813), 1, sym_comment, - STATE(4507), 1, + STATE(4771), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4504), 2, + STATE(4768), 2, sym_expr_parenthesized, sym_val_variable, - [176919] = 12, + [178662] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2125), 1, - anon_sym_DASH, - ACTIONS(2127), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(4570), 1, + anon_sym_not, + ACTIONS(7416), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7418), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7109), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7420), 1, + anon_sym_DASH, + STATE(956), 1, sym__var, - STATE(3764), 1, + STATE(1118), 1, + sym__expr_unary_minus, + STATE(3814), 1, sym_comment, - STATE(4503), 1, - sym__immediate_decimal, - ACTIONS(7111), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4502), 2, + ACTIONS(4574), 2, + anon_sym_true, + anon_sym_false, + STATE(1122), 4, + sym_expr_unary, sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [176958] = 12, + [178697] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2085), 1, - anon_sym_DASH, - ACTIONS(2087), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3765), 1, + STATE(3815), 1, sym_comment, - STATE(4501), 1, + STATE(4670), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(2150), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4500), 2, + STATE(4668), 2, sym_expr_parenthesized, sym_val_variable, - [176997] = 6, + [178734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7180), 1, + ACTIONS(7345), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7230), 1, + ACTIONS(7422), 1, anon_sym_DOT2, - STATE(3766), 1, + STATE(3816), 1, sym_comment, - ACTIONS(2806), 2, + ACTIONS(2832), 2, sym_identifier, anon_sym_DASH, - ACTIONS(2808), 8, + ACTIONS(2834), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -342965,469 +348485,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177024] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6796), 1, - anon_sym_DOT2, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, - anon_sym_DOLLAR, - ACTIONS(7226), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_LT, - ACTIONS(7235), 1, - anon_sym_EQ2, - STATE(2866), 1, - sym__var, - STATE(3767), 1, - sym_comment, - STATE(4381), 1, - sym__immediate_decimal, - ACTIONS(6802), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4382), 2, - sym_expr_parenthesized, - sym_val_variable, - [177063] = 12, + [178761] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2055), 1, + ACTIONS(2040), 1, anon_sym_DOT2, - ACTIONS(7167), 1, + ACTIONS(7300), 1, anon_sym_DOLLAR, - ACTIONS(7237), 1, + ACTIONS(7425), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7427), 1, anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7429), 1, anon_sym_EQ2, - ACTIONS(7243), 1, - aux_sym__immediate_decimal_token1, - STATE(1129), 1, - sym__var, - STATE(1612), 1, - sym__immediate_decimal, - STATE(3768), 1, - sym_comment, - ACTIONS(2063), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1613), 2, - sym_expr_parenthesized, - sym_val_variable, - [177102] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DOT2, - ACTIONS(7167), 1, - anon_sym_DOLLAR, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7243), 1, + ACTIONS(7431), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7245), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_EQ2, - STATE(1129), 1, + STATE(1140), 1, sym__var, - STATE(1511), 1, + STATE(1209), 1, sym__immediate_decimal, - STATE(3769), 1, + STATE(3817), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(2048), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1587), 2, + STATE(1237), 2, sym_expr_parenthesized, sym_val_variable, - [177141] = 11, + [178800] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3770), 1, + STATE(3818), 1, sym_comment, - STATE(4701), 1, + STATE(4653), 1, sym__immediate_decimal, - ACTIONS(2135), 2, + ACTIONS(2154), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(7079), 2, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4698), 2, + STATE(4652), 2, sym_expr_parenthesized, sym_val_variable, - [177178] = 11, + [178837] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7435), 1, + anon_sym_AT, + ACTIONS(7437), 1, + anon_sym_DASH, + STATE(3819), 1, + sym_comment, + STATE(4044), 1, + sym_param_cmd, + ACTIONS(7433), 9, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [178864] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3771), 1, + STATE(3820), 1, sym_comment, - STATE(4704), 1, + STATE(4649), 1, sym__immediate_decimal, - ACTIONS(2103), 2, + ACTIONS(2158), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(7079), 2, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4702), 2, + STATE(4648), 2, sym_expr_parenthesized, sym_val_variable, - [177215] = 12, + [178901] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2129), 1, - anon_sym_DASH, - ACTIONS(2131), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7439), 1, + anon_sym_LT, + ACTIONS(7441), 1, + anon_sym_EQ2, + ACTIONS(7443), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(1684), 1, sym__var, - STATE(3772), 1, - sym_comment, - STATE(4494), 1, + STATE(2243), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + STATE(3821), 1, + sym_comment, + ACTIONS(2960), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4493), 2, + STATE(2242), 2, sym_expr_parenthesized, sym_val_variable, - [177254] = 11, + [178940] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(4510), 1, + anon_sym_not, + ACTIONS(7445), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7447), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, - anon_sym_DOT2, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7449), 1, + anon_sym_DASH, + STATE(533), 1, sym__var, - STATE(3773), 1, + STATE(628), 1, + sym__expr_unary_minus, + STATE(3822), 1, sym_comment, - STATE(4708), 1, - sym__immediate_decimal, - ACTIONS(2099), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4705), 2, + ACTIONS(4514), 2, + anon_sym_true, + anon_sym_false, + STATE(588), 4, + sym_expr_unary, sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [177291] = 12, + [178975] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2841), 1, + ACTIONS(2102), 1, + anon_sym_DOT2, + ACTIONS(7351), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(7451), 1, anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_DOT2, - ACTIONS(7249), 1, + ACTIONS(7453), 1, anon_sym_LT, - ACTIONS(7251), 1, + ACTIONS(7455), 1, anon_sym_EQ2, - ACTIONS(7253), 1, + ACTIONS(7457), 1, aux_sym__immediate_decimal_token1, - STATE(1667), 1, + STATE(1173), 1, sym__var, - STATE(2141), 1, + STATE(1501), 1, sym__immediate_decimal, - STATE(3774), 1, + STATE(3823), 1, sym_comment, - ACTIONS(2892), 2, + ACTIONS(2110), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2142), 2, + STATE(1500), 2, sym_expr_parenthesized, sym_val_variable, - [177330] = 11, + [179014] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(2102), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7351), 1, + anon_sym_DOLLAR, + ACTIONS(7451), 1, + anon_sym_LPAREN, + ACTIONS(7457), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7459), 1, + anon_sym_LT, + ACTIONS(7461), 1, + anon_sym_EQ2, + STATE(1173), 1, sym__var, - STATE(3775), 1, - sym_comment, - STATE(4720), 1, + STATE(1514), 1, sym__immediate_decimal, - ACTIONS(2083), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + STATE(3824), 1, + sym_comment, + ACTIONS(2110), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4709), 2, + STATE(1504), 2, sym_expr_parenthesized, sym_val_variable, - [177367] = 12, + [179053] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2133), 1, - anon_sym_DASH, - ACTIONS(2135), 1, - anon_sym_LBRACE, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(4700), 1, + anon_sym_not, + ACTIONS(6981), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7109), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7406), 1, + anon_sym_LPAREN, + ACTIONS(7463), 1, + anon_sym_DASH, + STATE(2935), 1, sym__var, - STATE(3776), 1, + STATE(3248), 1, + sym__expr_unary_minus, + STATE(3825), 1, sym_comment, - STATE(4701), 1, - sym__immediate_decimal, - ACTIONS(7111), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4698), 2, + ACTIONS(4704), 2, + anon_sym_true, + anon_sym_false, + STATE(3219), 4, + sym_expr_unary, sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [177406] = 12, + [179088] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, - anon_sym_DOT2, - ACTIONS(7097), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(7255), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(7257), 1, + ACTIONS(7465), 1, anon_sym_LT, - ACTIONS(7259), 1, + ACTIONS(7467), 1, + anon_sym_DOT2, + ACTIONS(7469), 1, anon_sym_EQ2, - ACTIONS(7261), 1, + ACTIONS(7471), 1, aux_sym__immediate_decimal_token1, - STATE(1110), 1, + STATE(3760), 1, sym__var, - STATE(1333), 1, - sym__immediate_decimal, - STATE(3777), 1, + STATE(3826), 1, sym_comment, - ACTIONS(1975), 2, + STATE(3935), 1, + sym__immediate_decimal, + ACTIONS(6939), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1334), 2, + STATE(3942), 2, sym_expr_parenthesized, sym_val_variable, - [177445] = 11, + [179127] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3778), 1, + STATE(3827), 1, sym_comment, - STATE(4694), 1, + STATE(4633), 1, sym__immediate_decimal, - ACTIONS(2107), 2, + ACTIONS(2178), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(7079), 2, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4693), 2, + STATE(4626), 2, sym_expr_parenthesized, sym_val_variable, - [177482] = 12, + [179164] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7235), 1, + anon_sym_EQ, + ACTIONS(7237), 1, + anon_sym_COLON, + ACTIONS(7475), 1, + anon_sym_COMMA, + ACTIONS(7477), 1, + anon_sym_DASH, + STATE(3828), 1, + sym_comment, + STATE(3905), 1, + sym_param_value, + STATE(3932), 1, + sym_param_type, + ACTIONS(7473), 6, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179197] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6796), 1, + ACTIONS(6981), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7015), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, - anon_sym_DOLLAR, - ACTIONS(7226), 1, + ACTIONS(7479), 1, anon_sym_LPAREN, - ACTIONS(7263), 1, + ACTIONS(7481), 1, anon_sym_LT, - ACTIONS(7265), 1, + ACTIONS(7483), 1, anon_sym_EQ2, - STATE(2866), 1, + STATE(2955), 1, sym__var, - STATE(3779), 1, + STATE(3829), 1, sym_comment, - STATE(4377), 1, + STATE(4466), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(7017), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4379), 2, + STATE(4457), 2, sym_expr_parenthesized, sym_val_variable, - [177521] = 12, + [179236] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7235), 1, + anon_sym_EQ, + ACTIONS(7237), 1, + anon_sym_COLON, + ACTIONS(7487), 1, + anon_sym_COMMA, + ACTIONS(7489), 1, + anon_sym_DASH, + STATE(3830), 1, + sym_comment, + STATE(3904), 1, + sym_param_value, + STATE(4024), 1, + sym_param_type, + ACTIONS(7485), 6, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179269] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(6996), 1, + ACTIONS(2948), 1, anon_sym_LPAREN, - ACTIONS(7000), 1, + ACTIONS(2952), 1, anon_sym_DOT2, - ACTIONS(7004), 1, + ACTIONS(7443), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7267), 1, + ACTIONS(7491), 1, anon_sym_LT, - ACTIONS(7269), 1, + ACTIONS(7493), 1, anon_sym_EQ2, - STATE(2775), 1, + STATE(1684), 1, sym__var, - STATE(3780), 1, - sym_comment, - STATE(5379), 1, + STATE(2245), 1, sym__immediate_decimal, - ACTIONS(7006), 2, + STATE(3831), 1, + sym_comment, + ACTIONS(2960), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5381), 2, + STATE(2244), 2, sym_expr_parenthesized, sym_val_variable, - [177560] = 11, + [179308] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 1, - anon_sym_DOT2, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3781), 1, + STATE(3832), 1, sym_comment, - STATE(4692), 1, - sym__immediate_decimal, - ACTIONS(2119), 2, + ACTIONS(3256), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(3258), 10, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_EQ_GT, - ACTIONS(7079), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4691), 2, - sym_expr_parenthesized, - sym_val_variable, - [177597] = 11, + [179331] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(1547), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(6340), 1, + aux_sym_unquoted_token5, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3782), 1, - sym_comment, - STATE(4715), 1, + STATE(3402), 1, sym__immediate_decimal, - ACTIONS(2095), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + STATE(3833), 1, + sym_comment, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4710), 2, - sym_expr_parenthesized, - sym_val_variable, - [177634] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4467), 1, - anon_sym_not, - ACTIONS(7271), 1, - anon_sym_LPAREN, - ACTIONS(7273), 1, - anon_sym_DOLLAR, - ACTIONS(7275), 1, - anon_sym_DASH, - STATE(722), 1, - sym__var, - STATE(776), 1, - sym__expr_unary_minus, - STATE(3783), 1, - sym_comment, - ACTIONS(4471), 2, - anon_sym_true, - anon_sym_false, - STATE(789), 4, - sym_expr_unary, + STATE(3404), 2, sym_expr_parenthesized, - sym_val_bool, sym_val_variable, - [177669] = 6, + [179370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7277), 1, - anon_sym_DOT2, - ACTIONS(7280), 1, + ACTIONS(7404), 1, aux_sym__immediate_decimal_token2, - STATE(3784), 1, + ACTIONS(7495), 1, + anon_sym_DOT2, + STATE(3834), 1, sym_comment, - ACTIONS(2904), 2, + ACTIONS(2934), 2, sym_identifier, anon_sym_DASH, - ACTIONS(2906), 8, + ACTIONS(2936), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -343436,95 +348938,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177696] = 11, + [179397] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3785), 1, - sym_comment, - STATE(4503), 1, - sym__immediate_decimal, - ACTIONS(2127), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4502), 2, - sym_expr_parenthesized, - sym_val_variable, - [177733] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(7497), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, - anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7501), 1, + anon_sym_LT, + ACTIONS(7503), 1, + anon_sym_EQ2, + ACTIONS(7505), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2369), 1, sym__var, - STATE(3786), 1, - sym_comment, - STATE(4501), 1, + STATE(2574), 1, sym__immediate_decimal, - ACTIONS(2087), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + STATE(3835), 1, + sym_comment, + ACTIONS(5064), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4500), 2, + STATE(2573), 2, sym_expr_parenthesized, sym_val_variable, - [177770] = 11, + [179436] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(5056), 1, + anon_sym_DOT2, + ACTIONS(7497), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, - anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7505), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(7507), 1, + anon_sym_LT, + ACTIONS(7509), 1, + anon_sym_EQ2, + STATE(2369), 1, sym__var, - STATE(3787), 1, - sym_comment, - STATE(4494), 1, + STATE(2572), 1, sym__immediate_decimal, - ACTIONS(2131), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + STATE(3836), 1, + sym_comment, + ACTIONS(5064), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4493), 2, + STATE(2569), 2, sym_expr_parenthesized, sym_val_variable, - [177807] = 5, + [179475] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7282), 1, + ACTIONS(7511), 1, anon_sym_QMARK2, - STATE(3788), 1, + STATE(3837), 1, sym_comment, - ACTIONS(1464), 2, + ACTIONS(1419), 2, anon_sym_DASH, anon_sym_DOT2, - ACTIONS(1466), 9, + ACTIONS(1421), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -343534,17 +349012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177832] = 5, + [179500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7282), 1, + ACTIONS(7511), 1, anon_sym_QMARK2, - STATE(3789), 1, + STATE(3838), 1, sym_comment, - ACTIONS(1464), 2, + ACTIONS(1419), 2, anon_sym_DASH, anon_sym_DOT2, - ACTIONS(1466), 9, + ACTIONS(1421), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -343554,357 +349032,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177857] = 12, + [179525] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, - anon_sym_DOLLAR, - ACTIONS(6764), 1, - anon_sym_LPAREN, - ACTIONS(7284), 1, + ACTIONS(7513), 1, anon_sym_LT, - ACTIONS(7286), 1, - anon_sym_DOT2, - ACTIONS(7288), 1, - anon_sym_EQ2, - ACTIONS(7290), 1, - aux_sym__immediate_decimal_token1, - STATE(3710), 1, - sym__var, - STATE(3790), 1, - sym_comment, - STATE(4040), 1, - sym__immediate_decimal, - ACTIONS(6774), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4039), 2, - sym_expr_parenthesized, - sym_val_variable, - [177896] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4653), 1, - anon_sym_not, - ACTIONS(7292), 1, - anon_sym_LPAREN, - ACTIONS(7294), 1, - anon_sym_DOLLAR, - ACTIONS(7296), 1, - anon_sym_DASH, - STATE(894), 1, - sym__var, - STATE(998), 1, - sym__expr_unary_minus, - STATE(3791), 1, - sym_comment, - ACTIONS(4657), 2, - anon_sym_true, - anon_sym_false, - STATE(1003), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [177931] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4527), 1, - anon_sym_not, - ACTIONS(6820), 1, - anon_sym_DOLLAR, - ACTIONS(7298), 1, - anon_sym_LPAREN, - ACTIONS(7300), 1, - anon_sym_DASH, - STATE(2902), 1, - sym__var, - STATE(3186), 1, - sym__expr_unary_minus, - STATE(3792), 1, - sym_comment, - ACTIONS(4531), 2, - anon_sym_true, - anon_sym_false, - STATE(3217), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [177966] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4575), 1, - anon_sym_not, - ACTIONS(7302), 1, - anon_sym_LPAREN, - ACTIONS(7304), 1, - anon_sym_DOLLAR, - ACTIONS(7306), 1, + ACTIONS(7515), 1, anon_sym_DASH, - STATE(541), 1, - sym__var, - STATE(678), 1, - sym__expr_unary_minus, - STATE(3793), 1, - sym_comment, - ACTIONS(4579), 2, - anon_sym_true, - anon_sym_false, - STATE(656), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [178001] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7308), 1, - anon_sym_LT, - ACTIONS(7310), 1, - anon_sym_EQ2, - STATE(2682), 1, - sym__var, - STATE(3794), 1, - sym_comment, - STATE(4552), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4518), 2, - sym_expr_parenthesized, - sym_val_variable, - [178040] = 12, + STATE(3839), 1, + sym_comment, + ACTIONS(5651), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179550] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(7253), 1, + ACTIONS(6975), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7312), 1, + ACTIONS(6995), 1, + anon_sym_DOLLAR, + ACTIONS(7517), 1, + anon_sym_LPAREN, + ACTIONS(7519), 1, anon_sym_LT, - ACTIONS(7314), 1, + ACTIONS(7521), 1, anon_sym_EQ2, - STATE(1667), 1, + STATE(2915), 1, sym__var, - STATE(2144), 1, - sym__immediate_decimal, - STATE(3795), 1, + STATE(3840), 1, sym_comment, - ACTIONS(2892), 2, + STATE(4259), 1, + sym__immediate_decimal, + ACTIONS(6977), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2148), 2, + STATE(4260), 2, sym_expr_parenthesized, sym_val_variable, - [178079] = 12, + [179589] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7316), 1, + ACTIONS(7523), 1, + anon_sym_LPAREN, + ACTIONS(7525), 1, + anon_sym_DOLLAR, + ACTIONS(7527), 1, anon_sym_LT, - ACTIONS(7318), 1, + ACTIONS(7529), 1, anon_sym_EQ2, - STATE(2682), 1, - sym__var, - STATE(3796), 1, - sym_comment, - STATE(4513), 1, + STATE(2572), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + STATE(3841), 1, + sym_comment, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4511), 2, + STATE(2569), 2, sym_expr_parenthesized, sym_val_variable, - [178118] = 10, + [179628] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(4412), 1, + anon_sym_not, + ACTIONS(7531), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7533), 1, anon_sym_DOLLAR, - ACTIONS(3984), 1, - anon_sym_not, - ACTIONS(7320), 1, + ACTIONS(7535), 1, anon_sym_DASH, - STATE(2682), 1, + STATE(741), 1, sym__var, - STATE(3123), 1, + STATE(792), 1, sym__expr_unary_minus, - STATE(3797), 1, + STATE(3842), 1, sym_comment, - ACTIONS(3988), 2, + ACTIONS(4416), 2, anon_sym_true, anon_sym_false, - STATE(3129), 4, + STATE(797), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [178153] = 10, + [179663] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7539), 1, + anon_sym_DASH, + STATE(3843), 1, + sym_comment, + ACTIONS(7537), 11, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179686] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4323), 1, + ACTIONS(4602), 1, anon_sym_not, - ACTIONS(7322), 1, + ACTIONS(7541), 1, anon_sym_LPAREN, - ACTIONS(7324), 1, + ACTIONS(7543), 1, anon_sym_DOLLAR, - ACTIONS(7326), 1, + ACTIONS(7545), 1, anon_sym_DASH, - STATE(2532), 1, + STATE(923), 1, sym__var, - STATE(2811), 1, + STATE(1037), 1, sym__expr_unary_minus, - STATE(3798), 1, + STATE(3844), 1, sym_comment, - ACTIONS(4327), 2, + ACTIONS(4606), 2, anon_sym_true, anon_sym_false, - STATE(2824), 4, + STATE(994), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [178188] = 12, + [179721] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6922), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7328), 1, + ACTIONS(7523), 1, anon_sym_LPAREN, - ACTIONS(7330), 1, + ACTIONS(7525), 1, anon_sym_DOLLAR, - ACTIONS(7332), 1, + ACTIONS(7547), 1, anon_sym_LT, - ACTIONS(7334), 1, + ACTIONS(7549), 1, anon_sym_EQ2, - STATE(2604), 1, + STATE(2574), 1, sym__immediate_decimal, - STATE(3799), 1, + STATE(3845), 1, sym_comment, - STATE(4274), 1, + STATE(4148), 1, sym__var, - ACTIONS(6924), 2, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2603), 2, + STATE(2573), 2, sym_expr_parenthesized, sym_val_variable, - [178227] = 12, + [179760] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT2, - ACTIONS(6922), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - ACTIONS(7336), 1, + ACTIONS(7515), 1, + anon_sym_DASH, + ACTIONS(7551), 1, anon_sym_LT, - ACTIONS(7338), 1, - anon_sym_EQ2, - STATE(2601), 1, - sym__immediate_decimal, - STATE(3800), 1, + STATE(3846), 1, sym_comment, - STATE(4274), 1, - sym__var, - ACTIONS(6924), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2600), 2, - sym_expr_parenthesized, - sym_val_variable, - [178266] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7087), 1, + ACTIONS(5651), 10, anon_sym_EQ, - ACTIONS(7089), 1, - anon_sym_COLON, - ACTIONS(7342), 1, - anon_sym_COMMA, - ACTIONS(7344), 1, - anon_sym_DASH, - STATE(3801), 1, - sym_comment, - STATE(3883), 1, - sym_param_value, - STATE(4045), 1, - sym_param_type, - ACTIONS(7340), 6, sym_identifier, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178299] = 12, + [179785] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + STATE(3847), 1, + sym_comment, + ACTIONS(2984), 2, + anon_sym_DASH, anon_sym_DOT2, - ACTIONS(6944), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7330), 1, + ACTIONS(2986), 10, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(7346), 1, - anon_sym_LPAREN, - ACTIONS(7348), 1, - anon_sym_LT, - ACTIONS(7350), 1, - anon_sym_EQ2, - STATE(3802), 1, - sym_comment, - STATE(4255), 1, - sym__var, - STATE(4473), 1, - sym__immediate_decimal, - ACTIONS(6946), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4472), 2, - sym_expr_parenthesized, - sym_val_variable, - [178338] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_GT, + [179808] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7280), 1, + ACTIONS(7345), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7352), 1, + ACTIONS(7553), 1, anon_sym_DOT2, - STATE(3803), 1, + STATE(3848), 1, sym_comment, - ACTIONS(2904), 2, + ACTIONS(2832), 2, sym_identifier, anon_sym_DASH, - ACTIONS(2906), 8, + ACTIONS(2834), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -343913,73 +349262,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178365] = 12, + [179835] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7012), 1, - anon_sym_LPAREN, - ACTIONS(7018), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7354), 1, - anon_sym_LT, - ACTIONS(7356), 1, - anon_sym_EQ2, - STATE(3804), 1, + STATE(2688), 1, + sym__var, + STATE(3849), 1, sym_comment, - STATE(4300), 1, + STATE(4636), 1, + sym__immediate_decimal, + ACTIONS(2142), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4631), 2, + sym_expr_parenthesized, + sym_val_variable, + [179872] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7266), 1, + anon_sym_DOT2, + ACTIONS(7270), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, sym__var, - STATE(5003), 1, + STATE(3850), 1, + sym_comment, + STATE(4630), 1, sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(2130), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5037), 2, + STATE(4628), 2, sym_expr_parenthesized, sym_val_variable, - [178404] = 12, + [179909] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6796), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(6814), 1, + ACTIONS(7035), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, + ACTIONS(7525), 1, anon_sym_DOLLAR, - ACTIONS(7358), 1, + ACTIONS(7555), 1, anon_sym_LPAREN, - ACTIONS(7360), 1, + ACTIONS(7557), 1, anon_sym_LT, - ACTIONS(7362), 1, + ACTIONS(7559), 1, anon_sym_EQ2, - STATE(2833), 1, - sym__var, - STATE(3805), 1, + STATE(3851), 1, sym_comment, - STATE(4190), 1, + STATE(4171), 1, + sym__var, + STATE(4404), 1, sym__immediate_decimal, - ACTIONS(6816), 2, + ACTIONS(7037), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4191), 2, + STATE(4403), 2, sym_expr_parenthesized, sym_val_variable, - [178443] = 6, + [179948] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7180), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7364), 1, - anon_sym_DOT2, - STATE(3806), 1, + ACTIONS(4474), 1, + anon_sym_not, + ACTIONS(7561), 1, + anon_sym_LPAREN, + ACTIONS(7563), 1, + anon_sym_DOLLAR, + ACTIONS(7565), 1, + anon_sym_DASH, + STATE(2503), 1, + sym__var, + STATE(2815), 1, + sym__expr_unary_minus, + STATE(3852), 1, sym_comment, - ACTIONS(2806), 2, - sym_identifier, + ACTIONS(4478), 2, + anon_sym_true, + anon_sym_false, + STATE(2787), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [179983] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3853), 1, + sym_comment, + ACTIONS(2906), 2, anon_sym_DASH, - ACTIONS(2808), 8, + anon_sym_DOT2, + ACTIONS(2908), 10, + sym_identifier, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -343988,267 +349384,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178470] = 12, + anon_sym_EQ_GT, + [180006] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + ACTIONS(7133), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7395), 1, + anon_sym_DOLLAR, + ACTIONS(7567), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7569), 1, + anon_sym_LT, + ACTIONS(7571), 1, + anon_sym_EQ2, + STATE(2680), 1, + sym__immediate_decimal, + STATE(3854), 1, + sym_comment, + STATE(4263), 1, + sym__var, + ACTIONS(7135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2691), 2, + sym_expr_parenthesized, + sym_val_variable, + [180045] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(6929), 1, + anon_sym_LPAREN, + ACTIONS(7467), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7471), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7366), 1, + ACTIONS(7573), 1, anon_sym_LT, - ACTIONS(7368), 1, + ACTIONS(7575), 1, anon_sym_EQ2, - STATE(2682), 1, + STATE(3760), 1, sym__var, - STATE(3807), 1, + STATE(3855), 1, sym_comment, - STATE(4552), 1, + STATE(3984), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(6939), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4518), 2, + STATE(3956), 2, sym_expr_parenthesized, sym_val_variable, - [178509] = 5, + [180084] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7370), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + ACTIONS(7133), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7395), 1, + anon_sym_DOLLAR, + ACTIONS(7567), 1, + anon_sym_LPAREN, + ACTIONS(7577), 1, anon_sym_LT, - ACTIONS(7372), 1, - anon_sym_DASH, - STATE(3808), 1, + ACTIONS(7579), 1, + anon_sym_EQ2, + STATE(2696), 1, + sym__immediate_decimal, + STATE(3856), 1, sym_comment, - ACTIONS(5531), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178534] = 5, + STATE(4263), 1, + sym__var, + ACTIONS(7135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2697), 2, + sym_expr_parenthesized, + sym_val_variable, + [180123] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7374), 1, - aux_sym__immediate_decimal_token2, - STATE(3809), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(7581), 1, + anon_sym_LT, + ACTIONS(7583), 1, + anon_sym_EQ2, + ACTIONS(7585), 1, + aux_sym__immediate_decimal_token1, + STATE(3287), 1, + sym__var, + STATE(3579), 1, + sym__immediate_decimal, + STATE(3857), 1, sym_comment, - ACTIONS(2874), 3, - sym_identifier, - anon_sym_DASH, + ACTIONS(5570), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3561), 2, + sym_expr_parenthesized, + sym_val_variable, + [180162] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(2876), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(7270), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, + sym__var, + STATE(3858), 1, + sym_comment, + STATE(4627), 1, + sym__immediate_decimal, + ACTIONS(2174), 2, anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4502), 2, + sym_expr_parenthesized, + sym_val_variable, + [180199] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178559] = 5, + ACTIONS(7065), 1, + anon_sym_LPAREN, + ACTIONS(7073), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7587), 1, + anon_sym_LT, + ACTIONS(7589), 1, + anon_sym_EQ2, + STATE(2865), 1, + sym__var, + STATE(3859), 1, + sym_comment, + STATE(5429), 1, + sym__immediate_decimal, + ACTIONS(7075), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(5430), 2, + sym_expr_parenthesized, + sym_val_variable, + [180238] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7372), 1, + ACTIONS(7593), 1, + anon_sym_QMARK, + ACTIONS(7595), 1, anon_sym_DASH, - ACTIONS(7376), 1, - anon_sym_LT, - STATE(3810), 1, + STATE(3860), 1, sym_comment, - ACTIONS(5531), 10, + ACTIONS(7591), 10, anon_sym_EQ, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178584] = 12, + [180263] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7378), 1, + ACTIONS(7597), 1, anon_sym_LT, - ACTIONS(7380), 1, + ACTIONS(7599), 1, anon_sym_EQ2, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3811), 1, + STATE(3861), 1, sym_comment, - STATE(4513), 1, + STATE(4534), 1, sym__immediate_decimal, - ACTIONS(7079), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4511), 2, + STATE(4530), 2, sym_expr_parenthesized, sym_val_variable, - [178623] = 12, + [180302] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7382), 1, + ACTIONS(7601), 1, anon_sym_LT, - ACTIONS(7384), 1, + ACTIONS(7603), 1, anon_sym_EQ2, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3812), 1, + STATE(3862), 1, sym_comment, - STATE(4513), 1, + STATE(4528), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4511), 2, + STATE(4589), 2, sym_expr_parenthesized, sym_val_variable, - [178662] = 12, + [180341] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(3049), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7386), 1, + ACTIONS(3053), 1, + anon_sym_DOT2, + ACTIONS(7605), 1, anon_sym_LT, - ACTIONS(7388), 1, + ACTIONS(7607), 1, anon_sym_EQ2, - STATE(2682), 1, + ACTIONS(7609), 1, + aux_sym__immediate_decimal_token1, + STATE(1717), 1, sym__var, - STATE(3310), 1, + STATE(1953), 1, sym__immediate_decimal, - STATE(3813), 1, + STATE(3863), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(3061), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3309), 2, + STATE(1952), 2, sym_expr_parenthesized, sym_val_variable, - [178701] = 12, + [180380] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4293), 1, + ACTIONS(4638), 1, + anon_sym_not, + ACTIONS(6995), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7611), 1, + anon_sym_DASH, + STATE(2903), 1, + sym__var, + STATE(3102), 1, + sym__expr_unary_minus, + STATE(3864), 1, + sym_comment, + ACTIONS(4642), 2, + anon_sym_true, + anon_sym_false, + STATE(3114), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [180415] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5562), 1, anon_sym_DOT2, - ACTIONS(7208), 1, + ACTIONS(7585), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7390), 1, + ACTIONS(7613), 1, anon_sym_LT, - ACTIONS(7392), 1, + ACTIONS(7615), 1, anon_sym_EQ2, - STATE(3189), 1, + STATE(3287), 1, sym__var, - STATE(3308), 1, + STATE(3569), 1, sym__immediate_decimal, - STATE(3814), 1, + STATE(3865), 1, sym_comment, - ACTIONS(5371), 2, + ACTIONS(5570), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3307), 2, + STATE(3575), 2, sym_expr_parenthesized, sym_val_variable, - [178740] = 12, + [180454] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(6856), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, - anon_sym_LPAREN, - ACTIONS(7394), 1, - anon_sym_LT, - ACTIONS(7396), 1, - anon_sym_EQ2, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3815), 1, + STATE(3866), 1, sym_comment, - STATE(4492), 1, + STATE(4503), 1, sym__immediate_decimal, - ACTIONS(6862), 2, + ACTIONS(2162), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4519), 2, + STATE(4508), 2, sym_expr_parenthesized, sym_val_variable, - [178779] = 12, + [180491] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4852), 1, - anon_sym_DOT2, - ACTIONS(7398), 1, + ACTIONS(5522), 1, anon_sym_LPAREN, - ACTIONS(7400), 1, + ACTIONS(5524), 1, anon_sym_DOLLAR, - ACTIONS(7402), 1, + ACTIONS(5528), 1, + anon_sym_DOT2, + ACTIONS(7617), 1, anon_sym_LT, - ACTIONS(7404), 1, + ACTIONS(7619), 1, anon_sym_EQ2, - ACTIONS(7406), 1, + ACTIONS(7621), 1, aux_sym__immediate_decimal_token1, - STATE(2330), 1, + STATE(3289), 1, sym__var, - STATE(2528), 1, + STATE(3483), 1, sym__immediate_decimal, - STATE(3816), 1, + STATE(3867), 1, sym_comment, - ACTIONS(4860), 2, + ACTIONS(5536), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2529), 2, + STATE(3488), 2, sym_expr_parenthesized, sym_val_variable, - [178818] = 5, + [180530] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7180), 1, + ACTIONS(7623), 1, aux_sym__immediate_decimal_token2, - STATE(3817), 1, + STATE(3868), 1, + sym_comment, + ACTIONS(2984), 3, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(2986), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180555] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token2, + STATE(3869), 1, sym_comment, - ACTIONS(2806), 3, + ACTIONS(2906), 3, sym_identifier, anon_sym_DASH, anon_sym_DOT2, - ACTIONS(2808), 8, + ACTIONS(2908), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -344257,578 +349792,612 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178843] = 12, + [180580] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(5494), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5498), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7408), 1, - anon_sym_LT, - ACTIONS(7410), 1, - anon_sym_EQ2, - ACTIONS(7412), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(3357), 1, + STATE(2688), 1, sym__var, - STATE(3466), 1, - sym__immediate_decimal, - STATE(3818), 1, + STATE(3870), 1, sym_comment, - ACTIONS(5506), 2, + STATE(4715), 1, + sym__immediate_decimal, + ACTIONS(2146), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3467), 2, + STATE(4682), 2, sym_expr_parenthesized, sym_val_variable, - [178882] = 12, + [180617] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7345), 1, + aux_sym__immediate_decimal_token2, + STATE(3871), 1, + sym_comment, + ACTIONS(2832), 3, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(2834), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180642] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(2014), 1, anon_sym_DOT2, - ACTIONS(7167), 1, + ACTIONS(7300), 1, anon_sym_DOLLAR, - ACTIONS(7414), 1, + ACTIONS(7625), 1, anon_sym_LPAREN, - ACTIONS(7416), 1, + ACTIONS(7627), 1, anon_sym_LT, - ACTIONS(7418), 1, + ACTIONS(7629), 1, anon_sym_EQ2, - ACTIONS(7420), 1, + ACTIONS(7631), 1, aux_sym__immediate_decimal_token1, - STATE(1143), 1, + STATE(1127), 1, sym__var, - STATE(1431), 1, + STATE(1341), 1, sym__immediate_decimal, - STATE(3819), 1, + STATE(3872), 1, sym_comment, - ACTIONS(2041), 2, + ACTIONS(2022), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1434), 2, + STATE(1339), 2, sym_expr_parenthesized, sym_val_variable, - [178921] = 12, + [180681] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6820), 1, - anon_sym_DOLLAR, - ACTIONS(6856), 1, - anon_sym_DOT2, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(7422), 1, - anon_sym_LT, - ACTIONS(7424), 1, - anon_sym_EQ2, - STATE(2902), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4090), 1, + anon_sym_not, + ACTIONS(7633), 1, + anon_sym_DASH, + STATE(2688), 1, sym__var, - STATE(3820), 1, + STATE(3255), 1, + sym__expr_unary_minus, + STATE(3873), 1, sym_comment, - STATE(4530), 1, - sym__immediate_decimal, - ACTIONS(6862), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4551), 2, + ACTIONS(4094), 2, + anon_sym_true, + anon_sym_false, + STATE(3250), 4, + sym_expr_unary, sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [178960] = 12, + [180716] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7426), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(7428), 1, - anon_sym_DOLLAR, - ACTIONS(7430), 1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7635), 1, anon_sym_LT, - ACTIONS(7432), 1, + ACTIONS(7637), 1, anon_sym_EQ2, - STATE(2526), 1, + STATE(2688), 1, + sym__var, + STATE(3341), 1, sym__immediate_decimal, - STATE(3821), 1, + STATE(3874), 1, sym_comment, - STATE(4121), 1, - sym__var, - ACTIONS(6850), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2527), 2, + STATE(3342), 2, sym_expr_parenthesized, sym_val_variable, - [178999] = 12, + [180755] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4979), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(7434), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(7436), 1, - anon_sym_DOLLAR, - ACTIONS(7438), 1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7639), 1, anon_sym_LT, - ACTIONS(7440), 1, + ACTIONS(7641), 1, anon_sym_EQ2, - ACTIONS(7442), 1, - aux_sym__immediate_decimal_token1, - STATE(2353), 1, + STATE(2688), 1, sym__var, - STATE(2604), 1, + STATE(3351), 1, sym__immediate_decimal, - STATE(3822), 1, + STATE(3875), 1, sym_comment, - ACTIONS(4987), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2603), 2, + STATE(3364), 2, sym_expr_parenthesized, sym_val_variable, - [179038] = 12, + [180794] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4979), 1, + STATE(3876), 1, + sym_comment, + ACTIONS(2832), 2, + anon_sym_DASH, anon_sym_DOT2, - ACTIONS(7434), 1, - anon_sym_LPAREN, - ACTIONS(7436), 1, + ACTIONS(2834), 10, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_GT, + [180817] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2014), 1, + anon_sym_DOT2, + ACTIONS(7300), 1, anon_sym_DOLLAR, - ACTIONS(7442), 1, + ACTIONS(7625), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7444), 1, + ACTIONS(7643), 1, anon_sym_LT, - ACTIONS(7446), 1, + ACTIONS(7645), 1, anon_sym_EQ2, - STATE(2353), 1, + STATE(1127), 1, sym__var, - STATE(2601), 1, + STATE(1338), 1, sym__immediate_decimal, - STATE(3823), 1, + STATE(3877), 1, sym_comment, - ACTIONS(4987), 2, + ACTIONS(2022), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2600), 2, + STATE(1337), 2, sym_expr_parenthesized, sym_val_variable, - [179077] = 12, + [180856] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6848), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7426), 1, - anon_sym_LPAREN, - ACTIONS(7428), 1, + ACTIONS(6995), 1, anon_sym_DOLLAR, - ACTIONS(7448), 1, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7647), 1, anon_sym_LT, - ACTIONS(7450), 1, + ACTIONS(7649), 1, anon_sym_EQ2, - STATE(2528), 1, - sym__immediate_decimal, - STATE(3824), 1, - sym_comment, - STATE(4121), 1, + STATE(2903), 1, sym__var, - ACTIONS(6850), 2, + STATE(3878), 1, + sym_comment, + STATE(4363), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2529), 2, + STATE(4362), 2, sym_expr_parenthesized, sym_val_variable, - [179116] = 9, + [180895] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7087), 1, - anon_sym_EQ, - ACTIONS(7089), 1, - anon_sym_COLON, - ACTIONS(7454), 1, - anon_sym_COMMA, - ACTIONS(7456), 1, - anon_sym_DASH, - STATE(3825), 1, - sym_comment, - STATE(3868), 1, - sym_param_value, - STATE(3945), 1, - sym_param_type, - ACTIONS(7452), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179149] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6904), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7428), 1, - anon_sym_DOLLAR, - ACTIONS(7458), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(7460), 1, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7651), 1, anon_sym_LT, - ACTIONS(7462), 1, + ACTIONS(7653), 1, anon_sym_EQ2, - STATE(3826), 1, + STATE(3879), 1, sym_comment, - STATE(4187), 1, + STATE(4359), 1, sym__var, - STATE(4438), 1, + STATE(5212), 1, sym__immediate_decimal, - ACTIONS(6906), 2, + ACTIONS(7177), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4435), 2, + STATE(5206), 2, sym_expr_parenthesized, sym_val_variable, - [179188] = 12, + [180934] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6820), 1, - anon_sym_DOLLAR, - ACTIONS(6856), 1, + ACTIONS(2088), 1, anon_sym_DOT2, - ACTIONS(6874), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7464), 1, + ACTIONS(7351), 1, + anon_sym_DOLLAR, + ACTIONS(7655), 1, anon_sym_LPAREN, - ACTIONS(7466), 1, + ACTIONS(7657), 1, anon_sym_LT, - ACTIONS(7468), 1, + ACTIONS(7659), 1, anon_sym_EQ2, - STATE(2893), 1, + ACTIONS(7661), 1, + aux_sym__immediate_decimal_token1, + STATE(1203), 1, sym__var, - STATE(3827), 1, - sym_comment, - STATE(4294), 1, + STATE(1314), 1, sym__immediate_decimal, - ACTIONS(6876), 2, + STATE(3880), 1, + sym_comment, + ACTIONS(2096), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4293), 2, + STATE(1312), 2, sym_expr_parenthesized, sym_val_variable, - [179227] = 12, + [180973] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7663), 1, anon_sym_DOLLAR, - ACTIONS(6996), 1, + ACTIONS(7665), 1, + anon_sym_DASH, + ACTIONS(7667), 1, + anon_sym_LBRACE, + STATE(2979), 1, + sym__var, + STATE(3146), 1, + sym_block, + STATE(3148), 1, + sym_val_closure, + STATE(3881), 1, + sym_comment, + STATE(3906), 1, + sym__flag, + STATE(1406), 2, + sym__blosure, + sym_val_variable, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [181012] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6913), 1, anon_sym_LPAREN, - ACTIONS(7000), 1, + ACTIONS(6915), 1, + anon_sym_DOLLAR, + ACTIONS(7467), 1, anon_sym_DOT2, - ACTIONS(7004), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7470), 1, + ACTIONS(7669), 1, anon_sym_LT, - ACTIONS(7472), 1, + ACTIONS(7671), 1, anon_sym_EQ2, - STATE(2775), 1, + ACTIONS(7673), 1, + aux_sym__immediate_decimal_token1, + STATE(3757), 1, sym__var, - STATE(3828), 1, + STATE(3882), 1, sym_comment, - STATE(5299), 1, + STATE(3900), 1, sym__immediate_decimal, - ACTIONS(7006), 2, + ACTIONS(6927), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5295), 2, + STATE(3901), 2, sym_expr_parenthesized, sym_val_variable, - [179266] = 10, + [181051] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4435), 1, - anon_sym_not, - ACTIONS(7474), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(7476), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7478), 1, - anon_sym_DASH, - STATE(912), 1, + ACTIONS(7266), 1, + anon_sym_DOT2, + ACTIONS(7270), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7675), 1, + anon_sym_LT, + ACTIONS(7677), 1, + anon_sym_EQ2, + STATE(2688), 1, sym__var, - STATE(1069), 1, - sym__expr_unary_minus, - STATE(3829), 1, + STATE(3883), 1, sym_comment, - ACTIONS(4439), 2, - anon_sym_true, - anon_sym_false, - STATE(1094), 4, - sym_expr_unary, + STATE(4528), 1, + sym__immediate_decimal, + ACTIONS(7272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4589), 2, sym_expr_parenthesized, - sym_val_bool, sym_val_variable, - [179301] = 11, + [181090] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(4542), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7679), 1, + anon_sym_LT, + ACTIONS(7681), 1, + anon_sym_EQ2, + ACTIONS(7683), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(3193), 1, sym__var, - STATE(3830), 1, - sym_comment, - STATE(4507), 1, + STATE(3351), 1, sym__immediate_decimal, - ACTIONS(2123), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7079), 2, + STATE(3884), 1, + sym_comment, + ACTIONS(5462), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4504), 2, + STATE(3364), 2, sym_expr_parenthesized, sym_val_variable, - [179338] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3831), 1, - sym_comment, - ACTIONS(2806), 2, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(2808), 10, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_EQ_GT, - [179361] = 12, + [181129] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1985), 1, - anon_sym_DOT2, - ACTIONS(7097), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7480), 1, + ACTIONS(7065), 1, anon_sym_LPAREN, - ACTIONS(7482), 1, + ACTIONS(7073), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7685), 1, anon_sym_LT, - ACTIONS(7484), 1, + ACTIONS(7687), 1, anon_sym_EQ2, - ACTIONS(7486), 1, - aux_sym__immediate_decimal_token1, - STATE(1076), 1, + STATE(2865), 1, sym__var, - STATE(1204), 1, - sym__immediate_decimal, - STATE(3832), 1, + STATE(3885), 1, sym_comment, - ACTIONS(1993), 2, + STATE(4494), 1, + sym__immediate_decimal, + ACTIONS(7075), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1205), 2, + STATE(4459), 2, sym_expr_parenthesized, sym_val_variable, - [179400] = 10, + [181168] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4493), 1, + ACTIONS(4286), 1, anon_sym_not, - ACTIONS(7488), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - ACTIONS(7490), 1, + ACTIONS(7691), 1, anon_sym_DOLLAR, - ACTIONS(7492), 1, + ACTIONS(7693), 1, anon_sym_DASH, - STATE(517), 1, + STATE(1722), 1, sym__var, - STATE(580), 1, + STATE(2167), 1, sym__expr_unary_minus, - STATE(3833), 1, + STATE(3886), 1, + sym_comment, + ACTIONS(4290), 2, + anon_sym_true, + anon_sym_false, + STATE(2151), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [181203] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4734), 1, + anon_sym_not, + ACTIONS(7695), 1, + anon_sym_LPAREN, + ACTIONS(7697), 1, + anon_sym_DOLLAR, + ACTIONS(7699), 1, + anon_sym_DASH, + STATE(555), 1, + sym__var, + STATE(678), 1, + sym__expr_unary_minus, + STATE(3887), 1, sym_comment, - ACTIONS(4497), 2, + ACTIONS(4738), 2, anon_sym_true, anon_sym_false, - STATE(604), 4, + STATE(662), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [179435] = 12, + [181238] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(4542), 1, anon_sym_DOLLAR, - ACTIONS(6764), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(7286), 1, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(7290), 1, + ACTIONS(7683), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7494), 1, + ACTIONS(7701), 1, anon_sym_LT, - ACTIONS(7496), 1, + ACTIONS(7703), 1, anon_sym_EQ2, - STATE(3710), 1, + STATE(3193), 1, sym__var, - STATE(3834), 1, - sym_comment, - STATE(4042), 1, + STATE(3341), 1, sym__immediate_decimal, - ACTIONS(6774), 2, + STATE(3888), 1, + sym_comment, + ACTIONS(5462), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4041), 2, + STATE(3342), 2, sym_expr_parenthesized, sym_val_variable, - [179474] = 12, + [181277] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4852), 1, - anon_sym_DOT2, - ACTIONS(7398), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(7400), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7406), 1, + ACTIONS(7266), 1, + anon_sym_DOT2, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7705), 1, anon_sym_LT, - ACTIONS(7500), 1, + ACTIONS(7707), 1, anon_sym_EQ2, - STATE(2330), 1, + STATE(2688), 1, sym__var, - STATE(2526), 1, - sym__immediate_decimal, - STATE(3835), 1, + STATE(3889), 1, sym_comment, - ACTIONS(4860), 2, + STATE(4534), 1, + sym__immediate_decimal, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2527), 2, + STATE(4530), 2, sym_expr_parenthesized, sym_val_variable, - [179513] = 4, + [181316] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7504), 1, + ACTIONS(3212), 1, anon_sym_DASH, - STATE(3836), 1, + ACTIONS(7709), 1, + anon_sym_DOT2, + STATE(3890), 1, sym_comment, - ACTIONS(7502), 11, - anon_sym_EQ, + ACTIONS(3214), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179536] = 12, + [181340] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2839), 1, - anon_sym_LPAREN, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2845), 1, - anon_sym_DOT2, - ACTIONS(7506), 1, + ACTIONS(7711), 1, anon_sym_LT, - ACTIONS(7508), 1, - anon_sym_EQ2, - ACTIONS(7510), 1, - aux_sym__immediate_decimal_token1, - STATE(1659), 1, - sym__var, - STATE(1909), 1, - sym__immediate_decimal, - STATE(3837), 1, + STATE(3891), 1, sym_comment, - ACTIONS(2853), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1910), 2, - sym_expr_parenthesized, - sym_val_variable, - [179575] = 5, + ACTIONS(5651), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [181362] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_QMARK, - ACTIONS(7516), 1, + ACTIONS(7237), 1, + anon_sym_COLON, + ACTIONS(7363), 1, + anon_sym_EQ, + ACTIONS(7487), 1, + anon_sym_COMMA, + ACTIONS(7489), 1, anon_sym_DASH, - STATE(3838), 1, + STATE(3892), 1, sym_comment, - ACTIONS(7512), 10, - anon_sym_EQ, + STATE(3904), 1, + sym_param_value, + STATE(4127), 1, + sym_param_type, + ACTIONS(7485), 5, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179600] = 12, + [181394] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(6996), 1, - anon_sym_LPAREN, - ACTIONS(7000), 1, - anon_sym_DOT2, - ACTIONS(7004), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7518), 1, + ACTIONS(7713), 1, anon_sym_LT, - ACTIONS(7520), 1, - anon_sym_EQ2, - STATE(2775), 1, - sym__var, - STATE(3839), 1, + STATE(3893), 1, sym_comment, - STATE(4953), 1, - sym__immediate_decimal, - ACTIONS(7006), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4958), 2, - sym_expr_parenthesized, - sym_val_variable, - [179639] = 4, + ACTIONS(5651), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [181416] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3840), 1, - sym_comment, - ACTIONS(2782), 2, + ACTIONS(3206), 1, anon_sym_DASH, + ACTIONS(7715), 1, anon_sym_DOT2, - ACTIONS(2784), 10, + STATE(3894), 1, + sym_comment, + ACTIONS(3208), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -344838,73 +350407,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_EQ_GT, - [179662] = 12, + [181440] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(3198), 1, + anon_sym_DASH, + ACTIONS(7717), 1, anon_sym_DOT2, - ACTIONS(7522), 1, - anon_sym_LT, - ACTIONS(7524), 1, - anon_sym_EQ2, - ACTIONS(7526), 1, - aux_sym__immediate_decimal_token1, - STATE(3253), 1, - sym__var, - STATE(3539), 1, - sym__immediate_decimal, - STATE(3841), 1, + STATE(3895), 1, sym_comment, - ACTIONS(5559), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3516), 2, - sym_expr_parenthesized, - sym_val_variable, - [179701] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(3200), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7528), 1, - anon_sym_LT, - ACTIONS(7530), 1, - anon_sym_EQ2, - STATE(2682), 1, - sym__var, - STATE(3308), 1, - sym__immediate_decimal, - STATE(3842), 1, - sym_comment, - ACTIONS(6986), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3307), 2, - sym_expr_parenthesized, - sym_val_variable, - [179740] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181464] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7161), 1, - aux_sym__immediate_decimal_token2, - STATE(3843), 1, + ACTIONS(7237), 1, + anon_sym_COLON, + ACTIONS(7721), 1, + anon_sym_COMMA, + ACTIONS(7723), 1, + anon_sym_DASH, + STATE(3896), 1, sym_comment, - ACTIONS(2782), 3, + STATE(4117), 1, + sym_param_type, + ACTIONS(7719), 7, sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181492] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3171), 1, anon_sym_DASH, + ACTIONS(7725), 1, anon_sym_DOT2, - ACTIONS(2784), 8, + STATE(3897), 1, + sym_comment, + ACTIONS(3173), 9, + sym_identifier, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -344913,66 +350466,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179765] = 12, + [181516] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6748), 1, - anon_sym_LPAREN, - ACTIONS(6750), 1, + ACTIONS(7663), 1, anon_sym_DOLLAR, - ACTIONS(7286), 1, - anon_sym_DOT2, - ACTIONS(7532), 1, - anon_sym_LT, - ACTIONS(7534), 1, - anon_sym_EQ2, - ACTIONS(7536), 1, - aux_sym__immediate_decimal_token1, - STATE(3737), 1, + ACTIONS(7665), 1, + anon_sym_DASH, + ACTIONS(7667), 1, + anon_sym_LBRACE, + STATE(2979), 1, sym__var, - STATE(3844), 1, + STATE(3146), 1, + sym_block, + STATE(3148), 1, + sym_val_closure, + STATE(3898), 1, sym_comment, - STATE(3867), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3869), 2, - sym_expr_parenthesized, + STATE(3906), 1, + sym__flag, + STATE(1406), 2, + sym__blosure, sym_val_variable, - [179804] = 4, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [181552] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3845), 1, - sym_comment, - ACTIONS(2874), 2, + ACTIONS(7727), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(2876), 10, + STATE(3899), 1, + sym_comment, + ACTIONS(5742), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_EQ_GT, - [179827] = 6, + [181574] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7540), 1, - anon_sym_AT, - ACTIONS(7542), 1, + ACTIONS(3163), 1, anon_sym_DASH, - STATE(3846), 1, + ACTIONS(7729), 1, + anon_sym_DOT2, + STATE(3900), 1, sym_comment, - STATE(3984), 1, - sym_param_cmd, - ACTIONS(7538), 9, - anon_sym_EQ, + ACTIONS(3165), 9, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -344980,197 +350528,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179854] = 12, + [181598] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(3238), 1, + anon_sym_DASH, + ACTIONS(7731), 1, anon_sym_DOT2, - ACTIONS(7097), 1, - anon_sym_DOLLAR, - ACTIONS(7255), 1, - anon_sym_LPAREN, - ACTIONS(7261), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7544), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_EQ2, - STATE(1110), 1, - sym__var, - STATE(1341), 1, - sym__immediate_decimal, - STATE(3847), 1, + STATE(3901), 1, sym_comment, - ACTIONS(1975), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1368), 2, - sym_expr_parenthesized, - sym_val_variable, - [179893] = 12, + ACTIONS(3240), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181622] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(7665), 1, + anon_sym_DASH, + ACTIONS(7733), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7526), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7548), 1, - anon_sym_LT, - ACTIONS(7550), 1, - anon_sym_EQ2, - STATE(3253), 1, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(3016), 1, sym__var, - STATE(3505), 1, - sym__immediate_decimal, - STATE(3848), 1, + STATE(3268), 1, + sym_val_closure, + STATE(3269), 1, + sym_block, + STATE(3902), 1, sym_comment, - ACTIONS(5559), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3497), 2, - sym_expr_parenthesized, + STATE(3924), 1, + sym__flag, + STATE(1513), 2, + sym__blosure, sym_val_variable, - [179932] = 4, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [181658] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3849), 1, - sym_comment, - ACTIONS(3034), 2, + ACTIONS(7737), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(3036), 10, + STATE(3903), 1, + sym_comment, + ACTIONS(5740), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_EQ_GT, - [179955] = 4, + [181680] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7552), 1, + ACTIONS(7237), 1, + anon_sym_COLON, + ACTIONS(7741), 1, + anon_sym_COMMA, + ACTIONS(7743), 1, anon_sym_DASH, - STATE(3850), 1, + STATE(3904), 1, sym_comment, - ACTIONS(5652), 10, - anon_sym_EQ, + STATE(4091), 1, + sym_param_type, + ACTIONS(7739), 7, sym_identifier, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179977] = 9, + [181708] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7089), 1, + ACTIONS(7237), 1, anon_sym_COLON, - ACTIONS(7189), 1, - anon_sym_EQ, - ACTIONS(7342), 1, + ACTIONS(7747), 1, anon_sym_COMMA, - ACTIONS(7344), 1, + ACTIONS(7749), 1, anon_sym_DASH, - STATE(3851), 1, + STATE(3905), 1, sym_comment, - STATE(3883), 1, - sym_param_value, - STATE(4060), 1, + STATE(4111), 1, sym_param_type, - ACTIONS(7340), 5, + ACTIONS(7745), 7, sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180009] = 11, + [181736] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(7663), 1, anon_sym_DOLLAR, - ACTIONS(7212), 1, + ACTIONS(7665), 1, anon_sym_DASH, - ACTIONS(7214), 1, + ACTIONS(7667), 1, anon_sym_LBRACE, - STATE(2913), 1, + STATE(2979), 1, sym__var, - STATE(3205), 1, - sym_val_closure, - STATE(3207), 1, + STATE(3146), 1, sym_block, - STATE(3852), 1, - sym_comment, - STATE(3853), 1, - sym__flag, - STATE(1337), 2, - sym__blosure, - sym_val_variable, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [180045] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7210), 1, - anon_sym_DOLLAR, - ACTIONS(7214), 1, - anon_sym_LBRACE, - ACTIONS(7554), 1, - anon_sym_DASH, - STATE(2913), 1, - sym__var, - STATE(3205), 1, + STATE(3148), 1, sym_val_closure, - STATE(3207), 1, - sym_block, - STATE(3853), 1, + STATE(3906), 1, sym_comment, - STATE(4259), 1, + STATE(3920), 1, sym__flag, - STATE(1265), 2, + STATE(1489), 2, sym__blosure, sym_val_variable, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [180081] = 4, + [181772] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7558), 1, + ACTIONS(7751), 1, anon_sym_DASH, - STATE(3854), 1, + STATE(3907), 1, sym_comment, - ACTIONS(7556), 10, + ACTIONS(5750), 10, anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180103] = 4, + [181794] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7562), 1, - anon_sym_DASH, - STATE(3855), 1, + STATE(3908), 1, sym_comment, - ACTIONS(7560), 10, - anon_sym_EQ, + ACTIONS(1520), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(1522), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345180,70 +350693,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180125] = 4, + [181816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3856), 1, - sym_comment, - ACTIONS(1501), 2, + ACTIONS(7515), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1503), 9, + STATE(3909), 1, + sym_comment, + ACTIONS(5651), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180147] = 4, + [181838] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(3857), 1, - sym_comment, - ACTIONS(1485), 2, + ACTIONS(7665), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1487), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(7733), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [180169] = 4, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(3016), 1, + sym__var, + STATE(3268), 1, + sym_val_closure, + STATE(3269), 1, + sym_block, + STATE(3902), 1, + sym__flag, + STATE(3910), 1, + sym_comment, + STATE(1640), 2, + sym__blosure, + sym_val_variable, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [181874] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3858), 1, - sym_comment, - ACTIONS(1511), 2, + ACTIONS(7753), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1513), 9, + STATE(3911), 1, + sym_comment, + ACTIONS(5752), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180191] = 5, + [181896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3097), 1, + ACTIONS(7757), 1, anon_sym_DASH, - ACTIONS(7564), 1, - anon_sym_DOT2, - STATE(3859), 1, + STATE(3912), 1, sym_comment, - ACTIONS(3099), 9, + ACTIONS(7755), 10, + anon_sym_EQ, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345253,16 +350772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180215] = 5, + [181918] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3103), 1, + STATE(3913), 1, + sym_comment, + ACTIONS(1524), 2, anon_sym_DASH, - ACTIONS(7566), 1, anon_sym_DOT2, - STATE(3860), 1, - sym_comment, - ACTIONS(3105), 9, + ACTIONS(1526), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345272,16 +350790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180239] = 5, + [181940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3109), 1, + STATE(3914), 1, + sym_comment, + ACTIONS(1532), 2, anon_sym_DASH, - ACTIONS(7568), 1, anon_sym_DOT2, - STATE(3861), 1, - sym_comment, - ACTIONS(3111), 9, + ACTIONS(1534), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345291,53 +350808,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180263] = 4, + [181962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(7759), 1, anon_sym_DASH, - STATE(3862), 1, + STATE(3915), 1, sym_comment, - ACTIONS(7570), 10, + ACTIONS(5438), 10, anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180285] = 7, + [181984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7089), 1, - anon_sym_COLON, - ACTIONS(7576), 1, - anon_sym_COMMA, - ACTIONS(7578), 1, + ACTIONS(7763), 1, anon_sym_DASH, - STATE(3863), 1, + STATE(3916), 1, sym_comment, - STATE(4061), 1, - sym_param_type, - ACTIONS(7574), 7, + ACTIONS(7761), 10, + anon_sym_EQ, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180313] = 4, + [182006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7582), 1, + ACTIONS(7767), 1, anon_sym_DASH, - STATE(3864), 1, + STATE(3917), 1, sym_comment, - ACTIONS(7580), 10, + ACTIONS(7765), 10, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -345348,14 +350862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180335] = 4, + [182028] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7586), 1, + ACTIONS(7771), 1, anon_sym_DASH, - STATE(3865), 1, + STATE(3918), 1, sym_comment, - ACTIONS(7584), 10, + ACTIONS(7769), 10, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -345366,16 +350880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180357] = 5, + [182050] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3115), 1, + STATE(3919), 1, + sym_comment, + ACTIONS(1513), 2, anon_sym_DASH, - ACTIONS(7588), 1, anon_sym_DOT2, - STATE(3866), 1, - sym_comment, - ACTIONS(3117), 9, + ACTIONS(1515), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345385,16 +350898,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180381] = 5, + [182072] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3123), 1, + ACTIONS(7663), 1, + anon_sym_DOLLAR, + ACTIONS(7665), 1, anon_sym_DASH, - ACTIONS(7590), 1, - anon_sym_DOT2, - STATE(3867), 1, + ACTIONS(7667), 1, + anon_sym_LBRACE, + STATE(2979), 1, + sym__var, + STATE(3146), 1, + sym_block, + STATE(3148), 1, + sym_val_closure, + STATE(3920), 1, + sym_comment, + STATE(3927), 1, + sym__flag, + STATE(1319), 2, + sym__blosure, + sym_val_variable, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [182108] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7775), 1, + anon_sym_DASH, + STATE(3921), 1, sym_comment, - ACTIONS(3125), 9, + ACTIONS(7773), 10, + anon_sym_EQ, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345404,37 +350941,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180405] = 7, + [182130] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7089), 1, - anon_sym_COLON, - ACTIONS(7594), 1, - anon_sym_COMMA, - ACTIONS(7596), 1, - anon_sym_DASH, - STATE(3868), 1, + STATE(3922), 1, sym_comment, - STATE(4097), 1, - sym_param_type, - ACTIONS(7592), 7, + ACTIONS(1509), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(1511), 9, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180433] = 5, + [182152] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3129), 1, + ACTIONS(7779), 1, anon_sym_DASH, - ACTIONS(7598), 1, - anon_sym_DOT2, - STATE(3869), 1, + STATE(3923), 1, sym_comment, - ACTIONS(3131), 9, + ACTIONS(7777), 10, + anon_sym_EQ, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345444,254 +350977,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180457] = 11, + [182174] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7665), 1, anon_sym_DASH, - ACTIONS(7600), 1, + ACTIONS(7733), 1, anon_sym_DOLLAR, - ACTIONS(7602), 1, + ACTIONS(7735), 1, anon_sym_LBRACE, - STATE(2982), 1, + STATE(3016), 1, sym__var, - STATE(3229), 1, + STATE(3268), 1, sym_val_closure, - STATE(3231), 1, + STATE(3269), 1, sym_block, - STATE(3870), 1, + STATE(3924), 1, sym_comment, - STATE(4261), 1, + STATE(3926), 1, sym__flag, - STATE(1538), 2, + STATE(1604), 2, sym__blosure, sym_val_variable, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [180493] = 11, + [182210] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7212), 1, + ACTIONS(7783), 1, anon_sym_DASH, - ACTIONS(7600), 1, + STATE(3925), 1, + sym_comment, + ACTIONS(7781), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182232] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7733), 1, anon_sym_DOLLAR, - ACTIONS(7602), 1, + ACTIONS(7735), 1, anon_sym_LBRACE, - STATE(2982), 1, + ACTIONS(7785), 1, + anon_sym_DASH, + STATE(3016), 1, sym__var, - STATE(3229), 1, + STATE(3268), 1, sym_val_closure, - STATE(3231), 1, + STATE(3269), 1, sym_block, - STATE(3871), 1, + STATE(3926), 1, sym_comment, - STATE(3885), 1, + STATE(4250), 1, sym__flag, - STATE(1564), 2, + STATE(1509), 2, sym__blosure, sym_val_variable, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [180529] = 11, + [182268] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7212), 1, - anon_sym_DASH, - ACTIONS(7600), 1, + ACTIONS(7663), 1, anon_sym_DOLLAR, - ACTIONS(7602), 1, + ACTIONS(7667), 1, anon_sym_LBRACE, - STATE(2982), 1, + ACTIONS(7785), 1, + anon_sym_DASH, + STATE(2979), 1, sym__var, - STATE(3229), 1, - sym_val_closure, - STATE(3231), 1, + STATE(3146), 1, sym_block, - STATE(3870), 1, - sym__flag, - STATE(3872), 1, + STATE(3148), 1, + sym_val_closure, + STATE(3927), 1, sym_comment, - STATE(1544), 2, + STATE(4312), 1, + sym__flag, + STATE(1459), 2, sym__blosure, sym_val_variable, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [180565] = 12, + [182304] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(4161), 1, + ACTIONS(4144), 1, anon_sym_COLON, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - ACTIONS(7606), 1, + ACTIONS(7789), 1, anon_sym_DASH, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3873), 1, + STATE(3928), 1, sym_comment, - STATE(3996), 1, + STATE(4019), 1, aux_sym_decl_def_repeat1, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4628), 1, + STATE(4868), 1, sym_long_flag, - STATE(5223), 1, + STATE(5261), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [180603] = 4, + [182342] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7608), 1, + ACTIONS(7793), 1, anon_sym_DASH, - STATE(3874), 1, + STATE(3929), 1, sym_comment, - ACTIONS(5616), 10, + ACTIONS(7791), 10, anon_sym_EQ, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180625] = 4, + [182364] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7610), 1, + ACTIONS(7237), 1, + anon_sym_COLON, + ACTIONS(7363), 1, + anon_sym_EQ, + ACTIONS(7475), 1, + anon_sym_COMMA, + ACTIONS(7477), 1, anon_sym_DASH, - STATE(3875), 1, + STATE(3905), 1, + sym_param_value, + STATE(3930), 1, sym_comment, - ACTIONS(5618), 10, - anon_sym_EQ, + STATE(4090), 1, + sym_param_type, + ACTIONS(7473), 5, sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180647] = 11, + [182396] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7212), 1, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7795), 1, + sym_identifier, + ACTIONS(7797), 1, anon_sym_DASH, - ACTIONS(7214), 1, - anon_sym_LBRACE, - STATE(2913), 1, + STATE(2688), 1, sym__var, - STATE(3205), 1, - sym_val_closure, - STATE(3207), 1, - sym_block, - STATE(3876), 1, + STATE(3931), 1, sym_comment, - STATE(3884), 1, + STATE(4595), 1, sym__flag, - STATE(1380), 2, - sym__blosure, + STATE(4646), 1, + sym__variable_name, + STATE(4963), 1, sym_val_variable, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [180683] = 9, + [182431] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7089), 1, - anon_sym_COLON, - ACTIONS(7189), 1, + ACTIONS(7749), 1, + anon_sym_DASH, + ACTIONS(7799), 1, anon_sym_EQ, - ACTIONS(7454), 1, + ACTIONS(7801), 1, anon_sym_COMMA, - ACTIONS(7456), 1, - anon_sym_DASH, - STATE(3868), 1, - sym_param_value, - STATE(3877), 1, - sym_comment, - STATE(4054), 1, - sym_param_type, - ACTIONS(7452), 5, - sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [180715] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3878), 1, + STATE(3932), 1, sym_comment, - ACTIONS(1507), 2, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1509), 9, + STATE(4136), 1, + sym_param_value, + ACTIONS(7745), 6, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180737] = 4, + [182458] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7612), 1, - anon_sym_LT, - STATE(3879), 1, + ACTIONS(6981), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, + anon_sym_DOT2, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7406), 1, + anon_sym_LPAREN, + STATE(2935), 1, + sym__var, + STATE(3933), 1, sym_comment, - ACTIONS(5531), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [180759] = 4, + STATE(4882), 1, + sym__immediate_decimal, + ACTIONS(7027), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4828), 2, + sym_expr_parenthesized, + sym_val_variable, + [182491] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7614), 1, - anon_sym_LT, - STATE(3880), 1, + ACTIONS(6981), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, + anon_sym_DOT2, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7406), 1, + anon_sym_LPAREN, + STATE(2935), 1, + sym__var, + STATE(3934), 1, sym_comment, - ACTIONS(5531), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [180781] = 4, + STATE(4806), 1, + sym__immediate_decimal, + ACTIONS(7027), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4793), 2, + sym_expr_parenthesized, + sym_val_variable, + [182524] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3881), 1, - sym_comment, - ACTIONS(1491), 2, + ACTIONS(3513), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1493), 9, + STATE(3935), 1, + sym_comment, + ACTIONS(3515), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345701,122 +351244,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180803] = 4, + [182545] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7616), 1, - anon_sym_DASH, - STATE(3882), 1, - sym_comment, - ACTIONS(5608), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [180825] = 7, + ACTIONS(7181), 1, + anon_sym_DOT2, + ACTIONS(7191), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, + sym__var, + STATE(3936), 1, + sym_comment, + STATE(4566), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4567), 2, + sym_expr_parenthesized, + sym_val_variable, + [182578] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7089), 1, - anon_sym_COLON, - ACTIONS(7620), 1, - anon_sym_COMMA, - ACTIONS(7622), 1, + ACTIONS(3577), 1, anon_sym_DASH, - STATE(3883), 1, + STATE(3937), 1, sym_comment, - STATE(4058), 1, - sym_param_type, - ACTIONS(7618), 7, + ACTIONS(3579), 9, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180853] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7210), 1, - anon_sym_DOLLAR, - ACTIONS(7212), 1, - anon_sym_DASH, - ACTIONS(7214), 1, - anon_sym_LBRACE, - STATE(2913), 1, - sym__var, - STATE(3205), 1, - sym_val_closure, - STATE(3207), 1, - sym_block, - STATE(3852), 1, - sym__flag, - STATE(3884), 1, - sym_comment, - STATE(1460), 2, - sym__blosure, - sym_val_variable, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [180889] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7212), 1, - anon_sym_DASH, - ACTIONS(7600), 1, - anon_sym_DOLLAR, - ACTIONS(7602), 1, - anon_sym_LBRACE, - STATE(2982), 1, - sym__var, - STATE(3229), 1, - sym_val_closure, - STATE(3231), 1, - sym_block, - STATE(3872), 1, - sym__flag, - STATE(3885), 1, - sym_comment, - STATE(1502), 2, - sym__blosure, - sym_val_variable, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [180925] = 4, + [182599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7624), 1, + ACTIONS(3596), 1, anon_sym_DASH, - STATE(3886), 1, + STATE(3938), 1, sym_comment, - ACTIONS(5304), 10, - anon_sym_EQ, + ACTIONS(3598), 9, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180947] = 4, + [182620] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7628), 1, + ACTIONS(3604), 1, anon_sym_DASH, - STATE(3887), 1, + STATE(3939), 1, sym_comment, - ACTIONS(7626), 10, - anon_sym_EQ, + ACTIONS(3606), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345826,15 +351318,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180969] = 4, + [182641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7632), 1, + ACTIONS(3612), 1, anon_sym_DASH, - STATE(3888), 1, + STATE(3940), 1, sym_comment, - ACTIONS(7630), 10, - anon_sym_EQ, + ACTIONS(3614), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345844,33 +351335,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180991] = 4, + [182662] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7372), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(7787), 1, + sym_cmd_identifier, + ACTIONS(7789), 1, anon_sym_DASH, - STATE(3889), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3941), 1, sym_comment, - ACTIONS(5531), 10, - anon_sym_EQ, + STATE(4019), 1, + aux_sym_decl_def_repeat1, + STATE(4131), 1, + sym_val_string, + STATE(4868), 1, + sym_long_flag, + STATE(5261), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [182697] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3509), 1, + anon_sym_DASH, + STATE(3942), 1, + sym_comment, + ACTIONS(3511), 9, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181013] = 4, + [182718] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7636), 1, + ACTIONS(3329), 1, anon_sym_DASH, - STATE(3890), 1, + STATE(3943), 1, sym_comment, - ACTIONS(7634), 10, - anon_sym_EQ, + ACTIONS(3331), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -345880,222 +351393,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181035] = 10, + [182739] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7443), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(1684), 1, sym__var, - STATE(3891), 1, - sym_comment, - STATE(4559), 1, + STATE(2253), 1, sym__immediate_decimal, - ACTIONS(7079), 2, + STATE(3944), 1, + sym_comment, + ACTIONS(2960), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4554), 2, + STATE(2252), 2, sym_expr_parenthesized, sym_val_variable, - [181068] = 11, + [182772] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2102), 1, + anon_sym_DOT2, + ACTIONS(7351), 1, anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(7638), 1, - sym_identifier, - ACTIONS(7640), 1, - anon_sym_DASH, - STATE(2682), 1, + ACTIONS(7451), 1, + anon_sym_LPAREN, + ACTIONS(7457), 1, + aux_sym__immediate_decimal_token1, + STATE(1173), 1, sym__var, - STATE(3892), 1, + STATE(1550), 1, + sym__immediate_decimal, + STATE(3945), 1, sym_comment, - STATE(4496), 1, - sym__flag, - STATE(4664), 1, - sym__variable_name, - STATE(4907), 1, + ACTIONS(2110), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1547), 2, + sym_expr_parenthesized, sym_val_variable, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [181103] = 10, + [182805] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(2102), 1, anon_sym_DOT2, - ACTIONS(6922), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7330), 1, + ACTIONS(7351), 1, anon_sym_DOLLAR, - STATE(2703), 1, + ACTIONS(7451), 1, + anon_sym_LPAREN, + ACTIONS(7457), 1, + aux_sym__immediate_decimal_token1, + STATE(1173), 1, + sym__var, + STATE(1553), 1, sym__immediate_decimal, - STATE(3893), 1, + STATE(3946), 1, sym_comment, - STATE(4274), 1, - sym__var, - ACTIONS(6924), 2, + ACTIONS(2110), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2646), 2, + STATE(1552), 2, sym_expr_parenthesized, sym_val_variable, - [181136] = 10, + [182838] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(2102), 1, anon_sym_DOT2, - ACTIONS(6922), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7330), 1, + ACTIONS(7351), 1, anon_sym_DOLLAR, - STATE(2648), 1, + ACTIONS(7451), 1, + anon_sym_LPAREN, + ACTIONS(7457), 1, + aux_sym__immediate_decimal_token1, + STATE(1173), 1, + sym__var, + STATE(1558), 1, sym__immediate_decimal, - STATE(3894), 1, + STATE(3947), 1, sym_comment, - STATE(4274), 1, - sym__var, - ACTIONS(6924), 2, + ACTIONS(2110), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2647), 2, + STATE(1557), 2, sym_expr_parenthesized, sym_val_variable, - [181169] = 10, + [182871] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(2102), 1, + anon_sym_DOT2, + ACTIONS(7351), 1, anon_sym_DOLLAR, - ACTIONS(6764), 1, + ACTIONS(7451), 1, anon_sym_LPAREN, - ACTIONS(7286), 1, - anon_sym_DOT2, - ACTIONS(7290), 1, + ACTIONS(7457), 1, aux_sym__immediate_decimal_token1, - STATE(3710), 1, + STATE(1173), 1, sym__var, - STATE(3895), 1, - sym_comment, - STATE(4049), 1, + STATE(1565), 1, sym__immediate_decimal, - ACTIONS(6774), 2, + STATE(3948), 1, + sym_comment, + ACTIONS(2110), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4047), 2, + STATE(1564), 2, sym_expr_parenthesized, sym_val_variable, - [181202] = 10, + [182904] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, - anon_sym_DOLLAR, - ACTIONS(6764), 1, - anon_sym_LPAREN, - ACTIONS(7286), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(7290), 1, + ACTIONS(7379), 1, + anon_sym_LPAREN, + ACTIONS(7381), 1, + anon_sym_DOLLAR, + ACTIONS(7387), 1, aux_sym__immediate_decimal_token1, - STATE(3710), 1, + STATE(2395), 1, sym__var, - STATE(3896), 1, - sym_comment, - STATE(3952), 1, + STATE(2724), 1, sym__immediate_decimal, - ACTIONS(6774), 2, + STATE(3949), 1, + sym_comment, + ACTIONS(5104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3986), 2, + STATE(2719), 2, sym_expr_parenthesized, sym_val_variable, - [181235] = 10, + [182937] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, - anon_sym_DOLLAR, - ACTIONS(6764), 1, - anon_sym_LPAREN, - ACTIONS(7286), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(7290), 1, + ACTIONS(7379), 1, + anon_sym_LPAREN, + ACTIONS(7381), 1, + anon_sym_DOLLAR, + ACTIONS(7387), 1, aux_sym__immediate_decimal_token1, - STATE(3710), 1, + STATE(2395), 1, sym__var, - STATE(3897), 1, - sym_comment, - STATE(3948), 1, + STATE(2731), 1, sym__immediate_decimal, - ACTIONS(6774), 2, + STATE(3950), 1, + sym_comment, + ACTIONS(5104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3949), 2, + STATE(2726), 2, sym_expr_parenthesized, sym_val_variable, - [181268] = 10, + [182970] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(6848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7426), 1, + ACTIONS(7379), 1, anon_sym_LPAREN, - ACTIONS(7428), 1, + ACTIONS(7381), 1, anon_sym_DOLLAR, - STATE(2591), 1, + ACTIONS(7387), 1, + aux_sym__immediate_decimal_token1, + STATE(2395), 1, + sym__var, + STATE(2738), 1, sym__immediate_decimal, - STATE(3898), 1, + STATE(3951), 1, sym_comment, - STATE(4121), 1, - sym__var, - ACTIONS(6850), 2, + ACTIONS(5104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2592), 2, + STATE(2732), 2, sym_expr_parenthesized, sym_val_variable, - [181301] = 10, + [183003] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2841), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(2884), 1, + ACTIONS(7467), 1, anon_sym_DOT2, - ACTIONS(7253), 1, + ACTIONS(7471), 1, aux_sym__immediate_decimal_token1, - STATE(1667), 1, + STATE(3760), 1, sym__var, - STATE(2129), 1, - sym__immediate_decimal, - STATE(3899), 1, + STATE(3952), 1, sym_comment, - ACTIONS(2892), 2, + STATE(3954), 1, + sym__immediate_decimal, + ACTIONS(6939), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2130), 2, + STATE(3943), 2, sym_expr_parenthesized, sym_val_variable, - [181334] = 4, + [183036] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3413), 1, + STATE(3953), 1, + sym_comment, + ACTIONS(5740), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [183055] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3616), 1, anon_sym_DASH, - STATE(3900), 1, + STATE(3954), 1, sym_comment, - ACTIONS(3415), 9, + ACTIONS(3618), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346105,284 +351633,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181355] = 10, + [183076] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, + ACTIONS(5096), 1, anon_sym_DOT2, - ACTIONS(7253), 1, + ACTIONS(7379), 1, + anon_sym_LPAREN, + ACTIONS(7381), 1, + anon_sym_DOLLAR, + ACTIONS(7387), 1, aux_sym__immediate_decimal_token1, - STATE(1667), 1, + STATE(2395), 1, sym__var, - STATE(2131), 1, + STATE(2748), 1, sym__immediate_decimal, - STATE(3901), 1, + STATE(3955), 1, sym_comment, - ACTIONS(2892), 2, + ACTIONS(5104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2134), 2, + STATE(2747), 2, sym_expr_parenthesized, sym_val_variable, - [181388] = 11, + [183109] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7606), 1, + ACTIONS(3501), 1, anon_sym_DASH, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3902), 1, + STATE(3956), 1, sym_comment, - STATE(3989), 1, - aux_sym_decl_def_repeat1, - STATE(4095), 1, - sym_val_string, - STATE(4628), 1, - sym_long_flag, - STATE(5206), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [181423] = 10, + ACTIONS(3503), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183130] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(3479), 1, + anon_sym_DASH, + STATE(3957), 1, + sym_comment, + ACTIONS(3481), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183151] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6981), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(6848), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7426), 1, + ACTIONS(7406), 1, anon_sym_LPAREN, - ACTIONS(7428), 1, - anon_sym_DOLLAR, - STATE(2504), 1, - sym__immediate_decimal, - STATE(3903), 1, - sym_comment, - STATE(4121), 1, + STATE(2935), 1, sym__var, - ACTIONS(6850), 2, + STATE(3958), 1, + sym_comment, + STATE(4787), 1, + sym__immediate_decimal, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2506), 2, + STATE(4786), 2, sym_expr_parenthesized, sym_val_variable, - [181456] = 10, + [183184] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(2948), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(7443), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(1684), 1, sym__var, - STATE(3261), 1, + STATE(2293), 1, sym__immediate_decimal, - STATE(3904), 1, + STATE(3959), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(2960), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3262), 2, + STATE(2295), 2, sym_expr_parenthesized, sym_val_variable, - [181489] = 10, + [183217] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(6981), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(6922), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7328), 1, + ACTIONS(7406), 1, anon_sym_LPAREN, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2641), 1, - sym__immediate_decimal, - STATE(3905), 1, - sym_comment, - STATE(4274), 1, + STATE(2935), 1, sym__var, - ACTIONS(6924), 2, + STATE(3960), 1, + sym_comment, + STATE(4784), 1, + sym__immediate_decimal, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2640), 2, + STATE(4798), 2, sym_expr_parenthesized, sym_val_variable, - [181522] = 10, + [183250] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2841), 1, + ACTIONS(6981), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(7253), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(1667), 1, + ACTIONS(7406), 1, + anon_sym_LPAREN, + STATE(2935), 1, sym__var, - STATE(2135), 1, - sym__immediate_decimal, - STATE(3906), 1, + STATE(3961), 1, sym_comment, - ACTIONS(2892), 2, + STATE(4660), 1, + sym__immediate_decimal, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2136), 2, + STATE(4656), 2, sym_expr_parenthesized, sym_val_variable, - [181555] = 10, + [183283] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4293), 1, + ACTIONS(6981), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(7011), 1, anon_sym_DOT2, - ACTIONS(7208), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - STATE(3189), 1, + ACTIONS(7406), 1, + anon_sym_LPAREN, + STATE(2935), 1, sym__var, - STATE(3335), 1, - sym__immediate_decimal, - STATE(3907), 1, + STATE(3962), 1, sym_comment, - ACTIONS(5371), 2, + STATE(4665), 1, + sym__immediate_decimal, + ACTIONS(7027), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3333), 2, + STATE(4664), 2, sym_expr_parenthesized, sym_val_variable, - [181588] = 10, + [183316] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4293), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(7208), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(3189), 1, - sym__var, - STATE(3339), 1, + ACTIONS(7523), 1, + anon_sym_LPAREN, + ACTIONS(7525), 1, + anon_sym_DOLLAR, + STATE(2578), 1, sym__immediate_decimal, - STATE(3908), 1, + STATE(3963), 1, sym_comment, - ACTIONS(5371), 2, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3337), 2, + STATE(2577), 2, sym_expr_parenthesized, sym_val_variable, - [181621] = 10, + [183349] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4293), 1, + ACTIONS(3620), 1, + anon_sym_DASH, + STATE(3964), 1, + sym_comment, + ACTIONS(3622), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183370] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(7208), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(3189), 1, - sym__var, - STATE(3341), 1, + ACTIONS(7523), 1, + anon_sym_LPAREN, + ACTIONS(7525), 1, + anon_sym_DOLLAR, + STATE(2580), 1, sym__immediate_decimal, - STATE(3909), 1, + STATE(3965), 1, sym_comment, - ACTIONS(5371), 2, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3340), 2, + STATE(2579), 2, sym_expr_parenthesized, sym_val_variable, - [181654] = 10, + [183403] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4293), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(7208), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(3189), 1, - sym__var, - STATE(3343), 1, + ACTIONS(7523), 1, + anon_sym_LPAREN, + ACTIONS(7525), 1, + anon_sym_DOLLAR, + STATE(2584), 1, sym__immediate_decimal, - STATE(3910), 1, + STATE(3966), 1, sym_comment, - ACTIONS(5371), 2, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3342), 2, + STATE(2582), 2, sym_expr_parenthesized, sym_val_variable, - [181687] = 3, + [183436] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3911), 1, + ACTIONS(3218), 1, + anon_sym_DASH, + STATE(3967), 1, sym_comment, - ACTIONS(5531), 10, + ACTIONS(3220), 9, anon_sym_EQ, sym_identifier, - anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [181706] = 10, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183457] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(7253), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(1667), 1, - sym__var, - STATE(2137), 1, + ACTIONS(7523), 1, + anon_sym_LPAREN, + ACTIONS(7525), 1, + anon_sym_DOLLAR, + STATE(2587), 1, sym__immediate_decimal, - STATE(3912), 1, + STATE(3968), 1, sym_comment, - ACTIONS(2892), 2, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2138), 2, + STATE(2586), 2, sym_expr_parenthesized, sym_val_variable, - [181739] = 4, + [183490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3303), 1, + ACTIONS(3632), 1, anon_sym_DASH, - STATE(3913), 1, + STATE(3969), 1, sym_comment, - ACTIONS(3305), 9, + ACTIONS(3634), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346392,14 +351948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181760] = 4, + [183511] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3307), 1, + ACTIONS(3638), 1, anon_sym_DASH, - STATE(3914), 1, + STATE(3970), 1, sym_comment, - ACTIONS(3309), 9, + ACTIONS(3640), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346409,14 +351965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181781] = 4, + [183532] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3323), 1, + ACTIONS(3642), 1, anon_sym_DASH, - STATE(3915), 1, + STATE(3971), 1, sym_comment, - ACTIONS(3325), 9, + ACTIONS(3644), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346426,14 +351982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181802] = 4, + [183553] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3327), 1, + ACTIONS(3650), 1, anon_sym_DASH, - STATE(3916), 1, + STATE(3972), 1, sym_comment, - ACTIONS(3329), 9, + ACTIONS(3652), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346443,14 +351999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181823] = 4, + [183574] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3331), 1, + ACTIONS(3654), 1, anon_sym_DASH, - STATE(3917), 1, + STATE(3973), 1, sym_comment, - ACTIONS(3333), 9, + ACTIONS(3656), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346460,14 +352016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181844] = 4, + [183595] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3335), 1, + ACTIONS(3664), 1, anon_sym_DASH, - STATE(3918), 1, + STATE(3974), 1, sym_comment, - ACTIONS(3337), 9, + ACTIONS(3666), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346477,14 +352033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181865] = 4, + [183616] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3341), 1, + ACTIONS(3672), 1, anon_sym_DASH, - STATE(3919), 1, + STATE(3975), 1, sym_comment, - ACTIONS(3343), 9, + ACTIONS(3674), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346494,222 +352050,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181886] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT2, - ACTIONS(6922), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2700), 1, - sym__immediate_decimal, - STATE(3920), 1, - sym_comment, - STATE(4274), 1, - sym__var, - ACTIONS(6924), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2713), 2, - sym_expr_parenthesized, - sym_val_variable, - [181919] = 11, + [183637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7606), 1, + ACTIONS(3676), 1, anon_sym_DASH, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3921), 1, - sym_comment, - STATE(4095), 1, - sym_val_string, - STATE(4196), 1, - aux_sym_decl_def_repeat1, - STATE(4628), 1, - sym_long_flag, - STATE(5272), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [181954] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6820), 1, - anon_sym_DOLLAR, - ACTIONS(6856), 1, - anon_sym_DOT2, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, - anon_sym_LPAREN, - STATE(2902), 1, - sym__var, - STATE(3922), 1, - sym_comment, - STATE(4788), 1, - sym__immediate_decimal, - ACTIONS(6862), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4595), 2, - sym_expr_parenthesized, - sym_val_variable, - [181987] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6820), 1, - anon_sym_DOLLAR, - ACTIONS(6856), 1, - anon_sym_DOT2, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, - anon_sym_LPAREN, - STATE(2902), 1, - sym__var, - STATE(3923), 1, - sym_comment, - STATE(4786), 1, - sym__immediate_decimal, - ACTIONS(6862), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4787), 2, - sym_expr_parenthesized, - sym_val_variable, - [182020] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - anon_sym_DOT2, - ACTIONS(6848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7426), 1, - anon_sym_LPAREN, - ACTIONS(7428), 1, - anon_sym_DOLLAR, - STATE(2511), 1, - sym__immediate_decimal, - STATE(3924), 1, - sym_comment, - STATE(4121), 1, - sym__var, - ACTIONS(6850), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2513), 2, - sym_expr_parenthesized, - sym_val_variable, - [182053] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT2, - ACTIONS(6922), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2597), 1, - sym__immediate_decimal, - STATE(3925), 1, - sym_comment, - STATE(4274), 1, - sym__var, - ACTIONS(6924), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2642), 2, - sym_expr_parenthesized, - sym_val_variable, - [182086] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - anon_sym_DOT2, - ACTIONS(6848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7426), 1, - anon_sym_LPAREN, - ACTIONS(7428), 1, - anon_sym_DOLLAR, - STATE(2481), 1, - sym__immediate_decimal, - STATE(3926), 1, + STATE(3976), 1, sym_comment, - STATE(4121), 1, - sym__var, - ACTIONS(6850), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2510), 2, - sym_expr_parenthesized, - sym_val_variable, - [182119] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DOT2, - ACTIONS(7167), 1, + ACTIONS(3678), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7243), 1, - aux_sym__immediate_decimal_token1, - STATE(1129), 1, - sym__var, - STATE(1469), 1, - sym__immediate_decimal, - STATE(3927), 1, - sym_comment, - ACTIONS(2063), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1615), 2, - sym_expr_parenthesized, - sym_val_variable, - [182152] = 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183658] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, - anon_sym_DOT2, - ACTIONS(6848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7426), 1, - anon_sym_LPAREN, - ACTIONS(7428), 1, - anon_sym_DOLLAR, - STATE(2499), 1, - sym__immediate_decimal, - STATE(3928), 1, + ACTIONS(3680), 1, + anon_sym_DASH, + STATE(3977), 1, sym_comment, - STATE(4121), 1, - sym__var, - ACTIONS(6850), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2502), 2, - sym_expr_parenthesized, - sym_val_variable, - [182185] = 4, + ACTIONS(3682), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183679] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3345), 1, + ACTIONS(3703), 1, anon_sym_DASH, - STATE(3929), 1, + STATE(3978), 1, sym_comment, - ACTIONS(3347), 9, + ACTIONS(3705), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346719,14 +352101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182206] = 4, + [183700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3349), 1, + ACTIONS(3707), 1, anon_sym_DASH, - STATE(3930), 1, + STATE(3979), 1, sym_comment, - ACTIONS(3351), 9, + ACTIONS(3709), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346736,14 +352118,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182227] = 4, + [183721] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3353), 1, + ACTIONS(3711), 1, anon_sym_DASH, - STATE(3931), 1, + STATE(3980), 1, sym_comment, - ACTIONS(3355), 9, + ACTIONS(3713), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346753,14 +352135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182248] = 4, + [183742] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3357), 1, + ACTIONS(3715), 1, anon_sym_DASH, - STATE(3932), 1, + STATE(3981), 1, sym_comment, - ACTIONS(3359), 9, + ACTIONS(3717), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346770,14 +352152,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182269] = 4, + [183763] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3361), 1, + ACTIONS(7721), 1, + anon_sym_COMMA, + ACTIONS(7723), 1, anon_sym_DASH, - STATE(3933), 1, + ACTIONS(7799), 1, + anon_sym_EQ, + STATE(3982), 1, + sym_comment, + STATE(4117), 1, + sym_param_value, + ACTIONS(7719), 6, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183790] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3475), 1, + anon_sym_DASH, + STATE(3983), 1, sym_comment, - ACTIONS(3363), 9, + ACTIONS(3477), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346787,14 +352189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182290] = 4, + [183811] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3505), 1, anon_sym_DASH, - STATE(3934), 1, + STATE(3984), 1, sym_comment, - ACTIONS(3367), 9, + ACTIONS(3507), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346804,14 +352206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182311] = 4, + [183832] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3369), 1, + ACTIONS(3471), 1, anon_sym_DASH, - STATE(3935), 1, + STATE(3985), 1, sym_comment, - ACTIONS(3371), 9, + ACTIONS(3473), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346821,14 +352223,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182332] = 4, + [183853] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3373), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(7787), 1, + sym_cmd_identifier, + ACTIONS(7789), 1, anon_sym_DASH, - STATE(3936), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3986), 1, + sym_comment, + STATE(4131), 1, + sym_val_string, + STATE(4277), 1, + aux_sym_decl_def_repeat1, + STATE(4868), 1, + sym_long_flag, + STATE(5146), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [183888] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3719), 1, + anon_sym_DASH, + STATE(3987), 1, sym_comment, - ACTIONS(3375), 9, + ACTIONS(3721), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346838,14 +352264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182353] = 4, + [183909] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3381), 1, + ACTIONS(3723), 1, anon_sym_DASH, - STATE(3937), 1, + STATE(3988), 1, sym_comment, - ACTIONS(3383), 9, + ACTIONS(3725), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346855,14 +352281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182374] = 4, + [183930] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3385), 1, + ACTIONS(3727), 1, anon_sym_DASH, - STATE(3938), 1, + STATE(3989), 1, sym_comment, - ACTIONS(3387), 9, + ACTIONS(3729), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346872,14 +352298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182395] = 4, + [183951] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3731), 1, anon_sym_DASH, - STATE(3939), 1, + STATE(3990), 1, sym_comment, - ACTIONS(3395), 9, + ACTIONS(3733), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346889,14 +352315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182416] = 4, + [183972] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3397), 1, + ACTIONS(3745), 1, anon_sym_DASH, - STATE(3940), 1, + STATE(3991), 1, sym_comment, - ACTIONS(3399), 9, + ACTIONS(3747), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346906,14 +352332,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182437] = 4, + [183993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3405), 1, + ACTIONS(3749), 1, anon_sym_DASH, - STATE(3941), 1, + STATE(3992), 1, sym_comment, - ACTIONS(3407), 9, + ACTIONS(3751), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346923,14 +352349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182458] = 4, + [184014] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3409), 1, + ACTIONS(3755), 1, anon_sym_DASH, - STATE(3942), 1, + STATE(3993), 1, sym_comment, - ACTIONS(3411), 9, + ACTIONS(3757), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346940,14 +352366,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182479] = 4, + [184035] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3694), 1, + ACTIONS(2014), 1, + anon_sym_DOT2, + ACTIONS(7300), 1, + anon_sym_DOLLAR, + ACTIONS(7625), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, + aux_sym__immediate_decimal_token1, + STATE(1127), 1, + sym__var, + STATE(1287), 1, + sym__immediate_decimal, + STATE(3994), 1, + sym_comment, + ACTIONS(2022), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1278), 2, + sym_expr_parenthesized, + sym_val_variable, + [184068] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3759), 1, anon_sym_DASH, - STATE(3943), 1, + STATE(3995), 1, sym_comment, - ACTIONS(3696), 9, + ACTIONS(3761), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346957,14 +352406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182500] = 4, + [184089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3417), 1, + ACTIONS(7805), 1, anon_sym_DASH, - STATE(3944), 1, + STATE(3996), 1, sym_comment, - ACTIONS(3419), 9, + ACTIONS(7803), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -346974,57 +352423,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182521] = 7, + [184110] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7594), 1, - anon_sym_COMMA, - ACTIONS(7596), 1, + ACTIONS(3467), 1, anon_sym_DASH, - ACTIONS(7642), 1, - anon_sym_EQ, - STATE(3945), 1, + STATE(3997), 1, sym_comment, - STATE(4097), 1, - sym_param_value, - ACTIONS(7592), 6, + ACTIONS(3469), 9, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182548] = 10, + [184131] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4979), 1, - anon_sym_DOT2, - ACTIONS(7434), 1, - anon_sym_LPAREN, - ACTIONS(7436), 1, - anon_sym_DOLLAR, - ACTIONS(7442), 1, - aux_sym__immediate_decimal_token1, - STATE(2353), 1, - sym__var, - STATE(2648), 1, - sym__immediate_decimal, - STATE(3946), 1, + ACTIONS(3767), 1, + anon_sym_DASH, + STATE(3998), 1, sym_comment, - ACTIONS(4987), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2647), 2, - sym_expr_parenthesized, - sym_val_variable, - [182581] = 4, + ACTIONS(3769), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184152] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3425), 1, + ACTIONS(3463), 1, anon_sym_DASH, - STATE(3947), 1, + STATE(3999), 1, sym_comment, - ACTIONS(3427), 9, + ACTIONS(3465), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -347034,14 +352474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182602] = 4, + [184173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3429), 1, + ACTIONS(3771), 1, anon_sym_DASH, - STATE(3948), 1, + STATE(4000), 1, sym_comment, - ACTIONS(3431), 9, + ACTIONS(3773), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -347051,14 +352491,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182623] = 4, + [184194] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3433), 1, + STATE(4001), 1, + sym_comment, + ACTIONS(5752), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [184213] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3459), 1, anon_sym_DASH, - STATE(3949), 1, + STATE(4002), 1, sym_comment, - ACTIONS(3435), 9, + ACTIONS(3461), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -347068,60 +352524,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182644] = 10, + [184234] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DOT2, - ACTIONS(7167), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(7237), 1, + ACTIONS(2948), 1, anon_sym_LPAREN, - ACTIONS(7243), 1, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(7443), 1, aux_sym__immediate_decimal_token1, - STATE(1129), 1, + STATE(1684), 1, sym__var, - STATE(1611), 1, + STATE(2155), 1, sym__immediate_decimal, - STATE(3950), 1, + STATE(4003), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(2960), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1604), 2, + STATE(2133), 2, sym_expr_parenthesized, sym_val_variable, - [182677] = 10, + [184267] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DOT2, - ACTIONS(7167), 1, - anon_sym_DOLLAR, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7243), 1, - aux_sym__immediate_decimal_token1, - STATE(1129), 1, - sym__var, - STATE(1530), 1, - sym__immediate_decimal, - STATE(3951), 1, + ACTIONS(3775), 1, + anon_sym_DASH, + STATE(4004), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1528), 2, - sym_expr_parenthesized, - sym_val_variable, - [182710] = 4, + ACTIONS(3777), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184288] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3437), 1, + ACTIONS(3779), 1, anon_sym_DASH, - STATE(3952), 1, + STATE(4005), 1, sym_comment, - ACTIONS(3439), 9, + ACTIONS(3781), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -347131,131 +352581,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182731] = 10, + [184309] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(2948), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(7443), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(1684), 1, sym__var, - STATE(3335), 1, + STATE(2161), 1, sym__immediate_decimal, - STATE(3953), 1, + STATE(4006), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(2960), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3333), 2, + STATE(2160), 2, sym_expr_parenthesized, sym_val_variable, - [182764] = 10, + [184342] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3339), 1, - sym__immediate_decimal, - STATE(3954), 1, + ACTIONS(3431), 1, + anon_sym_DASH, + STATE(4007), 1, sym_comment, - ACTIONS(6986), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3337), 2, - sym_expr_parenthesized, - sym_val_variable, - [182797] = 10, + ACTIONS(3433), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184363] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(5524), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(5558), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(7585), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(3287), 1, sym__var, - STATE(3341), 1, + STATE(3548), 1, sym__immediate_decimal, - STATE(3955), 1, + STATE(4008), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(5570), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3340), 2, + STATE(3552), 2, sym_expr_parenthesized, sym_val_variable, - [182830] = 10, + [184396] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(5524), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(5558), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(7585), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(3287), 1, sym__var, - STATE(3343), 1, + STATE(3564), 1, sym__immediate_decimal, - STATE(3956), 1, + STATE(4009), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(5570), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3342), 2, + STATE(3558), 2, sym_expr_parenthesized, sym_val_variable, - [182863] = 10, + [184429] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, anon_sym_DOT2, - ACTIONS(6922), 1, + ACTIONS(7585), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2716), 1, + STATE(3287), 1, + sym__var, + STATE(3514), 1, sym__immediate_decimal, - STATE(3957), 1, + STATE(4010), 1, sym_comment, - STATE(4274), 1, - sym__var, - ACTIONS(6924), 2, + ACTIONS(5570), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2714), 2, + STATE(3512), 2, sym_expr_parenthesized, sym_val_variable, - [182896] = 4, + [184462] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3226), 1, + ACTIONS(3427), 1, anon_sym_DASH, - STATE(3958), 1, + STATE(4011), 1, sym_comment, - ACTIONS(3228), 9, - anon_sym_EQ, + ACTIONS(3429), 9, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -347263,305 +352707,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182917] = 4, + [184483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3220), 1, - anon_sym_DASH, - STATE(3959), 1, + STATE(4012), 1, sym_comment, - ACTIONS(3222), 9, + ACTIONS(5750), 10, anon_sym_EQ, sym_identifier, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182938] = 10, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [184502] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6796), 1, - anon_sym_DOT2, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, - anon_sym_DOLLAR, - ACTIONS(7226), 1, - anon_sym_LPAREN, - STATE(2866), 1, - sym__var, - STATE(3960), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(7787), 1, + sym_cmd_identifier, + ACTIONS(7789), 1, + anon_sym_DASH, + STATE(2777), 1, + sym__str_double_quotes, + STATE(4013), 1, sym_comment, - STATE(4403), 1, - sym__immediate_decimal, - ACTIONS(6802), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4404), 2, - sym_expr_parenthesized, - sym_val_variable, - [182971] = 10, + STATE(4131), 1, + sym_val_string, + STATE(4277), 1, + aux_sym_decl_def_repeat1, + STATE(4868), 1, + sym_long_flag, + STATE(5237), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [184537] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6796), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, + ACTIONS(6995), 1, anon_sym_DOLLAR, - ACTIONS(7226), 1, + ACTIONS(7373), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(2903), 1, sym__var, - STATE(3961), 1, + STATE(4014), 1, sym_comment, - STATE(4400), 1, + STATE(4365), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4402), 2, + STATE(4364), 2, sym_expr_parenthesized, sym_val_variable, - [183004] = 10, + [184570] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4852), 1, - anon_sym_DOT2, - ACTIONS(7398), 1, - anon_sym_LPAREN, - ACTIONS(7400), 1, + ACTIONS(5524), 1, anon_sym_DOLLAR, - ACTIONS(7406), 1, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(7585), 1, aux_sym__immediate_decimal_token1, - STATE(2330), 1, + STATE(3287), 1, sym__var, - STATE(2511), 1, + STATE(3554), 1, sym__immediate_decimal, - STATE(3962), 1, + STATE(4015), 1, sym_comment, - ACTIONS(4860), 2, + ACTIONS(5570), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2513), 2, + STATE(3549), 2, sym_expr_parenthesized, sym_val_variable, - [183037] = 10, + [184603] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4852), 1, - anon_sym_DOT2, - ACTIONS(7398), 1, - anon_sym_LPAREN, - ACTIONS(7400), 1, + ACTIONS(5524), 1, anon_sym_DOLLAR, - ACTIONS(7406), 1, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + anon_sym_DOT2, + ACTIONS(7585), 1, aux_sym__immediate_decimal_token1, - STATE(2330), 1, + STATE(3287), 1, sym__var, - STATE(2481), 1, + STATE(3523), 1, sym__immediate_decimal, - STATE(3963), 1, + STATE(4016), 1, sym_comment, - ACTIONS(4860), 2, + ACTIONS(5570), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2510), 2, + STATE(3522), 2, sym_expr_parenthesized, sym_val_variable, - [183070] = 10, + [184636] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4852), 1, - anon_sym_DOT2, - ACTIONS(7398), 1, - anon_sym_LPAREN, - ACTIONS(7400), 1, - anon_sym_DOLLAR, - ACTIONS(7406), 1, - aux_sym__immediate_decimal_token1, - STATE(2330), 1, - sym__var, - STATE(2504), 1, - sym__immediate_decimal, - STATE(3964), 1, + ACTIONS(7809), 1, + anon_sym_DASH, + STATE(4017), 1, sym_comment, - ACTIONS(4860), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2506), 2, - sym_expr_parenthesized, - sym_val_variable, - [183103] = 10, + ACTIONS(7807), 9, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184657] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4852), 1, - anon_sym_DOT2, - ACTIONS(7398), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(7400), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7406), 1, + ACTIONS(7266), 1, + anon_sym_DOT2, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2330), 1, + STATE(2688), 1, sym__var, - STATE(2499), 1, - sym__immediate_decimal, - STATE(3965), 1, + STATE(4018), 1, sym_comment, - ACTIONS(4860), 2, + STATE(4583), 1, + sym__immediate_decimal, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2502), 2, + STATE(4584), 2, sym_expr_parenthesized, sym_val_variable, - [183136] = 10, + [184690] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(7787), 1, + sym_cmd_identifier, + ACTIONS(7789), 1, + anon_sym_DASH, + STATE(2777), 1, + sym__str_double_quotes, + STATE(4019), 1, + sym_comment, + STATE(4131), 1, + sym_val_string, + STATE(4277), 1, + aux_sym_decl_def_repeat1, + STATE(4868), 1, + sym_long_flag, + STATE(5245), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [184725] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(2014), 1, anon_sym_DOT2, - ACTIONS(7097), 1, + ACTIONS(7300), 1, anon_sym_DOLLAR, - ACTIONS(7255), 1, + ACTIONS(7625), 1, anon_sym_LPAREN, - ACTIONS(7261), 1, + ACTIONS(7631), 1, aux_sym__immediate_decimal_token1, - STATE(1110), 1, + STATE(1127), 1, sym__var, - STATE(1417), 1, + STATE(1272), 1, sym__immediate_decimal, - STATE(3966), 1, + STATE(4020), 1, sym_comment, - ACTIONS(1975), 2, + ACTIONS(2022), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1418), 2, + STATE(1280), 2, sym_expr_parenthesized, sym_val_variable, - [183169] = 10, + [184758] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3375), 1, + anon_sym_DASH, + STATE(4021), 1, + sym_comment, + ACTIONS(3377), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184779] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(7097), 1, + ACTIONS(6965), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6995), 1, anon_sym_DOLLAR, - ACTIONS(7255), 1, + ACTIONS(7373), 1, anon_sym_LPAREN, - ACTIONS(7261), 1, - aux_sym__immediate_decimal_token1, - STATE(1110), 1, + STATE(2903), 1, sym__var, - STATE(1415), 1, - sym__immediate_decimal, - STATE(3967), 1, + STATE(4022), 1, sym_comment, - ACTIONS(1975), 2, + STATE(4367), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1416), 2, + STATE(4366), 2, sym_expr_parenthesized, sym_val_variable, - [183202] = 10, + [184812] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3224), 1, + anon_sym_DASH, + STATE(4023), 1, + sym_comment, + ACTIONS(3226), 9, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184833] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7741), 1, + anon_sym_COMMA, + ACTIONS(7743), 1, + anon_sym_DASH, + ACTIONS(7799), 1, + anon_sym_EQ, + STATE(4024), 1, + sym_comment, + STATE(4091), 1, + sym_param_value, + ACTIONS(7739), 6, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184860] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(3343), 1, + anon_sym_DASH, + STATE(4025), 1, + sym_comment, + ACTIONS(3345), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(6856), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184881] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, + ACTIONS(6995), 1, + anon_sym_DOLLAR, + ACTIONS(7373), 1, anon_sym_LPAREN, - STATE(2902), 1, + STATE(2903), 1, sym__var, - STATE(3968), 1, + STATE(4026), 1, sym_comment, - STATE(4490), 1, + STATE(4369), 1, sym__immediate_decimal, - ACTIONS(6862), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4491), 2, + STATE(4328), 2, sym_expr_parenthesized, sym_val_variable, - [183235] = 10, + [184914] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6820), 1, - anon_sym_DOLLAR, - ACTIONS(6856), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, + ACTIONS(6995), 1, + anon_sym_DOLLAR, + ACTIONS(7373), 1, anon_sym_LPAREN, - STATE(2902), 1, + STATE(2903), 1, sym__var, - STATE(3969), 1, + STATE(4027), 1, sym_comment, - STATE(4483), 1, + STATE(4372), 1, sym__immediate_decimal, - ACTIONS(6862), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4487), 2, + STATE(4371), 2, sym_expr_parenthesized, sym_val_variable, - [183268] = 10, + [184947] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(6856), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(6860), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, - anon_sym_LPAREN, - STATE(2902), 1, + STATE(2688), 1, sym__var, - STATE(3970), 1, + STATE(4028), 1, sym_comment, - STATE(4460), 1, + STATE(4577), 1, sym__immediate_decimal, - ACTIONS(6862), 2, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4725), 2, + STATE(4571), 2, sym_expr_parenthesized, sym_val_variable, - [183301] = 10, + [184980] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(7787), 1, + sym_cmd_identifier, + ACTIONS(7789), 1, + anon_sym_DASH, + STATE(2777), 1, + sym__str_double_quotes, + STATE(3986), 1, + aux_sym_decl_def_repeat1, + STATE(4029), 1, + sym_comment, + STATE(4131), 1, + sym_val_string, + STATE(4868), 1, + sym_long_flag, + STATE(4971), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [185015] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(6856), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - STATE(2902), 1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, sym__var, - STATE(3971), 1, - sym_comment, - STATE(4517), 1, + STATE(3317), 1, sym__immediate_decimal, - ACTIONS(6862), 2, + STATE(4030), 1, + sym_comment, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4475), 2, + STATE(3319), 2, sym_expr_parenthesized, sym_val_variable, - [183334] = 3, + [185048] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3972), 1, + STATE(4031), 1, sym_comment, - ACTIONS(5652), 10, + ACTIONS(5651), 10, anon_sym_EQ, sym_identifier, anon_sym_DASH_GT, @@ -347572,169 +353129,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [183353] = 10, + [185067] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3973), 1, + STATE(4032), 1, sym_comment, - STATE(4485), 1, + STATE(4797), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4484), 2, + STATE(4568), 2, sym_expr_parenthesized, sym_val_variable, - [183386] = 10, + [185100] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(4542), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7683), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(3193), 1, sym__var, - STATE(3974), 1, - sym_comment, - STATE(4488), 1, + STATE(3317), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + STATE(4033), 1, + sym_comment, + ACTIONS(5462), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4486), 2, + STATE(3319), 2, sym_expr_parenthesized, sym_val_variable, - [183419] = 10, + [185133] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DOT2, - ACTIONS(7167), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(7787), 1, + sym_cmd_identifier, + ACTIONS(7789), 1, + anon_sym_DASH, + STATE(2777), 1, + sym__str_double_quotes, + STATE(4034), 1, + sym_comment, + STATE(4131), 1, + sym_val_string, + STATE(4277), 1, + aux_sym_decl_def_repeat1, + STATE(4868), 1, + sym_long_flag, + STATE(4980), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [185168] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4542), 1, anon_sym_DOLLAR, - ACTIONS(7237), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(7243), 1, + ACTIONS(5454), 1, + anon_sym_DOT2, + ACTIONS(7683), 1, aux_sym__immediate_decimal_token1, - STATE(1129), 1, + STATE(3193), 1, sym__var, - STATE(1537), 1, + STATE(3298), 1, sym__immediate_decimal, - STATE(3975), 1, + STATE(4035), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(5462), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1467), 2, + STATE(3325), 2, sym_expr_parenthesized, sym_val_variable, - [183452] = 10, + [185201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DOT2, - ACTIONS(7167), 1, + ACTIONS(1536), 1, + anon_sym_DASH, + STATE(4036), 1, + sym_comment, + ACTIONS(1538), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(7237), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185222] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4542), 1, + anon_sym_DOLLAR, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(7243), 1, + ACTIONS(5454), 1, + anon_sym_DOT2, + ACTIONS(7683), 1, aux_sym__immediate_decimal_token1, - STATE(1129), 1, + STATE(3193), 1, sym__var, - STATE(1462), 1, + STATE(3332), 1, sym__immediate_decimal, - STATE(3976), 1, + STATE(4037), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(5462), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1540), 2, + STATE(3334), 2, sym_expr_parenthesized, sym_val_variable, - [183485] = 10, + [185255] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DOT2, - ACTIONS(7167), 1, + ACTIONS(4542), 1, anon_sym_DOLLAR, - ACTIONS(7237), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(7243), 1, + ACTIONS(5454), 1, + anon_sym_DOT2, + ACTIONS(7683), 1, aux_sym__immediate_decimal_token1, - STATE(1129), 1, + STATE(3193), 1, sym__var, - STATE(1593), 1, + STATE(3338), 1, sym__immediate_decimal, - STATE(3977), 1, + STATE(4038), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(5462), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1617), 2, + STATE(3305), 2, sym_expr_parenthesized, sym_val_variable, - [183518] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7646), 1, - anon_sym_DASH, - STATE(3978), 1, - sym_comment, - ACTIONS(7644), 9, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183539] = 10, + [185288] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3979), 1, + STATE(4039), 1, sym_comment, - STATE(4485), 1, + STATE(4566), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4484), 2, + STATE(4567), 2, sym_expr_parenthesized, sym_val_variable, - [183572] = 4, + [185321] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1515), 1, + ACTIONS(3333), 1, anon_sym_DASH, - STATE(3980), 1, + STATE(4040), 1, sym_comment, - ACTIONS(1517), 9, + ACTIONS(3335), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -347744,83 +353325,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183593] = 10, + [185342] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, - aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(3981), 1, + ACTIONS(3351), 1, + anon_sym_DASH, + STATE(4041), 1, sym_comment, - STATE(4488), 1, - sym__immediate_decimal, - ACTIONS(7028), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4486), 2, - sym_expr_parenthesized, - sym_val_variable, - [183626] = 10, + ACTIONS(3353), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185363] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6796), 1, - anon_sym_DOT2, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(7226), 1, + ACTIONS(2948), 1, anon_sym_LPAREN, - STATE(2866), 1, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(7443), 1, + aux_sym__immediate_decimal_token1, + STATE(1684), 1, sym__var, - STATE(3982), 1, - sym_comment, - STATE(4375), 1, + STATE(2296), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(4042), 1, + sym_comment, + ACTIONS(2960), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4376), 2, + STATE(2298), 2, sym_expr_parenthesized, sym_val_variable, - [183659] = 10, + [185396] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6796), 1, - anon_sym_DOT2, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7226), 1, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7159), 1, anon_sym_LPAREN, - STATE(2866), 1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, sym__var, - STATE(3983), 1, - sym_comment, - STATE(4371), 1, + STATE(3298), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(4043), 1, + sym_comment, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4374), 2, + STATE(3325), 2, sym_expr_parenthesized, sym_val_variable, - [183692] = 4, + [185429] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7650), 1, + ACTIONS(7813), 1, anon_sym_DASH, - STATE(3984), 1, + STATE(4044), 1, sym_comment, - ACTIONS(7648), 9, + ACTIONS(7811), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -347830,2232 +353405,1781 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183713] = 10, + [185450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6796), 1, - anon_sym_DOT2, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, + STATE(4045), 1, + sym_comment, + ACTIONS(5742), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [185469] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(7226), 1, + ACTIONS(2948), 1, anon_sym_LPAREN, - STATE(2866), 1, + ACTIONS(2952), 1, + anon_sym_DOT2, + ACTIONS(7443), 1, + aux_sym__immediate_decimal_token1, + STATE(1684), 1, sym__var, - STATE(3985), 1, - sym_comment, - STATE(4369), 1, + STATE(2299), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + STATE(4046), 1, + sym_comment, + ACTIONS(2960), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4370), 2, + STATE(2294), 2, sym_expr_parenthesized, sym_val_variable, - [183746] = 4, + [185502] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3441), 1, - anon_sym_DASH, - STATE(3986), 1, - sym_comment, - ACTIONS(3443), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183767] = 11, + ACTIONS(7266), 1, + anon_sym_DOT2, + ACTIONS(7270), 1, + aux_sym__immediate_decimal_token1, + STATE(2688), 1, + sym__var, + STATE(4047), 1, + sym_comment, + STATE(4564), 1, + sym__immediate_decimal, + ACTIONS(7272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4550), 2, + sym_expr_parenthesized, + sym_val_variable, + [185535] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - ACTIONS(7606), 1, + ACTIONS(7789), 1, anon_sym_DASH, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3921), 1, + STATE(4034), 1, aux_sym_decl_def_repeat1, - STATE(3987), 1, + STATE(4048), 1, sym_comment, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4628), 1, + STATE(4868), 1, sym_long_flag, - STATE(4955), 1, + STATE(5311), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [183802] = 10, + [185570] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6796), 1, + ACTIONS(2882), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(6800), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6830), 1, - anon_sym_DOLLAR, - ACTIONS(7226), 1, - anon_sym_LPAREN, - STATE(2866), 1, + STATE(2688), 1, sym__var, - STATE(3988), 1, + STATE(4049), 1, sym_comment, - STATE(4365), 1, + STATE(4577), 1, sym__immediate_decimal, - ACTIONS(6802), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4367), 2, + STATE(4571), 2, sym_expr_parenthesized, sym_val_variable, - [183835] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7606), 1, - anon_sym_DASH, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3989), 1, - sym_comment, - STATE(4095), 1, - sym_val_string, - STATE(4196), 1, - aux_sym_decl_def_repeat1, - STATE(4628), 1, - sym_long_flag, - STATE(4883), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [183870] = 11, + [185603] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - ACTIONS(7606), 1, + ACTIONS(7789), 1, anon_sym_DASH, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3990), 1, - sym_comment, - STATE(3996), 1, + STATE(4013), 1, aux_sym_decl_def_repeat1, - STATE(4095), 1, - sym_val_string, - STATE(4628), 1, - sym_long_flag, - STATE(5223), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [183905] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7606), 1, - anon_sym_DASH, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3991), 1, + STATE(4050), 1, sym_comment, - STATE(3998), 1, - aux_sym_decl_def_repeat1, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4628), 1, + STATE(4868), 1, sym_long_flag, - STATE(5197), 1, + STATE(5248), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [183940] = 10, + [185638] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2841), 1, + ACTIONS(5524), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(5558), 1, anon_sym_LPAREN, - ACTIONS(2884), 1, + ACTIONS(5562), 1, anon_sym_DOT2, - ACTIONS(7253), 1, + ACTIONS(7585), 1, aux_sym__immediate_decimal_token1, - STATE(1667), 1, + STATE(3287), 1, sym__var, - STATE(2181), 1, + STATE(3521), 1, sym__immediate_decimal, - STATE(3992), 1, + STATE(4051), 1, sym_comment, - ACTIONS(2892), 2, + ACTIONS(5570), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2184), 2, + STATE(3519), 2, sym_expr_parenthesized, sym_val_variable, - [183973] = 10, + [185671] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2841), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(7253), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(1667), 1, - sym__var, - STATE(2179), 1, + ACTIONS(7523), 1, + anon_sym_LPAREN, + ACTIONS(7525), 1, + anon_sym_DOLLAR, + STATE(2554), 1, sym__immediate_decimal, - STATE(3993), 1, + STATE(4052), 1, sym_comment, - ACTIONS(2892), 2, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2180), 2, + STATE(2553), 2, sym_expr_parenthesized, sym_val_variable, - [184006] = 10, + [185704] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(7097), 1, + ACTIONS(7133), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7395), 1, anon_sym_DOLLAR, - ACTIONS(7255), 1, + ACTIONS(7567), 1, anon_sym_LPAREN, - ACTIONS(7261), 1, - aux_sym__immediate_decimal_token1, - STATE(1110), 1, - sym__var, - STATE(1325), 1, + STATE(2677), 1, sym__immediate_decimal, - STATE(3994), 1, + STATE(4053), 1, sym_comment, - ACTIONS(1975), 2, + STATE(4263), 1, + sym__var, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1326), 2, + STATE(2678), 2, sym_expr_parenthesized, sym_val_variable, - [184039] = 10, + [185737] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, - anon_sym_DOT2, - ACTIONS(7097), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7255), 1, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(7261), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(1110), 1, + STATE(2688), 1, sym__var, - STATE(1319), 1, + STATE(3402), 1, sym__immediate_decimal, - STATE(3995), 1, + STATE(4054), 1, sym_comment, - ACTIONS(1975), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1320), 2, + STATE(3404), 2, sym_expr_parenthesized, sym_val_variable, - [184072] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7606), 1, - anon_sym_DASH, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3996), 1, - sym_comment, - STATE(4095), 1, - sym_val_string, - STATE(4196), 1, - aux_sym_decl_def_repeat1, - STATE(4628), 1, - sym_long_flag, - STATE(5195), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [184107] = 10, + [185770] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, - anon_sym_DOT2, - ACTIONS(7097), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7255), 1, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(7261), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(1110), 1, + STATE(2688), 1, sym__var, - STATE(1316), 1, + STATE(3405), 1, sym__immediate_decimal, - STATE(3997), 1, + STATE(4055), 1, sym_comment, - ACTIONS(1975), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1317), 2, + STATE(3406), 2, sym_expr_parenthesized, sym_val_variable, - [184140] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7606), 1, - anon_sym_DASH, - STATE(2728), 1, - sym__str_double_quotes, - STATE(3998), 1, - sym_comment, - STATE(4095), 1, - sym_val_string, - STATE(4196), 1, - aux_sym_decl_def_repeat1, - STATE(4628), 1, - sym_long_flag, - STATE(5186), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [184175] = 10, + [185803] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(5076), 1, anon_sym_DOT2, - ACTIONS(7097), 1, - anon_sym_DOLLAR, - ACTIONS(7255), 1, - anon_sym_LPAREN, - ACTIONS(7261), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token1, - STATE(1110), 1, - sym__var, - STATE(1314), 1, + ACTIONS(7523), 1, + anon_sym_LPAREN, + ACTIONS(7525), 1, + anon_sym_DOLLAR, + STATE(2549), 1, sym__immediate_decimal, - STATE(3999), 1, + STATE(4056), 1, sym_comment, - ACTIONS(1975), 2, + STATE(4148), 1, + sym__var, + ACTIONS(7059), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1315), 2, + STATE(2548), 2, sym_expr_parenthesized, sym_val_variable, - [184208] = 10, + [185836] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(6764), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(7286), 1, + ACTIONS(7467), 1, anon_sym_DOT2, - ACTIONS(7290), 1, + ACTIONS(7471), 1, aux_sym__immediate_decimal_token1, - STATE(3710), 1, + STATE(3760), 1, sym__var, - STATE(4000), 1, - sym_comment, - STATE(4019), 1, + STATE(4040), 1, sym__immediate_decimal, - ACTIONS(6774), 2, + STATE(4057), 1, + sym_comment, + ACTIONS(6939), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4018), 2, + STATE(4041), 2, sym_expr_parenthesized, sym_val_variable, - [184241] = 10, + [185869] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, - anon_sym_DOLLAR, - ACTIONS(6764), 1, - anon_sym_LPAREN, - ACTIONS(7286), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(7290), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(3710), 1, - sym__var, - STATE(3943), 1, + ACTIONS(7395), 1, + anon_sym_DOLLAR, + ACTIONS(7567), 1, + anon_sym_LPAREN, + STATE(2671), 1, sym__immediate_decimal, - STATE(4001), 1, + STATE(4058), 1, sym_comment, - ACTIONS(6774), 2, + STATE(4263), 1, + sym__var, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4020), 2, + STATE(2673), 2, sym_expr_parenthesized, sym_val_variable, - [184274] = 10, + [185902] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(7266), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7270), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4002), 1, + STATE(4059), 1, sym_comment, - STATE(4559), 1, + STATE(4549), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + ACTIONS(7272), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4554), 2, + STATE(4541), 2, sym_expr_parenthesized, sym_val_variable, - [184307] = 10, + [185935] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(6929), 1, + anon_sym_LPAREN, + ACTIONS(7467), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7471), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(3760), 1, sym__var, - STATE(4003), 1, - sym_comment, - STATE(4571), 1, + STATE(4021), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + STATE(4060), 1, + sym_comment, + ACTIONS(6939), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4465), 2, + STATE(4025), 2, sym_expr_parenthesized, sym_val_variable, - [184340] = 4, + [185968] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_DASH, - STATE(4004), 1, - sym_comment, - ACTIONS(7652), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5056), 1, + anon_sym_DOT2, + ACTIONS(7497), 1, + anon_sym_LPAREN, + ACTIONS(7499), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184361] = 10, + ACTIONS(7505), 1, + aux_sym__immediate_decimal_token1, + STATE(2369), 1, + sym__var, + STATE(2587), 1, + sym__immediate_decimal, + STATE(4061), 1, + sym_comment, + ACTIONS(5064), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2586), 2, + sym_expr_parenthesized, + sym_val_variable, + [186001] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(6848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7426), 1, + ACTIONS(7497), 1, anon_sym_LPAREN, - ACTIONS(7428), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR, - STATE(2446), 1, + ACTIONS(7505), 1, + aux_sym__immediate_decimal_token1, + STATE(2369), 1, + sym__var, + STATE(2584), 1, sym__immediate_decimal, - STATE(4005), 1, + STATE(4062), 1, sym_comment, - STATE(4121), 1, - sym__var, - ACTIONS(6850), 2, + ACTIONS(5064), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2595), 2, + STATE(2582), 2, sym_expr_parenthesized, sym_val_variable, - [184394] = 10, + [186034] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(6929), 1, + anon_sym_LPAREN, + ACTIONS(7467), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7471), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(3760), 1, sym__var, - STATE(4006), 1, - sym_comment, - STATE(4579), 1, + STATE(3940), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + STATE(4063), 1, + sym_comment, + ACTIONS(6939), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4576), 2, + STATE(3939), 2, sym_expr_parenthesized, sym_val_variable, - [184427] = 10, + [186067] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(6978), 1, + ACTIONS(7159), 1, anon_sym_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(3276), 1, + STATE(3332), 1, sym__immediate_decimal, - STATE(4007), 1, + STATE(4064), 1, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3277), 2, + STATE(3334), 2, sym_expr_parenthesized, sym_val_variable, - [184460] = 10, + [186100] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7000), 1, + ACTIONS(2014), 1, anon_sym_DOT2, - ACTIONS(7109), 1, + ACTIONS(7300), 1, + anon_sym_DOLLAR, + ACTIONS(7625), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(1127), 1, sym__var, - STATE(4008), 1, - sym_comment, - STATE(4599), 1, + STATE(1392), 1, sym__immediate_decimal, - ACTIONS(7111), 2, + STATE(4065), 1, + sym_comment, + ACTIONS(2022), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4586), 2, + STATE(1387), 2, sym_expr_parenthesized, sym_val_variable, - [184493] = 10, + [186133] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(7467), 1, anon_sym_DOT2, - ACTIONS(7526), 1, + ACTIONS(7471), 1, aux_sym__immediate_decimal_token1, - STATE(3253), 1, + STATE(3760), 1, sym__var, - STATE(3518), 1, + STATE(3938), 1, sym__immediate_decimal, - STATE(4009), 1, + STATE(4066), 1, sym_comment, - ACTIONS(5559), 2, + ACTIONS(6939), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3555), 2, + STATE(3937), 2, sym_expr_parenthesized, sym_val_variable, - [184526] = 10, + [186166] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4979), 1, + ACTIONS(5056), 1, anon_sym_DOT2, - ACTIONS(7434), 1, + ACTIONS(7497), 1, anon_sym_LPAREN, - ACTIONS(7436), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR, - ACTIONS(7442), 1, + ACTIONS(7505), 1, aux_sym__immediate_decimal_token1, - STATE(2353), 1, + STATE(2369), 1, sym__var, - STATE(2703), 1, + STATE(2580), 1, sym__immediate_decimal, - STATE(4010), 1, + STATE(4067), 1, sym_comment, - ACTIONS(4987), 2, + ACTIONS(5064), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2646), 2, + STATE(2579), 2, sym_expr_parenthesized, sym_val_variable, - [184559] = 10, + [186199] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7526), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(3253), 1, + STATE(2688), 1, sym__var, - STATE(3511), 1, - sym__immediate_decimal, - STATE(4011), 1, + STATE(4068), 1, sym_comment, - ACTIONS(5559), 2, + STATE(4797), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3513), 2, + STATE(4568), 2, sym_expr_parenthesized, sym_val_variable, - [184592] = 10, + [186232] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(2014), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7300), 1, + anon_sym_DOLLAR, + ACTIONS(7625), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(1127), 1, sym__var, - STATE(4012), 1, - sym_comment, - STATE(4599), 1, + STATE(1386), 1, sym__immediate_decimal, - ACTIONS(7079), 2, + STATE(4069), 1, + sym_comment, + ACTIONS(2022), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4586), 2, + STATE(1268), 2, sym_expr_parenthesized, sym_val_variable, - [184625] = 10, + [186265] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4013), 1, + STATE(4070), 1, sym_comment, - STATE(4579), 1, + STATE(4583), 1, sym__immediate_decimal, - ACTIONS(7079), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4576), 2, + STATE(4584), 2, sym_expr_parenthesized, sym_val_variable, - [184658] = 10, + [186298] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(2014), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7300), 1, + anon_sym_DOLLAR, + ACTIONS(7625), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(1127), 1, sym__var, - STATE(4014), 1, - sym_comment, - STATE(4571), 1, + STATE(1384), 1, sym__immediate_decimal, - ACTIONS(7079), 2, + STATE(4071), 1, + sym_comment, + ACTIONS(2022), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4465), 2, + STATE(1378), 2, sym_expr_parenthesized, sym_val_variable, - [184691] = 10, + [186331] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6750), 1, - anon_sym_DOLLAR, - ACTIONS(6764), 1, - anon_sym_LPAREN, - ACTIONS(7286), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(7290), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(3710), 1, - sym__var, - STATE(4015), 1, - sym_comment, - STATE(4044), 1, + ACTIONS(7395), 1, + anon_sym_DOLLAR, + ACTIONS(7567), 1, + anon_sym_LPAREN, + STATE(2724), 1, sym__immediate_decimal, - ACTIONS(6774), 2, + STATE(4072), 1, + sym_comment, + STATE(4263), 1, + sym__var, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4043), 2, + STATE(2719), 2, sym_expr_parenthesized, sym_val_variable, - [184724] = 10, + [186364] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(4016), 1, - sym_comment, - STATE(4559), 1, + ACTIONS(7395), 1, + anon_sym_DOLLAR, + ACTIONS(7567), 1, + anon_sym_LPAREN, + STATE(2731), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + STATE(4073), 1, + sym_comment, + STATE(4263), 1, + sym__var, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4554), 2, + STATE(2726), 2, sym_expr_parenthesized, sym_val_variable, - [184757] = 10, + [186397] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + ACTIONS(6995), 1, + anon_sym_DOLLAR, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(2903), 1, sym__var, - STATE(4017), 1, + STATE(4074), 1, sym_comment, - STATE(4571), 1, + STATE(4333), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4465), 2, + STATE(4332), 2, sym_expr_parenthesized, sym_val_variable, - [184790] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3706), 1, - anon_sym_DASH, - STATE(4018), 1, - sym_comment, - ACTIONS(3708), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184811] = 4, + [186430] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3702), 1, - anon_sym_DASH, - STATE(4019), 1, - sym_comment, - ACTIONS(3704), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5120), 1, + anon_sym_DOT2, + ACTIONS(7133), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7395), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184832] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3698), 1, - anon_sym_DASH, - STATE(4020), 1, + ACTIONS(7567), 1, + anon_sym_LPAREN, + STATE(2738), 1, + sym__immediate_decimal, + STATE(4075), 1, sym_comment, - ACTIONS(3700), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184853] = 10, + STATE(4263), 1, + sym__var, + ACTIONS(7135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2732), 2, + sym_expr_parenthesized, + sym_val_variable, + [186463] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(5551), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7133), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, - sym__var, - STATE(4021), 1, - sym_comment, - STATE(4579), 1, + ACTIONS(7395), 1, + anon_sym_DOLLAR, + ACTIONS(7567), 1, + anon_sym_LPAREN, + STATE(2748), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + STATE(4076), 1, + sym_comment, + STATE(4263), 1, + sym__var, + ACTIONS(7135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4576), 2, + STATE(2747), 2, sym_expr_parenthesized, sym_val_variable, - [184886] = 10, + [186496] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(5056), 1, + anon_sym_DOT2, + ACTIONS(7497), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7026), 1, + ACTIONS(7505), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2369), 1, sym__var, - STATE(4022), 1, - sym_comment, - STATE(4599), 1, + STATE(2578), 1, sym__immediate_decimal, - ACTIONS(7028), 2, + STATE(4077), 1, + sym_comment, + ACTIONS(5064), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4586), 2, + STATE(2577), 2, sym_expr_parenthesized, sym_val_variable, - [184919] = 10, + [186529] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4979), 1, + ACTIONS(6961), 1, anon_sym_DOT2, - ACTIONS(7434), 1, - anon_sym_LPAREN, - ACTIONS(7436), 1, - anon_sym_DOLLAR, - ACTIONS(7442), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token1, - STATE(2353), 1, + ACTIONS(6995), 1, + anon_sym_DOLLAR, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(2903), 1, sym__var, - STATE(2597), 1, - sym__immediate_decimal, - STATE(4023), 1, + STATE(4078), 1, sym_comment, - ACTIONS(4987), 2, + STATE(4337), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2642), 2, + STATE(4335), 2, sym_expr_parenthesized, sym_val_variable, - [184952] = 10, + [186562] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4979), 1, + ACTIONS(2014), 1, anon_sym_DOT2, - ACTIONS(7434), 1, - anon_sym_LPAREN, - ACTIONS(7436), 1, + ACTIONS(7300), 1, anon_sym_DOLLAR, - ACTIONS(7442), 1, + ACTIONS(7625), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, aux_sym__immediate_decimal_token1, - STATE(2353), 1, + STATE(1127), 1, sym__var, - STATE(2641), 1, + STATE(1374), 1, sym__immediate_decimal, - STATE(4024), 1, + STATE(4079), 1, sym_comment, - ACTIONS(4987), 2, + ACTIONS(2022), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2640), 2, + STATE(1361), 2, sym_expr_parenthesized, sym_val_variable, - [184985] = 10, + [186595] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(6929), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(7467), 1, anon_sym_DOT2, - ACTIONS(7526), 1, + ACTIONS(7471), 1, aux_sym__immediate_decimal_token1, - STATE(3253), 1, + STATE(3760), 1, sym__var, - STATE(3544), 1, + STATE(3969), 1, sym__immediate_decimal, - STATE(4025), 1, + STATE(4080), 1, sym_comment, - ACTIONS(5559), 2, + ACTIONS(6939), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3550), 2, + STATE(3964), 2, sym_expr_parenthesized, sym_val_variable, - [185018] = 10, + [186628] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7159), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4026), 1, - sym_comment, - STATE(4485), 1, + STATE(3338), 1, sym__immediate_decimal, - ACTIONS(7079), 2, + STATE(4081), 1, + sym_comment, + ACTIONS(7167), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4484), 2, + STATE(3305), 2, sym_expr_parenthesized, sym_val_variable, - [185051] = 10, + [186661] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(2102), 1, + anon_sym_DOT2, + ACTIONS(7351), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(7451), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7526), 1, + ACTIONS(7457), 1, aux_sym__immediate_decimal_token1, - STATE(3253), 1, + STATE(1173), 1, sym__var, - STATE(3545), 1, + STATE(1644), 1, sym__immediate_decimal, - STATE(4027), 1, + STATE(4082), 1, sym_comment, - ACTIONS(5559), 2, + ACTIONS(2110), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3526), 2, + STATE(1643), 2, sym_expr_parenthesized, sym_val_variable, - [185084] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3665), 1, - anon_sym_DASH, - STATE(4028), 1, - sym_comment, - ACTIONS(3667), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185105] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3659), 1, - anon_sym_DASH, - STATE(4029), 1, - sym_comment, - ACTIONS(3661), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185126] = 10, + [186694] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7077), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4030), 1, + STATE(4083), 1, sym_comment, - STATE(4488), 1, + STATE(4564), 1, sym__immediate_decimal, - ACTIONS(7079), 2, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4486), 2, + STATE(4550), 2, sym_expr_parenthesized, sym_val_variable, - [185159] = 10, + [186727] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, - anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(2882), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, anon_sym_DOT2, - ACTIONS(7526), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - STATE(3253), 1, + STATE(2688), 1, sym__var, - STATE(3525), 1, - sym__immediate_decimal, - STATE(4031), 1, + STATE(4084), 1, sym_comment, - ACTIONS(5559), 2, + STATE(4549), 1, + sym__immediate_decimal, + ACTIONS(7193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3523), 2, + STATE(4541), 2, sym_expr_parenthesized, sym_val_variable, - [185192] = 10, + [186760] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5494), 1, + ACTIONS(2102), 1, + anon_sym_DOT2, + ACTIONS(7351), 1, anon_sym_DOLLAR, - ACTIONS(5547), 1, + ACTIONS(7451), 1, anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_DOT2, - ACTIONS(7526), 1, + ACTIONS(7457), 1, aux_sym__immediate_decimal_token1, - STATE(3253), 1, + STATE(1173), 1, sym__var, - STATE(3514), 1, + STATE(1638), 1, sym__immediate_decimal, - STATE(4032), 1, + STATE(4085), 1, sym_comment, - ACTIONS(5559), 2, + ACTIONS(2110), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3507), 2, + STATE(1637), 2, sym_expr_parenthesized, sym_val_variable, - [185225] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3651), 1, - anon_sym_DASH, - STATE(4033), 1, - sym_comment, - ACTIONS(3653), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185246] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3647), 1, - anon_sym_DASH, - STATE(4034), 1, - sym_comment, - ACTIONS(3649), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185267] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3639), 1, - anon_sym_DASH, - STATE(4035), 1, - sym_comment, - ACTIONS(3641), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185288] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3635), 1, - anon_sym_DASH, - STATE(4036), 1, - sym_comment, - ACTIONS(3637), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185309] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3615), 1, - anon_sym_DASH, - STATE(4037), 1, - sym_comment, - ACTIONS(3617), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185330] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3611), 1, - anon_sym_DASH, - STATE(4038), 1, - sym_comment, - ACTIONS(3613), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185351] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3557), 1, - anon_sym_DASH, - STATE(4039), 1, - sym_comment, - ACTIONS(3559), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185372] = 4, - ACTIONS(3), 1, + [186793] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3513), 1, + ACTIONS(7817), 1, + anon_sym_LF, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4040), 1, + STATE(4086), 1, sym_comment, - ACTIONS(3515), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(4132), 1, + sym__flag, + STATE(4427), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(7815), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185393] = 4, + anon_sym_RBRACE, + [186819] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3505), 1, - anon_sym_DASH, - STATE(4041), 1, - sym_comment, - ACTIONS(3507), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7821), 1, + sym_cmd_identifier, + ACTIONS(7824), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185414] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_DASH, - STATE(4042), 1, + ACTIONS(7826), 1, + anon_sym_DQUOTE, + STATE(4131), 1, + sym_val_string, + STATE(4418), 1, + sym__command_name, + STATE(4428), 1, + sym__str_double_quotes, + ACTIONS(7829), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4087), 2, sym_comment, - ACTIONS(3503), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185435] = 4, - ACTIONS(3), 1, + aux_sym_command_list_repeat1, + [186849] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3481), 1, + ACTIONS(3610), 1, + anon_sym_LF, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4043), 1, + STATE(4088), 1, sym_comment, - ACTIONS(3483), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(4098), 1, + sym__flag, + STATE(4427), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3608), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185456] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [186875] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3477), 1, + ACTIONS(3485), 1, + anon_sym_LF, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4044), 1, + STATE(4089), 1, sym_comment, - ACTIONS(3479), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(4116), 1, + sym__flag, + STATE(4427), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3483), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185477] = 7, + anon_sym_RBRACE, + [186901] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7622), 1, + ACTIONS(7749), 1, anon_sym_DASH, - ACTIONS(7642), 1, - anon_sym_EQ, - ACTIONS(7656), 1, - anon_sym_COMMA, - STATE(4045), 1, - sym_comment, - STATE(4056), 1, - sym_param_value, - ACTIONS(7618), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185504] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7576), 1, + ACTIONS(7801), 1, anon_sym_COMMA, - ACTIONS(7578), 1, - anon_sym_DASH, - ACTIONS(7642), 1, + ACTIONS(7832), 1, anon_sym_EQ, - STATE(4046), 1, + STATE(4090), 1, sym_comment, - STATE(4061), 1, + STATE(4136), 1, sym_param_value, - ACTIONS(7574), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185531] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3449), 1, - anon_sym_DASH, - STATE(4047), 1, - sym_comment, - ACTIONS(3451), 9, + ACTIONS(7745), 5, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185552] = 3, + [186927] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4048), 1, - sym_comment, - ACTIONS(5616), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, + ACTIONS(7836), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [185571] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3445), 1, + ACTIONS(7838), 1, anon_sym_DASH, - STATE(4049), 1, + STATE(4091), 1, sym_comment, - ACTIONS(3447), 9, + ACTIONS(7834), 7, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185592] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4050), 1, - sym_comment, - ACTIONS(5608), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [185611] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4051), 1, - sym_comment, - ACTIONS(5618), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [185630] = 7, + [186949] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4052), 1, + ACTIONS(7842), 1, + anon_sym_LF, + STATE(4092), 1, sym_comment, - STATE(4068), 1, + STATE(4108), 1, sym__flag, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(7658), 4, + ACTIONS(7840), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [185656] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7576), 1, - anon_sym_COMMA, - ACTIONS(7578), 1, - anon_sym_DASH, - ACTIONS(7664), 1, - anon_sym_EQ, - STATE(4053), 1, - sym_comment, - STATE(4061), 1, - sym_param_value, - ACTIONS(7574), 5, - sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185682] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7594), 1, - anon_sym_COMMA, - ACTIONS(7596), 1, - anon_sym_DASH, - ACTIONS(7664), 1, - anon_sym_EQ, - STATE(4054), 1, - sym_comment, - STATE(4097), 1, - sym_param_value, - ACTIONS(7592), 5, - sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185708] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7666), 1, - anon_sym_RBRACK, - ACTIONS(7668), 1, - anon_sym_DQUOTE, - STATE(4055), 1, - sym_comment, - STATE(4059), 1, - aux_sym_command_list_repeat1, - STATE(4095), 1, - sym_val_string, - STATE(4297), 1, - sym__command_name, - STATE(4417), 1, - sym__str_double_quotes, - ACTIONS(7670), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [185740] = 5, - ACTIONS(3), 1, + [186975] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7674), 1, - anon_sym_COMMA, - ACTIONS(7676), 1, + ACTIONS(3587), 1, + anon_sym_LF, + ACTIONS(7844), 1, anon_sym_DASH, - STATE(4056), 1, + STATE(4093), 1, sym_comment, - ACTIONS(7672), 7, - sym_identifier, - anon_sym_RBRACK, + STATE(4756), 1, + sym__flag, + STATE(2535), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3585), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185762] = 10, + anon_sym_RBRACE, + [187001] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7638), 1, + ACTIONS(7795), 1, sym_identifier, - ACTIONS(7640), 1, + ACTIONS(7797), 1, anon_sym_DASH, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4057), 1, + STATE(4094), 1, sym_comment, - STATE(4496), 1, + STATE(4657), 1, sym__flag, - STATE(4664), 1, + STATE(4663), 1, sym__variable_name, - STATE(4907), 1, + STATE(4963), 1, sym_val_variable, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [185794] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7676), 1, - anon_sym_DASH, - ACTIONS(7678), 1, - anon_sym_COMMA, - STATE(4058), 1, - sym_comment, - ACTIONS(7672), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185816] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7668), 1, - anon_sym_DQUOTE, - ACTIONS(7680), 1, - anon_sym_RBRACK, - STATE(4059), 1, - sym_comment, - STATE(4063), 1, - aux_sym_command_list_repeat1, - STATE(4095), 1, - sym_val_string, - STATE(4297), 1, - sym__command_name, - STATE(4417), 1, - sym__str_double_quotes, - ACTIONS(7670), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [185848] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7622), 1, - anon_sym_DASH, - ACTIONS(7656), 1, - anon_sym_COMMA, - ACTIONS(7664), 1, - anon_sym_EQ, - STATE(4056), 1, - sym_param_value, - STATE(4060), 1, - sym_comment, - ACTIONS(7618), 5, - sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185874] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7684), 1, - anon_sym_COMMA, - ACTIONS(7686), 1, - anon_sym_DASH, - STATE(4061), 1, - sym_comment, - ACTIONS(7682), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185896] = 7, + [187033] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3280), 1, - anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7844), 1, anon_sym_DASH, - STATE(4062), 1, + ACTIONS(7848), 1, + anon_sym_LF, + STATE(4095), 1, sym_comment, - STATE(4103), 1, + STATE(4731), 1, sym__flag, - STATE(4440), 2, + STATE(2535), 2, sym_short_flag, sym_long_flag, - ACTIONS(3278), 4, + ACTIONS(7846), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [185922] = 9, + [187059] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - ACTIONS(7691), 1, + ACTIONS(7850), 1, anon_sym_RBRACK, - ACTIONS(7693), 1, + ACTIONS(7852), 1, anon_sym_DQUOTE, - STATE(4095), 1, - sym_val_string, - STATE(4297), 1, - sym__command_name, - STATE(4417), 1, - sym__str_double_quotes, - ACTIONS(7696), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4063), 2, + STATE(4096), 1, sym_comment, + STATE(4107), 1, aux_sym_command_list_repeat1, - [185952] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7668), 1, - anon_sym_DQUOTE, - ACTIONS(7699), 1, - anon_sym_RBRACK, - STATE(4064), 1, - sym_comment, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4098), 1, - aux_sym_command_list_repeat1, - STATE(4297), 1, + STATE(4418), 1, sym__command_name, - STATE(4417), 1, + STATE(4428), 1, sym__str_double_quotes, - ACTIONS(7670), 2, + ACTIONS(7854), 2, sym__str_single_quotes, sym__str_back_ticks, - [185984] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - ACTIONS(7640), 1, - anon_sym_DASH, - STATE(2682), 1, - sym__var, - STATE(4065), 1, - sym_comment, - STATE(4458), 1, - sym__variable_name, - STATE(4480), 1, - sym__flag, - STATE(4907), 1, - sym_val_variable, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [186016] = 7, + [187091] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7703), 1, + ACTIONS(3587), 1, anon_sym_LF, - ACTIONS(7705), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4066), 1, + STATE(4097), 1, sym_comment, - STATE(4521), 1, + STATE(4101), 1, sym__flag, - STATE(2531), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(7701), 4, + ACTIONS(3585), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186042] = 7, + [187117] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7662), 1, - anon_sym_DASH, - ACTIONS(7709), 1, + ACTIONS(3587), 1, anon_sym_LF, - STATE(4066), 1, - sym__flag, - STATE(4067), 1, - sym_comment, - STATE(4440), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(7707), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [186068] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7705), 1, + ACTIONS(7819), 1, anon_sym_DASH, - ACTIONS(7709), 1, - anon_sym_LF, - STATE(4068), 1, - sym_comment, - STATE(4523), 1, + STATE(4092), 1, sym__flag, - STATE(2531), 2, + STATE(4098), 1, + sym_comment, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(7707), 4, + ACTIONS(3585), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186094] = 7, + [187143] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7660), 1, + ACTIONS(3587), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4067), 1, - sym__flag, - STATE(4069), 1, + STATE(4099), 1, sym_comment, - STATE(4440), 2, + STATE(4104), 1, + sym__flag, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(7658), 4, + ACTIONS(3585), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186120] = 7, + [187169] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3280), 1, + ACTIONS(3485), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7844), 1, anon_sym_DASH, - STATE(4070), 1, + STATE(4100), 1, sym_comment, - STATE(4104), 1, + STATE(4795), 1, sym__flag, - STATE(4440), 2, + STATE(2535), 2, sym_short_flag, sym_long_flag, - ACTIONS(3278), 4, + ACTIONS(3483), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186146] = 7, + [187195] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(7842), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7844), 1, anon_sym_DASH, - STATE(4071), 1, - sym_comment, STATE(4101), 1, + sym_comment, + STATE(4751), 1, sym__flag, - STATE(4440), 2, + STATE(2535), 2, sym_short_flag, sym_long_flag, - ACTIONS(3780), 4, + ACTIONS(7840), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186172] = 7, + [187221] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7660), 1, + ACTIONS(3610), 1, anon_sym_LF, - ACTIONS(7705), 1, + ACTIONS(7844), 1, anon_sym_DASH, - STATE(4072), 1, + STATE(4102), 1, sym_comment, - STATE(4528), 1, + STATE(4761), 1, sym__flag, - STATE(2531), 2, + STATE(2535), 2, sym_short_flag, sym_long_flag, - ACTIONS(7658), 4, + ACTIONS(3608), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186198] = 6, - ACTIONS(105), 1, + [187247] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7711), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7713), 1, - aux_sym__immediate_decimal_token2, - STATE(4073), 1, + ACTIONS(7721), 1, + anon_sym_COMMA, + ACTIONS(7723), 1, + anon_sym_DASH, + ACTIONS(7832), 1, + anon_sym_EQ, + STATE(4103), 1, sym_comment, - ACTIONS(2784), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2782), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(4117), 1, + sym_param_value, + ACTIONS(7719), 5, + sym_identifier, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [186222] = 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187273] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - ACTIONS(7717), 1, + ACTIONS(7842), 1, anon_sym_LF, - STATE(4069), 1, - sym__flag, - STATE(4074), 1, + STATE(4104), 1, sym_comment, - STATE(4440), 2, + STATE(4109), 1, + sym__flag, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(7715), 4, + ACTIONS(7840), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186248] = 7, + [187299] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - ACTIONS(7717), 1, + ACTIONS(7842), 1, anon_sym_LF, - STATE(4052), 1, + STATE(4086), 1, sym__flag, - STATE(4075), 1, + STATE(4105), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(7715), 4, + ACTIONS(7840), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186274] = 7, + [187325] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7662), 1, - anon_sym_DASH, - ACTIONS(7717), 1, + ACTIONS(3485), 1, anon_sym_LF, - STATE(4072), 1, - sym__flag, - STATE(4076), 1, + ACTIONS(7819), 1, + anon_sym_DASH, + STATE(4106), 1, sym_comment, - STATE(4440), 2, + STATE(4122), 1, + sym__flag, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(7715), 4, + ACTIONS(3483), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186300] = 7, + [187351] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7787), 1, + sym_cmd_identifier, + ACTIONS(7852), 1, + anon_sym_DQUOTE, + ACTIONS(7856), 1, + anon_sym_RBRACK, + STATE(4087), 1, + aux_sym_command_list_repeat1, + STATE(4107), 1, + sym_comment, + STATE(4131), 1, + sym_val_string, + STATE(4418), 1, + sym__command_name, + STATE(4428), 1, + sym__str_double_quotes, + ACTIONS(7854), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [187383] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7705), 1, - anon_sym_DASH, - ACTIONS(7717), 1, + ACTIONS(7817), 1, anon_sym_LF, - STATE(4077), 1, + ACTIONS(7844), 1, + anon_sym_DASH, + STATE(4108), 1, sym_comment, - STATE(4533), 1, + STATE(4735), 1, sym__flag, - STATE(2531), 2, + STATE(2535), 2, sym_short_flag, sym_long_flag, - ACTIONS(7715), 4, + ACTIONS(7815), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186326] = 7, + [187409] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3319), 1, + ACTIONS(7817), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4075), 1, + STATE(4095), 1, sym__flag, - STATE(4078), 1, + STATE(4109), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3317), 4, + ACTIONS(7815), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186352] = 7, + [187435] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7787), 1, + sym_cmd_identifier, + ACTIONS(7852), 1, + anon_sym_DQUOTE, + ACTIONS(7858), 1, + anon_sym_RBRACK, + STATE(4110), 1, + sym_comment, + STATE(4118), 1, + aux_sym_command_list_repeat1, + STATE(4131), 1, + sym_val_string, + STATE(4418), 1, + sym__command_name, + STATE(4428), 1, + sym__str_double_quotes, + ACTIONS(7854), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [187467] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7862), 1, + anon_sym_COMMA, + ACTIONS(7864), 1, + anon_sym_DASH, + STATE(4111), 1, + sym_comment, + ACTIONS(7860), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187489] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3319), 1, + ACTIONS(3610), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4076), 1, + STATE(4097), 1, sym__flag, - STATE(4079), 1, + STATE(4112), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3317), 4, + ACTIONS(3608), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186378] = 7, + [187515] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3319), 1, + ACTIONS(3610), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4077), 1, + STATE(4093), 1, sym__flag, - STATE(4080), 1, + STATE(4113), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3317), 4, + ACTIONS(3608), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186404] = 7, - ACTIONS(105), 1, + [187541] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3319), 1, - anon_sym_LF, - ACTIONS(7705), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + ACTIONS(7797), 1, anon_sym_DASH, - STATE(4081), 1, + STATE(2688), 1, + sym__var, + STATE(4114), 1, sym_comment, - STATE(4703), 1, + STATE(4595), 1, sym__flag, - STATE(2531), 2, + STATE(4646), 1, + sym__variable_name, + STATE(4963), 1, + sym_val_variable, + STATE(4976), 2, sym_short_flag, sym_long_flag, - ACTIONS(3317), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [186430] = 7, + [187573] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3765), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4079), 1, + STATE(4102), 1, sym__flag, - STATE(4082), 1, + STATE(4115), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3377), 4, + ACTIONS(3763), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186456] = 7, + [187599] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3602), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7844), 1, anon_sym_DASH, - STATE(4080), 1, - sym__flag, - STATE(4083), 1, + STATE(4116), 1, sym_comment, - STATE(4440), 2, + STATE(4770), 1, + sym__flag, + STATE(2535), 2, sym_short_flag, sym_long_flag, - ACTIONS(3377), 4, + ACTIONS(3600), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186482] = 7, + [187625] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7868), 1, + anon_sym_COMMA, + ACTIONS(7870), 1, + anon_sym_DASH, + STATE(4117), 1, + sym_comment, + ACTIONS(7866), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187647] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7787), 1, + sym_cmd_identifier, + ACTIONS(7852), 1, + anon_sym_DQUOTE, + ACTIONS(7872), 1, + anon_sym_RBRACK, + STATE(4087), 1, + aux_sym_command_list_repeat1, + STATE(4118), 1, + sym_comment, + STATE(4131), 1, + sym_val_string, + STATE(4418), 1, + sym__command_name, + STATE(4428), 1, + sym__str_double_quotes, + ACTIONS(7854), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [187679] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3765), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4081), 1, + STATE(4113), 1, sym__flag, - STATE(4084), 1, + STATE(4119), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3377), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [186508] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7719), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7721), 1, - aux_sym__immediate_decimal_token2, - STATE(4085), 1, - sym_comment, - ACTIONS(2808), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2806), 5, + ACTIONS(3763), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [186532] = 7, + [187705] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3765), 1, anon_sym_LF, - ACTIONS(7705), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4086), 1, - sym_comment, - STATE(4547), 1, + STATE(4112), 1, sym__flag, - STATE(2531), 2, + STATE(4120), 1, + sym_comment, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3377), 4, + ACTIONS(3763), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186558] = 7, + [187731] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3535), 1, + ACTIONS(3602), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4083), 1, - sym__flag, - STATE(4087), 1, + STATE(4121), 1, sym_comment, - STATE(4440), 2, + STATE(4134), 1, + sym__flag, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3533), 4, + ACTIONS(3600), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186584] = 7, + [187757] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3535), 1, + ACTIONS(3602), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4084), 1, + STATE(4115), 1, sym__flag, - STATE(4088), 1, + STATE(4122), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3533), 4, + ACTIONS(3600), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186610] = 7, + [187783] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3535), 1, + ACTIONS(3531), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4086), 1, + STATE(4100), 1, sym__flag, - STATE(4089), 1, + STATE(4123), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3533), 4, + ACTIONS(3529), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186636] = 7, + [187809] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3535), 1, + ACTIONS(3875), 1, anon_sym_LF, - ACTIONS(7705), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4090), 1, + STATE(4124), 1, sym_comment, - STATE(4558), 1, + STATE(4138), 1, sym__flag, - STATE(2531), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3533), 4, + ACTIONS(3873), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186662] = 7, + [187835] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3712), 1, + ACTIONS(3602), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4088), 1, + STATE(4119), 1, sym__flag, - STATE(4091), 1, + STATE(4125), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3710), 4, + ACTIONS(3600), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186688] = 7, + [187861] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3712), 1, + ACTIONS(3485), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4089), 1, + STATE(4121), 1, sym__flag, - STATE(4092), 1, + STATE(4126), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3710), 4, + ACTIONS(3483), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186714] = 7, - ACTIONS(105), 1, + [187887] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3712), 1, - anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7741), 1, + anon_sym_COMMA, + ACTIONS(7743), 1, anon_sym_DASH, - STATE(4090), 1, - sym__flag, - STATE(4093), 1, + ACTIONS(7832), 1, + anon_sym_EQ, + STATE(4091), 1, + sym_param_value, + STATE(4127), 1, sym_comment, - STATE(4440), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3710), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(7739), 5, + sym_identifier, anon_sym_PIPE, - anon_sym_RBRACE, - [186740] = 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187913] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3712), 1, + ACTIONS(3531), 1, anon_sym_LF, - ACTIONS(7705), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4094), 1, - sym_comment, - STATE(4724), 1, + STATE(4126), 1, sym__flag, - STATE(2531), 2, + STATE(4128), 1, + sym_comment, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3710), 4, + ACTIONS(3529), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186766] = 3, + [187939] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4095), 1, + STATE(4129), 1, sym_comment, - ACTIONS(3222), 9, + ACTIONS(3226), 9, anon_sym_EQ, sym_cmd_identifier, anon_sym_LBRACK, @@ -350065,12 +355189,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [186784] = 3, + [187957] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7874), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7876), 1, + aux_sym__immediate_decimal_token2, + STATE(4130), 1, + sym_comment, + ACTIONS(2908), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2906), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [187981] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4096), 1, + STATE(4131), 1, sym_comment, - ACTIONS(3228), 9, + ACTIONS(3220), 9, anon_sym_EQ, sym_cmd_identifier, anon_sym_LBRACK, @@ -350080,277 +355222,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [186802] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7725), 1, - anon_sym_COMMA, - ACTIONS(7727), 1, - anon_sym_DASH, - STATE(4097), 1, - sym_comment, - ACTIONS(7723), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186824] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7604), 1, - sym_cmd_identifier, - ACTIONS(7668), 1, - anon_sym_DQUOTE, - ACTIONS(7729), 1, - anon_sym_RBRACK, - STATE(4063), 1, - aux_sym_command_list_repeat1, - STATE(4095), 1, - sym_val_string, - STATE(4098), 1, - sym_comment, - STATE(4297), 1, - sym__command_name, - STATE(4417), 1, - sym__str_double_quotes, - ACTIONS(7670), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [186856] = 7, + [187999] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3563), 1, - anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4092), 1, - sym__flag, - STATE(4099), 1, + ACTIONS(7848), 1, + anon_sym_LF, + STATE(4132), 1, sym_comment, - STATE(4440), 2, + STATE(4137), 1, + sym__flag, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3561), 4, + ACTIONS(7846), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186882] = 7, + [188025] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3563), 1, - anon_sym_LF, - ACTIONS(7662), 1, - anon_sym_DASH, - STATE(4093), 1, - sym__flag, - STATE(4100), 1, + ACTIONS(7878), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7880), 1, + aux_sym__immediate_decimal_token2, + STATE(4133), 1, sym_comment, - STATE(4440), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3561), 4, + ACTIONS(2834), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2832), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH, anon_sym_RBRACE, - [186908] = 7, + [188049] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3511), 1, + ACTIONS(3765), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7844), 1, anon_sym_DASH, - STATE(4070), 1, - sym__flag, - STATE(4101), 1, + STATE(4134), 1, sym_comment, - STATE(4440), 2, + STATE(4764), 1, + sym__flag, + STATE(2535), 2, sym_short_flag, sym_long_flag, - ACTIONS(3509), 4, + ACTIONS(3763), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186934] = 7, + [188075] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3511), 1, + ACTIONS(3531), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4062), 1, + STATE(4089), 1, sym__flag, - STATE(4102), 1, + STATE(4135), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3509), 4, + ACTIONS(3529), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [186960] = 7, - ACTIONS(105), 1, + [188101] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3563), 1, - anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7864), 1, anon_sym_DASH, - STATE(4094), 1, - sym__flag, - STATE(4103), 1, + ACTIONS(7882), 1, + anon_sym_COMMA, + STATE(4136), 1, sym_comment, - STATE(4440), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3561), 4, - anon_sym_SEMI, + ACTIONS(7860), 7, + sym_identifier, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [186986] = 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188123] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3563), 1, - anon_sym_LF, - ACTIONS(7705), 1, + ACTIONS(7844), 1, anon_sym_DASH, - STATE(4104), 1, + ACTIONS(7886), 1, + anon_sym_LF, + STATE(4137), 1, sym_comment, - STATE(4730), 1, + STATE(4725), 1, sym__flag, - STATE(2531), 2, + STATE(2535), 2, sym_short_flag, sym_long_flag, - ACTIONS(3561), 4, + ACTIONS(7884), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [187012] = 7, + [188149] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3280), 1, + ACTIONS(3445), 1, anon_sym_LF, - ACTIONS(7662), 1, + ACTIONS(7819), 1, anon_sym_DASH, - STATE(4100), 1, + STATE(4123), 1, sym__flag, - STATE(4105), 1, + STATE(4138), 1, sym_comment, - STATE(4440), 2, + STATE(4427), 2, sym_short_flag, sym_long_flag, - ACTIONS(3278), 4, + ACTIONS(3443), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [187038] = 5, + [188175] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7713), 1, - aux_sym__immediate_decimal_token2, - STATE(4106), 1, - sym_comment, - ACTIONS(2784), 2, + ACTIONS(3445), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2782), 5, + ACTIONS(7819), 1, + anon_sym_DASH, + STATE(4135), 1, + sym__flag, + STATE(4139), 1, + sym_comment, + STATE(4427), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3443), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [187059] = 6, - ACTIONS(105), 1, + [188201] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2808), 1, - anon_sym_LF, - ACTIONS(7721), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7731), 1, - anon_sym_DOT2, - STATE(4107), 1, + ACTIONS(7838), 1, + anon_sym_DASH, + STATE(4140), 1, sym_comment, - ACTIONS(2806), 5, - anon_sym_SEMI, + ACTIONS(7834), 7, + sym_identifier, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [187082] = 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188220] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4108), 1, - sym_comment, STATE(4141), 1, + sym_comment, + STATE(4205), 1, sym__flag, - ACTIONS(3533), 2, + ACTIONS(7840), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3535), 2, + ACTIONS(7842), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [187107] = 9, + [188245] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7890), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7892), 1, + aux_sym__immediate_decimal_token2, + STATE(4142), 1, + sym_comment, + ACTIONS(2908), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + [188266] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, + ACTIONS(7894), 1, sym_identifier, - ACTIONS(7738), 1, + ACTIONS(7896), 1, anon_sym_GT, - ACTIONS(7740), 1, + ACTIONS(7898), 1, anon_sym_DQUOTE, - STATE(3644), 1, + STATE(3672), 1, sym__str_double_quotes, - STATE(4109), 1, + STATE(4143), 1, sym_comment, - STATE(4173), 1, + STATE(4158), 1, aux_sym_collection_type_repeat1, - STATE(4218), 1, + STATE(4297), 1, sym_val_string, - ACTIONS(7742), 2, + ACTIONS(7900), 2, sym__str_single_quotes, sym__str_back_ticks, - [187136] = 9, + [188295] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, + ACTIONS(7894), 1, sym_identifier, - ACTIONS(7740), 1, + ACTIONS(7898), 1, anon_sym_DQUOTE, - ACTIONS(7744), 1, + ACTIONS(7902), 1, anon_sym_GT, - STATE(3644), 1, + STATE(3672), 1, sym__str_double_quotes, - STATE(4109), 1, + STATE(4143), 1, aux_sym_collection_type_repeat1, - STATE(4110), 1, + STATE(4144), 1, sym_comment, - STATE(4218), 1, + STATE(4297), 1, sym_val_string, - ACTIONS(7742), 2, + ACTIONS(7900), 2, sym__str_single_quotes, sym__str_back_ticks, - [187165] = 4, + [188324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7748), 1, + ACTIONS(7906), 1, anon_sym_DASH, - STATE(4111), 1, + STATE(4145), 1, sym_comment, - ACTIONS(7746), 7, + ACTIONS(7904), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -350358,597 +355475,738 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187184] = 7, + [188343] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, - anon_sym_DASH, - STATE(4112), 1, - sym_comment, - STATE(4144), 1, - sym__flag, - ACTIONS(3533), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3535), 2, - ts_builtin_sym_end, + ACTIONS(1409), 1, anon_sym_LF, - STATE(4842), 2, - sym_short_flag, - sym_long_flag, - [187209] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7750), 1, - anon_sym_DASH, - STATE(4113), 1, + ACTIONS(7908), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(4146), 1, sym_comment, - STATE(5238), 1, - sym__flag, - ACTIONS(3533), 2, + STATE(4169), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1407), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3535), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2654), 2, - sym_short_flag, - sym_long_flag, - [187234] = 9, + anon_sym_RBRACE, + [188368] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4144), 1, anon_sym_COLON, - ACTIONS(6962), 1, - anon_sym_DQUOTE, - ACTIONS(7752), 1, - sym_cmd_identifier, - STATE(877), 1, - sym__command_name, - STATE(1230), 1, - sym_val_string, - STATE(1233), 1, - sym__str_double_quotes, - STATE(4114), 1, + ACTIONS(7795), 1, + sym_identifier, + STATE(1680), 1, + sym__assignment_pattern, + STATE(2688), 1, + sym__var, + STATE(4147), 1, sym_comment, - ACTIONS(6964), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [187263] = 5, + STATE(4963), 1, + sym_val_variable, + STATE(4974), 1, + sym__assignment_pattern_last, + STATE(5458), 1, + sym__variable_name, + [188399] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7754), 1, - aux_sym__immediate_decimal_token2, - STATE(4115), 1, + ACTIONS(1402), 1, + anon_sym_LF, + ACTIONS(7908), 1, + anon_sym_DOT2, + STATE(2429), 1, + sym_cell_path, + STATE(4148), 1, + sym_comment, + STATE(4176), 1, + sym_path, + ACTIONS(1400), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [188424] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2458), 1, + sym_path, + STATE(4149), 1, sym_comment, - ACTIONS(2876), 2, + STATE(4169), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1409), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2874), 5, + ACTIONS(1407), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [187284] = 7, + [188447] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7795), 1, + sym_identifier, + STATE(1675), 1, + sym__assignment_pattern, + STATE(2688), 1, + sym__var, + STATE(4150), 1, + sym_comment, + STATE(4963), 1, + sym_val_variable, + STATE(4973), 1, + sym__assignment_pattern_last, + STATE(5458), 1, + sym__variable_name, + [188478] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4112), 1, - sym__flag, - STATE(4116), 1, + STATE(4151), 1, sym_comment, - ACTIONS(3710), 2, + STATE(4202), 1, + sym__flag, + ACTIONS(3600), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3712), 2, + ACTIONS(3602), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [187309] = 6, + [188503] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2906), 1, - anon_sym_LF, - ACTIONS(7756), 1, - anon_sym_DOT2, - ACTIONS(7758), 1, - aux_sym__immediate_decimal_token2, - STATE(4117), 1, + ACTIONS(7888), 1, + anon_sym_DASH, + STATE(4152), 1, sym_comment, - ACTIONS(2904), 5, + STATE(4200), 1, + sym__flag, + ACTIONS(3600), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [187332] = 7, + ACTIONS(3602), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4624), 2, + sym_short_flag, + sym_long_flag, + [188528] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7910), 1, anon_sym_DASH, - STATE(4113), 1, - sym__flag, - STATE(4118), 1, + STATE(4153), 1, sym_comment, - ACTIONS(3710), 2, + STATE(4935), 1, + sym__flag, + ACTIONS(3600), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3712), 2, + ACTIONS(3602), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(2646), 2, sym_short_flag, sym_long_flag, - [187357] = 6, + [188553] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7103), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 1, + sym_cmd_identifier, + STATE(907), 1, + sym__command_name, + STATE(1226), 1, + sym_val_string, + STATE(1246), 1, + sym__str_double_quotes, + STATE(4154), 1, + sym_comment, + ACTIONS(7105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [188582] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7894), 1, + sym_identifier, + ACTIONS(7898), 1, + anon_sym_DQUOTE, + ACTIONS(7914), 1, + anon_sym_GT, + STATE(3672), 1, + sym__str_double_quotes, + STATE(4155), 1, + sym_comment, + STATE(4158), 1, + aux_sym_collection_type_repeat1, + STATE(4297), 1, + sym_val_string, + ACTIONS(7900), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [188611] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7864), 1, + anon_sym_DASH, + STATE(4156), 1, + sym_comment, + ACTIONS(7860), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188630] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5021), 1, + ACTIONS(5163), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7760), 1, + ACTIONS(7916), 1, aux_sym__immediate_decimal_token1, - STATE(4119), 1, + STATE(4157), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(2834), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2806), 4, + ACTIONS(2832), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [187380] = 7, - ACTIONS(105), 1, + [188653] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1438), 1, - anon_sym_LF, - ACTIONS(7762), 1, - anon_sym_DOT2, - STATE(2395), 1, - sym_path, - STATE(4120), 1, + ACTIONS(7918), 1, + sym_identifier, + ACTIONS(7921), 1, + anon_sym_GT, + ACTIONS(7923), 1, + anon_sym_DQUOTE, + STATE(3672), 1, + sym__str_double_quotes, + STATE(4297), 1, + sym_val_string, + ACTIONS(7926), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4158), 2, sym_comment, - STATE(4189), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1436), 4, - anon_sym_SEMI, + aux_sym_collection_type_repeat1, + [188680] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7864), 1, + anon_sym_DASH, + STATE(4159), 1, + sym_comment, + ACTIONS(7860), 7, + sym_identifier, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [187405] = 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188699] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7787), 1, + sym_cmd_identifier, + STATE(2777), 1, + sym__str_double_quotes, + STATE(4131), 1, + sym_val_string, + STATE(4160), 1, + sym_comment, + STATE(5081), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [188728] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1397), 1, - anon_sym_LF, - ACTIONS(7762), 1, - anon_sym_DOT2, - STATE(2440), 1, - sym_cell_path, - STATE(4121), 1, + ACTIONS(7929), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7931), 1, + aux_sym__immediate_decimal_token2, + STATE(4161), 1, sym_comment, - STATE(4126), 1, - sym_path, - ACTIONS(1395), 4, + ACTIONS(2832), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [187430] = 7, + anon_sym_DASH, + ACTIONS(2834), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + [188751] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1401), 1, + ACTIONS(2834), 1, anon_sym_LF, - ACTIONS(7762), 1, + ACTIONS(7880), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7933), 1, anon_sym_DOT2, - STATE(2882), 1, - sym_cell_path, - STATE(4122), 1, + STATE(4162), 1, sym_comment, - STATE(4126), 1, - sym_path, - ACTIONS(1399), 4, + ACTIONS(2832), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH, anon_sym_RBRACE, - [187455] = 7, + [188774] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4123), 1, + STATE(4163), 1, sym_comment, - STATE(4130), 1, + STATE(4181), 1, sym__flag, - ACTIONS(3317), 2, + ACTIONS(3443), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3319), 2, + ACTIONS(3445), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [187480] = 7, + [188799] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4124), 1, + STATE(4164), 1, sym_comment, - STATE(4135), 1, + STATE(4180), 1, sym__flag, - ACTIONS(3317), 2, + ACTIONS(3443), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3319), 2, + ACTIONS(3445), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [187505] = 7, - ACTIONS(105), 1, + [188824] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7750), 1, - anon_sym_DASH, - STATE(4125), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7795), 1, + sym_identifier, + STATE(1656), 1, + sym__assignment_pattern, + STATE(2688), 1, + sym__var, + STATE(4165), 1, sym_comment, - STATE(5239), 1, - sym__flag, - ACTIONS(3710), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3712), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2654), 2, - sym_short_flag, - sym_long_flag, - [187530] = 7, - ACTIONS(105), 1, + STATE(4963), 1, + sym_val_variable, + STATE(4970), 1, + sym__assignment_pattern_last, + STATE(5458), 1, + sym__variable_name, + [188855] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_LF, - ACTIONS(7762), 1, - anon_sym_DOT2, - STATE(2395), 1, - sym_path, - STATE(4120), 1, - aux_sym_cell_path_repeat1, - STATE(4126), 1, + ACTIONS(7894), 1, + sym_identifier, + ACTIONS(7898), 1, + anon_sym_DQUOTE, + ACTIONS(7936), 1, + anon_sym_GT, + STATE(3672), 1, + sym__str_double_quotes, + STATE(4158), 1, + aux_sym_collection_type_repeat1, + STATE(4166), 1, sym_comment, - ACTIONS(1440), 4, - anon_sym_SEMI, + STATE(4297), 1, + sym_val_string, + ACTIONS(7900), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [188884] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7870), 1, + anon_sym_DASH, + STATE(4167), 1, + sym_comment, + ACTIONS(7866), 7, + sym_identifier, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [187555] = 5, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188903] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7721), 1, + ACTIONS(7880), 1, aux_sym__immediate_decimal_token2, - STATE(4127), 1, + STATE(4168), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(2834), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2806), 5, + ACTIONS(2832), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [187576] = 6, + [188924] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(1389), 1, anon_sym_LF, - ACTIONS(7721), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7764), 1, + ACTIONS(7938), 1, anon_sym_DOT2, - STATE(4128), 1, + STATE(2458), 1, + sym_path, + STATE(4169), 2, sym_comment, - ACTIONS(2806), 5, + aux_sym_cell_path_repeat1, + ACTIONS(1387), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [187599] = 7, + [188947] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1401), 1, + ACTIONS(1396), 1, anon_sym_LF, - ACTIONS(7766), 1, + ACTIONS(7908), 1, anon_sym_DOT2, - STATE(2882), 1, - sym_cell_path, - STATE(4129), 1, - sym_comment, - STATE(4188), 1, + STATE(2458), 1, sym_path, - ACTIONS(1399), 4, + STATE(4149), 1, + aux_sym_cell_path_repeat1, + STATE(4170), 1, + sym_comment, + ACTIONS(1394), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [187624] = 7, + [188972] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, - anon_sym_DASH, - STATE(4130), 1, + ACTIONS(1402), 1, + anon_sym_LF, + ACTIONS(7941), 1, + anon_sym_DOT2, + STATE(2429), 1, + sym_cell_path, + STATE(4170), 1, + sym_path, + STATE(4171), 1, sym_comment, - STATE(4164), 1, - sym__flag, - ACTIONS(7715), 2, + ACTIONS(1400), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(7717), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4842), 2, - sym_short_flag, - sym_long_flag, - [187649] = 6, + anon_sym_RBRACE, + [188997] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5025), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7769), 1, - aux_sym__immediate_decimal_token1, - STATE(4131), 1, - sym_comment, - ACTIONS(2784), 2, + ACTIONS(1469), 1, anon_sym_LF, + ACTIONS(7908), 1, anon_sym_DOT2, - ACTIONS(2782), 4, + STATE(2959), 1, + sym_cell_path, + STATE(4172), 1, + sym_comment, + STATE(4176), 1, + sym_path, + ACTIONS(1467), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [187672] = 7, + [189022] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7910), 1, anon_sym_DASH, - STATE(4132), 1, + STATE(4173), 1, sym_comment, - STATE(4161), 1, + STATE(4938), 1, sym__flag, - ACTIONS(3509), 2, + ACTIONS(3483), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3511), 2, + ACTIONS(3485), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(2646), 2, sym_short_flag, sym_long_flag, - [187697] = 7, + [189047] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7750), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4133), 1, - sym_comment, - STATE(5230), 1, + STATE(4153), 1, sym__flag, - ACTIONS(3317), 2, + STATE(4174), 1, + sym_comment, + ACTIONS(3483), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3319), 2, + ACTIONS(3485), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2654), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [187722] = 7, + [189072] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4134), 1, - sym_comment, - STATE(4160), 1, + STATE(4152), 1, sym__flag, - ACTIONS(3509), 2, + STATE(4175), 1, + sym_comment, + ACTIONS(3483), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3511), 2, + ACTIONS(3485), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [187747] = 7, + [189097] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7750), 1, - anon_sym_DASH, - STATE(4135), 1, + ACTIONS(1396), 1, + anon_sym_LF, + ACTIONS(7908), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(4146), 1, + aux_sym_cell_path_repeat1, + STATE(4176), 1, sym_comment, - STATE(5196), 1, - sym__flag, - ACTIONS(7715), 2, + ACTIONS(1394), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(7717), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2654), 2, - sym_short_flag, - sym_long_flag, - [187772] = 5, + anon_sym_RBRACE, + [189122] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7771), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7773), 1, - aux_sym__immediate_decimal_token2, - STATE(4136), 1, + ACTIONS(7743), 1, + anon_sym_DASH, + STATE(4177), 1, sym_comment, - ACTIONS(2808), 6, + ACTIONS(7739), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [187793] = 9, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [189141] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7736), 1, - sym_identifier, - ACTIONS(7740), 1, - anon_sym_DQUOTE, - ACTIONS(7775), 1, - anon_sym_GT, - STATE(3644), 1, - sym__str_double_quotes, - STATE(4137), 1, + ACTIONS(2936), 1, + anon_sym_LF, + ACTIONS(7944), 1, + anon_sym_DOT2, + ACTIONS(7946), 1, + aux_sym__immediate_decimal_token2, + STATE(4178), 1, sym_comment, - STATE(4173), 1, - aux_sym_collection_type_repeat1, - STATE(4218), 1, - sym_val_string, - ACTIONS(7742), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [187822] = 7, + ACTIONS(2934), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [189164] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4123), 1, + STATE(4151), 1, sym__flag, - STATE(4138), 1, + STATE(4179), 1, sym_comment, - ACTIONS(3377), 2, + ACTIONS(3483), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3379), 2, + ACTIONS(3485), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [187847] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7676), 1, - anon_sym_DASH, - STATE(4139), 1, - sym_comment, - ACTIONS(7672), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187866] = 6, + [189189] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7777), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7779), 1, - aux_sym__immediate_decimal_token2, - STATE(4140), 1, + ACTIONS(7888), 1, + anon_sym_DASH, + STATE(4173), 1, + sym__flag, + STATE(4180), 1, sym_comment, - ACTIONS(2782), 3, + ACTIONS(3529), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - ACTIONS(2784), 3, + ACTIONS(3531), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - [187889] = 7, + STATE(4624), 2, + sym_short_flag, + sym_long_flag, + [189214] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4133), 1, + STATE(4174), 1, sym__flag, - STATE(4141), 1, + STATE(4181), 1, sym_comment, - ACTIONS(3377), 2, + ACTIONS(3529), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3379), 2, + ACTIONS(3531), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [187914] = 9, + [189239] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7787), 1, + sym_cmd_identifier, + STATE(2777), 1, + sym__str_double_quotes, + STATE(4131), 1, + sym_val_string, + STATE(4182), 1, + sym_comment, + STATE(6166), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [189268] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, + ACTIONS(7894), 1, sym_identifier, - ACTIONS(7740), 1, + ACTIONS(7898), 1, anon_sym_DQUOTE, - ACTIONS(7781), 1, + ACTIONS(7948), 1, anon_sym_GT, - STATE(3644), 1, + STATE(3672), 1, sym__str_double_quotes, - STATE(4137), 1, + STATE(4166), 1, aux_sym_collection_type_repeat1, - STATE(4142), 1, + STATE(4183), 1, sym_comment, - STATE(4218), 1, + STATE(4297), 1, sym_val_string, - ACTIONS(7742), 2, + ACTIONS(7900), 2, sym__str_single_quotes, sym__str_back_ticks, - [187943] = 4, + [189297] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7676), 1, - anon_sym_DASH, - STATE(4143), 1, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7103), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 1, + sym_cmd_identifier, + STATE(1226), 1, + sym_val_string, + STATE(1246), 1, + sym__str_double_quotes, + STATE(1250), 1, + sym__command_name, + STATE(4184), 1, sym_comment, - ACTIONS(7672), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187962] = 7, + ACTIONS(7105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [189326] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7750), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4144), 1, - sym_comment, - STATE(5233), 1, + STATE(4175), 1, sym__flag, - ACTIONS(3377), 2, + STATE(4185), 1, + sym_comment, + ACTIONS(3529), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3379), 2, + ACTIONS(3531), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2654), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [187987] = 4, + [189351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7686), 1, + ACTIONS(7723), 1, anon_sym_DASH, - STATE(4145), 1, + STATE(4186), 1, sym_comment, - ACTIONS(7682), 7, + ACTIONS(7719), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -350956,44 +356214,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188006] = 4, - ACTIONS(3), 1, + [189370] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7727), 1, - anon_sym_DASH, - STATE(4146), 1, + ACTIONS(2834), 1, + anon_sym_LF, + ACTIONS(7880), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7950), 1, + anon_sym_DOT2, + STATE(4187), 1, sym_comment, - ACTIONS(7723), 7, - sym_identifier, - anon_sym_RBRACK, + ACTIONS(2832), 5, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188025] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7785), 1, anon_sym_DASH, - STATE(4147), 1, + anon_sym_RBRACE, + [189393] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7876), 1, + aux_sym__immediate_decimal_token2, + STATE(4188), 1, sym_comment, - ACTIONS(7783), 7, - sym_identifier, - anon_sym_RBRACK, + ACTIONS(2908), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2906), 5, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188044] = 4, + anon_sym_DASH, + anon_sym_RBRACE, + [189414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7789), 1, + ACTIONS(7749), 1, anon_sym_DASH, - STATE(4148), 1, + STATE(4189), 1, sym_comment, - ACTIONS(7787), 7, + ACTIONS(7745), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -351001,46 +356262,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188063] = 4, - ACTIONS(3), 1, + [189433] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7789), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4149), 1, + STATE(4164), 1, + sym__flag, + STATE(4190), 1, sym_comment, - ACTIONS(7787), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(3873), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188082] = 6, + ACTIONS(3875), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4624), 2, + sym_short_flag, + sym_long_flag, + [189458] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7791), 1, + ACTIONS(7952), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7793), 1, + ACTIONS(7954), 1, aux_sym__immediate_decimal_token2, - STATE(4150), 1, + STATE(4191), 1, sym_comment, - ACTIONS(2806), 3, + ACTIONS(2906), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - ACTIONS(2808), 3, + ACTIONS(2908), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - [188105] = 4, + [189481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7622), 1, + ACTIONS(7958), 1, anon_sym_DASH, - STATE(4151), 1, + STATE(4192), 1, sym_comment, - ACTIONS(7618), 7, + ACTIONS(7956), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -351048,619 +356312,544 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188124] = 6, + [189500] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2395), 1, - sym_path, - STATE(4152), 1, + ACTIONS(7960), 1, + aux_sym__immediate_decimal_token2, + STATE(4193), 1, sym_comment, - STATE(4189), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1438), 2, + ACTIONS(2986), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1436), 4, + ACTIONS(2984), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH, anon_sym_RBRACE, - [188147] = 7, + [189521] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7910), 1, anon_sym_DASH, - STATE(4153), 1, + STATE(4194), 1, sym_comment, - STATE(4162), 1, + STATE(4949), 1, sym__flag, - ACTIONS(3317), 2, + ACTIONS(7884), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3319), 2, + ACTIONS(7886), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(2646), 2, sym_short_flag, sym_long_flag, - [188172] = 7, + [189546] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5167), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7962), 1, + aux_sym__immediate_decimal_token1, + STATE(4195), 1, + sym_comment, + ACTIONS(2908), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2906), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [189569] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(2936), 1, + anon_sym_LF, + ACTIONS(7946), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7964), 1, + anon_sym_DOT2, + STATE(4196), 1, + sym_comment, + ACTIONS(2934), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH, - STATE(4108), 1, + anon_sym_RBRACE, + [189592] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7888), 1, + anon_sym_DASH, + STATE(4194), 1, sym__flag, - STATE(4154), 1, + STATE(4197), 1, sym_comment, - ACTIONS(3710), 2, + ACTIONS(7846), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3712), 2, + ACTIONS(7848), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188197] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7578), 1, - anon_sym_DASH, - STATE(4155), 1, - sym_comment, - ACTIONS(7574), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188216] = 5, + [189617] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7795), 1, + ACTIONS(7967), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7797), 1, + ACTIONS(7969), 1, aux_sym__immediate_decimal_token2, - STATE(4156), 1, + STATE(4198), 1, sym_comment, - ACTIONS(2784), 6, + ACTIONS(2834), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT2, - [188237] = 4, - ACTIONS(3), 1, + [189638] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7596), 1, + ACTIONS(7910), 1, anon_sym_DASH, - STATE(4157), 1, + STATE(4199), 1, sym_comment, - ACTIONS(7592), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(4942), 1, + sym__flag, + ACTIONS(7846), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188256] = 7, + ACTIONS(7848), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2646), 2, + sym_short_flag, + sym_long_flag, + [189663] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7910), 1, anon_sym_DASH, - STATE(4158), 1, + STATE(4200), 1, sym_comment, - STATE(4176), 1, + STATE(4921), 1, sym__flag, - ACTIONS(3533), 2, + ACTIONS(3763), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3535), 2, + ACTIONS(3765), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(2646), 2, sym_short_flag, sym_long_flag, - [188281] = 7, + [189688] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4159), 1, + STATE(4197), 1, + sym__flag, + STATE(4201), 1, sym_comment, - STATE(4178), 1, + ACTIONS(7815), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(7817), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4624), 2, + sym_short_flag, + sym_long_flag, + [189713] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7888), 1, + anon_sym_DASH, + STATE(4202), 1, + sym_comment, + STATE(4207), 1, sym__flag, - ACTIONS(3278), 2, + ACTIONS(3763), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3280), 2, + ACTIONS(3765), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188306] = 7, + [189738] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4160), 1, + STATE(4203), 1, sym_comment, - STATE(4179), 1, + STATE(4208), 1, sym__flag, - ACTIONS(3278), 2, + ACTIONS(3763), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3280), 2, + ACTIONS(3765), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188331] = 7, + [189763] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4161), 1, + STATE(4204), 1, sym_comment, - STATE(4180), 1, + STATE(4209), 1, sym__flag, - ACTIONS(3278), 2, + ACTIONS(3763), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3280), 2, + ACTIONS(3765), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188356] = 7, + [189788] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4162), 1, - sym_comment, - STATE(4165), 1, + STATE(4199), 1, sym__flag, - ACTIONS(7715), 2, + STATE(4205), 1, + sym_comment, + ACTIONS(7815), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7717), 2, + ACTIONS(7817), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188381] = 7, + [189813] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4163), 1, - sym_comment, - STATE(4166), 1, + STATE(4203), 1, sym__flag, - ACTIONS(7715), 2, + STATE(4206), 1, + sym_comment, + ACTIONS(3600), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7717), 2, + ACTIONS(3602), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188406] = 7, + [189838] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7750), 1, + ACTIONS(7910), 1, anon_sym_DASH, - STATE(4164), 1, + STATE(4207), 1, sym_comment, - STATE(5184), 1, + STATE(4929), 1, sym__flag, - ACTIONS(7658), 2, + ACTIONS(3608), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7660), 2, + ACTIONS(3610), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2654), 2, + STATE(2646), 2, sym_short_flag, sym_long_flag, - [188431] = 7, + [189863] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4165), 1, + STATE(4208), 1, sym_comment, - STATE(4171), 1, + STATE(4211), 1, sym__flag, - ACTIONS(7658), 2, + ACTIONS(3608), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7660), 2, + ACTIONS(3610), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188456] = 7, + [189888] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4166), 1, + STATE(4209), 1, sym_comment, - STATE(4172), 1, + STATE(4214), 1, sym__flag, - ACTIONS(7658), 2, + ACTIONS(3608), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7660), 2, + ACTIONS(3610), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188481] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7736), 1, - sym_identifier, - ACTIONS(7740), 1, - anon_sym_DQUOTE, - ACTIONS(7799), 1, - anon_sym_GT, - STATE(3644), 1, - sym__str_double_quotes, - STATE(4167), 1, - sym_comment, - STATE(4174), 1, - aux_sym_collection_type_repeat1, - STATE(4218), 1, - sym_val_string, - ACTIONS(7742), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [188510] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(6962), 1, - anon_sym_DQUOTE, - ACTIONS(7752), 1, - sym_cmd_identifier, - STATE(1223), 1, - sym__command_name, - STATE(1230), 1, - sym_val_string, - STATE(1233), 1, - sym__str_double_quotes, - STATE(4168), 1, - sym_comment, - ACTIONS(6964), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [188539] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(7604), 1, - sym_cmd_identifier, - STATE(2728), 1, - sym__str_double_quotes, - STATE(4095), 1, - sym_val_string, - STATE(4169), 1, - sym_comment, - STATE(5006), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [188568] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(7638), 1, - sym_identifier, - STATE(1645), 1, - sym__assignment_pattern, - STATE(2682), 1, - sym__var, - STATE(4170), 1, - sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5054), 1, - sym__assignment_pattern_last, - STATE(5443), 1, - sym__variable_name, - [188599] = 7, + [189913] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7750), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4171), 1, + STATE(4210), 1, sym_comment, - STATE(5246), 1, + STATE(4218), 1, sym__flag, - ACTIONS(7707), 2, + ACTIONS(3608), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7709), 2, + ACTIONS(3610), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2654), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188624] = 7, + [189938] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7910), 1, anon_sym_DASH, - STATE(4172), 1, + STATE(4211), 1, sym_comment, - STATE(4184), 1, + STATE(4930), 1, sym__flag, - ACTIONS(7707), 2, + ACTIONS(3585), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7709), 2, + ACTIONS(3587), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(2646), 2, sym_short_flag, sym_long_flag, - [188649] = 8, + [189963] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7801), 1, - sym_identifier, - ACTIONS(7804), 1, - anon_sym_GT, - ACTIONS(7806), 1, - anon_sym_DQUOTE, - STATE(3644), 1, - sym__str_double_quotes, - STATE(4218), 1, - sym_val_string, - ACTIONS(7809), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4173), 2, + ACTIONS(7973), 1, + anon_sym_DASH, + STATE(4212), 1, sym_comment, - aux_sym_collection_type_repeat1, - [188676] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7736), 1, + ACTIONS(7971), 7, sym_identifier, - ACTIONS(7740), 1, - anon_sym_DQUOTE, - ACTIONS(7812), 1, - anon_sym_GT, - STATE(3644), 1, - sym__str_double_quotes, - STATE(4173), 1, - aux_sym_collection_type_repeat1, - STATE(4174), 1, - sym_comment, - STATE(4218), 1, - sym_val_string, - ACTIONS(7742), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [188705] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(7638), 1, - sym_identifier, - STATE(1644), 1, - sym__assignment_pattern, - STATE(2682), 1, - sym__var, - STATE(4175), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [189982] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1469), 1, + anon_sym_LF, + ACTIONS(7975), 1, + anon_sym_DOT2, + STATE(2959), 1, + sym_cell_path, + STATE(4170), 1, + sym_path, + STATE(4213), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5057), 1, - sym__assignment_pattern_last, - STATE(5443), 1, - sym__variable_name, - [188736] = 7, + ACTIONS(1467), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [190007] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4124), 1, - sym__flag, - STATE(4176), 1, + STATE(4214), 1, sym_comment, - ACTIONS(3377), 2, + STATE(4221), 1, + sym__flag, + ACTIONS(3585), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3379), 2, + ACTIONS(3587), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188761] = 7, + [190032] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4116), 1, + STATE(4201), 1, sym__flag, - STATE(4177), 1, + STATE(4215), 1, sym_comment, - ACTIONS(3561), 2, + ACTIONS(7840), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3563), 2, + ACTIONS(7842), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188786] = 7, + [190057] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7980), 1, + anon_sym_DASH, + STATE(4216), 1, + sym_comment, + ACTIONS(7978), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [190076] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7910), 1, anon_sym_DASH, - STATE(4118), 1, - sym__flag, - STATE(4178), 1, + STATE(4217), 1, sym_comment, - ACTIONS(3561), 2, + STATE(4917), 1, + sym__flag, + ACTIONS(7815), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3563), 2, + ACTIONS(7817), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(2646), 2, sym_short_flag, sym_long_flag, - [188811] = 7, + [190101] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4125), 1, - sym__flag, - STATE(4179), 1, + STATE(4218), 1, sym_comment, - ACTIONS(3561), 2, + STATE(4222), 1, + sym__flag, + ACTIONS(3585), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3563), 2, + ACTIONS(3587), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188836] = 7, + [190126] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7750), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4180), 1, - sym_comment, - STATE(5181), 1, + STATE(4141), 1, sym__flag, - ACTIONS(3561), 2, + STATE(4219), 1, + sym_comment, + ACTIONS(3585), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3563), 2, + ACTIONS(3587), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2654), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188861] = 10, + [190151] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(7638), 1, + ACTIONS(7894), 1, sym_identifier, - STATE(1642), 1, - sym__assignment_pattern, - STATE(2682), 1, - sym__var, - STATE(4181), 1, - sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5058), 1, - sym__assignment_pattern_last, - STATE(5443), 1, - sym__variable_name, - [188892] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(7898), 1, anon_sym_DQUOTE, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(7604), 1, - sym_cmd_identifier, - STATE(2728), 1, + ACTIONS(7982), 1, + anon_sym_GT, + STATE(3672), 1, sym__str_double_quotes, - STATE(4095), 1, - sym_val_string, - STATE(4182), 1, + STATE(4155), 1, + aux_sym_collection_type_repeat1, + STATE(4220), 1, sym_comment, - STATE(6055), 1, - sym__command_name, - ACTIONS(2835), 2, + STATE(4297), 1, + sym_val_string, + ACTIONS(7900), 2, sym__str_single_quotes, sym__str_back_ticks, - [188921] = 7, + [190180] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7910), 1, anon_sym_DASH, - STATE(4132), 1, - sym__flag, - STATE(4183), 1, + STATE(4221), 1, sym_comment, - ACTIONS(3780), 2, + STATE(4937), 1, + sym__flag, + ACTIONS(7840), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3782), 2, + ACTIONS(7842), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4842), 2, + STATE(2646), 2, sym_short_flag, sym_long_flag, - [188946] = 7, + [190205] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7750), 1, + ACTIONS(7888), 1, anon_sym_DASH, - STATE(4184), 1, - sym_comment, - STATE(5138), 1, + STATE(4217), 1, sym__flag, - ACTIONS(7701), 2, + STATE(4222), 1, + sym_comment, + ACTIONS(7840), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7703), 2, + ACTIONS(7842), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2654), 2, + STATE(4624), 2, sym_short_flag, sym_long_flag, - [188971] = 4, + [190230] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7816), 1, + ACTIONS(7973), 1, anon_sym_DASH, - STATE(4185), 1, + STATE(4223), 1, sym_comment, - ACTIONS(7814), 7, + ACTIONS(7971), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -351668,30985 +356857,31446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188990] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2906), 1, - anon_sym_LF, - ACTIONS(7758), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7818), 1, - anon_sym_DOT2, - STATE(4186), 1, - sym_comment, - ACTIONS(2904), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [189013] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1397), 1, - anon_sym_LF, - ACTIONS(7821), 1, - anon_sym_DOT2, - STATE(2440), 1, - sym_cell_path, - STATE(4187), 1, - sym_comment, - STATE(4188), 1, - sym_path, - ACTIONS(1395), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [189038] = 7, - ACTIONS(105), 1, + [190249] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_LF, - ACTIONS(7762), 1, - anon_sym_DOT2, - STATE(2395), 1, - sym_path, - STATE(4152), 1, - aux_sym_cell_path_repeat1, - STATE(4188), 1, + ACTIONS(7153), 1, + anon_sym_DQUOTE, + ACTIONS(7984), 1, + sym_cmd_identifier, + STATE(1370), 1, + sym_val_string, + STATE(1382), 1, + sym__str_double_quotes, + STATE(1593), 1, + sym__command_name, + STATE(4224), 1, sym_comment, - ACTIONS(1440), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [189063] = 6, + ACTIONS(7155), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [190275] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(7824), 1, - anon_sym_DOT2, - STATE(2395), 1, - sym_path, - STATE(4189), 2, + STATE(4225), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1411), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [189086] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(2908), 2, anon_sym_LF, - ACTIONS(7827), 1, anon_sym_DOT2, - STATE(4190), 1, - sym_comment, - ACTIONS(3123), 5, + ACTIONS(2906), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [189106] = 5, - ACTIONS(105), 1, + [190293] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, - anon_sym_LF, - ACTIONS(7829), 1, - anon_sym_DOT2, - STATE(4191), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(7787), 1, + sym_cmd_identifier, + STATE(2777), 1, + sym__str_double_quotes, + STATE(4131), 1, + sym_val_string, + STATE(4226), 1, sym_comment, - ACTIONS(3129), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [189126] = 8, + STATE(6151), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [190319] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, + ACTIONS(7153), 1, anon_sym_DQUOTE, - ACTIONS(7831), 1, + ACTIONS(7984), 1, sym_cmd_identifier, - STATE(1344), 1, + STATE(1370), 1, sym_val_string, - STATE(1432), 1, + STATE(1382), 1, sym__str_double_quotes, - STATE(1482), 1, + STATE(1554), 1, sym__command_name, - STATE(4192), 1, + STATE(4227), 1, sym_comment, - ACTIONS(6974), 2, + ACTIONS(7155), 2, sym__str_single_quotes, sym__str_back_ticks, - [189152] = 6, - ACTIONS(105), 1, + [190345] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7833), 1, - anon_sym_DOT2, - ACTIONS(7835), 1, + ACTIONS(7969), 1, aux_sym__immediate_decimal_token2, - STATE(4193), 1, + STATE(4228), 1, sym_comment, - ACTIONS(2906), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2904), 3, - anon_sym_SEMI, + ACTIONS(2834), 6, anon_sym_PIPE, anon_sym_DASH, - [189174] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - anon_sym_LF, - ACTIONS(5021), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7837), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_DOT2, - STATE(4194), 1, - sym_comment, - ACTIONS(2806), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [189196] = 8, + [190363] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4195), 1, + STATE(4229), 1, sym_comment, - STATE(5923), 1, + STATE(5018), 1, sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [189222] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7842), 1, - anon_sym_DASH, - STATE(4628), 1, - sym_long_flag, - STATE(4196), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(7840), 4, - sym_cmd_identifier, - anon_sym_DQUOTE, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [189242] = 9, - ACTIONS(3), 1, + [190389] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1628), 1, - sym__assignment_pattern_parenthesized, - STATE(2682), 1, - sym__var, - STATE(4197), 1, + ACTIONS(7986), 1, + anon_sym_DOT2, + STATE(2734), 1, + sym_path, + STATE(4230), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5327), 1, - sym__variable_name, - STATE(5329), 1, - sym__assignment_pattern_parenthesized_last, - [189270] = 9, + STATE(4293), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1407), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1409), 2, + ts_builtin_sym_end, + anon_sym_LF, + [190413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1629), 1, - sym__assignment_pattern_parenthesized, - STATE(2682), 1, - sym__var, - STATE(4198), 1, + ACTIONS(7892), 1, + aux_sym__immediate_decimal_token2, + STATE(4231), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5327), 1, - sym__variable_name, - STATE(5328), 1, - sym__assignment_pattern_parenthesized_last, - [189298] = 4, + ACTIONS(2908), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + [190431] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4199), 1, + ACTIONS(7986), 1, + anon_sym_DOT2, + STATE(2734), 1, + sym_path, + STATE(4232), 1, sym_comment, - ACTIONS(2808), 2, + STATE(4251), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1394), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1396), 2, + ts_builtin_sym_end, anon_sym_LF, + [190455] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7986), 1, anon_sym_DOT2, - ACTIONS(2806), 5, + STATE(2734), 1, + sym_path, + STATE(4230), 1, + aux_sym_cell_path_repeat1, + STATE(4233), 1, + sym_comment, + ACTIONS(1394), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [189316] = 9, + ACTIONS(1396), 2, + ts_builtin_sym_end, + anon_sym_LF, + [190479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1631), 1, - sym__assignment_pattern_parenthesized, - STATE(2682), 1, - sym__var, - STATE(4200), 1, + ACTIONS(7988), 1, + aux_sym__immediate_decimal_token2, + STATE(4234), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5324), 1, - sym__assignment_pattern_parenthesized_last, - STATE(5327), 1, - sym__variable_name, - [189344] = 4, + ACTIONS(2986), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + [190497] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3232), 1, + ACTIONS(2936), 1, anon_sym_LF, - STATE(4201), 1, + ACTIONS(5260), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7990), 1, + anon_sym_DOT2, + STATE(4235), 1, sym_comment, - ACTIONS(3230), 6, + ACTIONS(2934), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_else, anon_sym_RBRACE, - anon_sym_catch, - [189362] = 8, + [190519] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4202), 1, + STATE(4236), 1, sym_comment, - STATE(5794), 1, + STATE(5174), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [189388] = 9, + [190545] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1642), 1, - sym__assignment_pattern, - STATE(2682), 1, - sym__var, - STATE(4203), 1, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(7787), 1, + sym_cmd_identifier, + STATE(2777), 1, + sym__str_double_quotes, + STATE(4131), 1, + sym_val_string, + STATE(4237), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5058), 1, - sym__assignment_pattern_last, - STATE(5443), 1, - sym__variable_name, - [189416] = 4, + STATE(6198), 1, + sym__command_name, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [190571] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4204), 1, - sym_comment, - ACTIONS(2784), 2, + ACTIONS(3288), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2782), 5, + STATE(4238), 1, + sym_comment, + ACTIONS(3286), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, + anon_sym_else, anon_sym_RBRACE, - [189434] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(7845), 1, - anon_sym_alias, - ACTIONS(7847), 1, - anon_sym_const, - ACTIONS(7849), 1, - anon_sym_def, - ACTIONS(7851), 1, - anon_sym_extern, - ACTIONS(7853), 1, - anon_sym_module, - ACTIONS(7855), 1, - anon_sym_use, - STATE(4205), 1, - sym_comment, - [189462] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1644), 1, - sym__assignment_pattern, - STATE(2682), 1, - sym__var, - STATE(4206), 1, - sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5057), 1, - sym__assignment_pattern_last, - STATE(5443), 1, - sym__variable_name, - [189490] = 4, + anon_sym_catch, + [190589] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4207), 1, - sym_comment, - ACTIONS(2876), 2, - anon_sym_LF, + ACTIONS(7992), 1, anon_sym_DOT2, - ACTIONS(2874), 5, + STATE(3081), 1, + sym_cell_path, + STATE(4232), 1, + sym_path, + STATE(4239), 1, + sym_comment, + ACTIONS(1467), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [189508] = 9, + ACTIONS(1469), 2, + ts_builtin_sym_end, + anon_sym_LF, + [190613] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7103), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 1, + sym_cmd_identifier, + STATE(1226), 1, + sym_val_string, + STATE(1246), 1, + sym__str_double_quotes, + STATE(1453), 1, + sym__command_name, + STATE(4240), 1, + sym_comment, + ACTIONS(7105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [190639] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7638), 1, + ACTIONS(7795), 1, sym_identifier, - STATE(1645), 1, + STATE(1680), 1, sym__assignment_pattern, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4208), 1, + STATE(4241), 1, sym_comment, - STATE(4907), 1, + STATE(4963), 1, sym_val_variable, - STATE(5054), 1, - sym__assignment_pattern_last, STATE(5443), 1, + sym__assignment_pattern_last, + STATE(5446), 1, sym__variable_name, - [189536] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4209), 1, - sym_comment, - ACTIONS(3036), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3034), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [189554] = 8, + [190667] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7831), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(1344), 1, - sym_val_string, - STATE(1432), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(1572), 1, - sym__command_name, - STATE(4210), 1, + STATE(4131), 1, + sym_val_string, + STATE(4242), 1, sym_comment, - ACTIONS(6974), 2, + STATE(5111), 1, + sym__command_name, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [189580] = 8, + [190693] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, + ACTIONS(7153), 1, anon_sym_DQUOTE, - ACTIONS(7831), 1, + ACTIONS(7984), 1, sym_cmd_identifier, - STATE(1344), 1, + STATE(944), 1, + sym__command_name, + STATE(1370), 1, sym_val_string, - STATE(1432), 1, + STATE(1382), 1, sym__str_double_quotes, - STATE(1625), 1, - sym__command_name, - STATE(4211), 1, + STATE(4243), 1, sym_comment, - ACTIONS(6974), 2, + ACTIONS(7155), 2, sym__str_single_quotes, sym__str_back_ticks, - [189606] = 8, + [190719] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, + ACTIONS(7103), 1, anon_sym_DQUOTE, - ACTIONS(7831), 1, + ACTIONS(7912), 1, sym_cmd_identifier, - STATE(1344), 1, + STATE(1226), 1, sym_val_string, - STATE(1432), 1, + STATE(1246), 1, sym__str_double_quotes, - STATE(1574), 1, + STATE(1454), 1, sym__command_name, - STATE(4212), 1, + STATE(4244), 1, sym_comment, - ACTIONS(6974), 2, + ACTIONS(7105), 2, sym__str_single_quotes, sym__str_back_ticks, - [189632] = 8, + [190745] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(7103), 1, anon_sym_DQUOTE, - ACTIONS(7752), 1, + ACTIONS(7912), 1, sym_cmd_identifier, - STATE(1223), 1, - sym__command_name, - STATE(1230), 1, + STATE(1226), 1, sym_val_string, - STATE(1233), 1, + STATE(1246), 1, sym__str_double_quotes, - STATE(4213), 1, - sym_comment, - ACTIONS(6964), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [189658] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7773), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7857), 1, - anon_sym_DOT2, - STATE(4214), 1, - sym_comment, - ACTIONS(2808), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [189678] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DQUOTE, - ACTIONS(7752), 1, - sym_cmd_identifier, - STATE(877), 1, + STATE(1250), 1, sym__command_name, - STATE(1230), 1, - sym_val_string, - STATE(1233), 1, - sym__str_double_quotes, - STATE(4215), 1, + STATE(4245), 1, sym_comment, - ACTIONS(6964), 2, + ACTIONS(7105), 2, sym__str_single_quotes, sym__str_back_ticks, - [189704] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7793), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7860), 1, - anon_sym_DOT2, - STATE(4216), 1, - sym_comment, - ACTIONS(2808), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2806), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [189726] = 9, + [190771] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7638), 1, + ACTIONS(7795), 1, sym_identifier, - STATE(1646), 1, + STATE(1680), 1, sym__assignment_pattern, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4217), 1, + STATE(4246), 1, sym_comment, - STATE(4907), 1, + STATE(4963), 1, sym_val_variable, - STATE(5021), 1, + STATE(4974), 1, sym__assignment_pattern_last, - STATE(5443), 1, + STATE(5458), 1, sym__variable_name, - [189754] = 5, + [190799] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_COLON, - ACTIONS(7866), 1, - anon_sym_COMMA, - STATE(4218), 1, - sym_comment, - ACTIONS(7862), 5, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [189774] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DQUOTE, - ACTIONS(7752), 1, - sym_cmd_identifier, - STATE(1214), 1, - sym__command_name, - STATE(1230), 1, - sym_val_string, - STATE(1233), 1, - sym__str_double_quotes, - STATE(4219), 1, + STATE(1675), 1, + sym__assignment_pattern, + STATE(2688), 1, + sym__var, + STATE(4247), 1, sym_comment, - ACTIONS(6964), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [189800] = 5, - ACTIONS(3), 1, + STATE(4963), 1, + sym_val_variable, + STATE(5444), 1, + sym__assignment_pattern_last, + STATE(5446), 1, + sym__variable_name, + [190827] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7868), 1, - anon_sym_DOT2, - ACTIONS(7871), 1, + ACTIONS(7995), 1, aux_sym__immediate_decimal_token2, - STATE(4220), 1, + STATE(4248), 1, sym_comment, - ACTIONS(2906), 5, + ACTIONS(2984), 3, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [189820] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7875), 1, - anon_sym_COLON, - ACTIONS(7877), 1, - anon_sym_COMMA, - STATE(4221), 1, - sym_comment, - ACTIONS(7873), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [189840] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2906), 1, + ACTIONS(2986), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5058), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7879), 1, anon_sym_DOT2, - STATE(4222), 1, - sym_comment, - ACTIONS(2904), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [189862] = 6, + [190847] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(7954), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7882), 1, - aux_sym__immediate_decimal_token1, - STATE(4223), 1, + STATE(4249), 1, sym_comment, - ACTIONS(2806), 2, + ACTIONS(2906), 3, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2808), 3, + anon_sym_DASH, + ACTIONS(2908), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - [189884] = 8, + [190867] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - STATE(2728), 1, - sym__str_double_quotes, - STATE(4095), 1, - sym_val_string, - STATE(4224), 1, + ACTIONS(7733), 1, + anon_sym_DOLLAR, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(3016), 1, + sym__var, + STATE(3268), 1, + sym_val_closure, + STATE(3269), 1, + sym_block, + STATE(4250), 1, sym_comment, - STATE(6091), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [189910] = 9, + STATE(1651), 2, + sym__blosure, + sym_val_variable, + [190893] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7884), 1, + STATE(2734), 1, + sym_path, + STATE(4251), 1, + sym_comment, + STATE(4293), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1407), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1409), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - ACTIONS(7886), 1, + [190915] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7997), 1, + anon_sym_DOT2, + ACTIONS(7999), 1, anon_sym_LPAREN2, - ACTIONS(7888), 1, + ACTIONS(8001), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7890), 1, + ACTIONS(8003), 1, anon_sym_DASH2, - ACTIONS(7892), 1, + ACTIONS(8005), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7894), 1, + ACTIONS(8007), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(7896), 1, + ACTIONS(8009), 1, aux_sym_short_flag_token1, - STATE(4225), 1, + STATE(4252), 1, sym_comment, - [189938] = 5, + [190943] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3117), 1, - anon_sym_LF, - ACTIONS(7898), 1, - anon_sym_DOT2, - STATE(4226), 1, + ACTIONS(7931), 1, + aux_sym__immediate_decimal_token2, + STATE(4253), 1, sym_comment, - ACTIONS(3115), 5, + ACTIONS(2832), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - anon_sym_RBRACE, - [189958] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7793), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7900), 1, - anon_sym_DOT2, - STATE(4227), 1, - sym_comment, - ACTIONS(2808), 2, + ACTIONS(2834), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2806), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [189980] = 4, + anon_sym_DOT2, + [190963] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7903), 1, + ACTIONS(8011), 1, + anon_sym_DOT2, + ACTIONS(8013), 1, aux_sym__immediate_decimal_token2, - STATE(4228), 1, + STATE(4254), 1, sym_comment, - ACTIONS(2876), 6, + ACTIONS(2936), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_DOT2, - [189998] = 5, - ACTIONS(105), 1, + [190983] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3111), 1, - anon_sym_LF, - ACTIONS(7905), 1, - anon_sym_DOT2, - STATE(4229), 1, + ACTIONS(7153), 1, + anon_sym_DQUOTE, + ACTIONS(7984), 1, + sym_cmd_identifier, + STATE(1367), 1, + sym__command_name, + STATE(1370), 1, + sym_val_string, + STATE(1382), 1, + sym__str_double_quotes, + STATE(4255), 1, sym_comment, - ACTIONS(3109), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [190018] = 8, + ACTIONS(7155), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [191009] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(7153), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7984), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(1370), 1, + sym_val_string, + STATE(1382), 1, sym__str_double_quotes, - STATE(3978), 1, + STATE(1628), 1, sym__command_name, - STATE(4095), 1, + STATE(4256), 1, + sym_comment, + ACTIONS(7155), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [191035] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(7787), 1, + sym_cmd_identifier, + STATE(2777), 1, + sym__str_double_quotes, + STATE(4131), 1, sym_val_string, - STATE(4230), 1, + STATE(4257), 1, sym_comment, - ACTIONS(2835), 2, + STATE(6072), 1, + sym__command_name, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [190044] = 6, + [191061] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7835), 1, + ACTIONS(7931), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7907), 1, + ACTIONS(8015), 1, anon_sym_DOT2, - STATE(4231), 1, + STATE(4258), 1, sym_comment, - ACTIONS(2906), 2, + ACTIONS(2834), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2904), 3, + ACTIONS(2832), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [190066] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1642), 1, - sym__assignment_pattern, - STATE(2682), 1, - sym__var, - STATE(4232), 1, - sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5336), 1, - sym__assignment_pattern_last, - STATE(5339), 1, - sym__variable_name, - [190094] = 9, - ACTIONS(3), 1, + [191083] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1644), 1, - sym__assignment_pattern, - STATE(2682), 1, - sym__var, - STATE(4233), 1, + ACTIONS(3165), 1, + anon_sym_LF, + ACTIONS(8017), 1, + anon_sym_DOT2, + STATE(4259), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5339), 1, - sym__variable_name, - STATE(5345), 1, - sym__assignment_pattern_last, - [190122] = 5, + ACTIONS(3163), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [191103] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2964), 1, + ACTIONS(3240), 1, anon_sym_LF, - ACTIONS(7910), 1, - sym__long_flag_identifier, - STATE(4234), 1, + ACTIONS(8019), 1, + anon_sym_DOT2, + STATE(4260), 1, sym_comment, - ACTIONS(2960), 5, + ACTIONS(3238), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [190142] = 6, + [191123] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2613), 1, - sym_path, - STATE(4235), 1, + ACTIONS(5190), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8021), 1, + aux_sym__immediate_decimal_token1, + STATE(4261), 1, sym_comment, - STATE(4258), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1436), 2, + ACTIONS(2906), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1438), 3, + ACTIONS(2908), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - [190164] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6972), 1, - anon_sym_DQUOTE, - ACTIONS(7831), 1, - sym_cmd_identifier, - STATE(1273), 1, - sym__command_name, - STATE(1344), 1, - sym_val_string, - STATE(1432), 1, - sym__str_double_quotes, - STATE(4236), 1, - sym_comment, - ACTIONS(6974), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [190190] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - STATE(2728), 1, - sym__str_double_quotes, - STATE(4095), 1, - sym_val_string, - STATE(4237), 1, - sym_comment, - STATE(4959), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [190216] = 4, - ACTIONS(3), 1, + [191145] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7797), 1, - aux_sym__immediate_decimal_token2, - STATE(4238), 1, + ACTIONS(7986), 1, + anon_sym_DOT2, + STATE(3081), 1, + sym_cell_path, + STATE(4233), 1, + sym_path, + STATE(4262), 1, sym_comment, - ACTIONS(2784), 6, + ACTIONS(1467), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [190234] = 5, + ACTIONS(1469), 2, + ts_builtin_sym_end, + anon_sym_LF, + [191169] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3105), 1, - anon_sym_LF, - ACTIONS(7912), 1, + ACTIONS(7986), 1, anon_sym_DOT2, - STATE(4239), 1, + STATE(2728), 1, + sym_cell_path, + STATE(4233), 1, + sym_path, + STATE(4263), 1, sym_comment, - ACTIONS(3103), 5, + ACTIONS(1400), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [190254] = 8, + ACTIONS(1402), 2, + ts_builtin_sym_end, + anon_sym_LF, + [191193] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(4095), 1, + STATE(4017), 1, + sym__command_name, + STATE(4131), 1, sym_val_string, - STATE(4240), 1, + STATE(4264), 1, sym_comment, - STATE(6096), 1, - sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [190280] = 9, + [191219] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7638), 1, + ACTIONS(7795), 1, sym_identifier, - STATE(1645), 1, + STATE(1675), 1, sym__assignment_pattern, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4241), 1, + STATE(4265), 1, sym_comment, - STATE(4907), 1, + STATE(4963), 1, sym_val_variable, - STATE(5339), 1, - sym__variable_name, - STATE(5351), 1, + STATE(4973), 1, sym__assignment_pattern_last, - [190308] = 5, + STATE(5458), 1, + sym__variable_name, + [191247] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3099), 1, + STATE(4266), 1, + sym_comment, + ACTIONS(2834), 2, anon_sym_LF, - ACTIONS(7914), 1, anon_sym_DOT2, - STATE(4242), 1, - sym_comment, - ACTIONS(3097), 5, + ACTIONS(2832), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [190328] = 3, + [191265] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4243), 1, + ACTIONS(7969), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8023), 1, + anon_sym_DOT2, + STATE(4267), 1, sym_comment, - ACTIONS(3053), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, + ACTIONS(2834), 5, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [190344] = 8, + anon_sym_EQ_GT, + [191285] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DQUOTE, - ACTIONS(7752), 1, - sym_cmd_identifier, - STATE(1230), 1, - sym_val_string, - STATE(1233), 1, - sym__str_double_quotes, - STATE(1436), 1, - sym__command_name, - STATE(4244), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(1656), 1, + sym__assignment_pattern, + STATE(2688), 1, + sym__var, + STATE(4268), 1, sym_comment, - ACTIONS(6964), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [190370] = 8, + STATE(4963), 1, + sym_val_variable, + STATE(4970), 1, + sym__assignment_pattern_last, + STATE(5458), 1, + sym__variable_name, + [191313] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3173), 1, + anon_sym_LF, + ACTIONS(8025), 1, + anon_sym_DOT2, + STATE(4269), 1, + sym_comment, + ACTIONS(3171), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [191333] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(7103), 1, anon_sym_DQUOTE, - ACTIONS(7752), 1, + ACTIONS(7912), 1, sym_cmd_identifier, - STATE(1230), 1, + STATE(1226), 1, sym_val_string, - STATE(1233), 1, + STATE(1246), 1, sym__str_double_quotes, - STATE(1435), 1, + STATE(1267), 1, sym__command_name, - STATE(4245), 1, + STATE(4270), 1, sym_comment, - ACTIONS(6964), 2, + ACTIONS(7105), 2, sym__str_single_quotes, sym__str_back_ticks, - [190396] = 7, + [191359] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7916), 1, + ACTIONS(8027), 1, anon_sym_DOT2, - STATE(2613), 1, + STATE(2728), 1, + sym_cell_path, + STATE(4232), 1, sym_path, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4246), 1, + STATE(4271), 1, sym_comment, - ACTIONS(1440), 2, + ACTIONS(1400), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1442), 2, + ACTIONS(1402), 2, ts_builtin_sym_end, anon_sym_LF, - [190420] = 6, + [191383] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5074), 1, + ACTIONS(3200), 1, + anon_sym_LF, + ACTIONS(8030), 1, + anon_sym_DOT2, + STATE(4272), 1, + sym_comment, + ACTIONS(3198), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [191403] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2936), 1, + anon_sym_LF, + ACTIONS(5260), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7918), 1, - aux_sym__immediate_decimal_token1, - STATE(4247), 1, + ACTIONS(8032), 1, + anon_sym_DOT2, + STATE(4273), 1, sym_comment, - ACTIONS(2782), 2, + ACTIONS(2934), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(2784), 3, - ts_builtin_sym_end, + anon_sym_RBRACE, + [191425] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4274), 1, + sym_comment, + ACTIONS(2986), 2, anon_sym_LF, anon_sym_DOT2, - [190442] = 8, + ACTIONS(2984), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [191443] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, - anon_sym_DQUOTE, - ACTIONS(7831), 1, - sym_cmd_identifier, - STATE(907), 1, - sym__command_name, - STATE(1344), 1, - sym_val_string, - STATE(1432), 1, - sym__str_double_quotes, - STATE(4248), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(1660), 1, + sym__assignment_pattern_parenthesized, + STATE(2688), 1, + sym__var, + STATE(4275), 1, + sym_comment, + STATE(4963), 1, + sym_val_variable, + STATE(5347), 1, + sym__assignment_pattern_parenthesized_last, + STATE(5351), 1, + sym__variable_name, + [191471] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4276), 1, + sym_comment, + ACTIONS(3258), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(3256), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [191489] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + anon_sym_DASH, + STATE(4868), 1, + sym_long_flag, + STATE(4277), 2, sym_comment, - ACTIONS(6974), 2, + aux_sym_decl_def_repeat1, + ACTIONS(8035), 4, + sym_cmd_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190468] = 8, + [191509] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(1658), 1, + sym__assignment_pattern_parenthesized, + STATE(2688), 1, + sym__var, + STATE(4278), 1, + sym_comment, + STATE(4963), 1, + sym_val_variable, + STATE(5348), 1, + sym__assignment_pattern_parenthesized_last, + STATE(5351), 1, + sym__variable_name, + [191537] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(1659), 1, + sym__assignment_pattern_parenthesized, + STATE(2688), 1, + sym__var, + STATE(4279), 1, + sym_comment, + STATE(4963), 1, + sym_val_variable, + STATE(5351), 1, + sym__variable_name, + STATE(5352), 1, + sym__assignment_pattern_parenthesized_last, + [191565] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4249), 1, + STATE(4280), 1, sym_comment, - STATE(4991), 1, + STATE(5745), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [190494] = 4, - ACTIONS(3), 1, + [191591] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7773), 1, - aux_sym__immediate_decimal_token2, - STATE(4250), 1, + ACTIONS(3208), 1, + anon_sym_LF, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4281), 1, sym_comment, - ACTIONS(2808), 6, + ACTIONS(3206), 5, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [190512] = 7, + anon_sym_RBRACE, + [191611] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7920), 1, + ACTIONS(3214), 1, + anon_sym_LF, + ACTIONS(8042), 1, anon_sym_DOT2, - STATE(3017), 1, - sym_cell_path, - STATE(4246), 1, - sym_path, - STATE(4251), 1, + STATE(4282), 1, sym_comment, - ACTIONS(1399), 2, + ACTIONS(3212), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1401), 2, - ts_builtin_sym_end, - anon_sym_LF, - [190536] = 9, + anon_sym_DASH, + anon_sym_RBRACE, + [191631] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7886), 1, - anon_sym_LPAREN2, - ACTIONS(7890), 1, - anon_sym_DASH2, - ACTIONS(7894), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(7896), 1, - aux_sym_short_flag_token1, - ACTIONS(7923), 1, + ACTIONS(8044), 1, anon_sym_DOT2, - ACTIONS(7925), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7927), 1, - aux_sym__immediate_decimal_token3, - STATE(4252), 1, + ACTIONS(8047), 1, + aux_sym__immediate_decimal_token2, + STATE(4283), 1, sym_comment, - [190564] = 8, + ACTIONS(2936), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2934), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [191653] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, + ACTIONS(7153), 1, anon_sym_DQUOTE, - ACTIONS(7831), 1, + ACTIONS(7984), 1, sym_cmd_identifier, - STATE(1344), 1, + STATE(1370), 1, sym_val_string, - STATE(1432), 1, + STATE(1382), 1, sym__str_double_quotes, - STATE(1614), 1, + STATE(1503), 1, sym__command_name, - STATE(4253), 1, + STATE(4284), 1, sym_comment, - ACTIONS(6974), 2, + ACTIONS(7155), 2, sym__str_single_quotes, sym__str_back_ticks, - [190590] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1638), 1, - sym__assignment_pattern_parenthesized, - STATE(2682), 1, - sym__var, - STATE(4254), 1, - sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5327), 1, - sym__variable_name, - STATE(5358), 1, - sym__assignment_pattern_parenthesized_last, - [190618] = 7, + [191679] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7929), 1, + ACTIONS(8047), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8049), 1, anon_sym_DOT2, - STATE(2627), 1, - sym_cell_path, - STATE(4246), 1, - sym_path, - STATE(4255), 1, + STATE(4285), 1, sym_comment, - ACTIONS(1395), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1397), 2, + ACTIONS(2936), 2, ts_builtin_sym_end, anon_sym_LF, - [190642] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - STATE(2728), 1, - sym__str_double_quotes, - STATE(4095), 1, - sym_val_string, - STATE(4256), 1, - sym_comment, - STATE(5954), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [190668] = 8, + ACTIONS(2934), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [191701] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(7153), 1, anon_sym_DQUOTE, - ACTIONS(7752), 1, + ACTIONS(7984), 1, sym_cmd_identifier, - STATE(1230), 1, + STATE(1370), 1, sym_val_string, - STATE(1233), 1, + STATE(1382), 1, sym__str_double_quotes, - STATE(1266), 1, + STATE(1525), 1, sym__command_name, - STATE(4257), 1, + STATE(4286), 1, sym_comment, - ACTIONS(6964), 2, + ACTIONS(7155), 2, sym__str_single_quotes, sym__str_back_ticks, - [190694] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7932), 1, - anon_sym_DOT2, - STATE(2613), 1, - sym_path, - ACTIONS(1411), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4258), 2, - sym_comment, - aux_sym_cell_path_repeat1, - [190716] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7210), 1, - anon_sym_DOLLAR, - ACTIONS(7214), 1, - anon_sym_LBRACE, - STATE(2913), 1, - sym__var, - STATE(3205), 1, - sym_val_closure, - STATE(3207), 1, - sym_block, - STATE(4259), 1, - sym_comment, - STATE(1385), 2, - sym__blosure, - sym_val_variable, - [190742] = 8, + [191727] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7752), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(1230), 1, - sym_val_string, - STATE(1233), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(1406), 1, - sym__command_name, - STATE(4260), 1, + STATE(4131), 1, + sym_val_string, + STATE(4287), 1, sym_comment, - ACTIONS(6964), 2, + STATE(6132), 1, + sym__command_name, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [190768] = 8, + [191753] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7600), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7602), 1, - anon_sym_LBRACE, - STATE(2982), 1, + ACTIONS(7795), 1, + sym_identifier, + STATE(1666), 1, + sym__assignment_pattern, + STATE(2688), 1, sym__var, - STATE(3229), 1, - sym_val_closure, - STATE(3231), 1, - sym_block, - STATE(4261), 1, + STATE(4288), 1, sym_comment, - STATE(1567), 2, - sym__blosure, + STATE(4963), 1, sym_val_variable, - [190794] = 8, + STATE(4992), 1, + sym__assignment_pattern_last, + STATE(5458), 1, + sym__variable_name, + [191781] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(7103), 1, anon_sym_DQUOTE, - ACTIONS(7752), 1, + ACTIONS(7912), 1, sym_cmd_identifier, - STATE(1230), 1, + STATE(1226), 1, sym_val_string, - STATE(1233), 1, + STATE(1246), 1, sym__str_double_quotes, - STATE(1407), 1, + STATE(1455), 1, sym__command_name, - STATE(4262), 1, + STATE(4289), 1, sym_comment, - ACTIONS(6964), 2, + ACTIONS(7105), 2, sym__str_single_quotes, sym__str_back_ticks, - [190820] = 8, + [191807] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4263), 1, + STATE(4290), 1, sym_comment, - STATE(6040), 1, + STATE(5081), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [190846] = 8, + [191833] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4264), 1, + STATE(4291), 1, sym_comment, - STATE(6055), 1, + STATE(6047), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [190872] = 5, + [191859] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7935), 1, + ACTIONS(7931), 1, aux_sym__immediate_decimal_token2, - STATE(4265), 1, + ACTIONS(8051), 1, + anon_sym_DOT2, + STATE(4292), 1, sym_comment, - ACTIONS(2874), 3, + ACTIONS(2834), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2832), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - ACTIONS(2876), 3, + [191881] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8054), 1, + anon_sym_DOT2, + STATE(2734), 1, + sym_path, + ACTIONS(1387), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - [190892] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(7604), 1, - sym_cmd_identifier, - STATE(2728), 1, - sym__str_double_quotes, - STATE(4095), 1, - sym_val_string, - STATE(4266), 1, + STATE(4293), 2, sym_comment, - STATE(5006), 1, - sym__command_name, - ACTIONS(2835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [190918] = 8, + aux_sym_cell_path_repeat1, + [191903] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(7153), 1, anon_sym_DQUOTE, - ACTIONS(7752), 1, + ACTIONS(7984), 1, sym_cmd_identifier, - STATE(1230), 1, + STATE(1370), 1, sym_val_string, - STATE(1233), 1, + STATE(1382), 1, sym__str_double_quotes, - STATE(1410), 1, + STATE(1522), 1, sym__command_name, - STATE(4267), 1, + STATE(4294), 1, sym_comment, - ACTIONS(6964), 2, + ACTIONS(7155), 2, sym__str_single_quotes, sym__str_back_ticks, - [190944] = 5, - ACTIONS(105), 1, + [191929] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7779), 1, - aux_sym__immediate_decimal_token2, - STATE(4268), 1, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(8057), 1, + anon_sym_alias, + ACTIONS(8059), 1, + anon_sym_const, + ACTIONS(8061), 1, + anon_sym_def, + ACTIONS(8063), 1, + anon_sym_extern, + ACTIONS(8065), 1, + anon_sym_module, + ACTIONS(8067), 1, + anon_sym_use, + STATE(4295), 1, sym_comment, - ACTIONS(2782), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - ACTIONS(2784), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - [190964] = 8, + [191957] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7740), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7937), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(3644), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(3959), 1, + STATE(4131), 1, sym_val_string, - STATE(3978), 1, + STATE(4296), 1, + sym_comment, + STATE(6166), 1, sym__command_name, - STATE(4269), 1, + ACTIONS(2902), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [191983] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8071), 1, + anon_sym_COLON, + ACTIONS(8073), 1, + anon_sym_COMMA, + STATE(4297), 1, sym_comment, - ACTIONS(7742), 2, + ACTIONS(8069), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190990] = 8, + [192003] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4270), 1, + STATE(4298), 1, sym_comment, - STATE(6076), 1, + STATE(5997), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [191016] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7916), 1, - anon_sym_DOT2, - STATE(2613), 1, - sym_path, - STATE(4258), 1, - aux_sym_cell_path_repeat1, - STATE(4271), 1, - sym_comment, - ACTIONS(1436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [191040] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7793), 1, - aux_sym__immediate_decimal_token2, - STATE(4272), 1, - sym_comment, - ACTIONS(2806), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - ACTIONS(2808), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - [191060] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7916), 1, - anon_sym_DOT2, - STATE(3017), 1, - sym_cell_path, - STATE(4273), 1, - sym_comment, - STATE(4275), 1, - sym_path, - ACTIONS(1399), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1401), 2, - ts_builtin_sym_end, - anon_sym_LF, - [191084] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7916), 1, - anon_sym_DOT2, - STATE(2627), 1, - sym_cell_path, - STATE(4274), 1, - sym_comment, - STATE(4275), 1, - sym_path, - ACTIONS(1395), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1397), 2, - ts_builtin_sym_end, - anon_sym_LF, - [191108] = 7, - ACTIONS(105), 1, + [192029] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7916), 1, - anon_sym_DOT2, - STATE(2613), 1, - sym_path, - STATE(4271), 1, - aux_sym_cell_path_repeat1, - STATE(4275), 1, + ACTIONS(8077), 1, + anon_sym_COLON, + ACTIONS(8079), 1, + anon_sym_COMMA, + STATE(4299), 1, sym_comment, - ACTIONS(1440), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1442), 2, - ts_builtin_sym_end, - anon_sym_LF, - [191132] = 8, + ACTIONS(8075), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192049] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, + ACTIONS(7898), 1, anon_sym_DQUOTE, - ACTIONS(7831), 1, + ACTIONS(8081), 1, sym_cmd_identifier, - STATE(1344), 1, - sym_val_string, - STATE(1432), 1, + STATE(3672), 1, sym__str_double_quotes, - STATE(1624), 1, + STATE(3967), 1, + sym_val_string, + STATE(4017), 1, sym__command_name, - STATE(4276), 1, + STATE(4300), 1, sym_comment, - ACTIONS(6974), 2, + ACTIONS(7900), 2, sym__str_single_quotes, sym__str_back_ticks, - [191158] = 8, + [192075] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4277), 1, + STATE(4301), 1, sym_comment, - STATE(5721), 1, + STATE(5748), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [191184] = 9, + [192101] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7638), 1, + ACTIONS(7795), 1, sym_identifier, - STATE(1646), 1, + STATE(1656), 1, sym__assignment_pattern, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4278), 1, + STATE(4302), 1, sym_comment, - STATE(4907), 1, + STATE(4963), 1, sym_val_variable, - STATE(5330), 1, - sym__assignment_pattern_last, - STATE(5339), 1, + STATE(5446), 1, sym__variable_name, - [191212] = 6, - ACTIONS(105), 1, + STATE(5447), 1, + sym__assignment_pattern_last, + [192129] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2906), 1, - anon_sym_LF, - ACTIONS(5058), 1, + ACTIONS(7969), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7939), 1, + ACTIONS(8083), 1, anon_sym_DOT2, - STATE(4279), 1, + STATE(4303), 1, sym_comment, - ACTIONS(2904), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2834), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [191234] = 8, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [192149] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7999), 1, + anon_sym_LPAREN2, + ACTIONS(8003), 1, + anon_sym_DASH2, + ACTIONS(8007), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(8009), 1, + aux_sym_short_flag_token1, + ACTIONS(8086), 1, + anon_sym_DOT2, + ACTIONS(8088), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8090), 1, + aux_sym__immediate_decimal_token3, + STATE(4304), 1, + sym_comment, + [192177] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4305), 1, + sym_comment, + ACTIONS(3234), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192193] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(7103), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7912), 1, sym_cmd_identifier, - STATE(2728), 1, - sym__str_double_quotes, - STATE(4095), 1, + STATE(1226), 1, sym_val_string, - STATE(4280), 1, - sym_comment, - STATE(5208), 1, + STATE(1246), 1, + sym__str_double_quotes, + STATE(1486), 1, sym__command_name, - ACTIONS(2835), 2, + STATE(4306), 1, + sym_comment, + ACTIONS(7105), 2, sym__str_single_quotes, sym__str_back_ticks, - [191260] = 8, + [192219] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, + ACTIONS(7153), 1, anon_sym_DQUOTE, - ACTIONS(7831), 1, + ACTIONS(7984), 1, sym_cmd_identifier, - STATE(1344), 1, + STATE(1370), 1, sym_val_string, - STATE(1411), 1, - sym__command_name, - STATE(1432), 1, + STATE(1382), 1, sym__str_double_quotes, - STATE(4281), 1, + STATE(1422), 1, + sym__command_name, + STATE(4307), 1, sym_comment, - ACTIONS(6974), 2, + ACTIONS(7155), 2, sym__str_single_quotes, sym__str_back_ticks, - [191286] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - anon_sym_LF, - ACTIONS(5021), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7941), 1, - anon_sym_DOT2, - STATE(4282), 1, - sym_comment, - ACTIONS(2806), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [191308] = 8, + [192245] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(7604), 1, + ACTIONS(7787), 1, sym_cmd_identifier, - STATE(2728), 1, + STATE(2777), 1, sym__str_double_quotes, - STATE(4095), 1, + STATE(4131), 1, sym_val_string, - STATE(4283), 1, + STATE(4308), 1, sym_comment, - STATE(6069), 1, + STATE(6027), 1, sym__command_name, - ACTIONS(2835), 2, + ACTIONS(2902), 2, sym__str_single_quotes, sym__str_back_ticks, - [191334] = 4, + [192271] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3375), 1, + ACTIONS(2834), 1, anon_sym_LF, - STATE(4284), 1, + ACTIONS(5163), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8092), 1, + anon_sym_DOT2, + STATE(4309), 1, sym_comment, - ACTIONS(3373), 5, + ACTIONS(2832), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [191351] = 7, + [192293] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, + ACTIONS(2834), 1, anon_sym_LF, - STATE(1400), 1, - sym__terminator, - STATE(4285), 1, + ACTIONS(5163), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8095), 1, + anon_sym_DOT2, + STATE(4310), 1, sym_comment, - STATE(4431), 1, - aux_sym__block_body_repeat1, - ACTIONS(7943), 2, + ACTIONS(2832), 4, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [191374] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7849), 1, - anon_sym_def, - ACTIONS(7851), 1, - anon_sym_extern, - ACTIONS(7853), 1, - anon_sym_module, - ACTIONS(7855), 1, - anon_sym_use, - ACTIONS(7945), 1, - anon_sym_alias, - ACTIONS(7947), 1, - anon_sym_const, - STATE(4286), 1, - sym_comment, - [191399] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7949), 1, - anon_sym_DOT2, - ACTIONS(7951), 1, - anon_sym_LPAREN2, - ACTIONS(7953), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7955), 1, - anon_sym_DASH2, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7959), 1, - aux_sym_short_flag_token1, - STATE(4287), 1, - sym_comment, - [191424] = 6, - ACTIONS(3), 1, + [192315] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2585), 1, - sym_path, - STATE(4288), 1, + ACTIONS(3157), 1, + anon_sym_LF, + ACTIONS(8097), 1, + sym__long_flag_identifier, + STATE(4311), 1, sym_comment, - STATE(4299), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1442), 3, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(3153), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, anon_sym_RBRACE, - [191445] = 8, + [192335] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(7663), 1, anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1642), 1, - sym__assignment_pattern, - STATE(2682), 1, + ACTIONS(7667), 1, + anon_sym_LBRACE, + STATE(2979), 1, sym__var, - STATE(4289), 1, + STATE(3146), 1, + sym_block, + STATE(3148), 1, + sym_val_closure, + STATE(4312), 1, sym_comment, - STATE(4907), 1, + STATE(1329), 2, + sym__blosure, sym_val_variable, - STATE(5354), 1, - sym__variable_name, - [191470] = 8, + [192361] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7103), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 1, + sym_cmd_identifier, + STATE(907), 1, + sym__command_name, + STATE(1226), 1, + sym_val_string, + STATE(1246), 1, + sym__str_double_quotes, + STATE(4313), 1, + sym_comment, + ACTIONS(7105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [192387] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7638), 1, + ACTIONS(7795), 1, sym_identifier, - STATE(1644), 1, - sym__assignment_pattern, - STATE(2682), 1, + STATE(1661), 1, + sym__assignment_pattern_parenthesized, + STATE(2688), 1, sym__var, - STATE(4290), 1, + STATE(4314), 1, sym_comment, - STATE(4907), 1, + STATE(4963), 1, sym_val_variable, - STATE(5354), 1, + STATE(5351), 1, sym__variable_name, - [191495] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7965), 1, - anon_sym_DQUOTE2, - STATE(4291), 1, - sym_comment, - STATE(4384), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [191518] = 8, + STATE(5473), 1, + sym__assignment_pattern_parenthesized_last, + [192415] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7638), 1, + ACTIONS(7795), 1, sym_identifier, - STATE(1645), 1, + STATE(1666), 1, sym__assignment_pattern, - STATE(2682), 1, + STATE(2688), 1, sym__var, - STATE(4292), 1, + STATE(4315), 1, sym_comment, - STATE(4907), 1, + STATE(4963), 1, sym_val_variable, - STATE(5354), 1, + STATE(5417), 1, + sym__assignment_pattern_last, + STATE(5446), 1, sym__variable_name, - [191543] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7967), 1, - anon_sym_DOT2, - STATE(4293), 1, - sym_comment, - ACTIONS(3131), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3129), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [191562] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7969), 1, - anon_sym_DOT2, - STATE(4294), 1, - sym_comment, - ACTIONS(3125), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3123), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [191581] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7971), 1, - anon_sym_DQUOTE2, - STATE(4295), 1, - sym_comment, - STATE(4419), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [191604] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7973), 1, - anon_sym_DQUOTE2, - STATE(4295), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4296), 1, - sym_comment, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [191627] = 4, + [192443] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7977), 1, - anon_sym_COMMA, - STATE(4297), 1, - sym_comment, - ACTIONS(7975), 5, - sym_cmd_identifier, - anon_sym_RBRACK, + ACTIONS(7103), 1, anon_sym_DQUOTE, + ACTIONS(7912), 1, + sym_cmd_identifier, + STATE(1226), 1, + sym_val_string, + STATE(1246), 1, + sym__str_double_quotes, + STATE(1304), 1, + sym__command_name, + STATE(4316), 1, + sym_comment, + ACTIONS(7105), 2, sym__str_single_quotes, sym__str_back_ticks, - [191644] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(3240), 1, - sym_cell_path, - STATE(4298), 1, - sym_comment, - ACTIONS(1401), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [191665] = 5, + [192469] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2352), 1, - aux_sym_cell_path_repeat1, - STATE(2585), 1, - sym_path, - STATE(4299), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - [191684] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5489), 1, - anon_sym_DOT2, - STATE(2749), 1, - sym_cell_path, - STATE(4288), 1, - sym_path, - STATE(4300), 1, + ACTIONS(7103), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 1, + sym_cmd_identifier, + STATE(1226), 1, + sym_val_string, + STATE(1246), 1, + sym__str_double_quotes, + STATE(1305), 1, + sym__command_name, + STATE(4317), 1, sym_comment, - ACTIONS(1397), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [191705] = 4, + ACTIONS(7105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [192495] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3333), 1, - anon_sym_LF, - STATE(4301), 1, + ACTIONS(5249), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8099), 1, + aux_sym__immediate_decimal_token1, + STATE(4318), 1, sym_comment, - ACTIONS(3331), 5, + ACTIONS(2832), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [191722] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5525), 1, + ACTIONS(2834), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - STATE(3240), 1, - sym_cell_path, - STATE(4288), 1, - sym_path, - STATE(4302), 1, - sym_comment, - ACTIONS(1401), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [191743] = 6, + [192517] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(8013), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8101), 1, anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(3274), 1, - sym_cell_path, - STATE(4303), 1, - sym_comment, - ACTIONS(1391), 3, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - [191764] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3161), 1, - anon_sym_LF, - STATE(4304), 1, - sym_comment, - ACTIONS(3159), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [191781] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7979), 1, - sym__long_flag_identifier, - STATE(4305), 1, + STATE(4319), 1, sym_comment, - ACTIONS(2964), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2960), 3, - anon_sym_SEMI, + ACTIONS(2936), 5, anon_sym_PIPE, anon_sym_DASH, - [191800] = 8, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [192537] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7849), 1, - anon_sym_def, - ACTIONS(7851), 1, - anon_sym_extern, - ACTIONS(7853), 1, - anon_sym_module, - ACTIONS(7855), 1, - anon_sym_use, - ACTIONS(7981), 1, - anon_sym_alias, - ACTIONS(7983), 1, - anon_sym_const, - STATE(4306), 1, - sym_comment, - [191825] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7985), 1, - anon_sym_DOT2, - STATE(4307), 1, + STATE(4320), 1, sym_comment, - ACTIONS(3117), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3115), 3, - anon_sym_SEMI, + ACTIONS(2986), 6, anon_sym_PIPE, anon_sym_DASH, - [191844] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(7987), 1, - anon_sym_DQUOTE2, - STATE(4308), 1, - sym_comment, - STATE(4419), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [191867] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1631), 1, - sym__assignment_pattern_parenthesized, - STATE(2682), 1, - sym__var, - STATE(4309), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + [192552] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1340), 1, + sym_block, + STATE(4321), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5321), 1, - sym__variable_name, - [191892] = 8, + STATE(5536), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192575] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1629), 1, - sym__assignment_pattern_parenthesized, - STATE(2682), 1, - sym__var, - STATE(4310), 1, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1335), 1, + sym_block, + STATE(4322), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5321), 1, - sym__variable_name, - [191917] = 8, + STATE(5534), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192598] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1628), 1, - sym__assignment_pattern_parenthesized, - STATE(2682), 1, - sym__var, - STATE(4311), 1, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1332), 1, + sym_block, + STATE(4323), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5321), 1, - sym__variable_name, - [191942] = 7, + STATE(5532), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192621] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(7989), 1, + ACTIONS(8110), 1, anon_sym_DQUOTE2, - STATE(4308), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4312), 1, + STATE(4324), 1, sym_comment, - STATE(5092), 1, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [191965] = 4, - ACTIONS(105), 1, + [192644] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3305), 1, - anon_sym_LF, - STATE(4313), 1, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1342), 1, + sym_block, + STATE(4325), 1, sym_comment, - ACTIONS(3303), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5528), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192667] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7785), 1, anon_sym_DASH, - anon_sym_RBRACE, - [191982] = 7, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1343), 1, + sym_block, + STATE(4326), 1, + sym_comment, + STATE(5527), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192690] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7785), 1, anon_sym_DASH, - ACTIONS(7991), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(1461), 1, + STATE(1349), 1, sym_block, - STATE(4314), 1, + STATE(4327), 1, sym_comment, - STATE(5550), 1, + STATE(5526), 1, sym__flag, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [192005] = 4, + [192713] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3309), 1, + ACTIONS(3331), 1, anon_sym_LF, - STATE(4315), 1, + STATE(4328), 1, sym_comment, - ACTIONS(3307), 5, + ACTIONS(3329), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192022] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7993), 1, - anon_sym_DOT2, - ACTIONS(7995), 1, - anon_sym_LPAREN2, - ACTIONS(7997), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7999), 1, - anon_sym_DASH2, - ACTIONS(8001), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8003), 1, - aux_sym_short_flag_token1, - STATE(4316), 1, - sym_comment, - [192047] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8005), 1, - anon_sym_DOT2, - STATE(4317), 1, - sym_comment, - ACTIONS(3111), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3109), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [192066] = 7, + [192730] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8007), 1, + ACTIONS(8112), 1, anon_sym_DQUOTE2, - STATE(4318), 1, - sym_comment, - STATE(4419), 1, + STATE(4324), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, + STATE(4329), 1, + sym_comment, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [192089] = 4, + [192753] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1449), 1, + sym_block, + STATE(4330), 1, + sym_comment, + STATE(5539), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192776] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4331), 1, + sym_comment, + ACTIONS(8114), 6, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192791] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3325), 1, + ACTIONS(3353), 1, anon_sym_LF, - STATE(4319), 1, + STATE(4332), 1, sym_comment, - ACTIONS(3323), 5, + ACTIONS(3351), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192106] = 4, + [192808] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3329), 1, + ACTIONS(3335), 1, anon_sym_LF, - STATE(4320), 1, + STATE(4333), 1, sym_comment, - ACTIONS(3327), 5, + ACTIONS(3333), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192123] = 4, + [192825] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7797), 1, + anon_sym_DASH, + ACTIONS(8116), 1, + sym_identifier, + STATE(4334), 1, + sym_comment, + STATE(4491), 1, + aux_sym_overlay_use_repeat1, + STATE(5608), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192848] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3337), 1, + ACTIONS(3345), 1, anon_sym_LF, - STATE(4321), 1, + STATE(4335), 1, sym_comment, - ACTIONS(3335), 5, + ACTIONS(3343), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192140] = 4, + [192865] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1357), 1, + sym_block, + STATE(4336), 1, + sym_comment, + STATE(5529), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192888] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3343), 1, + ACTIONS(3377), 1, anon_sym_LF, - STATE(4322), 1, + STATE(4337), 1, sym_comment, - ACTIONS(3341), 5, + ACTIONS(3375), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192157] = 4, + [192905] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1527), 1, + sym_block, + STATE(4338), 1, + sym_comment, + STATE(5591), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192928] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1581), 1, + sym_block, + STATE(4339), 1, + sym_comment, + STATE(5581), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192951] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1579), 1, + sym_block, + STATE(4340), 1, + sym_comment, + STATE(5556), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192974] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1578), 1, + sym_block, + STATE(4341), 1, + sym_comment, + STATE(5557), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [192997] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8120), 1, + anon_sym_DOT2, + ACTIONS(8122), 1, + anon_sym_LPAREN2, + ACTIONS(8124), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8126), 1, + anon_sym_DASH2, + ACTIONS(8128), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8130), 1, + aux_sym_short_flag_token1, + STATE(4342), 1, + sym_comment, + [193022] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3347), 1, + ACTIONS(3429), 1, anon_sym_LF, - STATE(4323), 1, + STATE(4343), 1, sym_comment, - ACTIONS(3345), 5, + ACTIONS(3427), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192174] = 4, + [193039] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3351), 1, + ACTIONS(3433), 1, anon_sym_LF, - STATE(4324), 1, + STATE(4344), 1, sym_comment, - ACTIONS(3349), 5, + ACTIONS(3431), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192191] = 4, + [193056] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3355), 1, + ACTIONS(3461), 1, anon_sym_LF, - STATE(4325), 1, + STATE(4345), 1, sym_comment, - ACTIONS(3353), 5, + ACTIONS(3459), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192208] = 4, + [193073] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3359), 1, + ACTIONS(3465), 1, anon_sym_LF, - STATE(4326), 1, + STATE(4346), 1, sym_comment, - ACTIONS(3357), 5, + ACTIONS(3463), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192225] = 4, + [193090] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7797), 1, + anon_sym_DASH, + ACTIONS(8132), 1, + sym_identifier, + STATE(4347), 1, + sym_comment, + STATE(4470), 1, + aux_sym_overlay_use_repeat1, + STATE(5608), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [193113] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3363), 1, + ACTIONS(3469), 1, anon_sym_LF, - STATE(4327), 1, + STATE(4348), 1, sym_comment, - ACTIONS(3361), 5, + ACTIONS(3467), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192242] = 8, + [193130] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7845), 1, - anon_sym_alias, - ACTIONS(7847), 1, - anon_sym_const, - ACTIONS(7849), 1, - anon_sym_def, - ACTIONS(7851), 1, - anon_sym_extern, - ACTIONS(7853), 1, - anon_sym_module, - ACTIONS(7855), 1, - anon_sym_use, - STATE(4328), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(1660), 1, + sym__assignment_pattern_parenthesized, + STATE(2688), 1, + sym__var, + STATE(4349), 1, sym_comment, - [192267] = 4, + STATE(4963), 1, + sym_val_variable, + STATE(5407), 1, + sym__variable_name, + [193155] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8011), 1, - anon_sym_COMMA, - STATE(4329), 1, - sym_comment, - ACTIONS(8009), 5, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [192284] = 4, + STATE(1658), 1, + sym__assignment_pattern_parenthesized, + STATE(2688), 1, + sym__var, + STATE(4350), 1, + sym_comment, + STATE(4963), 1, + sym_val_variable, + STATE(5407), 1, + sym__variable_name, + [193180] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8015), 1, - anon_sym_COMMA, - STATE(4330), 1, + ACTIONS(5218), 1, + anon_sym_DOT2, + STATE(2425), 1, + sym_path, + STATE(4351), 1, sym_comment, - ACTIONS(8013), 5, + STATE(5464), 1, + sym_cell_path, + ACTIONS(6414), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [193201] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [192301] = 4, + STATE(1659), 1, + sym__assignment_pattern_parenthesized, + STATE(2688), 1, + sym__var, + STATE(4352), 1, + sym_comment, + STATE(4963), 1, + sym_val_variable, + STATE(5407), 1, + sym__variable_name, + [193226] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8134), 1, + anon_sym_DOT2, + ACTIONS(8136), 1, + anon_sym_LPAREN2, + ACTIONS(8138), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8140), 1, + anon_sym_DASH2, + ACTIONS(8142), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8144), 1, + aux_sym_short_flag_token1, + STATE(4353), 1, + sym_comment, + [193251] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3367), 1, + ACTIONS(3473), 1, anon_sym_LF, - STATE(4331), 1, + STATE(4354), 1, sym_comment, - ACTIONS(3365), 5, + ACTIONS(3471), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192318] = 4, + [193268] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3371), 1, + ACTIONS(3477), 1, anon_sym_LF, - STATE(4332), 1, + STATE(4355), 1, sym_comment, - ACTIONS(3369), 5, + ACTIONS(3475), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192335] = 7, + [193285] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8017), 1, + ACTIONS(5218), 1, + anon_sym_DOT2, + STATE(2425), 1, + sym_path, + STATE(3387), 1, + sym_cell_path, + STATE(4356), 1, + sym_comment, + ACTIONS(1457), 3, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + [193306] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5638), 1, + anon_sym_DOT2, + STATE(3267), 1, + sym_cell_path, + STATE(4357), 1, + sym_comment, + STATE(4447), 1, + sym_path, + ACTIONS(1469), 3, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(1372), 1, - sym_block, - STATE(4333), 1, + anon_sym_RBRACE, + [193327] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8061), 1, + anon_sym_def, + ACTIONS(8063), 1, + anon_sym_extern, + ACTIONS(8065), 1, + anon_sym_module, + ACTIONS(8067), 1, + anon_sym_use, + ACTIONS(8146), 1, + anon_sym_alias, + ACTIONS(8148), 1, + anon_sym_const, + STATE(4358), 1, sym_comment, - STATE(5513), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192358] = 4, + [193352] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5703), 1, + anon_sym_DOT2, + STATE(2795), 1, + sym_cell_path, + STATE(4359), 1, + sym_comment, + STATE(4447), 1, + sym_path, + ACTIONS(1402), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [193373] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3383), 1, + ACTIONS(3503), 1, anon_sym_LF, - STATE(4334), 1, + STATE(4360), 1, sym_comment, - ACTIONS(3381), 5, + ACTIONS(3501), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192375] = 4, + [193390] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3053), 1, + ACTIONS(3507), 1, anon_sym_LF, - STATE(4335), 1, + STATE(4361), 1, sym_comment, - ACTIONS(3051), 5, + ACTIONS(3505), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192392] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8019), 1, - anon_sym_DQUOTE2, - STATE(4336), 1, - sym_comment, - STATE(4361), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [192415] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1438), 1, - sym_block, - STATE(4337), 1, - sym_comment, - STATE(5509), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192438] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1440), 1, - sym_block, - STATE(4338), 1, - sym_comment, - STATE(5508), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192461] = 4, + [193407] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3511), 1, anon_sym_LF, - STATE(4339), 1, + STATE(4362), 1, sym_comment, - ACTIONS(3385), 5, + ACTIONS(3509), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192478] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1451), 1, - sym_block, - STATE(4340), 1, - sym_comment, - STATE(5507), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192501] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_DQUOTE2, - STATE(4341), 1, - sym_comment, - STATE(4419), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [192524] = 4, + [193424] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3395), 1, + ACTIONS(3515), 1, anon_sym_LF, - STATE(4342), 1, + STATE(4363), 1, sym_comment, - ACTIONS(3393), 5, + ACTIONS(3513), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192541] = 4, + [193441] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3399), 1, + ACTIONS(3579), 1, anon_sym_LF, - STATE(4343), 1, + STATE(4364), 1, sym_comment, - ACTIONS(3397), 5, + ACTIONS(3577), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192558] = 4, + [193458] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4344), 1, + ACTIONS(3598), 1, + anon_sym_LF, + STATE(4365), 1, sym_comment, - ACTIONS(3034), 3, + ACTIONS(3596), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - ACTIONS(3036), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - [192575] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(7097), 1, - anon_sym_DOLLAR, - ACTIONS(8023), 1, - sym_identifier, - STATE(1110), 1, - sym__var, - STATE(1260), 1, - sym_val_variable, - STATE(1391), 1, - sym__variable_name, - STATE(4345), 1, - sym_comment, - [192600] = 4, + anon_sym_RBRACE, + [193475] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3407), 1, + ACTIONS(3606), 1, anon_sym_LF, - STATE(4346), 1, + STATE(4366), 1, sym_comment, - ACTIONS(3405), 5, + ACTIONS(3604), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192617] = 4, + [193492] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3411), 1, + ACTIONS(3614), 1, anon_sym_LF, - STATE(4347), 1, + STATE(4367), 1, sym_comment, - ACTIONS(3409), 5, + ACTIONS(3612), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192634] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym_block, - STATE(4348), 1, - sym_comment, - STATE(5475), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192657] = 7, + [193509] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8025), 1, + ACTIONS(8150), 1, anon_sym_DQUOTE2, - STATE(4349), 1, + STATE(4368), 1, sym_comment, - STATE(4387), 1, + STATE(4488), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [192680] = 5, + [193532] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8027), 1, - anon_sym_DOT2, - STATE(4350), 1, - sym_comment, - ACTIONS(3105), 2, - ts_builtin_sym_end, + ACTIONS(3618), 1, anon_sym_LF, - ACTIONS(3103), 3, + STATE(4369), 1, + sym_comment, + ACTIONS(3616), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - [192699] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1536), 1, - sym_block, - STATE(4351), 1, - sym_comment, - STATE(5474), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192722] = 7, + anon_sym_RBRACE, + [193549] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8029), 1, + ACTIONS(8152), 1, anon_sym_DQUOTE2, - STATE(4318), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4352), 1, - sym_comment, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [192745] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1535), 1, - sym_block, - STATE(4353), 1, - sym_comment, - STATE(5469), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192768] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1367), 1, - sym_block, - STATE(4354), 1, - sym_comment, - STATE(5506), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192791] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1365), 1, - sym_block, - STATE(4355), 1, + STATE(4370), 1, sym_comment, - STATE(5505), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192814] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8031), 1, - anon_sym_DQUOTE2, - STATE(4341), 1, + STATE(4426), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4356), 1, - sym_comment, - STATE(5092), 1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [192837] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1350), 1, - sym_block, - STATE(4357), 1, - sym_comment, - STATE(5504), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [192860] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1638), 1, - sym__assignment_pattern_parenthesized, - STATE(2682), 1, - sym__var, - STATE(4358), 1, - sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5321), 1, - sym__variable_name, - [192885] = 4, + [193572] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3415), 1, + ACTIONS(3622), 1, anon_sym_LF, - STATE(4359), 1, + STATE(4371), 1, sym_comment, - ACTIONS(3413), 5, + ACTIONS(3620), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192902] = 4, + [193589] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3419), 1, + ACTIONS(3634), 1, anon_sym_LF, - STATE(4360), 1, + STATE(4372), 1, sym_comment, - ACTIONS(3417), 5, + ACTIONS(3632), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192919] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8033), 1, - anon_sym_DQUOTE2, - STATE(4361), 1, - sym_comment, - STATE(4419), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [192942] = 4, + [193606] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3427), 1, + ACTIONS(3640), 1, anon_sym_LF, - STATE(4362), 1, + STATE(4373), 1, sym_comment, - ACTIONS(3425), 5, + ACTIONS(3638), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [192959] = 4, + [193623] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4363), 1, + ACTIONS(5339), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8154), 1, + anon_sym_DOT2, + STATE(4374), 1, sym_comment, - ACTIONS(2874), 3, + ACTIONS(2934), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - ACTIONS(2876), 3, + ACTIONS(2936), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - [192976] = 5, + [193644] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8035), 1, - anon_sym_DOT2, - STATE(4364), 1, - sym_comment, - ACTIONS(3099), 2, - ts_builtin_sym_end, + ACTIONS(3644), 1, anon_sym_LF, - ACTIONS(3097), 3, + STATE(4375), 1, + sym_comment, + ACTIONS(3642), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - [192995] = 4, + anon_sym_RBRACE, + [193661] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3652), 1, anon_sym_LF, - STATE(4365), 1, + STATE(4376), 1, sym_comment, - ACTIONS(3429), 5, + ACTIONS(3650), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193012] = 7, + [193678] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7797), 1, anon_sym_DASH, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1261), 1, - sym_block, - STATE(4366), 1, + ACTIONS(8156), 1, + sym_identifier, + STATE(4347), 1, + aux_sym_overlay_use_repeat1, + STATE(4377), 1, sym_comment, - STATE(5497), 1, + STATE(5608), 1, sym__flag, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [193035] = 4, + [193701] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3435), 1, + ACTIONS(3656), 1, anon_sym_LF, - STATE(4367), 1, + STATE(4378), 1, sym_comment, - ACTIONS(3433), 5, + ACTIONS(3654), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193052] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8037), 1, - anon_sym_DOT2, - ACTIONS(8039), 1, - anon_sym_LPAREN2, - ACTIONS(8041), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8043), 1, - anon_sym_DASH2, - ACTIONS(8045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8047), 1, - aux_sym_short_flag_token1, - STATE(4368), 1, - sym_comment, - [193077] = 4, + [193718] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3439), 1, + ACTIONS(3666), 1, anon_sym_LF, - STATE(4369), 1, + STATE(4379), 1, sym_comment, - ACTIONS(3437), 5, + ACTIONS(3664), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193094] = 4, - ACTIONS(105), 1, + [193735] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LF, - STATE(4370), 1, + STATE(2393), 1, + aux_sym_cell_path_repeat1, + STATE(2628), 1, + sym_path, + STATE(4380), 1, sym_comment, - ACTIONS(3441), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH, + ACTIONS(1409), 4, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - [193111] = 4, + anon_sym_DOT2, + [193754] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3447), 1, + ACTIONS(3674), 1, anon_sym_LF, - STATE(4371), 1, + STATE(4381), 1, sym_comment, - ACTIONS(3445), 5, + ACTIONS(3672), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193128] = 7, + [193771] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7785), 1, anon_sym_DASH, - ACTIONS(7991), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - STATE(1498), 1, - sym_block, - STATE(4372), 1, + STATE(1481), 1, + sym_val_record, + STATE(4382), 1, sym_comment, - STATE(5555), 1, + STATE(5559), 1, sym__flag, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [193151] = 4, + [193794] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4373), 1, + ACTIONS(3678), 1, + anon_sym_LF, + STATE(4383), 1, sym_comment, - ACTIONS(2782), 3, + ACTIONS(3676), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - ACTIONS(2784), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - [193168] = 4, + anon_sym_RBRACE, + [193811] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3451), 1, + ACTIONS(3682), 1, anon_sym_LF, - STATE(4374), 1, + STATE(4384), 1, sym_comment, - ACTIONS(3449), 5, + ACTIONS(3680), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193185] = 4, + [193828] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3479), 1, + ACTIONS(3705), 1, anon_sym_LF, - STATE(4375), 1, + STATE(4385), 1, sym_comment, - ACTIONS(3477), 5, + ACTIONS(3703), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193202] = 4, + [193845] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3483), 1, + ACTIONS(3709), 1, anon_sym_LF, - STATE(4376), 1, + STATE(4386), 1, sym_comment, - ACTIONS(3481), 5, + ACTIONS(3707), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193219] = 4, + [193862] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3503), 1, + ACTIONS(3713), 1, anon_sym_LF, - STATE(4377), 1, + STATE(4387), 1, sym_comment, - ACTIONS(3501), 5, + ACTIONS(3711), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193236] = 7, - ACTIONS(3), 1, + [193879] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7640), 1, + ACTIONS(3717), 1, + anon_sym_LF, + STATE(4388), 1, + sym_comment, + ACTIONS(3715), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(8049), 1, - sym_identifier, - STATE(4378), 1, + anon_sym_RBRACE, + [193896] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3721), 1, + anon_sym_LF, + STATE(4389), 1, sym_comment, - STATE(4437), 1, - aux_sym_overlay_use_repeat1, - STATE(5516), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [193259] = 4, + ACTIONS(3719), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [193913] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3507), 1, + ACTIONS(3725), 1, anon_sym_LF, - STATE(4379), 1, + STATE(4390), 1, sym_comment, - ACTIONS(3505), 5, + ACTIONS(3723), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193276] = 8, - ACTIONS(3), 1, + [193930] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8037), 1, - anon_sym_DOT2, - ACTIONS(8039), 1, - anon_sym_LPAREN2, - ACTIONS(8041), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8051), 1, - anon_sym_DASH2, - ACTIONS(8053), 1, - aux_sym_short_flag_token1, - STATE(4380), 1, + ACTIONS(3729), 1, + anon_sym_LF, + STATE(4391), 1, sym_comment, - [193301] = 4, + ACTIONS(3727), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [193947] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3515), 1, + ACTIONS(3733), 1, anon_sym_LF, - STATE(4381), 1, + STATE(4392), 1, sym_comment, - ACTIONS(3513), 5, + ACTIONS(3731), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193318] = 4, + [193964] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3559), 1, + ACTIONS(3747), 1, anon_sym_LF, - STATE(4382), 1, + STATE(4393), 1, sym_comment, - ACTIONS(3557), 5, + ACTIONS(3745), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193335] = 4, + [193981] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3613), 1, + ACTIONS(3751), 1, anon_sym_LF, - STATE(4383), 1, + STATE(4394), 1, sym_comment, - ACTIONS(3611), 5, + ACTIONS(3749), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193352] = 7, + [193998] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(7300), 1, + anon_sym_DOLLAR, + ACTIONS(8160), 1, + sym_identifier, + STATE(1127), 1, + sym__var, + STATE(1296), 1, + sym_val_variable, + STATE(1417), 1, + sym__variable_name, + STATE(4395), 1, + sym_comment, + [194023] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8055), 1, + ACTIONS(8162), 1, anon_sym_DQUOTE2, - STATE(4384), 1, + STATE(4396), 1, sym_comment, - STATE(4419), 1, + STATE(4478), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [193375] = 4, + [194046] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3617), 1, + ACTIONS(3757), 1, anon_sym_LF, - STATE(4385), 1, + STATE(4397), 1, sym_comment, - ACTIONS(3615), 5, + ACTIONS(3755), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193392] = 4, + [194063] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3637), 1, + ACTIONS(3761), 1, anon_sym_LF, - STATE(4386), 1, + STATE(4398), 1, sym_comment, - ACTIONS(3635), 5, + ACTIONS(3759), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193409] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8057), 1, - anon_sym_DQUOTE2, - STATE(4387), 1, - sym_comment, - STATE(4419), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [193432] = 4, + [194080] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3641), 1, + ACTIONS(3769), 1, anon_sym_LF, - STATE(4388), 1, + STATE(4399), 1, sym_comment, - ACTIONS(3639), 5, + ACTIONS(3767), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193449] = 4, + [194097] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3649), 1, + ACTIONS(3773), 1, anon_sym_LF, - STATE(4389), 1, + STATE(4400), 1, sym_comment, - ACTIONS(3647), 5, + ACTIONS(3771), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193466] = 4, + [194114] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3653), 1, + ACTIONS(3777), 1, anon_sym_LF, - STATE(4390), 1, + STATE(4401), 1, sym_comment, - ACTIONS(3651), 5, + ACTIONS(3775), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193483] = 4, + [194131] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3661), 1, + ACTIONS(3781), 1, anon_sym_LF, - STATE(4391), 1, + STATE(4402), 1, sym_comment, - ACTIONS(3659), 5, + ACTIONS(3779), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193500] = 7, + [194148] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8059), 1, - anon_sym_DQUOTE2, - STATE(4392), 1, + ACTIONS(3240), 1, + anon_sym_LF, + ACTIONS(8164), 1, + anon_sym_DOT2, + STATE(4403), 1, sym_comment, - STATE(4419), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [193523] = 4, + ACTIONS(3238), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [194167] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3667), 1, + ACTIONS(3165), 1, anon_sym_LF, - STATE(4393), 1, + ACTIONS(8166), 1, + anon_sym_DOT2, + STATE(4404), 1, sym_comment, - ACTIONS(3665), 5, + ACTIONS(3163), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [193540] = 7, + [194186] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7640), 1, + ACTIONS(7785), 1, anon_sym_DASH, - ACTIONS(8061), 1, - sym_identifier, - STATE(4378), 1, - aux_sym_overlay_use_repeat1, - STATE(4394), 1, + ACTIONS(8168), 1, + anon_sym_LBRACE, + STATE(1508), 1, + sym_val_record, + STATE(4405), 1, sym_comment, - STATE(5516), 1, + STATE(5623), 1, sym__flag, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [193563] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4395), 1, - sym_comment, - ACTIONS(3232), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3230), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_else, - anon_sym_catch, - [193580] = 7, - ACTIONS(105), 1, + [194209] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8063), 1, - anon_sym_DQUOTE2, - STATE(4396), 1, + ACTIONS(5218), 1, + anon_sym_DOT2, + STATE(2425), 1, + sym_path, + STATE(3267), 1, + sym_cell_path, + STATE(4406), 1, sym_comment, - STATE(4419), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [193603] = 3, + ACTIONS(1469), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [194230] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4397), 1, + STATE(4407), 1, sym_comment, - ACTIONS(3036), 6, + ACTIONS(3258), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT2, - [193618] = 8, + [194245] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1646), 1, - sym__assignment_pattern, - STATE(2682), 1, - sym__var, - STATE(4398), 1, + ACTIONS(8061), 1, + anon_sym_def, + ACTIONS(8063), 1, + anon_sym_extern, + ACTIONS(8065), 1, + anon_sym_module, + ACTIONS(8067), 1, + anon_sym_use, + ACTIONS(8170), 1, + anon_sym_alias, + ACTIONS(8172), 1, + anon_sym_const, + STATE(4408), 1, sym_comment, - STATE(4907), 1, - sym_val_variable, - STATE(5354), 1, - sym__variable_name, - [193643] = 3, + [194270] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4399), 1, + STATE(4409), 1, sym_comment, - ACTIONS(2876), 6, + ACTIONS(2908), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT2, - [193658] = 4, + [194285] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3696), 1, + ACTIONS(3481), 1, anon_sym_LF, - STATE(4400), 1, + STATE(4410), 1, sym_comment, - ACTIONS(3694), 5, + ACTIONS(3479), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193675] = 7, + [194302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8065), 1, - anon_sym_LBRACE, - STATE(1455), 1, - sym_val_record, - STATE(4401), 1, - sym_comment, - STATE(5466), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [193698] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3700), 1, - anon_sym_LF, - STATE(4402), 1, + STATE(4411), 1, sym_comment, - ACTIONS(3698), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2834), 6, anon_sym_PIPE, anon_sym_DASH, - anon_sym_RBRACE, - [193715] = 4, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + [194317] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3704), 1, - anon_sym_LF, - STATE(4403), 1, + ACTIONS(8174), 1, + sym__long_flag_identifier, + STATE(4412), 1, sym_comment, - ACTIONS(3702), 5, + ACTIONS(3157), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3153), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - anon_sym_RBRACE, - [193732] = 4, + [194336] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3708), 1, + ACTIONS(3273), 1, anon_sym_LF, - STATE(4404), 1, + STATE(4413), 1, sym_comment, - ACTIONS(3706), 5, + ACTIONS(3271), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, anon_sym_RBRACE, - [193749] = 7, + [194353] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8067), 1, + ACTIONS(8176), 1, anon_sym_DQUOTE2, - STATE(4405), 1, - sym_comment, - STATE(4430), 1, + STATE(4368), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, + STATE(4414), 1, + sym_comment, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [193772] = 7, - ACTIONS(105), 1, + [194376] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, - anon_sym_LF, - STATE(1128), 1, - aux_sym__block_body_repeat1, - STATE(1400), 1, - sym__terminator, - STATE(4406), 1, + ACTIONS(7785), 1, + anon_sym_DASH, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1543), 1, + sym_block, + STATE(4415), 1, sym_comment, - ACTIONS(8069), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [193795] = 5, + STATE(5567), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [194399] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8057), 1, + anon_sym_alias, + ACTIONS(8059), 1, + anon_sym_const, + ACTIONS(8061), 1, + anon_sym_def, + ACTIONS(8063), 1, + anon_sym_extern, + ACTIONS(8065), 1, + anon_sym_module, + ACTIONS(8067), 1, + anon_sym_use, + STATE(4416), 1, + sym_comment, + [194424] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2964), 1, + ACTIONS(3157), 1, anon_sym_LF, - ACTIONS(8071), 1, + ACTIONS(8178), 1, sym__long_flag_identifier, - STATE(4407), 1, + STATE(4417), 1, sym_comment, - ACTIONS(2960), 4, + ACTIONS(3153), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [193814] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4408), 1, - sym_comment, - ACTIONS(2806), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - ACTIONS(2808), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - [193831] = 3, + [194443] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4409), 1, + ACTIONS(8182), 1, + anon_sym_COMMA, + STATE(4418), 1, sym_comment, - ACTIONS(2784), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [193846] = 7, - ACTIONS(3), 1, + ACTIONS(8180), 5, + sym_cmd_identifier, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194460] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1484), 1, - sym_block, - STATE(4410), 1, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8184), 1, + anon_sym_DQUOTE2, + STATE(4419), 1, sym_comment, - STATE(5523), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [193869] = 7, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [194483] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8073), 1, + ACTIONS(8186), 1, anon_sym_DQUOTE2, - STATE(4392), 1, + STATE(4419), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4411), 1, + STATE(4420), 1, sym_comment, - STATE(5092), 1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [193892] = 5, - ACTIONS(105), 1, + [194506] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8077), 1, - anon_sym_LF, - ACTIONS(8079), 1, - anon_sym_else, - STATE(4412), 1, + ACTIONS(5218), 1, + anon_sym_DOT2, + STATE(2425), 1, + sym_path, + STATE(4421), 1, sym_comment, - ACTIONS(8075), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5340), 1, + sym_cell_path, + ACTIONS(6443), 3, anon_sym_PIPE, - anon_sym_RBRACE, - [193911] = 3, + anon_sym_if, + anon_sym_EQ_GT, + [194527] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8188), 1, + anon_sym_DQUOTE2, + STATE(4422), 1, + sym_comment, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [194550] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4413), 1, + ACTIONS(8192), 1, + anon_sym_COMMA, + STATE(4423), 1, sym_comment, - ACTIONS(8081), 6, + ACTIONS(8190), 5, sym_identifier, - anon_sym_COMMA, anon_sym_GT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [193926] = 8, + [194567] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7949), 1, - anon_sym_DOT2, - ACTIONS(7951), 1, - anon_sym_LPAREN2, - ACTIONS(7953), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8083), 1, - anon_sym_DASH2, - ACTIONS(8085), 1, - aux_sym_short_flag_token1, - STATE(4414), 1, + ACTIONS(8196), 1, + anon_sym_COMMA, + STATE(4424), 1, sym_comment, - [193951] = 4, + ACTIONS(8194), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194584] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1517), 1, - anon_sym_LF, - STATE(4415), 1, + STATE(4425), 1, sym_comment, - ACTIONS(1515), 5, + ACTIONS(3288), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3286), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_RBRACE, - [193968] = 7, + anon_sym_else, + anon_sym_catch, + [194601] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8087), 1, + ACTIONS(8198), 1, anon_sym_DQUOTE2, - STATE(4416), 1, + STATE(4426), 1, sym_comment, - STATE(4419), 1, + STATE(4488), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [193991] = 3, + [194624] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3230), 1, + anon_sym_LF, + STATE(4427), 1, + sym_comment, + ACTIONS(3228), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_RBRACE, + [194641] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4417), 1, + STATE(4428), 1, sym_comment, - ACTIONS(1634), 6, + ACTIONS(1627), 6, sym_cmd_identifier, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [194006] = 5, - ACTIONS(3), 1, + [194656] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2960), 1, - sym_cmd_identifier, - ACTIONS(8089), 1, - sym__long_flag_identifier, - STATE(4418), 1, + STATE(4429), 1, sym_comment, - ACTIONS(2964), 4, + ACTIONS(3256), 3, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [194025] = 6, + ACTIONS(3258), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + [194673] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8091), 1, - anon_sym_LPAREN, - ACTIONS(8097), 1, - anon_sym_DQUOTE2, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(8094), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(4419), 2, + STATE(4430), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [194046] = 7, + ACTIONS(2984), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + ACTIONS(2986), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + [194690] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3254), 1, + ACTIONS(3357), 1, anon_sym_SEMI, - ACTIONS(3256), 1, + ACTIONS(3359), 1, anon_sym_LF, - STATE(1400), 1, + STATE(1279), 1, sym__terminator, - STATE(4406), 1, - aux_sym__block_body_repeat1, - STATE(4420), 1, + STATE(4431), 1, sym_comment, - ACTIONS(8099), 2, + STATE(4446), 1, + aux_sym__block_body_repeat1, + ACTIONS(8200), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [194069] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8101), 1, - anon_sym_DQUOTE2, - STATE(4421), 1, - sym_comment, - STATE(4424), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [194092] = 6, + [194713] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5095), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8103), 1, - anon_sym_DOT2, - STATE(4422), 1, + STATE(4432), 1, sym_comment, - ACTIONS(2806), 2, + ACTIONS(2906), 3, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2808), 2, + anon_sym_DASH, + ACTIONS(2908), 3, ts_builtin_sym_end, anon_sym_LF, - [194113] = 7, + anon_sym_DOT2, + [194730] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8202), 1, anon_sym_DQUOTE2, - STATE(4416), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4423), 1, + STATE(4433), 1, sym_comment, - STATE(5092), 1, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [194136] = 7, + [194753] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8108), 1, - anon_sym_DQUOTE2, - STATE(4419), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8206), 1, + anon_sym_LF, + STATE(2532), 1, + aux_sym_pipe_element_repeat1, + STATE(4434), 1, sym_comment, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [194159] = 3, + ACTIONS(8204), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [194774] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4425), 1, - sym_comment, - ACTIONS(2808), 6, - anon_sym_PIPE, + ACTIONS(7785), 1, anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [194174] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8110), 1, - anon_sym_alias, - ACTIONS(8112), 1, - anon_sym_const, - ACTIONS(8114), 1, - anon_sym_def, - ACTIONS(8116), 1, - anon_sym_extern, ACTIONS(8118), 1, - anon_sym_module, - ACTIONS(8120), 1, - anon_sym_use, - STATE(4426), 1, + anon_sym_LBRACE, + STATE(1627), 1, + sym_block, + STATE(4435), 1, sym_comment, - [194199] = 7, + STATE(5545), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [194797] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7785), 1, anon_sym_DASH, - ACTIONS(7991), 1, + ACTIONS(8118), 1, anon_sym_LBRACE, - STATE(1494), 1, + STATE(1619), 1, sym_block, - STATE(4427), 1, + STATE(4436), 1, sym_comment, - STATE(5519), 1, + STATE(5543), 1, sym__flag, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [194222] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7961), 1, - anon_sym_LPAREN, - ACTIONS(8122), 1, - anon_sym_DQUOTE2, - STATE(4396), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4428), 1, - sym_comment, - STATE(5092), 1, - sym_expr_interpolated, - ACTIONS(7963), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [194245] = 7, + [194820] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7785), 1, anon_sym_DASH, - ACTIONS(7991), 1, + ACTIONS(8118), 1, anon_sym_LBRACE, - STATE(1506), 1, + STATE(1618), 1, sym_block, - STATE(4429), 1, + STATE(4437), 1, sym_comment, - STATE(5553), 1, + STATE(5542), 1, sym__flag, - STATE(5053), 2, + STATE(4976), 2, sym_short_flag, sym_long_flag, - [194268] = 7, + [194843] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4438), 1, + sym_comment, + ACTIONS(2832), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + ACTIONS(2834), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + [194860] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8211), 1, + anon_sym_LF, + STATE(2534), 1, + aux_sym_pipe_element_repeat1, + STATE(4439), 1, + sym_comment, + ACTIONS(8209), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [194881] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8124), 1, + ACTIONS(8214), 1, anon_sym_DQUOTE2, - STATE(4419), 1, + STATE(4433), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4430), 1, + STATE(4440), 1, sym_comment, - STATE(5092), 1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [194291] = 7, - ACTIONS(105), 1, + [194904] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, - anon_sym_LF, - STATE(1128), 1, - aux_sym__block_body_repeat1, - STATE(1400), 1, - sym__terminator, - STATE(4431), 1, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(1680), 1, + sym__assignment_pattern, + STATE(2688), 1, + sym__var, + STATE(4441), 1, sym_comment, - ACTIONS(8099), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [194314] = 8, + STATE(4963), 1, + sym_val_variable, + STATE(5363), 1, + sym__variable_name, + [194929] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(1675), 1, + sym__assignment_pattern, + STATE(2688), 1, + sym__var, + STATE(4442), 1, + sym_comment, + STATE(4963), 1, + sym_val_variable, + STATE(5363), 1, + sym__variable_name, + [194954] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(1661), 1, + sym__assignment_pattern_parenthesized, + STATE(2688), 1, + sym__var, + STATE(4443), 1, + sym_comment, + STATE(4963), 1, + sym_val_variable, + STATE(5407), 1, + sym__variable_name, + [194979] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(1656), 1, + sym__assignment_pattern, + STATE(2688), 1, + sym__var, + STATE(4444), 1, + sym_comment, + STATE(4963), 1, + sym_val_variable, + STATE(5363), 1, + sym__variable_name, + [195004] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7849), 1, + ACTIONS(8061), 1, anon_sym_def, - ACTIONS(7851), 1, + ACTIONS(8063), 1, anon_sym_extern, - ACTIONS(7853), 1, + ACTIONS(8065), 1, anon_sym_module, - ACTIONS(7855), 1, + ACTIONS(8067), 1, anon_sym_use, - ACTIONS(8126), 1, + ACTIONS(8216), 1, anon_sym_alias, - ACTIONS(8128), 1, + ACTIONS(8218), 1, anon_sym_const, - STATE(4432), 1, + STATE(4445), 1, sym_comment, - [194339] = 5, + [195029] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8132), 1, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LF, - ACTIONS(8134), 1, - anon_sym_catch, - STATE(4433), 1, + STATE(1195), 1, + aux_sym__block_body_repeat1, + STATE(1279), 1, + sym__terminator, + STATE(4446), 1, sym_comment, - ACTIONS(8130), 4, - anon_sym_SEMI, + ACTIONS(8220), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [194358] = 7, + [195052] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7640), 1, - anon_sym_DASH, - ACTIONS(8136), 1, - sym_identifier, - STATE(4434), 1, - sym_comment, - STATE(4451), 1, - aux_sym_overlay_use_repeat1, - STATE(5516), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [194381] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3131), 1, - anon_sym_LF, - ACTIONS(8138), 1, + ACTIONS(5218), 1, anon_sym_DOT2, - STATE(4435), 1, + STATE(2628), 1, + sym_path, + STATE(4380), 1, + aux_sym_cell_path_repeat1, + STATE(4447), 1, sym_comment, - ACTIONS(3129), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1396), 3, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - [194400] = 6, + [195073] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5095), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8140), 1, - anon_sym_DOT2, - STATE(4436), 1, - sym_comment, - ACTIONS(2806), 2, + ACTIONS(3357), 1, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2808), 2, - ts_builtin_sym_end, - anon_sym_LF, - [194421] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2616), 1, - sym_identifier, - ACTIONS(8142), 1, - anon_sym_DASH, - STATE(5516), 1, - sym__flag, - STATE(4437), 2, - sym_comment, - aux_sym_overlay_use_repeat1, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [194442] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(3359), 1, anon_sym_LF, - ACTIONS(8145), 1, - anon_sym_DOT2, - STATE(4438), 1, + STATE(1279), 1, + sym__terminator, + STATE(4448), 1, sym_comment, - ACTIONS(3123), 4, - anon_sym_SEMI, + STATE(4458), 1, + aux_sym__block_body_repeat1, + ACTIONS(8220), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [194461] = 3, + [195096] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4439), 1, + ACTIONS(8222), 1, + anon_sym_DOT2, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8226), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8228), 1, + anon_sym_DASH2, + ACTIONS(8230), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8232), 1, + aux_sym_short_flag_token1, + STATE(4449), 1, sym_comment, - ACTIONS(1477), 6, + [195121] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3153), 1, sym_cmd_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(8234), 1, + sym__long_flag_identifier, + STATE(4450), 1, + sym_comment, + ACTIONS(3157), 4, + anon_sym_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [194476] = 4, + [195140] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8222), 1, + anon_sym_DOT2, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8226), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8230), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8236), 1, + anon_sym_DASH2, + ACTIONS(8238), 1, + aux_sym_short_flag_token1, + STATE(4451), 1, + sym_comment, + [195165] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3155), 1, + ACTIONS(8242), 1, anon_sym_LF, - STATE(4440), 1, + ACTIONS(8244), 1, + anon_sym_else, + STATE(4452), 1, sym_comment, - ACTIONS(3153), 5, + ACTIONS(8240), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, anon_sym_RBRACE, - [194493] = 6, + [195184] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8149), 1, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8246), 1, + anon_sym_DQUOTE2, + STATE(4453), 1, + sym_comment, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195207] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8250), 1, anon_sym_LF, - STATE(2545), 1, - aux_sym_pipe_element_repeat1, - STATE(4441), 1, + ACTIONS(8252), 1, + anon_sym_catch, + STATE(4454), 1, sym_comment, - ACTIONS(8147), 3, + ACTIONS(8248), 4, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [194514] = 5, + [195226] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6114), 1, + ACTIONS(6263), 1, aux_sym__immediate_decimal_token2, - ACTIONS(8152), 1, + ACTIONS(8254), 1, aux_sym__immediate_decimal_token1, - STATE(4442), 1, + STATE(4455), 1, sym_comment, - ACTIONS(2808), 4, + ACTIONS(2834), 4, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT2, - [194533] = 6, - ACTIONS(105), 1, + [195245] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8156), 1, - anon_sym_LF, - STATE(2534), 1, - aux_sym_pipe_element_repeat1, - STATE(4443), 1, + ACTIONS(8256), 1, + anon_sym_alias, + ACTIONS(8258), 1, + anon_sym_const, + ACTIONS(8260), 1, + anon_sym_def, + ACTIONS(8262), 1, + anon_sym_extern, + ACTIONS(8264), 1, + anon_sym_module, + ACTIONS(8266), 1, + anon_sym_use, + STATE(4456), 1, sym_comment, - ACTIONS(8154), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [194554] = 6, + [195270] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5220), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8159), 1, + ACTIONS(8268), 1, anon_sym_DOT2, - STATE(4444), 1, + STATE(4457), 1, sym_comment, - ACTIONS(2904), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2906), 2, + ACTIONS(3240), 2, ts_builtin_sym_end, anon_sym_LF, - [194575] = 5, + ACTIONS(3238), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [195289] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3117), 1, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LF, - ACTIONS(8161), 1, - anon_sym_DOT2, - STATE(4445), 1, + STATE(1195), 1, + aux_sym__block_body_repeat1, + STATE(1279), 1, + sym__terminator, + STATE(4458), 1, sym_comment, - ACTIONS(3115), 4, - anon_sym_SEMI, + ACTIONS(8270), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [194594] = 3, + [195312] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4446), 1, - sym_comment, - ACTIONS(1456), 6, - sym_cmd_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [194609] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3111), 1, - anon_sym_LF, - ACTIONS(8163), 1, + ACTIONS(8272), 1, anon_sym_DOT2, - STATE(4447), 1, + STATE(4459), 1, sym_comment, - ACTIONS(3109), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3240), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [194628] = 7, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [195329] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8165), 1, + ACTIONS(8274), 1, anon_sym_DQUOTE2, - STATE(4419), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4448), 1, + STATE(4460), 1, sym_comment, - STATE(5092), 1, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [194651] = 6, + [195352] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5220), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8167), 1, - anon_sym_DOT2, - STATE(4449), 1, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8276), 1, + anon_sym_DQUOTE2, + STATE(4461), 1, sym_comment, - ACTIONS(2904), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2906), 2, - ts_builtin_sym_end, - anon_sym_LF, - [194672] = 7, + STATE(4469), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195375] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8170), 1, + ACTIONS(8278), 1, anon_sym_DQUOTE2, - STATE(4448), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4450), 1, + STATE(4462), 1, sym_comment, - STATE(5092), 1, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, sym_expr_interpolated, - ACTIONS(7963), 2, + ACTIONS(8108), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [194695] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7640), 1, - anon_sym_DASH, - ACTIONS(8172), 1, - sym_identifier, - STATE(4437), 1, - aux_sym_overlay_use_repeat1, - STATE(4451), 1, - sym_comment, - STATE(5516), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [194718] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6110), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - STATE(4452), 1, - sym_comment, - ACTIONS(2784), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - [194737] = 5, + [195398] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3099), 1, + ACTIONS(3214), 1, anon_sym_LF, - ACTIONS(8176), 1, + ACTIONS(8280), 1, anon_sym_DOT2, - STATE(4453), 1, + STATE(4463), 1, sym_comment, - ACTIONS(3097), 4, + ACTIONS(3212), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [194756] = 7, - ACTIONS(3), 1, + [195417] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8178), 1, - anon_sym_LBRACE, - STATE(1489), 1, - sym_val_record, - STATE(4454), 1, + ACTIONS(5249), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8282), 1, + anon_sym_DOT2, + STATE(4464), 1, sym_comment, - STATE(5545), 1, - sym__flag, - STATE(5053), 2, - sym_short_flag, - sym_long_flag, - [194779] = 5, + ACTIONS(2832), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2834), 2, + ts_builtin_sym_end, + anon_sym_LF, + [195438] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3105), 1, + ACTIONS(3208), 1, anon_sym_LF, - ACTIONS(8180), 1, + ACTIONS(8285), 1, anon_sym_DOT2, - STATE(4455), 1, + STATE(4465), 1, sym_comment, - ACTIONS(3103), 4, + ACTIONS(3206), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [194798] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, - STATE(4456), 1, - sym_comment, - STATE(5570), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [194818] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8192), 1, - anon_sym_SQUOTE, - STATE(4457), 1, - sym_comment, - STATE(4515), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, - sym_expr_interpolated, - [194840] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8194), 1, - anon_sym_DASH, - ACTIONS(8196), 1, - anon_sym_in, - STATE(4458), 1, - sym_comment, - STATE(5799), 1, - sym__flag, - STATE(6127), 2, - sym_short_flag, - sym_long_flag, - [194860] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6158), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8198), 1, - aux_sym__immediate_decimal_token1, - STATE(4459), 1, - sym_comment, - ACTIONS(2808), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [194878] = 4, + [195457] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4460), 1, + ACTIONS(8287), 1, + anon_sym_DOT2, + STATE(4466), 1, sym_comment, - ACTIONS(3439), 2, + ACTIONS(3165), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3437), 3, + ACTIONS(3163), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [194894] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8200), 1, - anon_sym_DQUOTE, - ACTIONS(8204), 1, - aux_sym_path_token1, - STATE(728), 1, - sym__str_double_quotes, - STATE(4461), 1, - sym_comment, - ACTIONS(8202), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [194914] = 6, - ACTIONS(3), 1, + [195476] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8206), 1, - anon_sym_DQUOTE, - ACTIONS(8210), 1, - aux_sym_path_token1, - STATE(2350), 1, - sym__str_double_quotes, - STATE(4462), 1, + ACTIONS(3200), 1, + anon_sym_LF, + ACTIONS(8289), 1, + anon_sym_DOT2, + STATE(4467), 1, sym_comment, - ACTIONS(8208), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [194934] = 6, + ACTIONS(3198), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [195495] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8214), 1, + ACTIONS(3173), 1, anon_sym_LF, - STATE(2482), 1, - aux_sym_pipe_element_repeat1, - STATE(4463), 1, + ACTIONS(8291), 1, + anon_sym_DOT2, + STATE(4468), 1, sym_comment, - ACTIONS(8212), 2, + ACTIONS(3171), 4, anon_sym_SEMI, anon_sym_RPAREN, - [194954] = 7, + anon_sym_PIPE, + anon_sym_RBRACE, + [195514] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, + ACTIONS(8106), 1, anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8217), 1, - anon_sym_SQUOTE, - STATE(4464), 1, + ACTIONS(8293), 1, + anon_sym_DQUOTE2, + STATE(4469), 1, sym_comment, - STATE(4515), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, sym_expr_interpolated, - [194976] = 3, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195537] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4465), 1, - sym_comment, - ACTIONS(3451), 5, - anon_sym_PIPE, + ACTIONS(2711), 1, + sym_identifier, + ACTIONS(8295), 1, anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [194990] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8221), 1, - anon_sym_LF, - STATE(2501), 1, - aux_sym_pipe_element_repeat1, - STATE(4466), 1, + STATE(5608), 1, + sym__flag, + STATE(4470), 2, sym_comment, - ACTIONS(8219), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [195010] = 4, + aux_sym_overlay_use_repeat1, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [195558] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8226), 1, + ACTIONS(1538), 1, anon_sym_LF, - STATE(4467), 1, + STATE(4471), 1, sym_comment, - ACTIONS(8224), 4, + ACTIONS(1536), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH, anon_sym_RBRACE, - [195026] = 6, + [195575] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8230), 1, - anon_sym_LF, - STATE(2507), 1, - aux_sym_pipe_element_repeat1, - STATE(4468), 1, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8298), 1, + anon_sym_DQUOTE2, + STATE(4472), 1, sym_comment, - ACTIONS(8228), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [195046] = 4, + STATE(4480), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195598] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4469), 1, - sym_comment, - ACTIONS(1517), 2, - ts_builtin_sym_end, + ACTIONS(3234), 1, anon_sym_LF, - ACTIONS(1515), 3, + STATE(4473), 1, + sym_comment, + ACTIONS(3232), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH, - [195062] = 7, - ACTIONS(105), 1, + anon_sym_RBRACE, + [195615] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8233), 1, - anon_sym_SQUOTE, - STATE(4464), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4470), 1, + STATE(4474), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [195084] = 7, - ACTIONS(105), 1, + ACTIONS(1439), 6, + sym_cmd_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [195630] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, - anon_sym_LF, - ACTIONS(8235), 1, - anon_sym_RPAREN, - STATE(1400), 1, - sym__terminator, - STATE(4471), 1, + ACTIONS(6282), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8300), 1, + aux_sym__immediate_decimal_token1, + STATE(4475), 1, sym_comment, - STATE(4723), 1, - aux_sym__block_body_repeat1, - [195106] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8237), 1, + ACTIONS(2908), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT2, - STATE(4472), 1, - sym_comment, - ACTIONS(3129), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3131), 2, - ts_builtin_sym_end, - anon_sym_LF, - [195124] = 5, + [195649] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8239), 1, + ACTIONS(5249), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8302), 1, anon_sym_DOT2, - STATE(4473), 1, + STATE(4476), 1, sym_comment, - ACTIONS(3123), 2, + ACTIONS(2832), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3125), 2, + ACTIONS(2834), 2, ts_builtin_sym_end, anon_sym_LF, - [195142] = 6, + [195670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8241), 1, - anon_sym_DQUOTE, - ACTIONS(8245), 1, - aux_sym_path_token1, - STATE(3071), 1, - sym__str_double_quotes, - STATE(4474), 1, + STATE(4477), 1, sym_comment, - ACTIONS(8243), 2, + ACTIONS(1443), 6, + sym_cmd_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [195162] = 4, + [195685] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4475), 1, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8304), 1, + anon_sym_DQUOTE2, + STATE(4478), 1, sym_comment, - ACTIONS(3435), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3433), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [195178] = 4, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195708] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4476), 1, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8306), 1, + anon_sym_DQUOTE2, + STATE(4422), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4479), 1, + sym_comment, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195731] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8308), 1, + anon_sym_DQUOTE2, + STATE(4480), 1, + sym_comment, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195754] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8310), 1, + anon_sym_DOT2, + STATE(4481), 1, sym_comment, - ACTIONS(3653), 2, + ACTIONS(3214), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3651), 3, + ACTIONS(3212), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [195194] = 6, + [195773] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4339), 1, - anon_sym_DQUOTE, - ACTIONS(8249), 1, - aux_sym_path_token1, - STATE(2599), 1, - sym__str_double_quotes, - STATE(4477), 1, - sym_comment, - ACTIONS(8247), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [195214] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8253), 1, - anon_sym_LF, - STATE(4478), 1, + ACTIONS(8312), 1, + anon_sym_DOT2, + ACTIONS(8314), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8316), 1, + aux_sym_unquoted_token2, + STATE(4482), 1, sym_comment, - ACTIONS(8251), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1447), 3, anon_sym_PIPE, - anon_sym_RBRACE, - [195230] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, - anon_sym_LF, - STATE(1408), 1, - sym__terminator, - STATE(4479), 1, - sym_comment, - ACTIONS(8255), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [195250] = 7, + anon_sym_if, + anon_sym_EQ_GT, + [195794] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2819), 1, + ACTIONS(2968), 1, anon_sym_DOLLAR, - ACTIONS(7638), 1, + ACTIONS(7795), 1, sym_identifier, - STATE(2682), 1, + STATE(1666), 1, + sym__assignment_pattern, + STATE(2688), 1, sym__var, - STATE(4480), 1, + STATE(4483), 1, sym_comment, - STATE(4612), 1, - sym__variable_name, - STATE(4907), 1, + STATE(4963), 1, sym_val_variable, - [195272] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, - anon_sym_LF, - ACTIONS(8257), 1, - anon_sym_RPAREN, - STATE(1400), 1, - sym__terminator, - STATE(4481), 1, - sym_comment, - STATE(4627), 1, - aux_sym__block_body_repeat1, - [195294] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(8261), 1, - aux_sym_path_token1, - STATE(2860), 1, - sym__str_double_quotes, - STATE(4482), 1, - sym_comment, - ACTIONS(8259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [195314] = 4, + STATE(5363), 1, + sym__variable_name, + [195819] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4483), 1, + ACTIONS(8318), 1, + anon_sym_DOT2, + STATE(4484), 1, sym_comment, - ACTIONS(3447), 2, + ACTIONS(3208), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3445), 3, + ACTIONS(3206), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [195330] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4484), 1, - sym_comment, - ACTIONS(3708), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195344] = 3, - ACTIONS(3), 1, + [195838] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8320), 1, + anon_sym_DOT2, STATE(4485), 1, sym_comment, - ACTIONS(3704), 5, + ACTIONS(3200), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3198), 3, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195358] = 3, - ACTIONS(3), 1, + [195857] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8322), 1, + anon_sym_DQUOTE2, + STATE(4453), 1, + aux_sym__inter_double_quotes_repeat1, STATE(4486), 1, sym_comment, - ACTIONS(3700), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195372] = 4, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195880] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8324), 1, + anon_sym_DOT2, STATE(4487), 1, sym_comment, - ACTIONS(3451), 2, + ACTIONS(3173), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3449), 3, + ACTIONS(3171), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [195388] = 3, - ACTIONS(3), 1, + [195899] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4488), 1, + ACTIONS(8326), 1, + anon_sym_LPAREN, + ACTIONS(8332), 1, + anon_sym_DQUOTE2, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8329), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(4488), 2, sym_comment, - ACTIONS(3696), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195402] = 6, - ACTIONS(3), 1, + aux_sym__inter_double_quotes_repeat1, + [195920] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8334), 1, + anon_sym_DQUOTE2, + STATE(4462), 1, + aux_sym__inter_double_quotes_repeat1, STATE(4489), 1, sym_comment, - STATE(6108), 1, - sym__immediate_decimal, - ACTIONS(7020), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [195422] = 4, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195943] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8336), 1, + anon_sym_DQUOTE2, STATE(4490), 1, sym_comment, - ACTIONS(3479), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3477), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [195438] = 4, - ACTIONS(105), 1, + STATE(4492), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195966] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7797), 1, + anon_sym_DASH, + ACTIONS(8338), 1, + sym_identifier, + STATE(4470), 1, + aux_sym_overlay_use_repeat1, STATE(4491), 1, sym_comment, - ACTIONS(3483), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3481), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [195454] = 4, + STATE(5608), 1, + sym__flag, + STATE(4976), 2, + sym_short_flag, + sym_long_flag, + [195989] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8340), 1, + anon_sym_DQUOTE2, + STATE(4488), 1, + aux_sym__inter_double_quotes_repeat1, STATE(4492), 1, sym_comment, - ACTIONS(3503), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3501), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [195470] = 3, - ACTIONS(3), 1, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196012] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5339), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8342), 1, + anon_sym_DOT2, STATE(4493), 1, sym_comment, - ACTIONS(3667), 5, + ACTIONS(2934), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195484] = 3, + ACTIONS(2936), 2, + ts_builtin_sym_end, + anon_sym_LF, + [196033] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8345), 1, + anon_sym_DOT2, STATE(4494), 1, sym_comment, - ACTIONS(3661), 5, + ACTIONS(3165), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [195498] = 4, - ACTIONS(105), 1, + [196050] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8265), 1, - anon_sym_LF, + ACTIONS(8134), 1, + anon_sym_DOT2, + ACTIONS(8136), 1, + anon_sym_LPAREN2, + ACTIONS(8138), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8142), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8347), 1, + anon_sym_DASH2, + ACTIONS(8349), 1, + aux_sym_short_flag_token1, STATE(4495), 1, sym_comment, - ACTIONS(8263), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [195514] = 7, - ACTIONS(3), 1, + [196075] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_DOLLAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(2682), 1, - sym__var, + ACTIONS(8106), 1, + anon_sym_LPAREN, + ACTIONS(8351), 1, + anon_sym_DQUOTE2, + STATE(4460), 1, + aux_sym__inter_double_quotes_repeat1, STATE(4496), 1, sym_comment, - STATE(4666), 1, - sym__variable_name, - STATE(4907), 1, - sym_val_variable, - [195536] = 4, + STATE(4922), 1, + sym_expr_interpolated, + ACTIONS(8108), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196098] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8269), 1, + ACTIONS(8355), 1, anon_sym_LF, STATE(4497), 1, sym_comment, - ACTIONS(8267), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [195552] = 5, + [196114] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8271), 1, - anon_sym_catch, STATE(4498), 1, sym_comment, - ACTIONS(8130), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8132), 2, + ACTIONS(3721), 2, ts_builtin_sym_end, anon_sym_LF, - [195570] = 7, - ACTIONS(105), 1, + ACTIONS(3719), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [196130] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8273), 1, - anon_sym_SQUOTE, + ACTIONS(8357), 1, + anon_sym_DQUOTE, + ACTIONS(8361), 1, + aux_sym_path_token1, + STATE(566), 1, + sym__str_double_quotes, STATE(4499), 1, sym_comment, - STATE(4539), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, - sym_expr_interpolated, - [195592] = 3, + ACTIONS(8359), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [196150] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8363), 1, + anon_sym_DQUOTE, + ACTIONS(8367), 1, + aux_sym_path_token1, + STATE(982), 1, + sym__str_double_quotes, STATE(4500), 1, sym_comment, - ACTIONS(3653), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195606] = 3, - ACTIONS(3), 1, + ACTIONS(8365), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [196170] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8369), 1, + anon_sym_DOT2, STATE(4501), 1, sym_comment, - ACTIONS(3649), 5, + ACTIONS(3212), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195620] = 3, + ACTIONS(3214), 2, + ts_builtin_sym_end, + anon_sym_LF, + [196188] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4502), 1, sym_comment, - ACTIONS(3641), 5, + ACTIONS(3461), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [195634] = 3, + [196202] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4503), 1, sym_comment, - ACTIONS(3637), 5, + ACTIONS(3433), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [195648] = 3, - ACTIONS(3), 1, + [196216] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8373), 1, + anon_sym_LF, STATE(4504), 1, sym_comment, - ACTIONS(3617), 5, + ACTIONS(8371), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195662] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [196232] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8275), 1, - anon_sym_DQUOTE, - ACTIONS(8279), 1, - aux_sym_path_token1, - STATE(3122), 1, - sym__str_double_quotes, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8379), 1, + anon_sym_SQUOTE, STATE(4505), 1, sym_comment, - ACTIONS(8277), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [195682] = 5, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [196254] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_else, + ACTIONS(8383), 1, + anon_sym_LF, STATE(4506), 1, sym_comment, - ACTIONS(8075), 2, + ACTIONS(8381), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8077), 2, - ts_builtin_sym_end, + anon_sym_RBRACE, + [196270] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8373), 1, anon_sym_LF, - [195700] = 3, + STATE(4507), 1, + sym_comment, + ACTIONS(8371), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [196286] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4507), 1, + STATE(4508), 1, sym_comment, - ACTIONS(3613), 5, + ACTIONS(3429), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [195714] = 7, + [196300] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8283), 1, - anon_sym_SQUOTE, - STATE(4508), 1, + ACTIONS(8383), 1, + anon_sym_LF, + STATE(4509), 1, sym_comment, - STATE(4515), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, - sym_expr_interpolated, - [195736] = 7, + ACTIONS(8381), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [196316] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8285), 1, - anon_sym_SQUOTE, - STATE(4509), 1, + ACTIONS(8373), 1, + anon_sym_LF, + STATE(4510), 1, sym_comment, - STATE(4522), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, - sym_expr_interpolated, - [195758] = 7, + ACTIONS(8371), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [196332] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, + ACTIONS(8375), 1, anon_sym_LPAREN, - ACTIONS(8190), 1, + ACTIONS(8377), 1, sym_unescaped_interpolated_content, - ACTIONS(8287), 1, + ACTIONS(8385), 1, anon_sym_SQUOTE, - STATE(4510), 1, - sym_comment, - STATE(4515), 1, + STATE(4505), 1, aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, - sym_expr_interpolated, - [195780] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4511), 1, sym_comment, - ACTIONS(3559), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195794] = 7, + STATE(5475), 1, + sym_expr_interpolated, + [196354] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8289), 1, - anon_sym_SQUOTE, - STATE(4510), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8383), 1, + anon_sym_LF, STATE(4512), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [195816] = 3, + ACTIONS(8381), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [196370] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8387), 1, + anon_sym_DOT2, STATE(4513), 1, sym_comment, - ACTIONS(3515), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195830] = 3, - ACTIONS(3), 1, + STATE(6023), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [196390] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8373), 1, + anon_sym_LF, STATE(4514), 1, sym_comment, - ACTIONS(1517), 5, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_LBRACE, + ACTIONS(8371), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_EQ_GT, - [195844] = 6, + [196406] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8291), 1, - anon_sym_LPAREN, - ACTIONS(8294), 1, - sym_unescaped_interpolated_content, - ACTIONS(8297), 1, - anon_sym_SQUOTE, - STATE(5393), 1, - sym_expr_interpolated, - STATE(4515), 2, + ACTIONS(8383), 1, + anon_sym_LF, + STATE(4515), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [195864] = 5, - ACTIONS(3), 1, + ACTIONS(8381), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [196422] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6190), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8299), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8373), 1, + anon_sym_LF, STATE(4516), 1, sym_comment, - ACTIONS(2784), 3, + ACTIONS(8371), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [195882] = 4, + anon_sym_RBRACE, + [196438] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8383), 1, + anon_sym_LF, STATE(4517), 1, sym_comment, - ACTIONS(3431), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3429), 3, + ACTIONS(8381), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [195898] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [196454] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8391), 1, + anon_sym_LF, + ACTIONS(8394), 1, + anon_sym_catch, STATE(4518), 1, sym_comment, - ACTIONS(3507), 5, + ACTIONS(8389), 3, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [195912] = 4, + [196472] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, + anon_sym_LF, + ACTIONS(8396), 1, + anon_sym_RPAREN, + STATE(1195), 1, + aux_sym__block_body_repeat1, + STATE(1279), 1, + sym__terminator, STATE(4519), 1, sym_comment, - ACTIONS(3507), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3505), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [195928] = 7, - ACTIONS(3), 1, + [196494] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7097), 1, - anon_sym_DOLLAR, - ACTIONS(8023), 1, - sym_identifier, - STATE(1110), 1, - sym__var, - STATE(1260), 1, - sym_val_variable, - STATE(1391), 1, - sym__variable_name, + ACTIONS(8373), 1, + anon_sym_LF, STATE(4520), 1, sym_comment, - [195950] = 4, + ACTIONS(8371), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [196510] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8303), 1, + ACTIONS(8383), 1, anon_sym_LF, STATE(4521), 1, sym_comment, - ACTIONS(8301), 4, + ACTIONS(8381), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [195966] = 7, + [196526] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8305), 1, - anon_sym_SQUOTE, - STATE(4515), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8373), 1, + anon_sym_LF, STATE(4522), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [195988] = 4, + ACTIONS(8371), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [196542] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7703), 1, + ACTIONS(8383), 1, anon_sym_LF, STATE(4523), 1, sym_comment, - ACTIONS(7701), 4, + ACTIONS(8381), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [196004] = 3, - ACTIONS(3), 1, + [196558] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8373), 1, + anon_sym_LF, STATE(4524), 1, sym_comment, - ACTIONS(3419), 5, + ACTIONS(8371), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [196018] = 4, + anon_sym_RBRACE, + [196574] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8383), 1, + anon_sym_LF, STATE(4525), 1, sym_comment, - ACTIONS(3053), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3051), 3, + ACTIONS(8381), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [196034] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8307), 1, - anon_sym_SQUOTE, - STATE(4526), 1, - sym_comment, - STATE(4560), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, - sym_expr_interpolated, - [196056] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8309), 1, - ts_builtin_sym_end, - ACTIONS(8311), 1, - anon_sym_SEMI, - ACTIONS(8314), 1, - anon_sym_LF, - STATE(5422), 1, - sym__terminator, - STATE(4527), 2, - sym_comment, - aux_sym__block_body_repeat1, - [196076] = 4, + anon_sym_RBRACE, + [196590] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7709), 1, + ACTIONS(8400), 1, anon_sym_LF, - STATE(4528), 1, + STATE(4526), 1, sym_comment, - ACTIONS(7707), 4, + ACTIONS(8398), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [196092] = 5, + [196606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8317), 1, - anon_sym_DOT2, - STATE(4529), 1, + STATE(4527), 1, sym_comment, - ACTIONS(2906), 3, - anon_sym_COMMA, + ACTIONS(3773), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - [196110] = 4, - ACTIONS(105), 1, + anon_sym_EQ_GT, + [196620] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4530), 1, + STATE(4528), 1, sym_comment, - ACTIONS(3515), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3513), 3, - anon_sym_SEMI, + ACTIONS(3507), 5, anon_sym_PIPE, anon_sym_DASH, - [196126] = 6, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [196634] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, + ACTIONS(8402), 1, anon_sym_DQUOTE, - ACTIONS(8324), 1, + ACTIONS(8406), 1, aux_sym_path_token1, - STATE(543), 1, + STATE(1214), 1, sym__str_double_quotes, - STATE(4531), 1, + STATE(4529), 1, sym_comment, - ACTIONS(8322), 2, + ACTIONS(8404), 2, sym__str_single_quotes, sym__str_back_ticks, - [196146] = 6, + [196654] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4530), 1, + sym_comment, + ACTIONS(3511), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [196668] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, + ACTIONS(8410), 1, anon_sym_LF, - STATE(1383), 1, - sym__terminator, - STATE(4532), 1, + STATE(4531), 1, sym_comment, - ACTIONS(3685), 2, + ACTIONS(8408), 4, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [196166] = 4, + [196684] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8412), 1, + anon_sym_SQUOTE, + STATE(4532), 1, + sym_comment, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [196706] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7660), 1, + ACTIONS(8416), 1, anon_sym_LF, STATE(4533), 1, sym_comment, - ACTIONS(7658), 4, + ACTIONS(8414), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [196182] = 3, + [196722] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4534), 1, sym_comment, - ACTIONS(8326), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196196] = 7, - ACTIONS(3), 1, + ACTIONS(3515), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [196736] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8328), 1, - anon_sym_DOT2, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8332), 1, - anon_sym_DASH2, - ACTIONS(8334), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8336), 1, - aux_sym_short_flag_token1, + ACTIONS(2385), 1, + anon_sym_COLON, + ACTIONS(8420), 1, + anon_sym_LF, STATE(4535), 1, sym_comment, - [196218] = 6, - ACTIONS(3), 1, + ACTIONS(8418), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACE, + [196754] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, + anon_sym_LF, + ACTIONS(8396), 1, + anon_sym_RPAREN, + STATE(1279), 1, + sym__terminator, STATE(4536), 1, sym_comment, - STATE(5982), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [196238] = 3, - ACTIONS(3), 1, + STATE(4822), 1, + aux_sym__block_body_repeat1, + [196776] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8424), 1, + anon_sym_LF, STATE(4537), 1, sym_comment, - ACTIONS(8338), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196252] = 5, + ACTIONS(8422), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [196792] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8340), 1, - anon_sym_DOT2, + ACTIONS(8416), 1, + anon_sym_LF, STATE(4538), 1, sym_comment, - ACTIONS(3115), 2, + ACTIONS(8414), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3117), 2, - ts_builtin_sym_end, - anon_sym_LF, - [196270] = 7, + anon_sym_RBRACE, + [196808] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, + ACTIONS(8375), 1, anon_sym_LPAREN, - ACTIONS(8190), 1, + ACTIONS(8377), 1, sym_unescaped_interpolated_content, - ACTIONS(8342), 1, + ACTIONS(8426), 1, anon_sym_SQUOTE, - STATE(4515), 1, + STATE(4532), 1, aux_sym__inter_single_quotes_repeat1, STATE(4539), 1, sym_comment, - STATE(5393), 1, + STATE(5475), 1, sym_expr_interpolated, - [196292] = 5, + [196830] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8344), 1, - anon_sym_DOT2, + ACTIONS(8424), 1, + anon_sym_LF, STATE(4540), 1, sym_comment, - ACTIONS(3109), 2, + ACTIONS(8422), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3111), 2, - ts_builtin_sym_end, - anon_sym_LF, - [196310] = 4, - ACTIONS(105), 1, + anon_sym_RBRACE, + [196846] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8348), 1, - anon_sym_LF, STATE(4541), 1, sym_comment, - ACTIONS(8346), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3579), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [196326] = 7, - ACTIONS(105), 1, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [196860] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8350), 1, - anon_sym_SQUOTE, - STATE(4508), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8428), 1, + anon_sym_DASH, + ACTIONS(8430), 1, + anon_sym_in, STATE(4542), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [196348] = 4, + STATE(6042), 1, + sym__flag, + STATE(5629), 2, + sym_short_flag, + sym_long_flag, + [196880] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2385), 1, + anon_sym_COLON, + ACTIONS(8434), 1, + anon_sym_LF, STATE(4543), 1, sym_comment, - ACTIONS(3427), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3425), 3, + ACTIONS(8432), 3, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - [196364] = 5, + anon_sym_RBRACE, + [196898] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8352), 1, - anon_sym_DOT2, + ACTIONS(8416), 1, + anon_sym_LF, STATE(4544), 1, sym_comment, - ACTIONS(3103), 2, + ACTIONS(8414), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3105), 2, - ts_builtin_sym_end, - anon_sym_LF, - [196382] = 5, + anon_sym_RBRACE, + [196914] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8354), 1, - anon_sym_DOT2, + ACTIONS(8424), 1, + anon_sym_LF, STATE(4545), 1, sym_comment, - ACTIONS(3097), 2, + ACTIONS(8422), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3099), 2, - ts_builtin_sym_end, - anon_sym_LF, - [196400] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [196930] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6316), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8356), 1, - anon_sym_DOT2, + ACTIONS(8416), 1, + anon_sym_LF, STATE(4546), 1, sym_comment, - ACTIONS(2906), 3, + ACTIONS(8414), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [196418] = 4, + anon_sym_RBRACE, + [196946] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3319), 1, - anon_sym_LF, + ACTIONS(8436), 1, + anon_sym_else, STATE(4547), 1, sym_comment, - ACTIONS(3317), 4, + ACTIONS(8240), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [196434] = 6, - ACTIONS(3), 1, + ACTIONS(8242), 2, + ts_builtin_sym_end, + anon_sym_LF, + [196964] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8358), 1, - anon_sym_DQUOTE, - ACTIONS(8362), 1, - aux_sym_path_token1, - STATE(1921), 1, - sym__str_double_quotes, + ACTIONS(8440), 1, + anon_sym_LF, STATE(4548), 1, sym_comment, - ACTIONS(8360), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [196454] = 6, + ACTIONS(8438), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [196980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8364), 1, - anon_sym_DQUOTE, - ACTIONS(8368), 1, - aux_sym_path_token1, - STATE(2977), 1, - sym__str_double_quotes, STATE(4549), 1, sym_comment, - ACTIONS(8366), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [196474] = 6, + ACTIONS(3598), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [196994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(8210), 1, - aux_sym_path_token1, - STATE(2350), 1, - sym__str_double_quotes, STATE(4550), 1, sym_comment, - ACTIONS(8208), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [196494] = 4, + ACTIONS(3606), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197008] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8383), 1, + anon_sym_LF, STATE(4551), 1, sym_comment, - ACTIONS(3559), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3557), 3, + ACTIONS(8381), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [196510] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [197024] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8442), 1, + anon_sym_DOT2, STATE(4552), 1, sym_comment, - ACTIONS(3503), 5, + ACTIONS(3198), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [196524] = 4, + ACTIONS(3200), 2, + ts_builtin_sym_end, + anon_sym_LF, + [197042] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8372), 1, + ACTIONS(8416), 1, anon_sym_LF, STATE(4553), 1, sym_comment, - ACTIONS(8370), 4, + ACTIONS(8414), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [196540] = 3, - ACTIONS(3), 1, + [197058] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8424), 1, + anon_sym_LF, STATE(4554), 1, sym_comment, - ACTIONS(3483), 5, + ACTIONS(8422), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [196554] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [197074] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8416), 1, + anon_sym_LF, STATE(4555), 1, sym_comment, - STATE(6112), 1, - sym__immediate_decimal, - ACTIONS(7020), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [196574] = 4, + ACTIONS(8414), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [197090] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8444), 1, + anon_sym_DOT2, STATE(4556), 1, sym_comment, - ACTIONS(3613), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3611), 3, + ACTIONS(3171), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - [196590] = 5, - ACTIONS(3), 1, + ACTIONS(3173), 2, + ts_builtin_sym_end, + anon_sym_LF, + [197108] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6114), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8374), 1, - anon_sym_DOT2, + ACTIONS(8424), 1, + anon_sym_LF, STATE(4557), 1, sym_comment, - ACTIONS(2808), 3, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(8422), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [196608] = 4, + [197124] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(8416), 1, anon_sym_LF, STATE(4558), 1, sym_comment, - ACTIONS(3377), 4, + ACTIONS(8414), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [196624] = 3, + [197140] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, STATE(4559), 1, sym_comment, - ACTIONS(3479), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [196638] = 7, + STATE(6195), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197160] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8377), 1, - anon_sym_SQUOTE, - STATE(4515), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8424), 1, + anon_sym_LF, STATE(4560), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [196660] = 4, - ACTIONS(105), 1, + ACTIONS(8422), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [197176] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8446), 1, + anon_sym_DOT2, + ACTIONS(8450), 1, + aux_sym__immediate_decimal_token2, STATE(4561), 1, sym_comment, - ACTIONS(3161), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3159), 3, - anon_sym_SEMI, + ACTIONS(2936), 3, anon_sym_PIPE, - anon_sym_DASH, - [196676] = 4, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_EQ_GT, + [197194] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8381), 1, - anon_sym_LF, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(8454), 1, + aux_sym_path_token1, + STATE(2631), 1, + sym__str_double_quotes, STATE(4562), 1, sym_comment, - ACTIONS(8379), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [196692] = 4, + ACTIONS(8452), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [197214] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(8416), 1, anon_sym_LF, STATE(4563), 1, sym_comment, - ACTIONS(8383), 4, + ACTIONS(8414), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [196708] = 6, + [197230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2833), 1, - anon_sym_DQUOTE, - ACTIONS(8389), 1, - aux_sym_path_token1, - STATE(2398), 1, - sym__str_double_quotes, STATE(4564), 1, sym_comment, - ACTIONS(8387), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [196728] = 4, + ACTIONS(3614), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197244] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8226), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8230), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8456), 1, + anon_sym_DOT2, + ACTIONS(8458), 1, + aux_sym__record_key_token1, STATE(4565), 1, sym_comment, - ACTIONS(3617), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3615), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [196744] = 4, - ACTIONS(105), 1, + [197266] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4566), 1, sym_comment, - ACTIONS(3419), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3417), 3, - anon_sym_SEMI, + ACTIONS(3377), 5, anon_sym_PIPE, anon_sym_DASH, - [196760] = 4, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197280] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4567), 1, sym_comment, - ACTIONS(3637), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3635), 3, - anon_sym_SEMI, + ACTIONS(3345), 5, anon_sym_PIPE, anon_sym_DASH, - [196776] = 4, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197294] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4568), 1, sym_comment, - ACTIONS(3415), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3413), 3, - anon_sym_SEMI, + ACTIONS(3331), 5, anon_sym_PIPE, anon_sym_DASH, - [196792] = 7, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197308] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8391), 1, - anon_sym_SQUOTE, - STATE(4515), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8424), 1, + anon_sym_LF, STATE(4569), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [196814] = 7, - ACTIONS(3), 1, + ACTIONS(8422), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [197324] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7167), 1, - anon_sym_DOLLAR, - ACTIONS(8393), 1, - sym_identifier, - STATE(1129), 1, - sym__var, - STATE(1546), 1, - sym__variable_name, - STATE(1582), 1, - sym_val_variable, + ACTIONS(8416), 1, + anon_sym_LF, STATE(4570), 1, sym_comment, - [196836] = 3, + ACTIONS(8414), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [197340] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4571), 1, sym_comment, - ACTIONS(3447), 5, + ACTIONS(3622), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [196850] = 6, + [197354] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8395), 1, + ACTIONS(5486), 1, anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, STATE(4572), 1, sym_comment, - STATE(6104), 1, + STATE(6194), 1, sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(7177), 2, anon_sym_DASH2, anon_sym_PLUS2, - [196870] = 4, - ACTIONS(105), 1, + [197374] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_LF, + ACTIONS(8460), 1, + anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, STATE(4573), 1, sym_comment, - ACTIONS(8397), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [196886] = 4, - ACTIONS(105), 1, + STATE(6063), 1, + sym__immediate_decimal, + ACTIONS(8464), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197394] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_LF, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, STATE(4574), 1, sym_comment, - ACTIONS(8383), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [196902] = 4, - ACTIONS(105), 1, + STATE(6193), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197414] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + STATE(4575), 1, + sym_comment, + STATE(6192), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197434] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4575), 1, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + STATE(4576), 1, sym_comment, - ACTIONS(3411), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3409), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [196918] = 3, + STATE(6191), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197454] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4576), 1, + STATE(4577), 1, sym_comment, - ACTIONS(3443), 5, + ACTIONS(3634), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [196932] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4577), 1, - sym_comment, - ACTIONS(3407), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3405), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [196948] = 4, + [197468] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8399), 1, + ACTIONS(8373), 1, anon_sym_LF, STATE(4578), 1, sym_comment, - ACTIONS(8397), 4, + ACTIONS(8371), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [196964] = 3, + [197484] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, STATE(4579), 1, sym_comment, - ACTIONS(3439), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [196978] = 4, - ACTIONS(105), 1, + STATE(6189), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197504] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, STATE(4580), 1, sym_comment, - ACTIONS(3641), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3639), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [196994] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4581), 1, - sym_comment, - ACTIONS(3649), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3647), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [197010] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4582), 1, - sym_comment, - ACTIONS(3399), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3397), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [197026] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_LF, - STATE(4583), 1, - sym_comment, - ACTIONS(8383), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [197042] = 6, + STATE(6187), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197524] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8182), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(8184), 1, + ACTIONS(7175), 1, aux_sym__immediate_decimal_token1, - STATE(4584), 1, + STATE(4581), 1, sym_comment, - STATE(6098), 1, + STATE(6177), 1, sym__immediate_decimal, - ACTIONS(8186), 2, + ACTIONS(7177), 2, anon_sym_DASH2, anon_sym_PLUS2, - [197062] = 6, + [197544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8182), 1, + ACTIONS(5486), 1, anon_sym_DOT2, - ACTIONS(8184), 1, + ACTIONS(7175), 1, aux_sym__immediate_decimal_token1, - STATE(4585), 1, + STATE(4582), 1, sym_comment, - STATE(5582), 1, + STATE(6185), 1, sym__immediate_decimal, - ACTIONS(8186), 2, + ACTIONS(7177), 2, anon_sym_DASH2, anon_sym_PLUS2, - [197082] = 3, + [197564] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4586), 1, + STATE(4583), 1, sym_comment, - ACTIONS(3435), 5, + ACTIONS(3335), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [197096] = 4, - ACTIONS(105), 1, + [197578] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_LF, - STATE(4587), 1, + STATE(4584), 1, sym_comment, - ACTIONS(8397), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3353), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [197112] = 4, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197592] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4585), 1, + sym_comment, + ACTIONS(8466), 5, + sym_cmd_identifier, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197606] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + STATE(4586), 1, + sym_comment, + STATE(6183), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197626] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8468), 1, + anon_sym_DOT2, + ACTIONS(8470), 1, + aux_sym__immediate_decimal_token1, + STATE(4587), 1, + sym_comment, + STATE(6060), 1, + sym__immediate_decimal, + ACTIONS(8472), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197646] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(8424), 1, anon_sym_LF, STATE(4588), 1, sym_comment, - ACTIONS(8383), 4, + ACTIONS(8422), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197128] = 4, - ACTIONS(105), 1, + [197662] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_LF, STATE(4589), 1, sym_comment, - ACTIONS(8397), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3503), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [197144] = 4, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197676] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_LF, STATE(4590), 1, sym_comment, - ACTIONS(8383), 4, + ACTIONS(1538), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1536), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [197160] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + [197692] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_LF, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, STATE(4591), 1, sym_comment, - ACTIONS(8397), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [197176] = 4, + STATE(6181), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [197712] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(8416), 1, anon_sym_LF, STATE(4592), 1, sym_comment, - ACTIONS(8383), 4, + ACTIONS(8414), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197192] = 4, - ACTIONS(105), 1, + [197728] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_LF, STATE(4593), 1, sym_comment, - ACTIONS(8397), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3640), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [197208] = 6, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197742] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, STATE(4594), 1, sym_comment, - STATE(5911), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [197228] = 4, - ACTIONS(105), 1, + ACTIONS(3644), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197756] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(2688), 1, + sym__var, STATE(4595), 1, sym_comment, - ACTIONS(3708), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3706), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [197244] = 5, + STATE(4645), 1, + sym__variable_name, + STATE(4963), 1, + sym_val_variable, + [197778] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6158), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8401), 1, - anon_sym_DOT2, + ACTIONS(8474), 1, + anon_sym_DQUOTE, + ACTIONS(8478), 1, + aux_sym_path_token1, + STATE(3392), 1, + sym__str_double_quotes, STATE(4596), 1, sym_comment, - ACTIONS(2808), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [197262] = 4, - ACTIONS(105), 1, + ACTIONS(8476), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [197798] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4597), 1, sym_comment, - ACTIONS(3387), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3385), 3, - anon_sym_SEMI, + ACTIONS(3652), 5, anon_sym_PIPE, anon_sym_DASH, - [197278] = 4, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [197812] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_LF, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + aux_sym_path_token1, + STATE(1187), 1, + sym__str_double_quotes, STATE(4598), 1, sym_comment, - ACTIONS(8383), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [197294] = 3, - ACTIONS(3), 1, + ACTIONS(8482), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [197832] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8486), 1, + anon_sym_SQUOTE, STATE(4599), 1, sym_comment, - ACTIONS(3431), 5, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [197854] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4600), 1, + sym_comment, + ACTIONS(3656), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [197308] = 3, + [197868] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4600), 1, + ACTIONS(8488), 1, + anon_sym_DQUOTE, + ACTIONS(8492), 1, + aux_sym_path_token1, + STATE(3111), 1, + sym__str_double_quotes, + STATE(4601), 1, sym_comment, - ACTIONS(3427), 5, + ACTIONS(8490), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [197888] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4602), 1, + sym_comment, + ACTIONS(3666), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [197322] = 4, + [197902] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8399), 1, + ACTIONS(8424), 1, anon_sym_LF, - STATE(4601), 1, + STATE(4603), 1, sym_comment, - ACTIONS(8397), 4, + ACTIONS(8422), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197338] = 4, + [197918] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4602), 1, - sym_comment, - ACTIONS(3329), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3327), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [197354] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, - STATE(4603), 1, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8494), 1, + anon_sym_SQUOTE, + STATE(4604), 1, sym_comment, - STATE(5617), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [197374] = 4, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [197940] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(8416), 1, anon_sym_LF, - STATE(4604), 1, + STATE(4605), 1, sym_comment, - ACTIONS(8383), 4, + ACTIONS(8414), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197390] = 4, + [197956] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8399), 1, + ACTIONS(8424), 1, anon_sym_LF, - STATE(4605), 1, + STATE(4606), 1, sym_comment, - ACTIONS(8397), 4, + ACTIONS(8422), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197406] = 3, - ACTIONS(3), 1, + [197972] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4606), 1, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8496), 1, + anon_sym_SQUOTE, + STATE(4599), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4607), 1, sym_comment, - ACTIONS(8403), 5, - sym_cmd_identifier, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197420] = 3, + STATE(5475), 1, + sym_expr_interpolated, + [197994] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4607), 1, + STATE(4608), 1, sym_comment, - ACTIONS(3415), 5, + ACTIONS(3674), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [197434] = 4, - ACTIONS(105), 1, + [198008] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4608), 1, + STATE(4609), 1, sym_comment, - ACTIONS(3383), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3381), 3, - anon_sym_SEMI, + ACTIONS(3678), 5, anon_sym_PIPE, anon_sym_DASH, - [197450] = 6, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198022] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8405), 1, - anon_sym_DOT2, - ACTIONS(8407), 1, - aux_sym__immediate_decimal_token1, - STATE(4609), 1, + STATE(4610), 1, sym_comment, - STATE(6095), 1, - sym__immediate_decimal, - ACTIONS(8409), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [197470] = 4, + ACTIONS(3682), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198036] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(8416), 1, anon_sym_LF, - STATE(4610), 1, + STATE(4611), 1, sym_comment, - ACTIONS(8383), 4, + ACTIONS(8414), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197486] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, - STATE(4611), 1, - sym_comment, - STATE(6116), 1, - sym__immediate_decimal, - ACTIONS(7020), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [197506] = 6, - ACTIONS(3), 1, + [198052] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8194), 1, - anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_in, + ACTIONS(8424), 1, + anon_sym_LF, STATE(4612), 1, sym_comment, - STATE(5962), 1, - sym__flag, - STATE(6127), 2, - sym_short_flag, - sym_long_flag, - [197526] = 4, + ACTIONS(8422), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [198068] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8399), 1, + ACTIONS(8416), 1, anon_sym_LF, STATE(4613), 1, sym_comment, - ACTIONS(8397), 4, + ACTIONS(8414), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197542] = 7, - ACTIONS(105), 1, + [198084] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7951), 1, - anon_sym_LPAREN2, - ACTIONS(7953), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8413), 1, - anon_sym_DOT2, - ACTIONS(8415), 1, - aux_sym__record_key_token1, + ACTIONS(7300), 1, + anon_sym_DOLLAR, + ACTIONS(8160), 1, + sym_identifier, + STATE(1127), 1, + sym__var, + STATE(1296), 1, + sym_val_variable, + STATE(1417), 1, + sym__variable_name, STATE(4614), 1, sym_comment, - [197564] = 4, + [198106] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8498), 1, + anon_sym_SQUOTE, + STATE(4604), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4615), 1, sym_comment, - ACTIONS(3661), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3659), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [197580] = 4, - ACTIONS(105), 1, + STATE(5475), 1, + sym_expr_interpolated, + [198128] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_LF, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(8500), 1, + anon_sym_use, + ACTIONS(8502), 1, + anon_sym_list, + ACTIONS(8504), 1, + anon_sym_hide, + ACTIONS(8506), 1, + anon_sym_new, STATE(4616), 1, sym_comment, - ACTIONS(8383), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [197596] = 4, + [198150] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8399), 1, + ACTIONS(8424), 1, anon_sym_LF, STATE(4617), 1, sym_comment, - ACTIONS(8397), 4, + ACTIONS(8422), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197612] = 4, + [198166] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8383), 1, + anon_sym_LF, STATE(4618), 1, sym_comment, - ACTIONS(3667), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3665), 3, + ACTIONS(8381), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [197628] = 4, + anon_sym_RBRACE, + [198182] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(8510), 1, anon_sym_LF, STATE(4619), 1, sym_comment, - ACTIONS(8383), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197644] = 4, + [198198] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_LF, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8512), 1, + anon_sym_SQUOTE, STATE(4620), 1, sym_comment, - ACTIONS(8397), 4, + STATE(4654), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [198220] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8355), 1, + anon_sym_LF, + STATE(4621), 1, + sym_comment, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197660] = 6, + [198236] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5321), 1, + ACTIONS(8460), 1, anon_sym_DOT2, - ACTIONS(7018), 1, + ACTIONS(8462), 1, aux_sym__immediate_decimal_token1, - STATE(4621), 1, + STATE(4622), 1, sym_comment, - STATE(6114), 1, + STATE(6090), 1, sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(8464), 2, anon_sym_DASH2, anon_sym_PLUS2, - [197680] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_LF, - STATE(4622), 1, - sym_comment, - ACTIONS(8383), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [197696] = 4, + [198256] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8399), 1, + ACTIONS(8510), 1, anon_sym_LF, STATE(4623), 1, sym_comment, - ACTIONS(8397), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197712] = 5, + [198272] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2321), 1, - anon_sym_COLON, - ACTIONS(8419), 1, - anon_sym_LF, STATE(4624), 1, sym_comment, - ACTIONS(8417), 3, + ACTIONS(3230), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3228), 3, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACE, - [197730] = 4, + anon_sym_DASH, + [198288] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(8355), 1, anon_sym_LF, STATE(4625), 1, sym_comment, - ACTIONS(8383), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197746] = 4, - ACTIONS(105), 1, + [198304] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_LF, STATE(4626), 1, sym_comment, - ACTIONS(8397), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3705), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [197762] = 7, - ACTIONS(105), 1, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198318] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, - anon_sym_LF, - ACTIONS(8235), 1, - anon_sym_RPAREN, - STATE(1128), 1, - aux_sym__block_body_repeat1, - STATE(1400), 1, - sym__terminator, STATE(4627), 1, sym_comment, - [197784] = 3, + ACTIONS(3465), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198332] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4628), 1, sym_comment, - ACTIONS(8421), 5, - sym_cmd_identifier, + ACTIONS(3469), 5, + anon_sym_PIPE, anon_sym_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197798] = 6, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198346] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(8425), 1, - aux_sym_path_token1, - STATE(2950), 1, - sym__str_double_quotes, + ACTIONS(8514), 1, + anon_sym_DOT2, + ACTIONS(8516), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8518), 1, + anon_sym_DASH2, + ACTIONS(8520), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8522), 1, + aux_sym_short_flag_token1, STATE(4629), 1, sym_comment, - ACTIONS(8423), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [197818] = 5, - ACTIONS(105), 1, + [198368] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8429), 1, - anon_sym_LF, - ACTIONS(8432), 1, - anon_sym_catch, STATE(4630), 1, sym_comment, - ACTIONS(8427), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3473), 5, anon_sym_PIPE, - [197836] = 7, - ACTIONS(105), 1, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198382] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8434), 1, - anon_sym_SQUOTE, STATE(4631), 1, sym_comment, - STATE(4674), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, - sym_expr_interpolated, - [197858] = 4, + ACTIONS(3477), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198396] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8373), 1, anon_sym_LF, STATE(4632), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8371), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197874] = 6, + [198412] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, STATE(4633), 1, sym_comment, - STATE(5647), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [197894] = 4, + ACTIONS(3709), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198426] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(8510), 1, anon_sym_LF, STATE(4634), 1, sym_comment, - ACTIONS(8346), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [197910] = 7, + [198442] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8440), 1, - anon_sym_SQUOTE, - STATE(4515), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8355), 1, + anon_sym_LF, STATE(4635), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [197932] = 3, + ACTIONS(8353), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [198458] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4636), 1, sym_comment, - ACTIONS(3411), 5, + ACTIONS(3481), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [197946] = 7, + [198472] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8442), 1, - anon_sym_SQUOTE, - STATE(4457), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8383), 1, + anon_sym_LF, STATE(4637), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [197968] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4638), 1, - sym_comment, - ACTIONS(3375), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3373), 3, + ACTIONS(8381), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [197984] = 6, + anon_sym_RBRACE, + [198488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8444), 1, - anon_sym_DQUOTE, - ACTIONS(8448), 1, - aux_sym_path_token1, - STATE(1879), 1, - sym__str_double_quotes, - STATE(4639), 1, + ACTIONS(6319), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8524), 1, + anon_sym_DOT2, + STATE(4638), 1, sym_comment, - ACTIONS(8446), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [198004] = 4, + ACTIONS(2936), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [198506] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4640), 1, + ACTIONS(8526), 1, + anon_sym_DOT2, + STATE(4639), 1, sym_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3369), 3, + ACTIONS(3238), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - [198020] = 3, - ACTIONS(3), 1, + ACTIONS(3240), 2, + ts_builtin_sym_end, + anon_sym_LF, + [198524] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4641), 1, + ACTIONS(8528), 1, + anon_sym_DOT2, + STATE(4640), 1, sym_comment, - ACTIONS(3407), 5, + ACTIONS(3163), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [198034] = 4, + ACTIONS(3165), 2, + ts_builtin_sym_end, + anon_sym_LF, + [198542] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8510), 1, anon_sym_LF, - STATE(4642), 1, + STATE(4641), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198050] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8450), 1, - anon_sym_DOT2, - ACTIONS(8452), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8454), 1, - anon_sym_DASH2, - ACTIONS(8456), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8458), 1, - aux_sym_short_flag_token1, - STATE(4643), 1, - sym_comment, - [198072] = 4, + [198558] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(8510), 1, anon_sym_LF, - STATE(4644), 1, + STATE(4642), 1, sym_comment, - ACTIONS(8346), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198088] = 4, + [198574] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8355), 1, anon_sym_LF, - STATE(4645), 1, + STATE(4643), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198104] = 5, + [198590] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2321), 1, - anon_sym_COLON, - ACTIONS(8226), 1, + ACTIONS(8510), 1, anon_sym_LF, - STATE(4646), 1, + STATE(4644), 1, sym_comment, - ACTIONS(8224), 3, + ACTIONS(8508), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198122] = 4, + [198606] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8428), 1, + anon_sym_DASH, + ACTIONS(8530), 1, + anon_sym_in, + STATE(4645), 1, + sym_comment, + STATE(6162), 1, + sym__flag, + STATE(5629), 2, + sym_short_flag, + sym_long_flag, + [198626] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8428), 1, + anon_sym_DASH, + ACTIONS(8532), 1, + anon_sym_in, + STATE(4646), 1, + sym_comment, + STATE(6155), 1, + sym__flag, + STATE(5629), 2, + sym_short_flag, + sym_long_flag, + [198646] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(8355), 1, anon_sym_LF, STATE(4647), 1, sym_comment, - ACTIONS(8346), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198138] = 4, + [198662] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4648), 1, + sym_comment, + ACTIONS(3713), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198676] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4649), 1, + sym_comment, + ACTIONS(3717), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198690] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8510), 1, anon_sym_LF, - STATE(4648), 1, + STATE(4650), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198154] = 4, + [198706] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(8355), 1, anon_sym_LF, - STATE(4649), 1, + STATE(4651), 1, sym_comment, - ACTIONS(8346), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198170] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(8460), 1, - anon_sym_use, - ACTIONS(8462), 1, - anon_sym_list, - ACTIONS(8464), 1, - anon_sym_hide, - ACTIONS(8466), 1, - anon_sym_new, - STATE(4650), 1, - sym_comment, - [198192] = 6, + [198722] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8468), 1, - anon_sym_DQUOTE, - ACTIONS(8472), 1, - aux_sym_path_token1, - STATE(913), 1, - sym__str_double_quotes, - STATE(4651), 1, + STATE(4652), 1, sym_comment, - ACTIONS(8470), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [198212] = 6, + ACTIONS(3721), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198736] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, - STATE(4652), 1, + STATE(4653), 1, sym_comment, - STATE(5686), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [198232] = 7, + ACTIONS(3725), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198750] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, + ACTIONS(8375), 1, anon_sym_LPAREN, - ACTIONS(8190), 1, + ACTIONS(8377), 1, sym_unescaped_interpolated_content, - ACTIONS(8474), 1, + ACTIONS(8534), 1, anon_sym_SQUOTE, - STATE(4569), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4653), 1, - sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [198254] = 4, - ACTIONS(105), 1, - anon_sym_POUND, STATE(4654), 1, sym_comment, - ACTIONS(3367), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3365), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [198270] = 4, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [198772] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8373), 1, anon_sym_LF, STATE(4655), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8371), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198286] = 3, - ACTIONS(3), 1, + [198788] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4656), 1, sym_comment, - ACTIONS(3399), 5, + ACTIONS(3353), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3351), 3, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [198300] = 6, + [198804] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7740), 1, - anon_sym_DQUOTE, - ACTIONS(8478), 1, - aux_sym_path_token1, - STATE(3789), 1, - sym__str_double_quotes, + ACTIONS(2968), 1, + anon_sym_DOLLAR, + ACTIONS(7795), 1, + sym_identifier, + STATE(2688), 1, + sym__var, + STATE(4542), 1, + sym__variable_name, STATE(4657), 1, sym_comment, - ACTIONS(8476), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [198320] = 6, + STATE(4963), 1, + sym_val_variable, + [198826] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8480), 1, + ACTIONS(2900), 1, anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(8538), 1, aux_sym_path_token1, - STATE(2349), 1, + STATE(2463), 1, sym__str_double_quotes, STATE(4658), 1, sym_comment, - ACTIONS(8482), 2, + ACTIONS(8536), 2, sym__str_single_quotes, sym__str_back_ticks, - [198340] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, - STATE(4659), 1, - sym_comment, - STATE(5726), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [198360] = 7, + [198846] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8486), 1, - ts_builtin_sym_end, - ACTIONS(8488), 1, - anon_sym_SEMI, - ACTIONS(8490), 1, + ACTIONS(8373), 1, anon_sym_LF, - STATE(4660), 1, + STATE(4659), 1, sym_comment, - STATE(4854), 1, - aux_sym__block_body_repeat1, - STATE(5422), 1, - sym__terminator, - [198382] = 4, + ACTIONS(8371), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [198862] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4661), 1, + STATE(4660), 1, sym_comment, - ACTIONS(3395), 2, + ACTIONS(3335), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3393), 3, + ACTIONS(3333), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [198398] = 3, - ACTIONS(3), 1, + [198878] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4662), 1, + ACTIONS(8383), 1, + anon_sym_LF, + STATE(4661), 1, sym_comment, - ACTIONS(3395), 5, + ACTIONS(8381), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [198412] = 4, + anon_sym_RBRACE, + [198894] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8419), 1, + ACTIONS(8424), 1, anon_sym_LF, - STATE(4663), 1, + STATE(4662), 1, sym_comment, - ACTIONS(8417), 4, + ACTIONS(8422), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198428] = 6, + [198910] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8194), 1, + ACTIONS(8428), 1, anon_sym_DASH, - ACTIONS(8492), 1, + ACTIONS(8540), 1, anon_sym_in, - STATE(4664), 1, + STATE(4663), 1, sym_comment, - STATE(6080), 1, + STATE(5859), 1, sym__flag, - STATE(6127), 2, + STATE(5629), 2, sym_short_flag, sym_long_flag, - [198448] = 6, - ACTIONS(3), 1, + [198930] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4664), 1, + sym_comment, + ACTIONS(3345), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3343), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [198946] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8494), 1, - anon_sym_DQUOTE, - ACTIONS(8498), 1, - aux_sym_path_token1, - STATE(1193), 1, - sym__str_double_quotes, STATE(4665), 1, sym_comment, - ACTIONS(8496), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [198468] = 6, + ACTIONS(3377), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3375), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [198962] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8194), 1, - anon_sym_DASH, - ACTIONS(8500), 1, - anon_sym_in, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8542), 1, + anon_sym_DOT2, STATE(4666), 1, sym_comment, - STATE(6087), 1, - sym__flag, - STATE(6127), 2, - sym_short_flag, - sym_long_flag, - [198488] = 4, + STATE(6177), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [198982] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(8355), 1, anon_sym_LF, STATE(4667), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198504] = 6, + [198998] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, STATE(4668), 1, sym_comment, - STATE(5760), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [198524] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4669), 1, - sym_comment, - ACTIONS(3387), 5, + ACTIONS(3729), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [198538] = 4, - ACTIONS(105), 1, + [199012] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8438), 1, - anon_sym_LF, - STATE(4670), 1, + ACTIONS(8544), 1, + anon_sym_DQUOTE, + ACTIONS(8548), 1, + aux_sym_path_token1, + STATE(2407), 1, + sym__str_double_quotes, + STATE(4669), 1, sym_comment, - ACTIONS(8436), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [198554] = 5, - ACTIONS(105), 1, + ACTIONS(8546), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [199032] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8506), 1, - sym__long_flag_identifier, - STATE(4671), 1, + STATE(4670), 1, sym_comment, - ACTIONS(2960), 2, - anon_sym_SEMI, + ACTIONS(3733), 5, anon_sym_PIPE, - ACTIONS(2964), 2, - ts_builtin_sym_end, - anon_sym_LF, - [198572] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [199046] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8348), 1, - anon_sym_LF, - STATE(4672), 1, + ACTIONS(6263), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8550), 1, + anon_sym_DOT2, + STATE(4671), 1, sym_comment, - ACTIONS(8346), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2834), 3, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - [198588] = 4, + [199064] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(8510), 1, anon_sym_LF, - STATE(4673), 1, + STATE(4672), 1, sym_comment, - ACTIONS(8346), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198604] = 7, + [199080] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, + ACTIONS(8375), 1, anon_sym_LPAREN, - ACTIONS(8190), 1, + ACTIONS(8377), 1, sym_unescaped_interpolated_content, - ACTIONS(8508), 1, + ACTIONS(8552), 1, anon_sym_SQUOTE, - STATE(4515), 1, + STATE(4673), 1, + sym_comment, + STATE(4693), 1, aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [199102] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5486), 1, + anon_sym_DOT2, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, STATE(4674), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [198626] = 4, + STATE(6161), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [199122] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8355), 1, anon_sym_LF, STATE(4675), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198642] = 4, + [199138] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(8510), 1, anon_sym_LF, STATE(4676), 1, sym_comment, - ACTIONS(8346), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198658] = 4, - ACTIONS(105), 1, + [199154] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8438), 1, - anon_sym_LF, STATE(4677), 1, sym_comment, - ACTIONS(8436), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3747), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [198674] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [199168] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8348), 1, - anon_sym_LF, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, + aux_sym_path_token1, + STATE(943), 1, + sym__str_double_quotes, STATE(4678), 1, sym_comment, - ACTIONS(8346), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [198690] = 7, + ACTIONS(8556), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [199188] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8510), 1, - anon_sym_SQUOTE, - STATE(4635), 1, - aux_sym__inter_single_quotes_repeat1, STATE(4679), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [198712] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4680), 1, - sym_comment, - ACTIONS(8512), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198726] = 4, + ACTIONS(3429), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3427), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [199204] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, + ACTIONS(8373), 1, anon_sym_LF, - STATE(4681), 1, + STATE(4680), 1, sym_comment, - ACTIONS(8514), 4, + ACTIONS(8371), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198742] = 3, + [199220] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4681), 1, + sym_comment, + ACTIONS(3751), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [199234] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4682), 1, sym_comment, - ACTIONS(8518), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198756] = 4, + ACTIONS(3757), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [199248] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8562), 1, anon_sym_LF, + STATE(2552), 1, + aux_sym_pipe_element_repeat1, STATE(4683), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8560), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [198772] = 4, + [199268] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(8355), 1, anon_sym_LF, STATE(4684), 1, sym_comment, - ACTIONS(8346), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198788] = 4, + [199284] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8510), 1, anon_sym_LF, STATE(4685), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198804] = 4, + [199300] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, - anon_sym_LF, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8565), 1, + anon_sym_SQUOTE, + STATE(4673), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4686), 1, sym_comment, - ACTIONS(8346), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [198820] = 4, + STATE(5475), 1, + sym_expr_interpolated, + [199322] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8355), 1, anon_sym_LF, STATE(4687), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198836] = 4, + [199338] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(8510), 1, anon_sym_LF, STATE(4688), 1, sym_comment, - ACTIONS(8346), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198852] = 4, + [199354] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8355), 1, anon_sym_LF, STATE(4689), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198868] = 4, + [199370] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(8400), 1, anon_sym_LF, STATE(4690), 1, sym_comment, - ACTIONS(8346), 4, + ACTIONS(8398), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [198884] = 3, - ACTIONS(3), 1, + [199386] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8569), 1, + anon_sym_LF, + STATE(2551), 1, + aux_sym_pipe_element_repeat1, STATE(4691), 1, sym_comment, - ACTIONS(3383), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [198898] = 3, - ACTIONS(3), 1, + ACTIONS(8567), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [199406] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8510), 1, + anon_sym_LF, STATE(4692), 1, sym_comment, - ACTIONS(3375), 5, + ACTIONS(8508), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [198912] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [199422] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4693), 1, + ACTIONS(8572), 1, + anon_sym_LPAREN, + ACTIONS(8575), 1, + sym_unescaped_interpolated_content, + ACTIONS(8578), 1, + anon_sym_SQUOTE, + STATE(5475), 1, + sym_expr_interpolated, + STATE(4693), 2, sym_comment, - ACTIONS(3371), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [198926] = 3, - ACTIONS(3), 1, + aux_sym__inter_single_quotes_repeat1, + [199442] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8355), 1, + anon_sym_LF, STATE(4694), 1, sym_comment, - ACTIONS(3367), 5, + ACTIONS(8353), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [198940] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [199458] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8582), 1, + anon_sym_LF, STATE(4695), 1, sym_comment, - ACTIONS(3363), 5, + ACTIONS(8580), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [198954] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [199474] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8586), 1, + anon_sym_LF, STATE(4696), 1, sym_comment, - ACTIONS(3359), 5, + ACTIONS(8584), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [198968] = 7, + anon_sym_RBRACE, + [199490] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8520), 1, - anon_sym_PIPE, - ACTIONS(8522), 1, - anon_sym_if, - ACTIONS(8524), 1, - anon_sym_EQ_GT, + ACTIONS(8588), 1, + anon_sym_DQUOTE, + ACTIONS(8592), 1, + aux_sym_path_token1, + STATE(3024), 1, + sym__str_double_quotes, STATE(4697), 1, sym_comment, - STATE(5313), 1, - aux_sym_match_pattern_repeat1, - STATE(6081), 1, - sym_match_guard, - [198990] = 3, - ACTIONS(3), 1, + ACTIONS(8590), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [199510] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4698), 1, sym_comment, - ACTIONS(3355), 5, + ACTIONS(3433), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3431), 3, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199004] = 6, - ACTIONS(3), 1, + [199526] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8596), 1, + anon_sym_LF, STATE(4699), 1, sym_comment, - STATE(5801), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [199024] = 4, + ACTIONS(8594), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [199542] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8438), 1, + ACTIONS(8600), 1, anon_sym_LF, STATE(4700), 1, sym_comment, - ACTIONS(8436), 4, + ACTIONS(8598), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199040] = 3, - ACTIONS(3), 1, + [199558] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8604), 1, + anon_sym_LF, STATE(4701), 1, sym_comment, - ACTIONS(3351), 5, + ACTIONS(8602), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199054] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [199574] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4702), 1, sym_comment, - ACTIONS(3347), 5, + ACTIONS(3234), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3232), 3, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199068] = 4, + [199590] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7717), 1, + ACTIONS(8608), 1, anon_sym_LF, STATE(4703), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199084] = 3, - ACTIONS(3), 1, + [199606] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8612), 1, + anon_sym_LF, STATE(4704), 1, sym_comment, - ACTIONS(3343), 5, + ACTIONS(8610), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199098] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [199622] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8608), 1, + anon_sym_LF, STATE(4705), 1, sym_comment, - ACTIONS(3337), 5, + ACTIONS(8606), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199112] = 6, + anon_sym_RBRACE, + [199638] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8616), 1, + anon_sym_LF, + STATE(4706), 1, + sym_comment, + ACTIONS(8614), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [199654] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8620), 1, + anon_sym_LF, + STATE(2547), 1, + aux_sym_pipe_element_repeat1, + STATE(4707), 1, + sym_comment, + ACTIONS(8618), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [199674] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7018), 1, + ACTIONS(7175), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8526), 1, + ACTIONS(8623), 1, anon_sym_DOT2, - STATE(4706), 1, + STATE(4708), 1, sym_comment, - STATE(5910), 1, + STATE(6012), 1, sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(7177), 2, anon_sym_DASH2, anon_sym_PLUS2, - [199132] = 6, + [199694] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8528), 1, + ACTIONS(7898), 1, anon_sym_DQUOTE, - ACTIONS(8532), 1, + ACTIONS(8627), 1, aux_sym_path_token1, - STATE(1133), 1, + STATE(3837), 1, sym__str_double_quotes, - STATE(4707), 1, + STATE(4709), 1, sym_comment, - ACTIONS(8530), 2, + ACTIONS(8625), 2, sym__str_single_quotes, sym__str_back_ticks, - [199152] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4708), 1, - sym_comment, - ACTIONS(3333), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199166] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4709), 1, - sym_comment, - ACTIONS(3329), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199180] = 3, - ACTIONS(3), 1, + [199714] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8629), 1, + anon_sym_SQUOTE, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4710), 1, sym_comment, - ACTIONS(3309), 5, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199194] = 4, + STATE(5475), 1, + sym_expr_interpolated, + [199736] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8536), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4711), 1, sym_comment, - ACTIONS(8534), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199210] = 4, + [199752] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8540), 1, + ACTIONS(8608), 1, anon_sym_LF, STATE(4712), 1, sym_comment, - ACTIONS(8538), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199226] = 6, - ACTIONS(3), 1, + [199768] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT2, - STATE(2387), 1, - sym_path, - STATE(3270), 1, - sym_cell_path, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, + anon_sym_LF, + ACTIONS(8631), 1, + anon_sym_RPAREN, + STATE(1279), 1, + sym__terminator, + STATE(4519), 1, + aux_sym__block_body_repeat1, STATE(4713), 1, sym_comment, - ACTIONS(1420), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [199246] = 7, + [199790] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8154), 1, - anon_sym_SEMI, - ACTIONS(8156), 1, - anon_sym_LF, - ACTIONS(8542), 1, - ts_builtin_sym_end, - STATE(2534), 1, - aux_sym_pipe_element_repeat1, STATE(4714), 1, sym_comment, - [199268] = 3, + ACTIONS(3461), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3459), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [199806] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4715), 1, sym_comment, - ACTIONS(3305), 5, + ACTIONS(3761), 5, anon_sym_PIPE, anon_sym_DASH, anon_sym_if, anon_sym_LBRACE, anon_sym_EQ_GT, - [199282] = 4, + [199820] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8546), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4716), 1, sym_comment, - ACTIONS(8544), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199298] = 6, + [199836] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, STATE(4717), 1, sym_comment, - STATE(6086), 1, - sym__immediate_decimal, - ACTIONS(7020), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [199318] = 7, - ACTIONS(105), 1, + ACTIONS(3769), 5, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [199850] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, + ACTIONS(369), 1, + anon_sym_DQUOTE, ACTIONS(8548), 1, - anon_sym_SQUOTE, + aux_sym_path_token1, + STATE(2407), 1, + sym__str_double_quotes, STATE(4718), 1, sym_comment, - STATE(4721), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, - sym_expr_interpolated, - [199340] = 6, - ACTIONS(3), 1, + ACTIONS(8546), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [199870] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8608), 1, + anon_sym_LF, STATE(4719), 1, sym_comment, - STATE(6110), 1, - sym__immediate_decimal, - ACTIONS(7020), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [199360] = 3, - ACTIONS(3), 1, + ACTIONS(8606), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [199886] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8400), 1, + anon_sym_LF, STATE(4720), 1, sym_comment, - ACTIONS(3325), 5, + ACTIONS(8398), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199374] = 7, + anon_sym_RBRACE, + [199902] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8550), 1, - anon_sym_SQUOTE, - STATE(4515), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8616), 1, + anon_sym_LF, STATE(4721), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [199396] = 6, + ACTIONS(8614), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [199918] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8552), 1, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8633), 1, + anon_sym_DOT2, + STATE(4722), 1, + sym_comment, + STATE(6177), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [199938] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8635), 1, anon_sym_DQUOTE, - ACTIONS(8556), 1, + ACTIONS(8639), 1, aux_sym_path_token1, - STATE(943), 1, + STATE(3141), 1, sym__str_double_quotes, - STATE(4722), 1, + STATE(4723), 1, sym_comment, - ACTIONS(8554), 2, + ACTIONS(8637), 2, sym__str_single_quotes, sym__str_back_ticks, - [199416] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, - anon_sym_LF, - ACTIONS(8558), 1, - anon_sym_RPAREN, - STATE(1128), 1, - aux_sym__block_body_repeat1, - STATE(1400), 1, - sym__terminator, - STATE(4723), 1, - sym_comment, - [199438] = 4, + [199958] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3535), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4724), 1, sym_comment, - ACTIONS(3533), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199454] = 4, + [199974] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8643), 1, + anon_sym_LF, STATE(4725), 1, sym_comment, - ACTIONS(3443), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3441), 3, + ACTIONS(8641), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [199470] = 4, + anon_sym_RBRACE, + [199990] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8645), 1, + anon_sym_SQUOTE, + STATE(4710), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4726), 1, sym_comment, - ACTIONS(3305), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3303), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [199486] = 4, + STATE(5475), 1, + sym_expr_interpolated, + [200012] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, - anon_sym_LF, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8647), 1, + anon_sym_SQUOTE, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4727), 1, sym_comment, - ACTIONS(8560), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [199502] = 4, + STATE(5475), 1, + sym_expr_interpolated, + [200034] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8649), 1, + anon_sym_SQUOTE, STATE(4728), 1, sym_comment, - ACTIONS(3309), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3307), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [199518] = 4, + STATE(4817), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [200056] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8608), 1, + anon_sym_LF, STATE(4729), 1, sym_comment, - ACTIONS(3325), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3323), 3, + ACTIONS(8606), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [199534] = 4, + anon_sym_RBRACE, + [200072] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3712), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4730), 1, sym_comment, - ACTIONS(3710), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199550] = 4, + [200088] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(7886), 1, anon_sym_LF, STATE(4731), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(7884), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199566] = 4, + [200104] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, - anon_sym_LF, STATE(4732), 1, sym_comment, - ACTIONS(8560), 4, + ACTIONS(3465), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3463), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [199582] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + [200120] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8504), 1, - anon_sym_LF, STATE(4733), 1, sym_comment, - ACTIONS(8502), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3777), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [199598] = 4, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [200134] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, + ACTIONS(8400), 1, anon_sym_LF, STATE(4734), 1, sym_comment, - ACTIONS(8560), 4, + ACTIONS(8398), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199614] = 4, + [200150] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(7848), 1, anon_sym_LF, STATE(4735), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(7846), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199630] = 4, - ACTIONS(105), 1, + [200166] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8562), 1, - anon_sym_LF, STATE(4736), 1, sym_comment, - ACTIONS(8560), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3781), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [199646] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [200180] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8504), 1, - anon_sym_LF, + ACTIONS(8651), 1, + anon_sym_DOT2, + ACTIONS(8653), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8655), 1, + aux_sym_unquoted_token2, STATE(4737), 1, sym_comment, - ACTIONS(8502), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1447), 2, anon_sym_PIPE, - anon_sym_RBRACE, - [199662] = 4, + anon_sym_EQ_GT, + [200200] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, + ACTIONS(8608), 1, anon_sym_LF, STATE(4738), 1, sym_comment, - ACTIONS(8560), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199678] = 4, + [200216] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4739), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199694] = 4, + [200232] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, - anon_sym_LF, + ACTIONS(8657), 1, + anon_sym_catch, STATE(4740), 1, sym_comment, - ACTIONS(8560), 4, + ACTIONS(8248), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [199710] = 7, + ACTIONS(8250), 2, + ts_builtin_sym_end, + anon_sym_LF, + [200250] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8564), 1, - anon_sym_SQUOTE, - STATE(4515), 1, - aux_sym__inter_single_quotes_repeat1, STATE(4741), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [199732] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8562), 1, + ACTIONS(3469), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(4742), 1, - sym_comment, - ACTIONS(8560), 4, + ACTIONS(3467), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [199748] = 4, + anon_sym_DASH, + [200266] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(8608), 1, anon_sym_LF, - STATE(4743), 1, + STATE(4742), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199764] = 4, - ACTIONS(105), 1, + [200282] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8516), 1, - anon_sym_LF, - STATE(4744), 1, - sym_comment, - ACTIONS(8514), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(8659), 1, anon_sym_PIPE, - anon_sym_RBRACE, - [199780] = 4, + ACTIONS(8661), 1, + anon_sym_if, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + STATE(4743), 1, + sym_comment, + STATE(5453), 1, + aux_sym_match_pattern_repeat1, + STATE(6156), 1, + sym_match_guard, + [200304] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4745), 1, + STATE(4744), 1, sym_comment, - ACTIONS(3333), 2, + ACTIONS(3473), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3331), 3, + ACTIONS(3471), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [199796] = 4, - ACTIONS(105), 1, + [200320] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8562), 1, - anon_sym_LF, - STATE(4746), 1, + ACTIONS(7351), 1, + anon_sym_DOLLAR, + ACTIONS(8665), 1, + sym_identifier, + STATE(1173), 1, + sym__var, + STATE(1516), 1, + sym_val_variable, + STATE(1574), 1, + sym__variable_name, + STATE(4745), 1, sym_comment, - ACTIONS(8560), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [199812] = 5, + [200342] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8568), 1, - anon_sym_LF, - ACTIONS(8571), 1, - anon_sym_else, - STATE(4747), 1, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8667), 1, + anon_sym_SQUOTE, + STATE(4727), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4746), 1, sym_comment, - ACTIONS(8566), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [199830] = 6, + STATE(5475), 1, + sym_expr_interpolated, + [200364] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5321), 1, + ACTIONS(8460), 1, anon_sym_DOT2, - ACTIONS(7018), 1, + ACTIONS(8462), 1, aux_sym__immediate_decimal_token1, - STATE(4748), 1, + STATE(4747), 1, sym_comment, - STATE(6123), 1, + STATE(5645), 1, sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(8464), 2, anon_sym_DASH2, anon_sym_PLUS2, - [199850] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6114), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8573), 1, - anon_sym_DOT2, - STATE(4749), 1, - sym_comment, - ACTIONS(2808), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [199868] = 4, + [200384] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(8612), 1, anon_sym_LF, - STATE(4750), 1, + STATE(4748), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199884] = 4, + [200400] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, + ACTIONS(8616), 1, anon_sym_LF, - STATE(4751), 1, + STATE(4749), 1, sym_comment, - ACTIONS(8560), 4, + ACTIONS(8614), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199900] = 4, + [200416] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(8608), 1, anon_sym_LF, - STATE(4752), 1, + STATE(4750), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199916] = 4, + [200432] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, + ACTIONS(7817), 1, anon_sym_LF, - STATE(4753), 1, + STATE(4751), 1, sym_comment, - ACTIONS(8560), 4, + ACTIONS(7815), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199932] = 4, + [200448] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(8612), 1, anon_sym_LF, - STATE(4754), 1, + STATE(4752), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199948] = 4, + [200464] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, + STATE(4753), 1, + sym_comment, + ACTIONS(3477), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3475), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [200480] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8460), 1, + anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, + STATE(4754), 1, + sym_comment, + STATE(5647), 1, + sym__immediate_decimal, + ACTIONS(8464), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [200500] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8608), 1, anon_sym_LF, STATE(4755), 1, sym_comment, - ACTIONS(8560), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199964] = 4, + [200516] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(7842), 1, anon_sym_LF, STATE(4756), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(7840), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199980] = 4, + [200532] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4757), 1, sym_comment, - ACTIONS(8560), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [199996] = 4, + [200548] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(8608), 1, anon_sym_LF, STATE(4758), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200012] = 4, + [200564] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, - anon_sym_LF, STATE(4759), 1, sym_comment, - ACTIONS(8560), 4, + ACTIONS(3481), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3479), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200028] = 4, + anon_sym_DASH, + [200580] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4760), 1, sym_comment, - ACTIONS(8502), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200044] = 4, + [200596] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(3587), 1, anon_sym_LF, STATE(4761), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(3585), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200060] = 4, + [200612] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(8383), 1, anon_sym_LF, STATE(4762), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(8381), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200076] = 4, + [200628] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(8608), 1, anon_sym_LF, STATE(4763), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200092] = 4, + [200644] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(3610), 1, anon_sym_LF, STATE(4764), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(3608), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200108] = 4, + [200660] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4765), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200124] = 4, + [200676] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(8608), 1, anon_sym_LF, STATE(4766), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200140] = 6, + [200692] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8583), 1, + ACTIONS(8460), 1, anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, STATE(4767), 1, sym_comment, - STATE(5942), 1, + STATE(5668), 1, sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(8464), 2, anon_sym_DASH2, anon_sym_PLUS2, - [200160] = 4, + [200712] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_LF, STATE(4768), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(3503), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3501), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200176] = 4, + anon_sym_DASH, + [200728] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4769), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200192] = 4, + [200744] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(3765), 1, anon_sym_LF, STATE(4770), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(3763), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200208] = 4, + [200760] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_LF, STATE(4771), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(3507), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3505), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200224] = 4, + anon_sym_DASH, + [200776] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(8608), 1, anon_sym_LF, STATE(4772), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(8606), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200240] = 4, + [200792] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_LF, STATE(4773), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(3511), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3509), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200256] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + [200808] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_LF, + ACTIONS(8460), 1, + anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, STATE(4774), 1, sym_comment, - ACTIONS(8579), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [200272] = 4, + STATE(5705), 1, + sym__immediate_decimal, + ACTIONS(8464), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [200828] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_LF, STATE(4775), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(3515), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3513), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200288] = 4, + anon_sym_DASH, + [200844] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(8612), 1, anon_sym_LF, STATE(4776), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(8610), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200304] = 4, - ACTIONS(105), 1, + [200860] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_LF, + ACTIONS(8460), 1, + anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, STATE(4777), 1, sym_comment, - ACTIONS(8575), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [200320] = 4, + STATE(5749), 1, + sym__immediate_decimal, + ACTIONS(8464), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [200880] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(8671), 1, anon_sym_LF, STATE(4778), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(8669), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200336] = 4, + [200896] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(8604), 1, anon_sym_LF, STATE(4779), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(8602), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200352] = 4, + [200912] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(8671), 1, anon_sym_LF, STATE(4780), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(8669), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200368] = 4, - ACTIONS(105), 1, + [200928] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_LF, + ACTIONS(8673), 1, + anon_sym_DQUOTE, + ACTIONS(8677), 1, + aux_sym_path_token1, + STATE(557), 1, + sym__str_double_quotes, STATE(4781), 1, sym_comment, - ACTIONS(8575), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [200384] = 4, - ACTIONS(105), 1, + ACTIONS(8675), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [200948] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_LF, STATE(4782), 1, sym_comment, - ACTIONS(8579), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1538), 5, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [200400] = 4, + anon_sym_EQ_GT, + [200962] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(8604), 1, anon_sym_LF, STATE(4783), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(8602), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200416] = 4, + [200978] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_LF, STATE(4784), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(3598), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3596), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200432] = 4, + anon_sym_DASH, + [200994] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, - anon_sym_LF, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8679), 1, + anon_sym_SQUOTE, STATE(4785), 1, sym_comment, - ACTIONS(8585), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [200448] = 4, + STATE(4887), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [201016] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4786), 1, sym_comment, - ACTIONS(3696), 2, + ACTIONS(3606), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3694), 3, + ACTIONS(3604), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [200464] = 4, + [201032] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4787), 1, sym_comment, - ACTIONS(3700), 2, + ACTIONS(3614), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3698), 3, + ACTIONS(3612), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [200480] = 4, + [201048] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8671), 1, + anon_sym_LF, STATE(4788), 1, sym_comment, - ACTIONS(3704), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3702), 3, + ACTIONS(8669), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [200496] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [201064] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8604), 1, + anon_sym_LF, STATE(4789), 1, sym_comment, - STATE(5834), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [200516] = 4, + ACTIONS(8602), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [201080] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(8671), 1, anon_sym_LF, STATE(4790), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(8669), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200532] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, - STATE(4791), 1, - sym_comment, - STATE(6124), 1, - sym__immediate_decimal, - ACTIONS(7020), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [200552] = 4, + [201096] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(8604), 1, anon_sym_LF, - STATE(4792), 1, + STATE(4791), 1, sym_comment, - ACTIONS(8579), 4, + ACTIONS(8602), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200568] = 4, + [201112] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8460), 1, + anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, + STATE(4792), 1, + sym_comment, + STATE(5785), 1, + sym__immediate_decimal, + ACTIONS(8464), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [201132] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8591), 1, - anon_sym_LF, STATE(4793), 1, sym_comment, - ACTIONS(8589), 4, + ACTIONS(3331), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3329), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200584] = 4, + anon_sym_DASH, + [201148] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, - anon_sym_LF, STATE(4794), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(3273), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3271), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200600] = 4, + anon_sym_DASH, + [201164] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8595), 1, + ACTIONS(3602), 1, anon_sym_LF, STATE(4795), 1, sym_comment, - ACTIONS(8593), 4, + ACTIONS(3600), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200616] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4796), 1, - sym_comment, - ACTIONS(3337), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3335), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [200632] = 6, + [201180] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5321), 1, + ACTIONS(8460), 1, anon_sym_DOT2, - ACTIONS(7018), 1, + ACTIONS(8462), 1, aux_sym__immediate_decimal_token1, - STATE(4797), 1, + STATE(4796), 1, sym_comment, - STATE(6118), 1, + STATE(5823), 1, sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(8464), 2, anon_sym_DASH2, anon_sym_PLUS2, - [200652] = 7, - ACTIONS(105), 1, + [201200] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5271), 1, + STATE(4797), 1, + sym_comment, + ACTIONS(3618), 5, anon_sym_PIPE, - ACTIONS(8147), 1, - anon_sym_SEMI, - ACTIONS(8149), 1, - anon_sym_LF, - ACTIONS(8597), 1, - ts_builtin_sym_end, - STATE(2545), 1, - aux_sym_pipe_element_repeat1, + anon_sym_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [201214] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(4798), 1, sym_comment, - [200674] = 4, + ACTIONS(3579), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3577), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [201230] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, + ACTIONS(8671), 1, anon_sym_LF, STATE(4799), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(8669), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200690] = 4, + [201246] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8595), 1, + ACTIONS(8510), 1, anon_sym_LF, STATE(4800), 1, sym_comment, - ACTIONS(8593), 4, + ACTIONS(8508), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200706] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8603), 1, - anon_sym_DQUOTE, - ACTIONS(8607), 1, - aux_sym_path_token1, - STATE(553), 1, - sym__str_double_quotes, - STATE(4801), 1, - sym_comment, - ACTIONS(8605), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [200726] = 4, + [201262] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, + ACTIONS(8616), 1, anon_sym_LF, - STATE(4802), 1, + STATE(4801), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(8614), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200742] = 7, + [201278] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8488), 1, - anon_sym_SEMI, - ACTIONS(8490), 1, - anon_sym_LF, - ACTIONS(8609), 1, + STATE(4802), 1, + sym_comment, + ACTIONS(3781), 2, ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3779), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [201294] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8681), 1, + anon_sym_DQUOTE, + ACTIONS(8685), 1, + aux_sym_path_token1, + STATE(751), 1, + sym__str_double_quotes, STATE(4803), 1, sym_comment, - STATE(4858), 1, - aux_sym__block_body_repeat1, - STATE(5422), 1, - sym__terminator, - [200764] = 4, + ACTIONS(8683), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [201314] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_LF, STATE(4804), 1, sym_comment, - ACTIONS(8593), 4, + ACTIONS(3777), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3775), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200780] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + [201330] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_LF, + ACTIONS(8460), 1, + anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, STATE(4805), 1, sym_comment, - ACTIONS(8599), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [200796] = 4, + STATE(5980), 1, + sym__immediate_decimal, + ACTIONS(8464), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [201350] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_LF, STATE(4806), 1, sym_comment, - ACTIONS(8593), 4, + ACTIONS(3618), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3616), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200812] = 4, + anon_sym_DASH, + [201366] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_LF, STATE(4807), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(3773), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3771), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [200828] = 7, - ACTIONS(105), 1, + anon_sym_DASH, + [201382] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8611), 1, - anon_sym_SQUOTE, + ACTIONS(369), 1, + anon_sym_DQUOTE, + ACTIONS(8689), 1, + aux_sym_path_token1, + STATE(2880), 1, + sym__str_double_quotes, STATE(4808), 1, sym_comment, - STATE(4818), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5393), 1, - sym_expr_interpolated, - [200850] = 4, + ACTIONS(8687), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [201402] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8400), 1, + anon_sym_LF, STATE(4809), 1, sym_comment, - ACTIONS(3343), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3341), 3, + ACTIONS(8398), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [200866] = 4, + anon_sym_RBRACE, + [201418] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_LF, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8691), 1, + anon_sym_SQUOTE, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4810), 1, sym_comment, - ACTIONS(8593), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [200882] = 4, + STATE(5475), 1, + sym_expr_interpolated, + [201440] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, + ACTIONS(8400), 1, anon_sym_LF, STATE(4811), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(8398), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200898] = 4, - ACTIONS(105), 1, + [201456] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_LF, + ACTIONS(8460), 1, + anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, STATE(4812), 1, sym_comment, - ACTIONS(8593), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [200914] = 4, + STATE(5867), 1, + sym__immediate_decimal, + ACTIONS(8464), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [201476] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_LF, - STATE(4813), 1, - sym_comment, - ACTIONS(8599), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5401), 1, anon_sym_PIPE, - anon_sym_RBRACE, - [200930] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8595), 1, + ACTIONS(8204), 1, + anon_sym_SEMI, + ACTIONS(8206), 1, anon_sym_LF, - STATE(4814), 1, + ACTIONS(8693), 1, + ts_builtin_sym_end, + STATE(2532), 1, + aux_sym_pipe_element_repeat1, + STATE(4813), 1, sym_comment, - ACTIONS(8593), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [200946] = 6, + [201498] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8182), 1, + ACTIONS(5218), 1, anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, - STATE(4815), 1, - sym_comment, - STATE(5860), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [200966] = 4, + STATE(2425), 1, + sym_path, + STATE(3362), 1, + sym_cell_path, + STATE(4814), 1, + sym_comment, + ACTIONS(1476), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [201518] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, + ACTIONS(8616), 1, anon_sym_LF, - STATE(4816), 1, + STATE(4815), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(8614), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200982] = 4, + [201534] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8595), 1, + ACTIONS(8400), 1, anon_sym_LF, - STATE(4817), 1, + STATE(4816), 1, sym_comment, - ACTIONS(8593), 4, + ACTIONS(8398), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [200998] = 7, + [201550] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, + ACTIONS(8375), 1, anon_sym_LPAREN, - ACTIONS(8190), 1, + ACTIONS(8377), 1, sym_unescaped_interpolated_content, - ACTIONS(8613), 1, + ACTIONS(8695), 1, anon_sym_SQUOTE, - STATE(4515), 1, + STATE(4693), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4818), 1, + STATE(4817), 1, sym_comment, - STATE(5393), 1, + STATE(5475), 1, sym_expr_interpolated, - [201020] = 4, + [201572] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8671), 1, + anon_sym_LF, + STATE(4818), 1, + sym_comment, + ACTIONS(8669), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [201588] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4819), 1, sym_comment, - ACTIONS(3347), 2, + ACTIONS(3769), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3345), 3, + ACTIONS(3767), 3, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH, - [201036] = 4, + [201604] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, + ACTIONS(8604), 1, anon_sym_LF, STATE(4820), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(8602), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201052] = 6, - ACTIONS(3), 1, + [201620] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(8619), 1, - aux_sym_path_token1, - STATE(2419), 1, - sym__str_double_quotes, + ACTIONS(8616), 1, + anon_sym_LF, STATE(4821), 1, sym_comment, - ACTIONS(8617), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [201072] = 6, - ACTIONS(3), 1, + ACTIONS(8614), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [201636] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5321), 1, - anon_sym_DOT2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, + anon_sym_LF, + ACTIONS(8697), 1, + anon_sym_RPAREN, + STATE(1195), 1, + aux_sym__block_body_repeat1, + STATE(1279), 1, + sym__terminator, STATE(4822), 1, sym_comment, - STATE(6120), 1, - sym__immediate_decimal, - ACTIONS(7020), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [201092] = 4, - ACTIONS(105), 1, + [201658] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_LF, + ACTIONS(8699), 1, + anon_sym_DQUOTE, + ACTIONS(8703), 1, + aux_sym_path_token1, + STATE(1734), 1, + sym__str_double_quotes, STATE(4823), 1, sym_comment, - ACTIONS(8593), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [201108] = 4, + ACTIONS(8701), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [201678] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, + ACTIONS(8616), 1, anon_sym_LF, STATE(4824), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(8614), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201124] = 4, + [201694] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8595), 1, + ACTIONS(8400), 1, anon_sym_LF, STATE(4825), 1, sym_comment, - ACTIONS(8593), 4, + ACTIONS(8398), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201140] = 4, - ACTIONS(105), 1, + [201710] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8705), 1, + anon_sym_DQUOTE, + ACTIONS(8709), 1, + aux_sym_path_token1, + STATE(520), 1, + sym__str_double_quotes, STATE(4826), 1, sym_comment, - ACTIONS(3351), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3349), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [201156] = 6, + ACTIONS(8707), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [201730] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8621), 1, + ACTIONS(8711), 1, anon_sym_DQUOTE, - ACTIONS(8625), 1, + ACTIONS(8715), 1, aux_sym_path_token1, - STATE(2564), 1, + STATE(2409), 1, sym__str_double_quotes, STATE(4827), 1, sym_comment, - ACTIONS(8623), 2, + ACTIONS(8713), 2, sym__str_single_quotes, sym__str_back_ticks, - [201176] = 4, + [201750] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_LF, STATE(4828), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(3622), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3620), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [201192] = 5, - ACTIONS(3), 1, + anon_sym_DASH, + [201766] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8627), 1, - anon_sym_DOT2, + ACTIONS(8719), 1, + anon_sym_LF, + ACTIONS(8722), 1, + anon_sym_else, STATE(4829), 1, sym_comment, - ACTIONS(2906), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [201210] = 6, + ACTIONS(8717), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [201784] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5321), 1, + ACTIONS(8460), 1, anon_sym_DOT2, - ACTIONS(7018), 1, + ACTIONS(8462), 1, aux_sym__immediate_decimal_token1, STATE(4830), 1, sym_comment, - STATE(6121), 1, + STATE(5906), 1, sym__immediate_decimal, - ACTIONS(7020), 2, + ACTIONS(8464), 2, anon_sym_DASH2, anon_sym_PLUS2, - [201230] = 4, + [201804] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_LF, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8724), 1, + anon_sym_SQUOTE, + STATE(4810), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4831), 1, sym_comment, - ACTIONS(8593), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [201246] = 4, + STATE(5475), 1, + sym_expr_interpolated, + [201826] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_LF, STATE(4832), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(3761), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3759), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [201262] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + [201842] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_LF, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8726), 1, + anon_sym_DOT2, STATE(4833), 1, sym_comment, - ACTIONS(8593), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [201278] = 4, + STATE(6177), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [201862] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_LF, STATE(4834), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(3757), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3755), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [201294] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + [201878] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_LF, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(8730), 1, + aux_sym_path_token1, + STATE(3015), 1, + sym__str_double_quotes, STATE(4835), 1, sym_comment, - ACTIONS(8593), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [201310] = 4, + ACTIONS(8728), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [201898] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_LF, STATE(4836), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(3751), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3749), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [201326] = 4, + anon_sym_DASH, + [201914] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8671), 1, anon_sym_LF, STATE(4837), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(8669), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201342] = 6, - ACTIONS(3), 1, + [201930] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(8625), 1, - aux_sym_path_token1, - STATE(2564), 1, - sym__str_double_quotes, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8732), 1, + anon_sym_SQUOTE, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4838), 1, sym_comment, - ACTIONS(8623), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [201362] = 4, + STATE(5475), 1, + sym_expr_interpolated, + [201952] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, + ACTIONS(8604), 1, anon_sym_LF, STATE(4839), 1, sym_comment, - ACTIONS(8514), 4, + ACTIONS(8602), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201378] = 4, + [201968] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(8671), 1, anon_sym_LF, STATE(4840), 1, sym_comment, - ACTIONS(8575), 4, + ACTIONS(8669), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201394] = 6, - ACTIONS(3), 1, + [201984] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DOT2, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8671), 1, + anon_sym_LF, STATE(4841), 1, sym_comment, - STATE(5888), 1, - sym__immediate_decimal, - ACTIONS(8186), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [201414] = 4, + ACTIONS(8669), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202000] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4842), 1, - sym_comment, - ACTIONS(3155), 2, + ACTIONS(8734), 1, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3153), 3, + ACTIONS(8736), 1, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [201430] = 4, + ACTIONS(8738), 1, + anon_sym_LF, + STATE(4842), 1, + sym_comment, + STATE(4891), 1, + aux_sym__block_body_repeat1, + STATE(5438), 1, + sym__terminator, + [202022] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, + ACTIONS(8604), 1, anon_sym_LF, STATE(4843), 1, sym_comment, - ACTIONS(8514), 4, + ACTIONS(8602), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201446] = 4, + [202038] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8671), 1, anon_sym_LF, STATE(4844), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(8669), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201462] = 4, + [202054] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, + ACTIONS(8604), 1, anon_sym_LF, STATE(4845), 1, sym_comment, - ACTIONS(8514), 4, + ACTIONS(8602), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201478] = 4, + [202070] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8671), 1, anon_sym_LF, STATE(4846), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(8669), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201494] = 4, + [202086] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, - anon_sym_LF, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8740), 1, + anon_sym_SQUOTE, + STATE(4838), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4847), 1, sym_comment, - ACTIONS(8514), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [201510] = 4, + STATE(5475), 1, + sym_expr_interpolated, + [202108] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8604), 1, anon_sym_LF, STATE(4848), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(8602), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201526] = 4, + [202124] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, + ACTIONS(8671), 1, anon_sym_LF, STATE(4849), 1, sym_comment, - ACTIONS(8514), 4, + ACTIONS(8669), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201542] = 4, + [202140] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8616), 1, anon_sym_LF, STATE(4850), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(8614), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201558] = 4, - ACTIONS(105), 1, + [202156] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8742), 1, + anon_sym_DQUOTE, + ACTIONS(8746), 1, + aux_sym_path_token1, + STATE(1921), 1, + sym__str_double_quotes, STATE(4851), 1, sym_comment, - ACTIONS(3355), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3353), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [201574] = 7, + ACTIONS(8744), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [202176] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, - sym_unescaped_interpolated_content, - ACTIONS(8629), 1, - anon_sym_SQUOTE, - STATE(4741), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8604), 1, + anon_sym_LF, STATE(4852), 1, sym_comment, - STATE(5393), 1, - sym_expr_interpolated, - [201596] = 4, + ACTIONS(8602), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202192] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8671), 1, + anon_sym_LF, STATE(4853), 1, sym_comment, - ACTIONS(3359), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3357), 3, + ACTIONS(8669), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - [201612] = 7, + anon_sym_RBRACE, + [202208] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8488), 1, - anon_sym_SEMI, - ACTIONS(8490), 1, + ACTIONS(8604), 1, anon_sym_LF, - ACTIONS(8609), 1, - ts_builtin_sym_end, - STATE(4527), 1, - aux_sym__block_body_repeat1, STATE(4854), 1, sym_comment, - STATE(5422), 1, - sym__terminator, - [201634] = 6, - ACTIONS(3), 1, + ACTIONS(8602), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202224] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8631), 1, - anon_sym_DQUOTE, - ACTIONS(8635), 1, - aux_sym_path_token1, - STATE(3450), 1, - sym__str_double_quotes, + ACTIONS(8604), 1, + anon_sym_LF, STATE(4855), 1, sym_comment, - ACTIONS(8633), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [201654] = 6, + ACTIONS(8602), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202240] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5321), 1, + ACTIONS(6263), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8748), 1, anon_sym_DOT2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, STATE(4856), 1, sym_comment, - STATE(6122), 1, - sym__immediate_decimal, - ACTIONS(7020), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [201674] = 4, - ACTIONS(105), 1, + ACTIONS(2834), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [202258] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4857), 1, sym_comment, - ACTIONS(3363), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3361), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH, - [201690] = 7, + ACTIONS(8751), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202272] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8488), 1, - anon_sym_SEMI, - ACTIONS(8490), 1, + ACTIONS(8755), 1, anon_sym_LF, - ACTIONS(8637), 1, - ts_builtin_sym_end, - STATE(4527), 1, - aux_sym__block_body_repeat1, STATE(4858), 1, sym_comment, - STATE(5422), 1, - sym__terminator, - [201712] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8516), 1, - anon_sym_LF, - STATE(4859), 1, - sym_comment, - ACTIONS(8514), 4, + ACTIONS(8753), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201728] = 4, + [202288] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8759), 1, anon_sym_LF, - STATE(4860), 1, + STATE(4859), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(8757), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201744] = 4, + [202304] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, + ACTIONS(8761), 1, + ts_builtin_sym_end, + ACTIONS(8763), 1, + anon_sym_SEMI, + ACTIONS(8766), 1, anon_sym_LF, + STATE(5438), 1, + sym__terminator, + STATE(4860), 2, + sym_comment, + aux_sym__block_body_repeat1, + [202324] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6319), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8769), 1, + anon_sym_DOT2, STATE(4861), 1, sym_comment, - ACTIONS(8514), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2936), 3, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - [201760] = 4, + [202342] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LF, + STATE(1285), 1, + sym__terminator, STATE(4862), 1, sym_comment, - ACTIONS(8585), 4, - anon_sym_SEMI, + ACTIONS(3743), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [201776] = 4, + [202362] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, + ACTIONS(8736), 1, + anon_sym_SEMI, + ACTIONS(8738), 1, anon_sym_LF, + ACTIONS(8772), 1, + ts_builtin_sym_end, + STATE(4860), 1, + aux_sym__block_body_repeat1, STATE(4863), 1, sym_comment, - ACTIONS(8514), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [201792] = 4, + STATE(5438), 1, + sym__terminator, + [202384] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8776), 1, anon_sym_LF, STATE(4864), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(8774), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201808] = 4, + [202400] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, - anon_sym_LF, STATE(4865), 1, sym_comment, - ACTIONS(8514), 4, + ACTIONS(3747), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3745), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [201824] = 4, + anon_sym_DASH, + [202416] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8780), 1, anon_sym_LF, STATE(4866), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(8778), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201840] = 4, + [202432] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8516), 1, + ACTIONS(8400), 1, anon_sym_LF, STATE(4867), 1, sym_comment, - ACTIONS(8514), 4, + ACTIONS(8398), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201856] = 4, - ACTIONS(105), 1, + [202448] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8587), 1, - anon_sym_LF, STATE(4868), 1, sym_comment, - ACTIONS(8585), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [201872] = 4, - ACTIONS(105), 1, + ACTIONS(8782), 5, + sym_cmd_identifier, + anon_sym_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202462] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8516), 1, - anon_sym_LF, + ACTIONS(8784), 1, + anon_sym_DOT2, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8788), 1, + anon_sym_DASH2, + ACTIONS(8790), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8792), 1, + aux_sym_short_flag_token1, STATE(4869), 1, sym_comment, - ACTIONS(8514), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [201888] = 4, + [202484] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8616), 1, anon_sym_LF, STATE(4870), 1, sym_comment, - ACTIONS(8585), 4, + ACTIONS(8614), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [201904] = 5, + [202500] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8639), 1, - anon_sym_DQUOTE, STATE(4871), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [201921] = 6, - ACTIONS(3), 1, + ACTIONS(3733), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3731), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [202516] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(3205), 1, - sym_val_closure, - STATE(3207), 1, - sym_block, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, + anon_sym_LF, + STATE(1434), 1, + sym__terminator, STATE(4872), 1, sym_comment, - STATE(5004), 1, - sym__blosure, - [201940] = 6, - ACTIONS(3), 1, + ACTIONS(8794), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [202536] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8647), 1, - anon_sym_RBRACK, + ACTIONS(8798), 1, + anon_sym_LF, STATE(4873), 1, sym_comment, - STATE(4894), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [201959] = 6, + ACTIONS(8796), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202552] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7993), 1, - anon_sym_DOT2, - ACTIONS(7995), 1, - anon_sym_LPAREN2, - ACTIONS(8001), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8649), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(4488), 1, + anon_sym_DQUOTE, + ACTIONS(8802), 1, + aux_sym_path_token1, + STATE(2700), 1, + sym__str_double_quotes, STATE(4874), 1, sym_comment, - [201978] = 4, + ACTIONS(8800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [202572] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4875), 1, - sym_comment, - ACTIONS(8585), 2, - anon_sym_SEMI, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(8587), 2, - ts_builtin_sym_end, + ACTIONS(8209), 1, + anon_sym_SEMI, + ACTIONS(8211), 1, anon_sym_LF, - [201993] = 4, + ACTIONS(8804), 1, + ts_builtin_sym_end, + STATE(2534), 1, + aux_sym_pipe_element_repeat1, + STATE(4875), 1, + sym_comment, + [202594] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8420), 1, + anon_sym_LF, STATE(4876), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(8418), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8516), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202008] = 4, - ACTIONS(105), 1, + anon_sym_RBRACE, + [202610] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8460), 1, + anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, STATE(4877), 1, sym_comment, - ACTIONS(8585), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8587), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202023] = 6, - ACTIONS(3), 1, + STATE(5951), 1, + sym__immediate_decimal, + ACTIONS(8464), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [202630] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8651), 1, - anon_sym_RBRACK, + ACTIONS(8400), 1, + anon_sym_LF, STATE(4878), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [202042] = 4, + ACTIONS(8398), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202646] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8616), 1, + anon_sym_LF, STATE(4879), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(8614), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8516), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202057] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [202662] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8434), 1, + anon_sym_LF, STATE(4880), 1, sym_comment, - ACTIONS(8653), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [202070] = 4, + ACTIONS(8432), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202678] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4881), 1, sym_comment, - ACTIONS(8585), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8587), 2, + ACTIONS(3729), 2, ts_builtin_sym_end, anon_sym_LF, - [202085] = 6, - ACTIONS(3), 1, + ACTIONS(3727), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [202694] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8655), 1, - anon_sym_DOT2, - ACTIONS(8657), 1, - anon_sym_LPAREN2, - ACTIONS(8659), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8661), 1, - aux_sym__immediate_decimal_token3, STATE(4882), 1, sym_comment, - [202104] = 6, - ACTIONS(3), 1, + ACTIONS(3634), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3632), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [202710] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_LBRACK, - ACTIONS(8665), 1, - anon_sym_LPAREN, STATE(4883), 1, sym_comment, - STATE(5182), 1, - sym_parameter_parens, - STATE(5183), 1, - sym_parameter_bracks, - [202123] = 6, + ACTIONS(3725), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3723), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [202726] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1620), 1, - sym_block, STATE(4884), 1, sym_comment, - STATE(5533), 1, - sym_returns, - [202142] = 6, + ACTIONS(8806), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1619), 1, - sym_block, STATE(4885), 1, sym_comment, - STATE(5532), 1, - sym_returns, - [202161] = 5, + ACTIONS(8808), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202754] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8669), 1, - anon_sym_DQUOTE, STATE(4886), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [202178] = 4, + ACTIONS(3640), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3638), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [202770] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8810), 1, + anon_sym_SQUOTE, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4887), 1, sym_comment, - ACTIONS(8599), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8601), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202193] = 4, - ACTIONS(105), 1, + STATE(5475), 1, + sym_expr_interpolated, + [202792] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8460), 1, + anon_sym_DOT2, + ACTIONS(8462), 1, + aux_sym__immediate_decimal_token1, STATE(4888), 1, sym_comment, - ACTIONS(8585), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8587), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202208] = 5, + STATE(5931), 1, + sym__immediate_decimal, + ACTIONS(8464), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [202812] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8671), 1, - anon_sym_DQUOTE, + ACTIONS(8616), 1, + anon_sym_LF, STATE(4889), 1, sym_comment, - STATE(4904), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [202225] = 4, + ACTIONS(8614), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202828] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8400), 1, + anon_sym_LF, STATE(4890), 1, sym_comment, - ACTIONS(8593), 2, + ACTIONS(8398), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8595), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202240] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [202844] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1600), 1, - sym_block, + ACTIONS(8736), 1, + anon_sym_SEMI, + ACTIONS(8738), 1, + anon_sym_LF, + ACTIONS(8812), 1, + ts_builtin_sym_end, + STATE(4860), 1, + aux_sym__block_body_repeat1, STATE(4891), 1, sym_comment, - STATE(5544), 1, - sym_returns, - [202259] = 5, + STATE(5438), 1, + sym__terminator, + [202866] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8673), 1, - anon_sym_DQUOTE, - STATE(4871), 1, - aux_sym__str_double_quotes_repeat1, STATE(4892), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [202276] = 5, - ACTIONS(105), 1, + ACTIONS(3644), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3642), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [202882] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8675), 1, + ACTIONS(8454), 1, + aux_sym_path_token1, + ACTIONS(8814), 1, anon_sym_DQUOTE, - STATE(4886), 1, - aux_sym__str_double_quotes_repeat1, + STATE(2631), 1, + sym__str_double_quotes, STATE(4893), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [202293] = 6, - ACTIONS(3), 1, + ACTIONS(8452), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [202902] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8677), 1, - anon_sym_RBRACK, STATE(4894), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [202312] = 6, - ACTIONS(3), 1, + ACTIONS(3652), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3650), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [202918] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8679), 1, - anon_sym_DOT2, - ACTIONS(8681), 1, - anon_sym_LPAREN2, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(8616), 1, + anon_sym_LF, STATE(4895), 1, sym_comment, - [202331] = 3, - ACTIONS(3), 1, + ACTIONS(8614), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202934] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4896), 1, sym_comment, - ACTIONS(8687), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [202344] = 6, - ACTIONS(3), 1, + ACTIONS(3656), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3654), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [202950] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1601), 1, - sym_block, + ACTIONS(8400), 1, + anon_sym_LF, STATE(4897), 1, sym_comment, - STATE(5543), 1, - sym_returns, - [202363] = 4, + ACTIONS(8398), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [202966] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8816), 1, + anon_sym_SQUOTE, STATE(4898), 1, sym_comment, - ACTIONS(8599), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8601), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202378] = 4, - ACTIONS(105), 1, + STATE(4907), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5475), 1, + sym_expr_interpolated, + [202988] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4899), 1, sym_comment, - ACTIONS(8593), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8595), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202393] = 3, - ACTIONS(3), 1, + ACTIONS(8818), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [203002] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4900), 1, sym_comment, - ACTIONS(3292), 4, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(3666), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3664), 3, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - [202406] = 4, + [203018] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4901), 1, - sym_comment, - ACTIONS(8599), 2, + ACTIONS(8736), 1, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8601), 2, - ts_builtin_sym_end, + ACTIONS(8738), 1, anon_sym_LF, - [202421] = 4, + ACTIONS(8812), 1, + ts_builtin_sym_end, + STATE(4863), 1, + aux_sym__block_body_repeat1, + STATE(4901), 1, + sym_comment, + STATE(5438), 1, + sym__terminator, + [203040] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8820), 1, + anon_sym_DOT2, STATE(4902), 1, sym_comment, - ACTIONS(8593), 2, + ACTIONS(3206), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(3208), 2, ts_builtin_sym_end, anon_sym_LF, - [202436] = 4, + [203058] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4903), 1, sym_comment, - ACTIONS(8599), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8601), 2, + ACTIONS(3674), 2, ts_builtin_sym_end, anon_sym_LF, - [202451] = 5, + ACTIONS(3672), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [203074] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8689), 1, - anon_sym_DQUOTE, + ACTIONS(8616), 1, + anon_sym_LF, STATE(4904), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [202468] = 4, + ACTIONS(8614), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [203090] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4905), 1, sym_comment, - ACTIONS(8593), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(3678), 2, ts_builtin_sym_end, anon_sym_LF, - [202483] = 4, + ACTIONS(3676), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [203106] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8400), 1, + anon_sym_LF, STATE(4906), 1, sym_comment, - ACTIONS(8599), 2, + ACTIONS(8398), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8601), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202498] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [203122] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, + sym_unescaped_interpolated_content, + ACTIONS(8822), 1, + anon_sym_SQUOTE, + STATE(4693), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4907), 1, sym_comment, - ACTIONS(3272), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_in, - [202511] = 4, + STATE(5475), 1, + sym_expr_interpolated, + [203144] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8824), 1, + sym__long_flag_identifier, STATE(4908), 1, sym_comment, - ACTIONS(8593), 2, + ACTIONS(3153), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(3157), 2, ts_builtin_sym_end, anon_sym_LF, - [202526] = 4, + [203162] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4909), 1, sym_comment, - ACTIONS(8599), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8601), 2, + ACTIONS(3682), 2, ts_builtin_sym_end, anon_sym_LF, - [202541] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4910), 1, - sym_comment, - ACTIONS(8593), 2, + ACTIONS(3680), 3, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8595), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202556] = 6, + anon_sym_DASH, + [203178] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8691), 1, - anon_sym_RBRACK, - STATE(4911), 1, + ACTIONS(8826), 1, + anon_sym_DQUOTE, + ACTIONS(8830), 1, + aux_sym_path_token1, + STATE(2469), 1, + sym__str_double_quotes, + STATE(4910), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [202575] = 6, - ACTIONS(3), 1, + ACTIONS(8828), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [203198] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(8693), 1, - anon_sym_if, - STATE(4912), 1, + STATE(4911), 1, sym_comment, - STATE(5225), 1, - sym_ctrl_if, - STATE(5228), 1, - sym_block, - [202594] = 6, + ACTIONS(3705), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3703), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [203214] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8488), 1, - anon_sym_SEMI, - ACTIONS(8490), 1, - anon_sym_LF, - ACTIONS(8695), 1, + STATE(4912), 1, + sym_comment, + ACTIONS(3709), 2, ts_builtin_sym_end, - STATE(1522), 1, - sym__terminator, + anon_sym_LF, + ACTIONS(3707), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [203230] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8832), 1, + anon_sym_DOT2, STATE(4913), 1, sym_comment, - [202613] = 4, + STATE(6179), 1, + sym__immediate_decimal, + ACTIONS(7177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [203250] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8836), 1, + anon_sym_LF, STATE(4914), 1, sym_comment, - ACTIONS(8599), 2, + ACTIONS(8834), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8601), 2, - ts_builtin_sym_end, - anon_sym_LF, - [202628] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [203266] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(3205), 1, - sym_val_closure, - STATE(3207), 1, - sym_block, STATE(4915), 1, sym_comment, - STATE(5217), 1, - sym__blosure, - [202647] = 4, + ACTIONS(3713), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3711), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [203282] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4916), 1, sym_comment, - ACTIONS(8593), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(3717), 2, ts_builtin_sym_end, anon_sym_LF, - [202662] = 4, + ACTIONS(3715), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH, + [203298] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4917), 1, sym_comment, - ACTIONS(8599), 2, + ACTIONS(7846), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8601), 2, + ACTIONS(7848), 2, ts_builtin_sym_end, anon_sym_LF, - [202677] = 4, + [203313] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8840), 1, + anon_sym_LF, STATE(4918), 1, sym_comment, - ACTIONS(8593), 2, + ACTIONS(8838), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203328] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4919), 1, + sym_comment, + ACTIONS(8398), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(8400), 2, ts_builtin_sym_end, anon_sym_LF, - [202692] = 4, + [203343] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4919), 1, + STATE(4920), 1, sym_comment, - ACTIONS(8251), 2, + ACTIONS(8614), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8253), 2, + ACTIONS(8616), 2, ts_builtin_sym_end, anon_sym_LF, - [202707] = 4, + [203358] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8699), 1, + STATE(4921), 1, + sym_comment, + ACTIONS(3608), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3610), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(4920), 1, + [203373] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8842), 1, + anon_sym_LPAREN, + STATE(4922), 1, + sym_comment, + ACTIONS(8844), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [203388] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1560), 1, + sym_block, + STATE(4923), 1, + sym_comment, + STATE(5599), 1, + sym_returns, + [203407] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8850), 1, + anon_sym_LF, + STATE(4924), 1, sym_comment, - ACTIONS(8697), 3, + ACTIONS(8848), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [202722] = 4, + anon_sym_PIPE, + [203422] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1561), 1, + sym_block, + STATE(4925), 1, + sym_comment, + STATE(5600), 1, + sym_returns, + [203441] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8703), 1, + ACTIONS(8852), 1, + anon_sym_DQUOTE, + STATE(4926), 1, + sym_comment, + STATE(4954), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [203458] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8858), 1, anon_sym_LF, - STATE(4921), 1, + STATE(4927), 1, sym_comment, - ACTIONS(8701), 3, + ACTIONS(8856), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [202737] = 4, + anon_sym_PIPE, + [203473] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4928), 1, + sym_comment, + ACTIONS(8860), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [203486] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4922), 1, + STATE(4929), 1, sym_comment, - ACTIONS(8599), 2, + ACTIONS(3585), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8601), 2, + ACTIONS(3587), 2, ts_builtin_sym_end, anon_sym_LF, - [202752] = 4, + [203501] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4923), 1, + STATE(4930), 1, sym_comment, - ACTIONS(8370), 2, + ACTIONS(7840), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8372), 2, + ACTIONS(7842), 2, ts_builtin_sym_end, anon_sym_LF, - [202767] = 3, - ACTIONS(3), 1, + [203516] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4924), 1, + STATE(4931), 1, sym_comment, - ACTIONS(8705), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [202780] = 6, - ACTIONS(3), 1, + ACTIONS(8614), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8616), 2, + ts_builtin_sym_end, + anon_sym_LF, + [203531] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8707), 1, - anon_sym_RBRACK, - STATE(4911), 1, - aux_sym_val_table_repeat1, - STATE(4925), 1, + ACTIONS(8862), 1, + anon_sym_DQUOTE, + STATE(4932), 1, sym_comment, - STATE(5542), 1, - sym_val_list, - [202799] = 4, - ACTIONS(105), 1, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [203548] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, - anon_sym_LPAREN, - STATE(4926), 1, + ACTIONS(8122), 1, + anon_sym_LPAREN2, + ACTIONS(8864), 1, + anon_sym_DOT2, + ACTIONS(8866), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8868), 1, + aux_sym__immediate_decimal_token3, + STATE(4933), 1, sym_comment, - ACTIONS(8711), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [202814] = 6, + [203567] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7993), 1, + ACTIONS(8870), 1, anon_sym_DOT2, - ACTIONS(7995), 1, + ACTIONS(8872), 1, anon_sym_LPAREN2, - ACTIONS(8001), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8713), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token1, - STATE(4927), 1, + ACTIONS(8876), 1, + aux_sym__immediate_decimal_token3, + STATE(4934), 1, sym_comment, - [202833] = 4, + [203586] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4928), 1, + STATE(4935), 1, sym_comment, - ACTIONS(8593), 2, + ACTIONS(3763), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(3765), 2, ts_builtin_sym_end, anon_sym_LF, - [202848] = 4, + [203601] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4936), 1, + sym_comment, + ACTIONS(8878), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [203614] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4929), 1, + STATE(4937), 1, sym_comment, - ACTIONS(8599), 2, + ACTIONS(7815), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8601), 2, + ACTIONS(7817), 2, ts_builtin_sym_end, anon_sym_LF, - [202863] = 4, + [203629] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4930), 1, + STATE(4938), 1, sym_comment, - ACTIONS(8593), 2, + ACTIONS(3600), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(3602), 2, ts_builtin_sym_end, anon_sym_LF, - [202878] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT2, - STATE(4931), 1, - sym_comment, - ACTIONS(6630), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202893] = 3, + [203644] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4932), 1, + STATE(4939), 1, sym_comment, - ACTIONS(8717), 4, + ACTIONS(8880), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [202906] = 6, + [203657] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, + ACTIONS(8120), 1, anon_sym_DOT2, - ACTIONS(8721), 1, + ACTIONS(8122), 1, anon_sym_LPAREN2, - ACTIONS(8723), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8725), 1, + ACTIONS(8128), 1, aux_sym__immediate_decimal_token3, - STATE(4933), 1, + ACTIONS(8882), 1, + aux_sym__immediate_decimal_token1, + STATE(4940), 1, sym_comment, - [202925] = 5, + [203676] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8727), 1, - anon_sym_DQUOTE, - STATE(4934), 1, + STATE(4941), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [202942] = 4, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [203691] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4935), 1, + STATE(4942), 1, sym_comment, - ACTIONS(8599), 2, + ACTIONS(7884), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8601), 2, + ACTIONS(7886), 2, ts_builtin_sym_end, anon_sym_LF, - [202957] = 5, + [203706] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8729), 1, - anon_sym_DQUOTE, - STATE(4936), 1, + ACTIONS(8884), 1, + anon_sym_LPAREN, + STATE(4943), 1, sym_comment, - STATE(4937), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [202974] = 5, + ACTIONS(8886), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [203721] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(8890), 1, + anon_sym_RBRACK, + STATE(4944), 1, + sym_comment, + STATE(4958), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [203740] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_DQUOTE, - STATE(4937), 1, + ACTIONS(3897), 1, + ts_builtin_sym_end, + ACTIONS(8736), 1, + anon_sym_SEMI, + ACTIONS(8738), 1, + anon_sym_LF, + STATE(1551), 1, + sym__terminator, + STATE(4945), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [202991] = 5, + [203759] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8733), 1, + ACTIONS(8892), 1, anon_sym_DQUOTE, - STATE(4938), 1, + STATE(4946), 1, sym_comment, - STATE(4952), 1, + STATE(5338), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [203008] = 4, + [203776] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4939), 1, + STATE(4947), 1, sym_comment, - ACTIONS(8593), 2, + ACTIONS(8614), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(8616), 2, ts_builtin_sym_end, anon_sym_LF, - [203023] = 4, + [203791] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4940), 1, + STATE(4948), 1, sym_comment, - ACTIONS(8599), 2, + ACTIONS(8398), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8601), 2, + ACTIONS(8400), 2, ts_builtin_sym_end, anon_sym_LF, - [203038] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT2, - STATE(4941), 1, - sym_comment, - ACTIONS(1365), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [203053] = 4, + [203806] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4942), 1, + STATE(4949), 1, sym_comment, - ACTIONS(8593), 2, + ACTIONS(8641), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(8643), 2, ts_builtin_sym_end, anon_sym_LF, - [203068] = 4, + [203821] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4950), 1, + sym_comment, + ACTIONS(3401), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_in, + [203834] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4943), 1, + STATE(4951), 1, sym_comment, - ACTIONS(8599), 2, + ACTIONS(8614), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8601), 2, + ACTIONS(8616), 2, ts_builtin_sym_end, anon_sym_LF, - [203083] = 4, + [203849] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4944), 1, + STATE(4952), 1, sym_comment, - ACTIONS(8593), 2, + ACTIONS(8398), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8595), 2, + ACTIONS(8400), 2, ts_builtin_sym_end, anon_sym_LF, - [203098] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8735), 1, - anon_sym_DQUOTE, - STATE(4934), 1, - aux_sym__str_double_quotes_repeat1, - STATE(4945), 1, - sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [203115] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7953), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8413), 1, - anon_sym_DOT2, - ACTIONS(8415), 1, - aux_sym__record_key_token1, - STATE(4946), 1, - sym_comment, - [203134] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8737), 1, - anon_sym_DOT2, - ACTIONS(8739), 1, - anon_sym_LPAREN2, - ACTIONS(8741), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8743), 1, - aux_sym__immediate_decimal_token3, - STATE(4947), 1, - sym_comment, - [203153] = 3, + [203864] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4948), 1, + STATE(4953), 1, sym_comment, - ACTIONS(8745), 4, + ACTIONS(8894), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [203166] = 5, + [203877] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8747), 1, + ACTIONS(8896), 1, anon_sym_DQUOTE, - STATE(4949), 1, + STATE(4954), 1, sym_comment, - STATE(5083), 1, + STATE(5138), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [203183] = 4, + [203894] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4950), 1, + STATE(4955), 1, sym_comment, - ACTIONS(8589), 2, + ACTIONS(8398), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8591), 2, + ACTIONS(8400), 2, ts_builtin_sym_end, anon_sym_LF, - [203198] = 4, + [203909] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4951), 1, + STATE(4956), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(8614), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8516), 2, + ACTIONS(8616), 2, ts_builtin_sym_end, anon_sym_LF, - [203213] = 5, + [203924] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8749), 1, - anon_sym_DQUOTE, - STATE(4952), 1, + ACTIONS(8900), 1, + anon_sym_LF, + STATE(4957), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [203230] = 4, + ACTIONS(8898), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, - anon_sym_DOT2, - STATE(4953), 1, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(8902), 1, + anon_sym_RBRACK, + STATE(4958), 1, sym_comment, - ACTIONS(3125), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [203245] = 4, + STATE(5239), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [203958] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4954), 1, + STATE(4959), 1, sym_comment, - ACTIONS(8585), 2, + ACTIONS(8398), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8587), 2, + ACTIONS(8400), 2, ts_builtin_sym_end, anon_sym_LF, - [203260] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_LBRACK, - ACTIONS(8665), 1, - anon_sym_LPAREN, - STATE(4955), 1, - sym_comment, - STATE(5273), 1, - sym_parameter_bracks, - STATE(5276), 1, - sym_parameter_parens, - [203279] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1332), 1, - sym_block, - STATE(4956), 1, - sym_comment, - STATE(5500), 1, - sym_returns, - [203298] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1331), 1, - sym_block, - STATE(4957), 1, - sym_comment, - STATE(5499), 1, - sym_returns, - [203317] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8753), 1, - anon_sym_DOT2, - STATE(4958), 1, - sym_comment, - ACTIONS(3131), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [203332] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8755), 1, - anon_sym_LBRACK, - ACTIONS(8757), 1, - anon_sym_LPAREN, - STATE(1427), 1, - sym_parameter_parens, - STATE(1428), 1, - sym_parameter_bracks, - STATE(4959), 1, - sym_comment, - [203351] = 6, - ACTIONS(3), 1, + [203973] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8759), 1, - anon_sym_RBRACK, + ACTIONS(3893), 1, + anon_sym_LF, STATE(4960), 1, sym_comment, - STATE(4972), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [203370] = 6, + ACTIONS(3545), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203988] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_SEMI, - ACTIONS(8761), 1, + ACTIONS(3895), 1, anon_sym_LF, - STATE(2501), 1, - aux_sym_pipe_element_repeat1, STATE(4961), 1, sym_comment, - [203389] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4962), 1, - sym_comment, - ACTIONS(8514), 2, + ACTIONS(3555), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8516), 2, - ts_builtin_sym_end, - anon_sym_LF, - [203404] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204003] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4963), 1, + STATE(4962), 1, sym_comment, - ACTIONS(8763), 4, + ACTIONS(8904), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [203417] = 6, + [204016] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - ACTIONS(8765), 1, - anon_sym_if, - STATE(4711), 1, - sym_ctrl_if, - STATE(4712), 1, - sym_block, + STATE(4963), 1, + sym_comment, + ACTIONS(3397), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_in, + [204029] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(4964), 1, sym_comment, - [203436] = 6, - ACTIONS(3), 1, + ACTIONS(8614), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8616), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204044] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8767), 1, - anon_sym_RBRACK, STATE(4965), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [203455] = 6, + ACTIONS(8398), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8400), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204059] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1257), 1, - sym_block, + ACTIONS(8906), 1, + anon_sym_DOT2, + ACTIONS(8908), 1, + anon_sym_LPAREN2, + ACTIONS(8910), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8912), 1, + aux_sym__immediate_decimal_token3, STATE(4966), 1, sym_comment, - STATE(5491), 1, - sym_returns, - [203474] = 6, + [204078] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7894), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(7923), 1, - anon_sym_DOT2, - ACTIONS(7925), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7927), 1, - aux_sym__immediate_decimal_token3, STATE(4967), 1, sym_comment, - [203493] = 6, - ACTIONS(3), 1, + ACTIONS(8614), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8616), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204093] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1256), 1, - sym_block, STATE(4968), 1, sym_comment, - STATE(5490), 1, - sym_returns, - [203512] = 6, - ACTIONS(3), 1, + ACTIONS(8398), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8400), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204108] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8769), 1, - anon_sym_DOT2, - ACTIONS(8771), 1, - anon_sym_LPAREN2, - ACTIONS(8773), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8775), 1, - aux_sym__immediate_decimal_token3, STATE(4969), 1, sym_comment, - [203531] = 6, - ACTIONS(3), 1, + ACTIONS(8614), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8616), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204123] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8777), 1, - anon_sym_RBRACK, + ACTIONS(8916), 1, + anon_sym_LF, STATE(4970), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [203550] = 5, - ACTIONS(105), 1, + ACTIONS(8914), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204138] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, - anon_sym_DQUOTE, + ACTIONS(8918), 1, + anon_sym_LBRACK, + ACTIONS(8920), 1, + anon_sym_LPAREN, STATE(4971), 1, sym_comment, - STATE(4973), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [203567] = 6, - ACTIONS(3), 1, + STATE(5140), 1, + sym_parameter_parens, + STATE(5145), 1, + sym_parameter_bracks, + [204157] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8781), 1, - anon_sym_RBRACK, STATE(4972), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [203586] = 5, + ACTIONS(8398), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8400), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204172] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8783), 1, - anon_sym_DQUOTE, + ACTIONS(8924), 1, + anon_sym_LF, STATE(4973), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [203603] = 4, + ACTIONS(8922), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204187] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8928), 1, + anon_sym_LF, STATE(4974), 1, sym_comment, - ACTIONS(8585), 2, + ACTIONS(8926), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204202] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1447), 1, + anon_sym_LBRACE, + ACTIONS(6257), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8930), 1, + anon_sym_DOT2, + ACTIONS(8932), 1, + aux_sym_unquoted_token2, + STATE(4975), 1, + sym_comment, + [204221] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4976), 1, + sym_comment, + ACTIONS(3230), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + [204234] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(8587), 2, - ts_builtin_sym_end, + ACTIONS(8618), 1, + anon_sym_SEMI, + ACTIONS(8934), 1, anon_sym_LF, - [203618] = 4, + STATE(2547), 1, + aux_sym_pipe_element_repeat1, + STATE(4977), 1, + sym_comment, + [204253] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4975), 1, + STATE(4978), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(8614), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8516), 2, + ACTIONS(8616), 2, ts_builtin_sym_end, anon_sym_LF, - [203633] = 6, + [204268] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8936), 1, + anon_sym_DQUOTE, + STATE(4979), 1, + sym_comment, + STATE(4983), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [204285] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8918), 1, anon_sym_LBRACK, - ACTIONS(8785), 1, - anon_sym_RBRACK, - STATE(4970), 1, - aux_sym_val_table_repeat1, - STATE(4976), 1, + ACTIONS(8920), 1, + anon_sym_LPAREN, + STATE(4980), 1, sym_comment, - STATE(5542), 1, - sym_val_list, - [203652] = 6, + STATE(5249), 1, + sym_parameter_bracks, + STATE(5251), 1, + sym_parameter_parens, + [204304] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, + ACTIONS(8118), 1, anon_sym_LBRACE, - ACTIONS(8667), 1, + ACTIONS(8846), 1, anon_sym_COLON, - STATE(1245), 1, + STATE(1610), 1, sym_block, - STATE(4977), 1, + STATE(4981), 1, sym_comment, - STATE(5489), 1, + STATE(5605), 1, sym_returns, - [203671] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4978), 1, - sym_comment, - ACTIONS(8787), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [203684] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8789), 1, - anon_sym_DOT2, - ACTIONS(8791), 1, - anon_sym_LPAREN2, - ACTIONS(8793), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8795), 1, - aux_sym__immediate_decimal_token3, - STATE(4979), 1, - sym_comment, - [203703] = 6, + [204323] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, + ACTIONS(8118), 1, anon_sym_LBRACE, - ACTIONS(8667), 1, + ACTIONS(8846), 1, anon_sym_COLON, - STATE(1246), 1, + STATE(1611), 1, sym_block, - STATE(4980), 1, + STATE(4982), 1, sym_comment, - STATE(5521), 1, + STATE(5607), 1, sym_returns, - [203722] = 4, + [204342] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4981), 1, + ACTIONS(8938), 1, + anon_sym_DQUOTE, + STATE(4983), 1, sym_comment, - ACTIONS(8585), 2, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [204359] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8567), 1, anon_sym_SEMI, + ACTIONS(8934), 1, + anon_sym_LF, + STATE(2551), 1, + aux_sym_pipe_element_repeat1, + STATE(4984), 1, + sym_comment, + [204378] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(8587), 2, - ts_builtin_sym_end, + ACTIONS(8560), 1, + anon_sym_SEMI, + ACTIONS(8934), 1, anon_sym_LF, - [203737] = 6, - ACTIONS(3), 1, + STATE(2552), 1, + aux_sym_pipe_element_repeat1, + STATE(4985), 1, + sym_comment, + [204397] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(3205), 1, - sym_val_closure, - STATE(3207), 1, - sym_block, - STATE(4562), 1, - sym__blosure, - STATE(4982), 1, + STATE(4986), 1, sym_comment, - [203756] = 4, + ACTIONS(8398), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8400), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204412] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4983), 1, + STATE(4987), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(8614), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8516), 2, + ACTIONS(8616), 2, ts_builtin_sym_end, anon_sym_LF, - [203771] = 4, + [204427] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4984), 1, + STATE(4988), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(8398), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8516), 2, + ACTIONS(8400), 2, ts_builtin_sym_end, anon_sym_LF, - [203786] = 5, + [204442] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_DQUOTE, - STATE(4985), 1, + STATE(4989), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [203803] = 6, + ACTIONS(8614), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8616), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204457] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8888), 1, anon_sym_LBRACK, - ACTIONS(8799), 1, + ACTIONS(8940), 1, anon_sym_RBRACK, - STATE(4965), 1, - aux_sym_val_table_repeat1, - STATE(4986), 1, + STATE(4990), 1, sym_comment, - STATE(5542), 1, + STATE(5239), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, sym_val_list, - [203822] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1239), 1, - sym_block, - STATE(4987), 1, - sym_comment, - STATE(5481), 1, - sym_returns, - [203841] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1363), 1, - sym_block, - STATE(4988), 1, - sym_comment, - STATE(5477), 1, - sym_returns, - [203860] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8801), 1, - anon_sym_use, - ACTIONS(8803), 1, - anon_sym_list, - ACTIONS(8805), 1, - anon_sym_hide, - ACTIONS(8807), 1, - anon_sym_new, - STATE(4989), 1, - sym_comment, - [203879] = 5, + [204476] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8809), 1, - anon_sym_DQUOTE, - STATE(4990), 1, - sym_comment, - STATE(4992), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [203896] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8811), 1, - anon_sym_LBRACK, - ACTIONS(8813), 1, - anon_sym_LPAREN, - STATE(1188), 1, - sym_parameter_bracks, - STATE(1189), 1, - sym_parameter_parens, STATE(4991), 1, sym_comment, - [203915] = 5, + ACTIONS(8398), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8400), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204491] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8815), 1, - anon_sym_DQUOTE, + ACTIONS(8944), 1, + anon_sym_LF, STATE(4992), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [203932] = 4, + ACTIONS(8942), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204506] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4993), 1, sym_comment, - ACTIONS(8585), 2, + ACTIONS(8614), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8587), 2, + ACTIONS(8616), 2, ts_builtin_sym_end, anon_sym_LF, - [203947] = 5, + [204521] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8817), 1, - anon_sym_DQUOTE, STATE(4994), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [203964] = 4, + ACTIONS(8398), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8400), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204536] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8948), 1, + anon_sym_LF, STATE(4995), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(8946), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8516), 2, - ts_builtin_sym_end, - anon_sym_LF, - [203979] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204551] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8001), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8415), 1, - aux_sym__record_key_token1, - ACTIONS(8819), 1, - anon_sym_DOT2, - ACTIONS(8821), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8952), 1, + anon_sym_LF, STATE(4996), 1, sym_comment, - [203998] = 5, - ACTIONS(3), 1, + ACTIONS(8950), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204566] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7871), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8823), 1, - anon_sym_DOT2, STATE(4997), 1, sym_comment, - ACTIONS(2906), 2, - anon_sym_DASH, - anon_sym_LBRACE, - [204015] = 4, + ACTIONS(8614), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8616), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204581] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8827), 1, - anon_sym_LF, STATE(4998), 1, sym_comment, - ACTIONS(8825), 3, + ACTIONS(8398), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204030] = 5, + anon_sym_PIPE, + ACTIONS(8400), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204596] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8829), 1, - anon_sym_DQUOTE, - STATE(4985), 1, - aux_sym__str_double_quotes_repeat1, STATE(4999), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [204047] = 6, - ACTIONS(3), 1, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204611] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8791), 1, - anon_sym_LPAREN2, - ACTIONS(8831), 1, - anon_sym_DOT2, - ACTIONS(8833), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8835), 1, - aux_sym__immediate_decimal_token3, STATE(5000), 1, sym_comment, - [204066] = 3, - ACTIONS(3), 1, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204626] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(5001), 1, sym_comment, - ACTIONS(8837), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [204079] = 4, + ACTIONS(8381), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204641] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5002), 1, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8371), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8265), 2, + ACTIONS(8373), 2, ts_builtin_sym_end, anon_sym_LF, - [204094] = 4, - ACTIONS(3), 1, + [204656] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8839), 1, - anon_sym_DOT2, STATE(5003), 1, sym_comment, - ACTIONS(3125), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [204109] = 4, + ACTIONS(8381), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204671] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8843), 1, - anon_sym_LF, STATE(5004), 1, sym_comment, - ACTIONS(8841), 3, + ACTIONS(8381), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [204124] = 6, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204686] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7884), 1, - anon_sym_DOT2, - ACTIONS(7888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7892), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7894), 1, - aux_sym__list_item_starts_with_sign_token1, STATE(5005), 1, sym_comment, - [204143] = 6, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204701] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, - anon_sym_LBRACK, - ACTIONS(8813), 1, - anon_sym_LPAREN, - STATE(1210), 1, - sym_parameter_bracks, - STATE(1211), 1, - sym_parameter_parens, STATE(5006), 1, sym_comment, - [204162] = 4, - ACTIONS(105), 1, + ACTIONS(8954), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [204714] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8847), 1, - anon_sym_LF, + ACTIONS(8956), 1, + anon_sym_DOT2, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + ACTIONS(8960), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8962), 1, + aux_sym__immediate_decimal_token3, STATE(5007), 1, sym_comment, - ACTIONS(8845), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [204177] = 4, + [204733] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8851), 1, - anon_sym_LF, STATE(5008), 1, sym_comment, - ACTIONS(8849), 3, + ACTIONS(8381), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204192] = 4, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204748] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8855), 1, - anon_sym_LF, + ACTIONS(5959), 1, + aux_sym_unquoted_token3, STATE(5009), 1, sym_comment, - ACTIONS(8853), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1375), 3, anon_sym_PIPE, - [204207] = 5, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_EQ_GT, + [204763] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8857), 1, - anon_sym_DQUOTE, - STATE(4994), 1, - aux_sym__str_double_quotes_repeat1, STATE(5010), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [204224] = 6, - ACTIONS(3), 1, + ACTIONS(8964), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [204776] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - ACTIONS(8859), 1, - anon_sym_if, STATE(5011), 1, sym_comment, - STATE(5078), 1, - sym_ctrl_if_parenthesized, - STATE(5081), 1, - sym_block, - [204243] = 6, - ACTIONS(3), 1, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204791] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8460), 1, - anon_sym_use, - ACTIONS(8462), 1, - anon_sym_list, - ACTIONS(8464), 1, - anon_sym_hide, - ACTIONS(8466), 1, - anon_sym_new, + ACTIONS(8966), 1, + anon_sym_DQUOTE, STATE(5012), 1, sym_comment, - [204262] = 3, - ACTIONS(3), 1, + STATE(5026), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [204808] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(5013), 1, sym_comment, - ACTIONS(8861), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [204275] = 3, - ACTIONS(3), 1, + ACTIONS(8381), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204823] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(5014), 1, sym_comment, - ACTIONS(8863), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [204288] = 6, - ACTIONS(3), 1, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204838] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8039), 1, - anon_sym_LPAREN2, - ACTIONS(8865), 1, - anon_sym_DOT2, - ACTIONS(8867), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token3, STATE(5015), 1, sym_comment, - [204307] = 6, - ACTIONS(3), 1, + ACTIONS(8381), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204853] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_LPAREN2, - ACTIONS(8871), 1, - anon_sym_DOT2, - ACTIONS(8873), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8875), 1, - aux_sym__immediate_decimal_token3, STATE(5016), 1, sym_comment, - [204326] = 5, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204868] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8877), 1, - anon_sym_DQUOTE, STATE(5017), 1, sym_comment, - STATE(5018), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [204343] = 5, - ACTIONS(105), 1, + ACTIONS(8381), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204883] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8879), 1, - anon_sym_DQUOTE, + ACTIONS(8968), 1, + anon_sym_LBRACK, + ACTIONS(8970), 1, + anon_sym_LPAREN, + STATE(1385), 1, + sym_parameter_bracks, + STATE(1463), 1, + sym_parameter_parens, STATE(5018), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [204360] = 4, + [204902] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5019), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(8371), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8516), 2, + ACTIONS(8373), 2, ts_builtin_sym_end, anon_sym_LF, - [204375] = 5, - ACTIONS(105), 1, + [204917] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8881), 1, - anon_sym_DQUOTE, + ACTIONS(8122), 1, + anon_sym_LPAREN2, + ACTIONS(8972), 1, + anon_sym_DOT2, + ACTIONS(8974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8976), 1, + aux_sym__immediate_decimal_token3, STATE(5020), 1, sym_comment, - STATE(5032), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [204392] = 4, + [204936] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8885), 1, - anon_sym_LF, STATE(5021), 1, sym_comment, - ACTIONS(8883), 3, + ACTIONS(8381), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204407] = 6, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204951] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8888), 1, anon_sym_LBRACK, - ACTIONS(8887), 1, + ACTIONS(8978), 1, anon_sym_RBRACK, + STATE(4990), 1, + aux_sym_val_table_repeat1, STATE(5022), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, + STATE(5555), 1, sym_val_list, - [204426] = 3, - ACTIONS(3), 1, + [204970] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(5023), 1, sym_comment, - ACTIONS(8889), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [204439] = 5, - ACTIONS(3), 1, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [204985] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7773), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8891), 1, - anon_sym_DOT2, STATE(5024), 1, sym_comment, - ACTIONS(2808), 2, - anon_sym_DASH, - anon_sym_LBRACE, - [204456] = 6, - ACTIONS(3), 1, + ACTIONS(8381), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [205000] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(107), 1, - aux_sym_unquoted_token6, - ACTIONS(109), 1, - anon_sym_DOT2, - ACTIONS(8893), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8895), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(8980), 1, + anon_sym_DQUOTE, STATE(5025), 1, sym_comment, - [204475] = 6, - ACTIONS(3), 1, + STATE(5036), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205017] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_LPAREN2, - ACTIONS(8897), 1, - anon_sym_DOT2, - ACTIONS(8899), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(8982), 1, + anon_sym_DQUOTE, STATE(5026), 1, sym_comment, - [204494] = 4, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205034] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5027), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(8371), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8516), 2, + ACTIONS(8373), 2, ts_builtin_sym_end, anon_sym_LF, - [204509] = 3, - ACTIONS(3), 1, + [205049] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(5028), 1, sym_comment, - ACTIONS(3161), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - [204522] = 5, + ACTIONS(8381), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [205064] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8903), 1, - anon_sym_DQUOTE, STATE(5029), 1, sym_comment, - STATE(5031), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [204539] = 6, - ACTIONS(3), 1, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [205079] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(115), 1, - aux_sym_unquoted_token6, - ACTIONS(117), 1, - anon_sym_DOT2, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token2, STATE(5030), 1, sym_comment, - [204558] = 5, + ACTIONS(8381), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8383), 2, + ts_builtin_sym_end, + anon_sym_LF, + [205094] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8909), 1, + ACTIONS(8984), 1, anon_sym_DQUOTE, STATE(5031), 1, sym_comment, - STATE(5064), 1, + STATE(5046), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [204575] = 5, + [205111] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8911), 1, - anon_sym_DQUOTE, + ACTIONS(8007), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(8086), 1, + anon_sym_DOT2, + ACTIONS(8088), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8090), 1, + aux_sym__immediate_decimal_token3, STATE(5032), 1, sym_comment, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [204592] = 6, + [205130] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7949), 1, - anon_sym_DOT2, - ACTIONS(7951), 1, - anon_sym_LPAREN2, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8913), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(8986), 1, + anon_sym_RBRACK, STATE(5033), 1, sym_comment, - [204611] = 3, - ACTIONS(3), 1, + STATE(5239), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [205149] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(5034), 1, sym_comment, - ACTIONS(8915), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [204624] = 6, + ACTIONS(8371), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [205164] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8888), 1, anon_sym_LBRACK, - ACTIONS(8917), 1, - anon_sym_RBRACK, - STATE(5022), 1, - aux_sym_val_table_repeat1, + ACTIONS(8988), 1, + anon_sym_RBRACK, STATE(5035), 1, sym_comment, - STATE(5542), 1, + STATE(5047), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, sym_val_list, - [204643] = 4, + [205183] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8990), 1, + anon_sym_DQUOTE, STATE(5036), 1, sym_comment, - ACTIONS(8224), 2, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205200] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8736), 1, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8226), 2, - ts_builtin_sym_end, + ACTIONS(8738), 1, anon_sym_LF, - [204658] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8919), 1, - anon_sym_DOT2, + ACTIONS(8992), 1, + ts_builtin_sym_end, + STATE(1536), 1, + sym__terminator, STATE(5037), 1, sym_comment, - ACTIONS(3131), 3, - anon_sym_COMMA, + [205219] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8994), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - [204673] = 4, + STATE(3146), 1, + sym_block, + STATE(3148), 1, + sym_val_closure, + STATE(5038), 1, + sym_comment, + STATE(5276), 1, + sym__blosure, + [205238] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5038), 1, + STATE(5039), 1, sym_comment, - ACTIONS(8585), 2, + ACTIONS(8381), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8587), 2, + ACTIONS(8383), 2, ts_builtin_sym_end, anon_sym_LF, - [204688] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8921), 1, - anon_sym_RBRACK, - STATE(5039), 1, - sym_comment, - STATE(5049), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [204707] = 4, + [205253] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5040), 1, sym_comment, - ACTIONS(8417), 2, + ACTIONS(8438), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8419), 2, + ACTIONS(8440), 2, ts_builtin_sym_end, anon_sym_LF, - [204722] = 6, - ACTIONS(3), 1, + [205268] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8037), 1, - anon_sym_DOT2, - ACTIONS(8039), 1, - anon_sym_LPAREN2, - ACTIONS(8045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8923), 1, - aux_sym__immediate_decimal_token1, STATE(5041), 1, sym_comment, - [204741] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, + ACTIONS(8408), 2, anon_sym_SEMI, - ACTIONS(8761), 1, + anon_sym_PIPE, + ACTIONS(8410), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2482), 1, - aux_sym_pipe_element_repeat1, + [205283] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8996), 1, + anon_sym_DQUOTE, STATE(5042), 1, sym_comment, - [204760] = 4, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205300] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5043), 1, sym_comment, - ACTIONS(8379), 2, + ACTIONS(8796), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8381), 2, + ACTIONS(8798), 2, ts_builtin_sym_end, anon_sym_LF, - [204775] = 6, + [205315] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8228), 1, - anon_sym_SEMI, - ACTIONS(8761), 1, - anon_sym_LF, - STATE(2507), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(8998), 1, + anon_sym_DQUOTE, STATE(5044), 1, sym_comment, - [204794] = 3, - ACTIONS(3), 1, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205332] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9000), 1, + anon_sym_DQUOTE, + STATE(5042), 1, + aux_sym__str_double_quotes_repeat1, STATE(5045), 1, sym_comment, - ACTIONS(8925), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [204807] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205349] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9002), 1, + anon_sym_DQUOTE, STATE(5046), 1, sym_comment, - ACTIONS(8514), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8516), 2, - ts_builtin_sym_end, - anon_sym_LF, - [204822] = 4, - ACTIONS(105), 1, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205366] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9004), 1, + anon_sym_RBRACK, STATE(5047), 1, sym_comment, - ACTIONS(8585), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8587), 2, - ts_builtin_sym_end, - anon_sym_LF, - [204837] = 4, - ACTIONS(105), 1, + STATE(5239), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [205385] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8929), 1, - anon_sym_LF, + ACTIONS(9006), 1, + anon_sym_DOT2, + ACTIONS(9008), 1, + anon_sym_LPAREN2, + ACTIONS(9010), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9012), 1, + aux_sym__immediate_decimal_token3, STATE(5048), 1, sym_comment, - ACTIONS(8927), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [204852] = 6, + [205404] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(8931), 1, - anon_sym_RBRACK, STATE(5049), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [204871] = 4, - ACTIONS(105), 1, + ACTIONS(9014), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [205417] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8935), 1, - anon_sym_LF, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9016), 1, + anon_sym_RBRACK, STATE(5050), 1, sym_comment, - ACTIONS(8933), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [204886] = 5, + STATE(5059), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [205436] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(9018), 1, anon_sym_DQUOTE, STATE(5051), 1, sym_comment, - STATE(5064), 1, + STATE(5138), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [204903] = 4, + [205453] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9022), 1, + anon_sym_LF, STATE(5052), 1, sym_comment, - ACTIONS(8514), 2, + ACTIONS(9020), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8516), 2, - ts_builtin_sym_end, - anon_sym_LF, - [204918] = 3, + [205468] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9008), 1, + anon_sym_LPAREN2, + ACTIONS(9024), 1, + anon_sym_DOT2, + ACTIONS(9026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9028), 1, + aux_sym__immediate_decimal_token3, STATE(5053), 1, sym_comment, - ACTIONS(3155), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - [204931] = 4, + [205487] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(9032), 1, anon_sym_LF, STATE(5054), 1, sym_comment, - ACTIONS(8939), 3, + ACTIONS(9030), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [204946] = 4, - ACTIONS(105), 1, + anon_sym_PIPE, + [205502] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(9034), 1, + anon_sym_if, STATE(5055), 1, sym_comment, - ACTIONS(8585), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8587), 2, - ts_builtin_sym_end, - anon_sym_LF, - [204961] = 6, + STATE(5230), 1, + sym_block, + STATE(5231), 1, + sym_ctrl_if, + [205521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, - anon_sym_LPAREN2, - ACTIONS(8943), 1, - anon_sym_DOT2, - ACTIONS(8945), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8947), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9036), 1, + sym__long_flag_identifier, STATE(5056), 1, sym_comment, - [204980] = 4, + ACTIONS(3157), 3, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + [205536] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8951), 1, - anon_sym_LF, + ACTIONS(9038), 1, + anon_sym_DQUOTE, + STATE(5051), 1, + aux_sym__str_double_quotes_repeat1, STATE(5057), 1, sym_comment, - ACTIONS(8949), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204995] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205553] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8955), 1, + ACTIONS(9042), 1, anon_sym_LF, STATE(5058), 1, sym_comment, - ACTIONS(8953), 3, + ACTIONS(9040), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [205010] = 5, - ACTIONS(105), 1, + anon_sym_PIPE, + [205568] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8957), 1, - anon_sym_DQUOTE, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9044), 1, + anon_sym_RBRACK, STATE(5059), 1, sym_comment, - STATE(5065), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [205027] = 4, - ACTIONS(105), 1, + STATE(5239), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [205587] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(9046), 1, + anon_sym_if, + STATE(4924), 1, + sym_ctrl_if_parenthesized, + STATE(4927), 1, + sym_block, STATE(5060), 1, sym_comment, - ACTIONS(8514), 2, + [205606] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5061), 1, + sym_comment, + ACTIONS(8381), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8516), 2, + ACTIONS(8383), 2, ts_builtin_sym_end, anon_sym_LF, - [205042] = 5, + [205621] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9008), 1, + anon_sym_LPAREN2, + ACTIONS(9048), 1, + anon_sym_DOT2, + ACTIONS(9050), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9052), 1, + aux_sym__immediate_decimal_token3, + STATE(5062), 1, + sym_comment, + [205640] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5063), 1, + sym_comment, + ACTIONS(9054), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [205653] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8959), 1, + ACTIONS(9056), 1, anon_sym_DQUOTE, - STATE(5051), 1, - aux_sym__str_double_quotes_repeat1, - STATE(5061), 1, + STATE(5064), 1, sym_comment, - ACTIONS(8641), 2, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [205059] = 4, + [205670] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5062), 1, + ACTIONS(9058), 1, + anon_sym_DQUOTE, + STATE(5064), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5065), 1, sym_comment, - ACTIONS(8383), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8385), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205074] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205687] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5063), 1, + STATE(5066), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [205089] = 4, + [205702] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8961), 1, + ACTIONS(9060), 1, anon_sym_DQUOTE, - ACTIONS(8963), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(5064), 2, + STATE(5067), 1, sym_comment, + STATE(5073), 1, aux_sym__str_double_quotes_repeat1, - [205104] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - STATE(5065), 1, - sym_comment, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [205121] = 6, + [205719] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(8872), 1, anon_sym_LPAREN2, - ACTIONS(8968), 1, + ACTIONS(9062), 1, anon_sym_DOT2, - ACTIONS(8970), 1, + ACTIONS(9064), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8972), 1, + ACTIONS(9066), 1, aux_sym__immediate_decimal_token3, - STATE(5066), 1, + STATE(5068), 1, sym_comment, - [205140] = 4, + [205738] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5067), 1, + STATE(5069), 1, sym_comment, - ACTIONS(8383), 2, + ACTIONS(8757), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8385), 2, + ACTIONS(8759), 2, ts_builtin_sym_end, anon_sym_LF, - [205155] = 4, + [205753] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5068), 1, + STATE(5070), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [205170] = 4, + [205768] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5069), 1, + STATE(5071), 1, sym_comment, - ACTIONS(8383), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8385), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [205185] = 4, + [205783] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5070), 1, + STATE(5072), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [205200] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5071), 1, - sym_comment, - ACTIONS(8974), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [205213] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8976), 1, - anon_sym_LBRACE, - STATE(3229), 1, - sym_val_closure, - STATE(3231), 1, - sym_block, - STATE(5043), 1, - sym__blosure, - STATE(5072), 1, - sym_comment, - [205232] = 4, + [205798] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9068), 1, + anon_sym_DQUOTE, STATE(5073), 1, sym_comment, - ACTIONS(8383), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8385), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205247] = 4, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205815] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5074), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [205262] = 4, + [205830] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5075), 1, sym_comment, - ACTIONS(8267), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8269), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [205277] = 4, + [205845] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3802), 1, - anon_sym_LF, STATE(5076), 1, sym_comment, - ACTIONS(3471), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205292] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5077), 1, - sym_comment, - ACTIONS(8383), 2, + ACTIONS(8774), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8385), 2, + ACTIONS(8776), 2, ts_builtin_sym_end, anon_sym_LF, - [205307] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8980), 1, - anon_sym_LF, - STATE(5078), 1, - sym_comment, - ACTIONS(8978), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [205322] = 3, + [205860] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5079), 1, + STATE(5077), 1, sym_comment, - ACTIONS(8982), 4, + ACTIONS(9070), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [205335] = 6, + [205873] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, + ACTIONS(8136), 1, anon_sym_LPAREN2, - ACTIONS(8984), 1, + ACTIONS(9072), 1, anon_sym_DOT2, - ACTIONS(8986), 1, + ACTIONS(9074), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8988), 1, + ACTIONS(9076), 1, aux_sym__immediate_decimal_token3, - STATE(5080), 1, + STATE(5078), 1, + sym_comment, + [205892] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9078), 1, + anon_sym_use, + ACTIONS(9080), 1, + anon_sym_list, + ACTIONS(9082), 1, + anon_sym_hide, + ACTIONS(9084), 1, + anon_sym_new, + STATE(5079), 1, sym_comment, - [205354] = 4, + [205911] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8992), 1, - anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_DQUOTE, + STATE(5080), 1, + sym_comment, + STATE(5115), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205928] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9088), 1, + anon_sym_LBRACK, + ACTIONS(9090), 1, + anon_sym_LPAREN, + STATE(1243), 1, + sym_parameter_bracks, + STATE(1248), 1, + sym_parameter_parens, STATE(5081), 1, sym_comment, - ACTIONS(8990), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [205369] = 4, + [205947] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5082), 1, sym_comment, - ACTIONS(8585), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8587), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [205384] = 5, + [205962] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8994), 1, + ACTIONS(9092), 1, anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, STATE(5083), 1, sym_comment, - ACTIONS(8641), 2, + STATE(5095), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [205401] = 4, + [205979] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3800), 1, - anon_sym_LF, STATE(5084), 1, sym_comment, - ACTIONS(3461), 3, + ACTIONS(8422), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205416] = 5, + anon_sym_PIPE, + ACTIONS(8424), 2, + ts_builtin_sym_end, + anon_sym_LF, + [205994] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8996), 1, - anon_sym_DQUOTE, STATE(5085), 1, sym_comment, - STATE(5097), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [205433] = 4, + ACTIONS(8414), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8416), 2, + ts_builtin_sym_end, + anon_sym_LF, + [206009] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5086), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8778), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8780), 2, ts_builtin_sym_end, anon_sym_LF, - [205448] = 4, + [206024] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_LF, STATE(5087), 1, sym_comment, - ACTIONS(8998), 3, + ACTIONS(8422), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205463] = 4, + anon_sym_PIPE, + ACTIONS(8424), 2, + ts_builtin_sym_end, + anon_sym_LF, + [206039] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5088), 1, sym_comment, - ACTIONS(8383), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8385), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [205478] = 4, + [206054] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9002), 1, - anon_sym_LPAREN, STATE(5089), 1, sym_comment, - ACTIONS(9004), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [205493] = 4, + ACTIONS(8422), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8424), 2, + ts_builtin_sym_end, + anon_sym_LF, + [206069] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5090), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [205508] = 4, - ACTIONS(105), 1, + [206084] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_LF, STATE(5091), 1, sym_comment, - ACTIONS(9006), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [205523] = 4, - ACTIONS(105), 1, + ACTIONS(9094), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [206097] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9010), 1, - anon_sym_LPAREN, + ACTIONS(9008), 1, + anon_sym_LPAREN2, + ACTIONS(9096), 1, + anon_sym_DOT2, + ACTIONS(9098), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9100), 1, + aux_sym__immediate_decimal_token3, STATE(5092), 1, sym_comment, - ACTIONS(9012), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [205538] = 4, + [206116] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9102), 1, + anon_sym_DQUOTE, STATE(5093), 1, sym_comment, - ACTIONS(8579), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8581), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205553] = 4, + STATE(5117), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206133] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5094), 1, sym_comment, - ACTIONS(8383), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8385), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [205568] = 4, + [206148] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9104), 1, + anon_sym_DQUOTE, STATE(5095), 1, sym_comment, - ACTIONS(8397), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8399), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205583] = 4, - ACTIONS(105), 1, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206165] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1362), 1, + sym_block, STATE(5096), 1, sym_comment, - ACTIONS(8585), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8587), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205598] = 5, - ACTIONS(105), 1, + STATE(5524), 1, + sym_returns, + [206184] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9014), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1363), 1, + sym_block, STATE(5097), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [205615] = 4, + STATE(5522), 1, + sym_returns, + [206203] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9106), 1, + anon_sym_DQUOTE, + STATE(5044), 1, + aux_sym__str_double_quotes_repeat1, STATE(5098), 1, sym_comment, - ACTIONS(8383), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8385), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205630] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206220] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5099), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [205645] = 4, + [206235] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5100), 1, - sym_comment, - ACTIONS(8383), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8385), 2, - ts_builtin_sym_end, + ACTIONS(9110), 1, anon_sym_LF, - [205660] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5101), 1, + STATE(5100), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(9108), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8399), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205675] = 4, + [206250] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5102), 1, - sym_comment, - ACTIONS(8383), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8385), 2, - ts_builtin_sym_end, + ACTIONS(9114), 1, anon_sym_LF, - [205690] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5103), 1, + STATE(5101), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(9112), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8399), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205705] = 6, + [206265] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8888), 1, anon_sym_LBRACK, - ACTIONS(9016), 1, + ACTIONS(9116), 1, anon_sym_RBRACK, - STATE(5104), 1, + STATE(5102), 1, sym_comment, - STATE(5114), 1, + STATE(5112), 1, aux_sym_val_table_repeat1, - STATE(5542), 1, + STATE(5555), 1, sym_val_list, - [205724] = 4, + [206284] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5105), 1, + STATE(5103), 1, sym_comment, - ACTIONS(8383), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8385), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [205739] = 4, + [206299] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5106), 1, + STATE(5104), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [205754] = 4, + [206314] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5107), 1, + STATE(5105), 1, sym_comment, - ACTIONS(8383), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8385), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [205769] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2960), 1, - sym_identifier, - ACTIONS(9018), 1, - sym__long_flag_identifier, - STATE(5108), 1, - sym_comment, - ACTIONS(2964), 2, - anon_sym_DOLLAR, - anon_sym_DASH, - [205786] = 4, + [206329] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5109), 1, + STATE(5106), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [205801] = 4, + [206344] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5110), 1, + STATE(5107), 1, sym_comment, - ACTIONS(8383), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8385), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [205816] = 4, + [206359] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5111), 1, + ACTIONS(9118), 1, + anon_sym_DQUOTE, + STATE(5108), 1, sym_comment, - ACTIONS(8579), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8581), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205831] = 3, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206376] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5112), 1, + ACTIONS(8122), 1, + anon_sym_LPAREN2, + ACTIONS(9120), 1, + anon_sym_DOT2, + ACTIONS(9122), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9124), 1, + aux_sym__immediate_decimal_token3, + STATE(5109), 1, + sym_comment, + [206395] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5110), 1, sym_comment, - ACTIONS(9020), 4, + ACTIONS(9126), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [205844] = 4, + [206408] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9022), 1, - anon_sym_DOT2, - STATE(5113), 1, + ACTIONS(8968), 1, + anon_sym_LBRACK, + ACTIONS(8970), 1, + anon_sym_LPAREN, + STATE(1273), 1, + sym_parameter_bracks, + STATE(1276), 1, + sym_parameter_parens, + STATE(5111), 1, sym_comment, - ACTIONS(3099), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [205859] = 6, + [206427] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8888), 1, anon_sym_LBRACK, - ACTIONS(9024), 1, + ACTIONS(9128), 1, anon_sym_RBRACK, - STATE(5114), 1, + STATE(5112), 1, sym_comment, - STATE(5198), 1, + STATE(5239), 1, aux_sym_val_table_repeat1, - STATE(5542), 1, + STATE(5555), 1, sym_val_list, - [205878] = 4, - ACTIONS(3), 1, + [206446] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9026), 1, - anon_sym_DOT2, - STATE(5115), 1, + STATE(5113), 1, sym_comment, - ACTIONS(3105), 3, + ACTIONS(8414), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [205893] = 4, + ACTIONS(8416), 2, + ts_builtin_sym_end, + anon_sym_LF, + [206461] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9130), 1, + anon_sym_DQUOTE, + STATE(5108), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5114), 1, + sym_comment, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206478] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9132), 1, + anon_sym_DQUOTE, + STATE(5115), 1, + sym_comment, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9028), 1, + ACTIONS(9134), 1, anon_sym_DOT2, STATE(5116), 1, sym_comment, - ACTIONS(3111), 3, + ACTIONS(6815), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205908] = 4, - ACTIONS(3), 1, + [206510] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9030), 1, - anon_sym_DOT2, + ACTIONS(9136), 1, + anon_sym_DQUOTE, STATE(5117), 1, sym_comment, - ACTIONS(3117), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [205923] = 6, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206527] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, - anon_sym_LPAREN2, - ACTIONS(9032), 1, + ACTIONS(9134), 1, anon_sym_DOT2, - ACTIONS(9034), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9036), 1, - aux_sym__immediate_decimal_token3, STATE(5118), 1, sym_comment, - [205942] = 5, - ACTIONS(105), 1, + ACTIONS(1371), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [206542] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9038), 1, - anon_sym_DQUOTE, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(9138), 1, + anon_sym_if, + STATE(4699), 1, + sym_block, + STATE(4700), 1, + sym_ctrl_if, STATE(5119), 1, sym_comment, - STATE(5122), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [205959] = 4, + [206561] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5120), 1, sym_comment, - ACTIONS(8397), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8399), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [205974] = 4, + [206576] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9142), 1, + anon_sym_LF, STATE(5121), 1, sym_comment, - ACTIONS(8575), 2, + ACTIONS(9140), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8577), 2, - ts_builtin_sym_end, - anon_sym_LF, - [205989] = 5, + [206591] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9040), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, STATE(5122), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206006] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5123), 1, - sym_comment, - ACTIONS(8436), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8438), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [206021] = 4, + [206606] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9144), 1, + anon_sym_RBRACK, + STATE(5123), 1, + sym_comment, + STATE(5239), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [206625] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5124), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [206036] = 4, - ACTIONS(105), 1, + [206640] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1478), 1, + sym_block, STATE(5125), 1, sym_comment, - ACTIONS(8436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206051] = 4, + STATE(5530), 1, + sym_returns, + [206659] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9146), 1, + anon_sym_LPAREN, STATE(5126), 1, sym_comment, - ACTIONS(8346), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8348), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206066] = 4, - ACTIONS(105), 1, + ACTIONS(9148), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [206674] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1476), 1, + sym_block, STATE(5127), 1, sym_comment, - ACTIONS(8436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206081] = 4, + STATE(5531), 1, + sym_returns, + [206693] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9150), 1, + anon_sym_DQUOTE, + STATE(4932), 1, + aux_sym__str_double_quotes_repeat1, STATE(5128), 1, sym_comment, - ACTIONS(8579), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8581), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206096] = 6, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206710] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(9042), 1, - anon_sym_RBRACK, + ACTIONS(9154), 1, + anon_sym_LF, STATE(5129), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [206115] = 6, + ACTIONS(9152), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206725] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(8122), 1, anon_sym_LPAREN2, - ACTIONS(9044), 1, + ACTIONS(9156), 1, anon_sym_DOT2, - ACTIONS(9046), 1, + ACTIONS(9158), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9048), 1, + ACTIONS(9160), 1, aux_sym__immediate_decimal_token3, STATE(5130), 1, sym_comment, - [206134] = 4, + [206744] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5131), 1, sym_comment, - ACTIONS(8575), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8577), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [206149] = 5, + [206759] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9050), 1, - anon_sym_DQUOTE, STATE(5132), 1, sym_comment, - STATE(5147), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206166] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5133), 1, - sym_comment, - ACTIONS(8436), 2, + ACTIONS(8422), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8438), 2, + ACTIONS(8424), 2, ts_builtin_sym_end, anon_sym_LF, - [206181] = 4, + [206774] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5134), 1, + STATE(5133), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8508), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8510), 2, ts_builtin_sym_end, anon_sym_LF, - [206196] = 4, - ACTIONS(105), 1, + [206789] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1464), 1, + sym_block, + STATE(5134), 1, + sym_comment, + STATE(5535), 1, + sym_returns, + [206808] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1462), 1, + sym_block, STATE(5135), 1, sym_comment, - ACTIONS(8436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206211] = 4, + STATE(5538), 1, + sym_returns, + [206827] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5136), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8418), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8420), 2, ts_builtin_sym_end, anon_sym_LF, - [206226] = 4, - ACTIONS(105), 1, + [206842] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(5137), 1, sym_comment, - ACTIONS(8436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206241] = 4, + ACTIONS(9162), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [206855] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5138), 1, + ACTIONS(9164), 1, + anon_sym_DQUOTE, + ACTIONS(9166), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(5138), 2, sym_comment, - ACTIONS(8301), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8303), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206256] = 4, + aux_sym__str_double_quotes_repeat1, + [206870] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5139), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [206271] = 4, + [206885] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9052), 1, - anon_sym_DOT2, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1566), 1, + sym_block, STATE(5140), 1, sym_comment, - ACTIONS(3099), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [206286] = 4, + STATE(5561), 1, + sym_returns, + [206904] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9054), 1, - anon_sym_DOT2, + ACTIONS(8994), 1, + anon_sym_LBRACE, + STATE(3146), 1, + sym_block, + STATE(3148), 1, + sym_val_closure, + STATE(4914), 1, + sym__blosure, STATE(5141), 1, sym_comment, - ACTIONS(3105), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [206301] = 4, + [206923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9056), 1, - anon_sym_DOT2, STATE(5142), 1, sym_comment, - ACTIONS(3111), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [206316] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5143), 1, - sym_comment, - ACTIONS(8436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206331] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5144), 1, - sym_comment, - ACTIONS(9058), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [206344] = 6, + [206936] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9060), 1, + ACTIONS(9171), 1, anon_sym_DOT2, - ACTIONS(9062), 1, + ACTIONS(9173), 1, anon_sym_LPAREN2, - ACTIONS(9064), 1, + ACTIONS(9175), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9066), 1, + ACTIONS(9177), 1, aux_sym__immediate_decimal_token3, - STATE(5145), 1, + STATE(5143), 1, sym_comment, - [206363] = 4, - ACTIONS(105), 1, + [206955] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5146), 1, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9179), 1, + anon_sym_RBRACK, + STATE(5144), 1, sym_comment, - ACTIONS(8346), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8348), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206378] = 5, - ACTIONS(105), 1, + STATE(5175), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [206974] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9068), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - STATE(5147), 1, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1567), 1, + sym_block, + STATE(5145), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206395] = 4, - ACTIONS(105), 1, + STATE(5558), 1, + sym_returns, + [206993] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5148), 1, + ACTIONS(8918), 1, + anon_sym_LBRACK, + ACTIONS(8920), 1, + anon_sym_LPAREN, + STATE(4923), 1, + sym_parameter_bracks, + STATE(4925), 1, + sym_parameter_parens, + STATE(5146), 1, sym_comment, - ACTIONS(8579), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8581), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206410] = 4, + [207012] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5149), 1, + STATE(5147), 1, sym_comment, - ACTIONS(8436), 2, + ACTIONS(8753), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8438), 2, + ACTIONS(8755), 2, ts_builtin_sym_end, anon_sym_LF, - [206425] = 5, + [207027] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9070), 1, + ACTIONS(9181), 1, anon_sym_DQUOTE, - STATE(5150), 1, + STATE(5148), 1, sym_comment, - STATE(5162), 1, + STATE(5160), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [206442] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5151), 1, - sym_comment, - ACTIONS(8346), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8348), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206457] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5152), 1, - sym_comment, - ACTIONS(8436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206472] = 4, + [207044] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5153), 1, + STATE(5149), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8508), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8510), 2, ts_builtin_sym_end, anon_sym_LF, - [206487] = 4, + [207059] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5154), 1, - sym_comment, - ACTIONS(8436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206502] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9072), 1, - anon_sym_DOT2, - STATE(5155), 1, - sym_comment, - ACTIONS(3117), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [206517] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(9074), 1, - anon_sym_RBRACK, - STATE(5129), 1, - aux_sym_val_table_repeat1, - STATE(5156), 1, - sym_comment, - STATE(5542), 1, - sym_val_list, - [206536] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_LPAREN2, - ACTIONS(9076), 1, - anon_sym_DOT2, - ACTIONS(9078), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9080), 1, - aux_sym__immediate_decimal_token3, - STATE(5157), 1, + STATE(5150), 1, sym_comment, - [206555] = 4, + ACTIONS(8432), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8434), 2, + ts_builtin_sym_end, + anon_sym_LF, + [207074] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5158), 1, + STATE(5151), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [206570] = 4, + [207089] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8134), 1, + anon_sym_DOT2, + ACTIONS(8136), 1, + anon_sym_LPAREN2, + ACTIONS(8142), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9183), 1, + aux_sym__immediate_decimal_token1, + STATE(5152), 1, + sym_comment, + [207108] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5153), 1, + sym_comment, + ACTIONS(9185), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [207121] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5159), 1, + STATE(5154), 1, sym_comment, - ACTIONS(8436), 2, + ACTIONS(8508), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8438), 2, + ACTIONS(8510), 2, ts_builtin_sym_end, anon_sym_LF, - [206585] = 4, + [207136] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5160), 1, + STATE(5155), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [206600] = 4, + [207151] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5161), 1, + STATE(5156), 1, sym_comment, - ACTIONS(8575), 2, + ACTIONS(8508), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8577), 2, + ACTIONS(8510), 2, ts_builtin_sym_end, anon_sym_LF, - [206615] = 5, + [207166] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9082), 1, + ACTIONS(9187), 1, anon_sym_DQUOTE, - STATE(5064), 1, + STATE(5138), 1, aux_sym__str_double_quotes_repeat1, - STATE(5162), 1, + STATE(5157), 1, sym_comment, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [206632] = 4, + [207183] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5163), 1, + ACTIONS(9189), 1, + anon_sym_DQUOTE, + STATE(5157), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5158), 1, sym_comment, - ACTIONS(8436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206647] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207200] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5164), 1, + STATE(5159), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [206662] = 4, + [207215] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5165), 1, + ACTIONS(9191), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5160), 1, sym_comment, - ACTIONS(8436), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8438), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206677] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207232] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5166), 1, + STATE(5161), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8508), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8510), 2, ts_builtin_sym_end, anon_sym_LF, - [206692] = 4, + [207247] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9193), 1, + anon_sym_RBRACK, + STATE(5123), 1, + aux_sym_val_table_repeat1, + STATE(5162), 1, + sym_comment, + STATE(5555), 1, + sym_val_list, + [207266] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5167), 1, + STATE(5163), 1, sym_comment, - ACTIONS(8346), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [206707] = 4, - ACTIONS(105), 1, + [207281] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5168), 1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1298), 1, + sym_block, + STATE(5164), 1, sym_comment, - ACTIONS(8579), 2, - anon_sym_SEMI, + STATE(5546), 1, + sym_returns, + [207300] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1295), 1, + sym_block, + STATE(5165), 1, + sym_comment, + STATE(5547), 1, + sym_returns, + [207319] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9195), 1, + anon_sym_DOT2, + STATE(5166), 1, + sym_comment, + ACTIONS(3173), 3, anon_sym_PIPE, - ACTIONS(8581), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206722] = 6, + anon_sym_if, + anon_sym_EQ_GT, + [207334] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8888), 1, anon_sym_LBRACK, - ACTIONS(9084), 1, + ACTIONS(9197), 1, anon_sym_RBRACK, - STATE(5169), 1, + STATE(5167), 1, sym_comment, - STATE(5179), 1, + STATE(5177), 1, aux_sym_val_table_repeat1, - STATE(5542), 1, + STATE(5555), 1, sym_val_list, - [206741] = 4, - ACTIONS(105), 1, + [207353] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9199), 1, + anon_sym_DOT2, + STATE(5168), 1, + sym_comment, + ACTIONS(3200), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207368] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9201), 1, + anon_sym_DOT2, + STATE(5169), 1, + sym_comment, + ACTIONS(3208), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207383] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9203), 1, + anon_sym_DOT2, STATE(5170), 1, sym_comment, - ACTIONS(8575), 2, - anon_sym_SEMI, + ACTIONS(3214), 3, anon_sym_PIPE, - ACTIONS(8577), 2, - ts_builtin_sym_end, - anon_sym_LF, - [206756] = 5, + anon_sym_if, + anon_sym_EQ_GT, + [207398] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9086), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, STATE(5171), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206773] = 3, - ACTIONS(3), 1, + ACTIONS(8508), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8510), 2, + ts_builtin_sym_end, + anon_sym_LF, + [207413] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(5172), 1, sym_comment, - ACTIONS(9088), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [206786] = 4, + ACTIONS(8353), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8355), 2, + ts_builtin_sym_end, + anon_sym_LF, + [207428] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5173), 1, sym_comment, - ACTIONS(8579), 2, + ACTIONS(8414), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8581), 2, + ACTIONS(8416), 2, ts_builtin_sym_end, anon_sym_LF, - [206801] = 5, - ACTIONS(105), 1, + [207443] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9088), 1, + anon_sym_LBRACK, ACTIONS(9090), 1, - anon_sym_DQUOTE, + anon_sym_LPAREN, + STATE(1216), 1, + sym_parameter_bracks, + STATE(1217), 1, + sym_parameter_parens, STATE(5174), 1, sym_comment, - STATE(5175), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206818] = 5, - ACTIONS(105), 1, + [207462] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9092), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9205), 1, + anon_sym_RBRACK, STATE(5175), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206835] = 4, + STATE(5239), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [207481] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5176), 1, sym_comment, - ACTIONS(8575), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8577), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [206850] = 4, - ACTIONS(105), 1, + [207496] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9207), 1, + anon_sym_RBRACK, STATE(5177), 1, sym_comment, - ACTIONS(8579), 2, + STATE(5239), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [207515] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5178), 1, + sym_comment, + ACTIONS(8508), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8581), 2, + ACTIONS(8510), 2, ts_builtin_sym_end, anon_sym_LF, - [206865] = 4, + [207530] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5178), 1, + STATE(5179), 1, sym_comment, - ACTIONS(8575), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8577), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [206880] = 6, + [207545] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9209), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5180), 1, + sym_comment, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207562] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(9094), 1, - anon_sym_RBRACK, - STATE(5179), 1, + ACTIONS(8908), 1, + anon_sym_LPAREN2, + ACTIONS(9211), 1, + anon_sym_DOT2, + ACTIONS(9213), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9215), 1, + aux_sym__immediate_decimal_token3, + STATE(5181), 1, sym_comment, - STATE(5198), 1, - aux_sym_val_table_repeat1, - STATE(5542), 1, - sym_val_list, - [206899] = 4, + [207581] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5180), 1, + STATE(5182), 1, sym_comment, - ACTIONS(8579), 2, + ACTIONS(8508), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8581), 2, + ACTIONS(8510), 2, ts_builtin_sym_end, anon_sym_LF, - [206914] = 4, + [207596] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5181), 1, + STATE(5183), 1, sym_comment, - ACTIONS(3710), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3712), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [206929] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1476), 1, - sym_block, - STATE(5182), 1, - sym_comment, - STATE(5514), 1, - sym_returns, - [206948] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1480), 1, - sym_block, - STATE(5183), 1, - sym_comment, - STATE(5512), 1, - sym_returns, - [206967] = 4, + [207611] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5184), 1, sym_comment, - ACTIONS(7707), 2, + ACTIONS(8508), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7709), 2, + ACTIONS(8510), 2, ts_builtin_sym_end, anon_sym_LF, - [206982] = 5, - ACTIONS(105), 1, + [207626] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9096), 1, - anon_sym_DQUOTE, - STATE(5171), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(9217), 1, + anon_sym_DOT2, STATE(5185), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206999] = 6, + ACTIONS(3173), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [207641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_LBRACK, - ACTIONS(8665), 1, - anon_sym_LPAREN, - STATE(4956), 1, - sym_parameter_bracks, - STATE(4957), 1, - sym_parameter_parens, + ACTIONS(9219), 1, + anon_sym_DOT2, STATE(5186), 1, sym_comment, - [207018] = 4, - ACTIONS(105), 1, + ACTIONS(3200), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [207656] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9221), 1, + anon_sym_DOT2, STATE(5187), 1, sym_comment, - ACTIONS(8575), 2, + ACTIONS(3208), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [207671] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5188), 1, + sym_comment, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8577), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [207033] = 6, - ACTIONS(3), 1, + [207686] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_LPAREN2, - ACTIONS(9098), 1, - anon_sym_DOT2, - ACTIONS(9100), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9102), 1, - aux_sym__immediate_decimal_token3, - STATE(5188), 1, + STATE(5189), 1, sym_comment, - [207052] = 6, - ACTIONS(3), 1, + ACTIONS(8508), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8510), 2, + ts_builtin_sym_end, + anon_sym_LF, + [207701] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7995), 1, - anon_sym_LPAREN2, - ACTIONS(9104), 1, + ACTIONS(8458), 1, + aux_sym__record_key_token1, + ACTIONS(9223), 1, anon_sym_DOT2, - ACTIONS(9106), 1, + ACTIONS(9225), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9108), 1, + ACTIONS(9227), 1, aux_sym__immediate_decimal_token3, - STATE(5189), 1, + STATE(5190), 1, sym_comment, - [207071] = 3, + [207720] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5190), 1, + STATE(5191), 1, sym_comment, - ACTIONS(9110), 4, + ACTIONS(9229), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [207084] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5191), 1, - sym_comment, - ACTIONS(8579), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8581), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207099] = 4, + [207733] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5192), 1, sym_comment, - ACTIONS(8575), 2, + ACTIONS(8508), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8577), 2, + ACTIONS(8510), 2, ts_builtin_sym_end, anon_sym_LF, - [207114] = 4, - ACTIONS(105), 1, + [207748] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9231), 1, + anon_sym_LBRACE, + STATE(3268), 1, + sym_val_closure, + STATE(3269), 1, + sym_block, STATE(5193), 1, sym_comment, - ACTIONS(8579), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8581), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207129] = 5, + STATE(5246), 1, + sym__blosure, + [207767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9112), 1, + ACTIONS(5298), 1, anon_sym_DOT2, - ACTIONS(9114), 1, - aux_sym__immediate_decimal_token2, STATE(5194), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(2834), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [207146] = 6, + [207782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_LBRACK, - ACTIONS(8665), 1, - anon_sym_LPAREN, - STATE(4966), 1, - sym_parameter_bracks, - STATE(4968), 1, - sym_parameter_parens, + ACTIONS(3153), 1, + sym_identifier, + ACTIONS(9233), 1, + sym__long_flag_identifier, STATE(5195), 1, sym_comment, - [207165] = 4, - ACTIONS(105), 1, + ACTIONS(3157), 2, + anon_sym_DOLLAR, + anon_sym_DASH, + [207799] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(115), 1, + aux_sym_unquoted_token6, + ACTIONS(117), 1, + anon_sym_DOT2, + ACTIONS(9235), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9237), 1, + aux_sym__immediate_decimal_token2, STATE(5196), 1, sym_comment, - ACTIONS(7658), 2, + [207818] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5197), 1, + sym_comment, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7660), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [207180] = 6, - ACTIONS(3), 1, + [207833] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_LBRACK, - ACTIONS(8665), 1, - anon_sym_LPAREN, - STATE(4977), 1, - sym_parameter_bracks, - STATE(4980), 1, - sym_parameter_parens, - STATE(5197), 1, + STATE(5198), 1, sym_comment, - [207199] = 5, + ACTIONS(8508), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8510), 2, + ts_builtin_sym_end, + anon_sym_LF, + [207848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9116), 1, - anon_sym_LBRACK, - ACTIONS(9119), 1, - anon_sym_RBRACK, - STATE(5542), 1, - sym_val_list, - STATE(5198), 2, - sym_comment, - aux_sym_val_table_repeat1, - [207216] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9121), 1, - anon_sym_DQUOTE, + ACTIONS(9239), 1, + anon_sym_DOT2, STATE(5199), 1, sym_comment, - STATE(5202), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207233] = 4, + ACTIONS(3214), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [207863] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7997), 1, + anon_sym_DOT2, + ACTIONS(8001), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8005), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8007), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5200), 1, sym_comment, - ACTIONS(8575), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8577), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207248] = 4, + [207882] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5201), 1, sym_comment, - ACTIONS(8579), 2, + ACTIONS(8353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8581), 2, + ACTIONS(8355), 2, ts_builtin_sym_end, anon_sym_LF, - [207263] = 5, + [207897] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9123), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, STATE(5202), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207280] = 5, + ACTIONS(8580), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8582), 2, + ts_builtin_sym_end, + anon_sym_LF, + [207912] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9125), 1, - anon_sym_DOT2, - ACTIONS(9127), 1, + ACTIONS(9241), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9243), 1, aux_sym__immediate_decimal_token2, STATE(5203), 1, sym_comment, - ACTIONS(2906), 2, + ACTIONS(2834), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [207297] = 4, - ACTIONS(105), 1, + [207929] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9245), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9247), 1, + aux_sym__immediate_decimal_token2, STATE(5204), 1, sym_comment, - ACTIONS(8502), 2, - anon_sym_SEMI, + ACTIONS(2908), 2, anon_sym_PIPE, - ACTIONS(8504), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207312] = 6, - ACTIONS(105), 1, + anon_sym_EQ_GT, + [207946] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3804), 1, - ts_builtin_sym_end, - ACTIONS(8488), 1, - anon_sym_SEMI, - ACTIONS(8490), 1, - anon_sym_LF, - STATE(1524), 1, - sym__terminator, STATE(5205), 1, sym_comment, - [207331] = 6, + ACTIONS(3273), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_LBRACE, + [207959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_LBRACK, - ACTIONS(8665), 1, - anon_sym_LPAREN, - STATE(4884), 1, - sym_parameter_bracks, - STATE(4885), 1, - sym_parameter_parens, + ACTIONS(9249), 1, + anon_sym_DOT2, STATE(5206), 1, sym_comment, - [207350] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5207), 1, - sym_comment, - ACTIONS(8575), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8577), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207365] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8755), 1, - anon_sym_LBRACK, - ACTIONS(8757), 1, - anon_sym_LPAREN, - STATE(1278), 1, - sym_parameter_bracks, - STATE(1279), 1, - sym_parameter_parens, - STATE(5208), 1, - sym_comment, - [207384] = 3, + ACTIONS(3240), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [207974] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5209), 1, + STATE(5207), 1, sym_comment, - ACTIONS(9129), 4, + ACTIONS(9251), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [207397] = 6, + [207987] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7951), 1, - anon_sym_LPAREN2, - ACTIONS(9131), 1, + ACTIONS(9253), 1, anon_sym_DOT2, - ACTIONS(9133), 1, + ACTIONS(9255), 1, + anon_sym_LPAREN2, + ACTIONS(9257), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9135), 1, + ACTIONS(9259), 1, aux_sym__immediate_decimal_token3, - STATE(5210), 1, + STATE(5208), 1, sym_comment, - [207416] = 4, + [208006] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5211), 1, + ACTIONS(9261), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5209), 1, sym_comment, - ACTIONS(8579), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8581), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207431] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208023] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5212), 1, + ACTIONS(9263), 1, + anon_sym_DQUOTE, + STATE(5180), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5210), 1, sym_comment, - ACTIONS(8575), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8577), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207446] = 4, - ACTIONS(105), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208040] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5213), 1, + ACTIONS(9008), 1, + anon_sym_LPAREN2, + ACTIONS(9265), 1, + anon_sym_DOT2, + ACTIONS(9267), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9269), 1, + aux_sym__immediate_decimal_token3, + STATE(5211), 1, sym_comment, - ACTIONS(8579), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8581), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207461] = 6, + [208059] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - ACTIONS(8859), 1, - anon_sym_if, - STATE(5007), 1, - sym_block, - STATE(5009), 1, - sym_ctrl_if_parenthesized, - STATE(5214), 1, + ACTIONS(9271), 1, + anon_sym_DOT2, + STATE(5212), 1, sym_comment, - [207480] = 5, + ACTIONS(3165), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [208074] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9137), 1, + ACTIONS(9273), 1, anon_sym_DQUOTE, - STATE(5215), 1, + STATE(5213), 1, sym_comment, - STATE(5227), 1, + STATE(5225), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [207497] = 3, - ACTIONS(3), 1, + [208091] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5216), 1, + ACTIONS(8226), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8230), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8456), 1, + anon_sym_DOT2, + ACTIONS(8458), 1, + aux_sym__record_key_token1, + STATE(5214), 1, sym_comment, - ACTIONS(9139), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [207510] = 4, - ACTIONS(105), 1, + [208110] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9143), 1, - anon_sym_LF, - STATE(5217), 1, + ACTIONS(8500), 1, + anon_sym_use, + ACTIONS(8502), 1, + anon_sym_list, + ACTIONS(8504), 1, + anon_sym_hide, + ACTIONS(8506), 1, + anon_sym_new, + STATE(5215), 1, sym_comment, - ACTIONS(9141), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [207525] = 4, + [208129] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5218), 1, + STATE(5216), 1, sym_comment, - ACTIONS(8575), 2, + ACTIONS(8606), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8577), 2, + ACTIONS(8608), 2, ts_builtin_sym_end, anon_sym_LF, - [207540] = 4, + [208144] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5219), 1, + STATE(5217), 1, sym_comment, - ACTIONS(8502), 2, + ACTIONS(8584), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8586), 2, ts_builtin_sym_end, anon_sym_LF, - [207555] = 5, + [208159] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9145), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9147), 1, + ACTIONS(9275), 1, + anon_sym_DOT2, + ACTIONS(9277), 1, aux_sym__immediate_decimal_token2, - STATE(5220), 1, + STATE(5218), 1, sym_comment, - ACTIONS(2784), 2, + ACTIONS(2936), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [207572] = 5, + [208176] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5219), 1, + sym_comment, + ACTIONS(9279), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [208189] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9149), 1, + ACTIONS(9281), 1, anon_sym_DQUOTE, - STATE(5221), 1, + STATE(5220), 1, sym_comment, - STATE(5222), 1, + STATE(5224), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [207589] = 5, + [208206] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9173), 1, + anon_sym_LPAREN2, + ACTIONS(9283), 1, + anon_sym_DOT2, + ACTIONS(9285), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9287), 1, + aux_sym__immediate_decimal_token3, + STATE(5221), 1, + sym_comment, + [208225] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9151), 1, + ACTIONS(9289), 1, anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, STATE(5222), 1, sym_comment, - ACTIONS(8641), 2, + STATE(5229), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [207606] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_LBRACK, - ACTIONS(8665), 1, - anon_sym_LPAREN, - STATE(4987), 1, - sym_parameter_bracks, - STATE(4988), 1, - sym_parameter_parens, - STATE(5223), 1, - sym_comment, - [207625] = 5, + [208242] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9114), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9153), 1, + ACTIONS(107), 1, + aux_sym_unquoted_token6, + ACTIONS(109), 1, + anon_sym_DOT2, + ACTIONS(9291), 1, aux_sym__immediate_decimal_token1, - STATE(5224), 1, - sym_comment, - ACTIONS(2808), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [207642] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5225), 1, + ACTIONS(9293), 1, + aux_sym__immediate_decimal_token2, + STATE(5223), 1, sym_comment, - ACTIONS(8534), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8536), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207657] = 5, + [208261] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9155), 1, + ACTIONS(9295), 1, anon_sym_DQUOTE, - STATE(5226), 1, - sym_comment, - STATE(5235), 1, + STATE(5138), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, + STATE(5224), 1, + sym_comment, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [207674] = 5, + [208278] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9157), 1, + ACTIONS(9297), 1, anon_sym_DQUOTE, - STATE(5064), 1, + STATE(5138), 1, aux_sym__str_double_quotes_repeat1, - STATE(5227), 1, + STATE(5225), 1, sym_comment, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [207691] = 4, - ACTIONS(105), 1, + [208295] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8222), 1, + anon_sym_DOT2, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8230), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9299), 1, + aux_sym__immediate_decimal_token1, + STATE(5226), 1, + sym_comment, + [208314] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5227), 1, + sym_comment, + ACTIONS(9301), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [208327] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9243), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9303), 1, + anon_sym_DOT2, STATE(5228), 1, sym_comment, - ACTIONS(8538), 2, - anon_sym_SEMI, + ACTIONS(2834), 2, anon_sym_PIPE, - ACTIONS(8540), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207706] = 4, + anon_sym_EQ_GT, + [208344] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9305), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5229), 1, sym_comment, - ACTIONS(8560), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8562), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207721] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208361] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5230), 1, sym_comment, - ACTIONS(7715), 2, + ACTIONS(8594), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7717), 2, + ACTIONS(8596), 2, ts_builtin_sym_end, anon_sym_LF, - [207736] = 4, + [208376] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5231), 1, sym_comment, - ACTIONS(8544), 2, + ACTIONS(8598), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8546), 2, + ACTIONS(8600), 2, ts_builtin_sym_end, anon_sym_LF, - [207751] = 4, - ACTIONS(105), 1, + [208391] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9307), 1, + anon_sym_RBRACK, STATE(5232), 1, sym_comment, - ACTIONS(8575), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8577), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207766] = 4, - ACTIONS(105), 1, + STATE(5242), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [208410] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9309), 1, + anon_sym_RBRACK, STATE(5233), 1, sym_comment, - ACTIONS(3317), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3319), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207781] = 6, + STATE(5234), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [208429] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8888), 1, anon_sym_LBRACK, - ACTIONS(9159), 1, + ACTIONS(9311), 1, anon_sym_RBRACK, STATE(5234), 1, sym_comment, - STATE(5244), 1, + STATE(5239), 1, aux_sym_val_table_repeat1, - STATE(5542), 1, + STATE(5555), 1, sym_val_list, - [207800] = 5, + [208448] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9161), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, STATE(5235), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207817] = 6, + ACTIONS(8508), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8510), 2, + ts_builtin_sym_end, + anon_sym_LF, + [208463] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(9163), 1, - anon_sym_RBRACK, - STATE(5198), 1, - aux_sym_val_table_repeat1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + STATE(3146), 1, + sym_block, + STATE(3148), 1, + sym_val_closure, + STATE(5052), 1, + sym__blosure, STATE(5236), 1, sym_comment, - STATE(5542), 1, - sym_val_list, - [207836] = 5, - ACTIONS(105), 1, + [208482] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - anon_sym_DQUOTE, + ACTIONS(8918), 1, + anon_sym_LBRACK, + ACTIONS(8920), 1, + anon_sym_LPAREN, + STATE(5096), 1, + sym_parameter_bracks, + STATE(5097), 1, + sym_parameter_parens, STATE(5237), 1, sym_comment, - STATE(5241), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207853] = 4, - ACTIONS(105), 1, + [208501] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + ACTIONS(9046), 1, + anon_sym_if, + STATE(5054), 1, + sym_block, + STATE(5058), 1, + sym_ctrl_if_parenthesized, STATE(5238), 1, sym_comment, - ACTIONS(3377), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3379), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207868] = 4, - ACTIONS(105), 1, + [208520] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5239), 1, + ACTIONS(9313), 1, + anon_sym_LBRACK, + ACTIONS(9316), 1, + anon_sym_RBRACK, + STATE(5555), 1, + sym_val_list, + STATE(5239), 2, sym_comment, - ACTIONS(3533), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3535), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207883] = 4, + aux_sym_val_table_repeat1, + [208537] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9318), 1, + anon_sym_DQUOTE, STATE(5240), 1, sym_comment, - ACTIONS(8560), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8562), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207898] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9167), 1, - anon_sym_DQUOTE, - STATE(5064), 1, + STATE(5250), 1, aux_sym__str_double_quotes_repeat1, - STATE(5241), 1, - sym_comment, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [207915] = 5, - ACTIONS(105), 1, + [208554] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9169), 1, - anon_sym_DQUOTE, - STATE(5242), 1, + STATE(5241), 1, sym_comment, - STATE(5243), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207932] = 5, - ACTIONS(105), 1, + ACTIONS(9320), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [208567] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9171), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - STATE(5243), 1, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9322), 1, + anon_sym_RBRACK, + STATE(5239), 1, + aux_sym_val_table_repeat1, + STATE(5242), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207949] = 6, + STATE(5555), 1, + sym_val_list, + [208586] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8888), 1, anon_sym_LBRACK, - ACTIONS(9173), 1, + ACTIONS(9324), 1, anon_sym_RBRACK, - STATE(5198), 1, + STATE(5239), 1, aux_sym_val_table_repeat1, - STATE(5244), 1, + STATE(5243), 1, sym_comment, - STATE(5542), 1, + STATE(5555), 1, sym_val_list, - [207968] = 4, - ACTIONS(105), 1, + [208605] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9326), 1, + anon_sym_DOT2, + ACTIONS(9328), 1, + anon_sym_LPAREN2, + ACTIONS(9330), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9332), 1, + aux_sym__immediate_decimal_token3, + STATE(5244), 1, + sym_comment, + [208624] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8918), 1, + anon_sym_LBRACK, + ACTIONS(8920), 1, + anon_sym_LPAREN, + STATE(5125), 1, + sym_parameter_bracks, + STATE(5127), 1, + sym_parameter_parens, STATE(5245), 1, sym_comment, - ACTIONS(8560), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8562), 2, - ts_builtin_sym_end, - anon_sym_LF, - [207983] = 4, + [208643] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5246), 1, sym_comment, - ACTIONS(7701), 2, + ACTIONS(8834), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(7703), 2, + ACTIONS(8836), 2, ts_builtin_sym_end, anon_sym_LF, - [207998] = 4, + [208658] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9334), 1, + anon_sym_DQUOTE, STATE(5247), 1, sym_comment, - ACTIONS(8502), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8504), 2, - ts_builtin_sym_end, - anon_sym_LF, - [208013] = 4, - ACTIONS(105), 1, + STATE(5252), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208675] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8918), 1, + anon_sym_LBRACK, + ACTIONS(8920), 1, + anon_sym_LPAREN, + STATE(5134), 1, + sym_parameter_bracks, + STATE(5135), 1, + sym_parameter_parens, STATE(5248), 1, sym_comment, - ACTIONS(8560), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8562), 2, - ts_builtin_sym_end, - anon_sym_LF, - [208028] = 4, - ACTIONS(105), 1, + [208694] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1603), 1, + sym_block, STATE(5249), 1, sym_comment, - ACTIONS(8502), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8504), 2, - ts_builtin_sym_end, - anon_sym_LF, - [208043] = 5, + STATE(5537), 1, + sym_returns, + [208713] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9175), 1, + ACTIONS(9336), 1, anon_sym_DQUOTE, - STATE(5064), 1, + STATE(5138), 1, aux_sym__str_double_quotes_repeat1, STATE(5250), 1, sym_comment, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [208060] = 5, - ACTIONS(105), 1, + [208730] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9177), 1, - anon_sym_DQUOTE, - STATE(5250), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(1596), 1, + sym_block, STATE(5251), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208077] = 5, + STATE(5549), 1, + sym_returns, + [208749] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9179), 1, + ACTIONS(9338), 1, anon_sym_DQUOTE, - STATE(5064), 1, + STATE(5138), 1, aux_sym__str_double_quotes_repeat1, STATE(5252), 1, sym_comment, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [208094] = 5, + [208766] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9181), 1, - anon_sym_DQUOTE, - STATE(5252), 1, - aux_sym__str_double_quotes_repeat1, STATE(5253), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208111] = 5, + ACTIONS(8602), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8604), 2, + ts_builtin_sym_end, + anon_sym_LF, + [208781] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9183), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, STATE(5254), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208128] = 4, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8671), 2, + ts_builtin_sym_end, + anon_sym_LF, + [208796] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5255), 1, sym_comment, - ACTIONS(8560), 2, + ACTIONS(8602), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8562), 2, + ACTIONS(8604), 2, ts_builtin_sym_end, anon_sym_LF, - [208143] = 6, - ACTIONS(3), 1, + [208811] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_LBRACK, - ACTIONS(9185), 1, - anon_sym_RBRACK, - STATE(5236), 1, - aux_sym_val_table_repeat1, STATE(5256), 1, sym_comment, - STATE(5542), 1, - sym_val_list, - [208162] = 5, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8671), 2, + ts_builtin_sym_end, + anon_sym_LF, + [208826] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9187), 1, - anon_sym_DQUOTE, STATE(5257), 1, sym_comment, - STATE(5260), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208179] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5258), 1, - sym_comment, - ACTIONS(8502), 2, + ACTIONS(8602), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8604), 2, ts_builtin_sym_end, anon_sym_LF, - [208194] = 4, + [208841] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5259), 1, + STATE(5258), 1, sym_comment, - ACTIONS(8502), 2, + ACTIONS(8669), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8671), 2, ts_builtin_sym_end, anon_sym_LF, - [208209] = 5, + [208856] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9189), 1, - anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - STATE(5260), 1, + STATE(5259), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208226] = 4, + ACTIONS(8602), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8604), 2, + ts_builtin_sym_end, + anon_sym_LF, + [208871] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5261), 1, + STATE(5260), 1, sym_comment, - ACTIONS(8560), 2, + ACTIONS(8669), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8562), 2, + ACTIONS(8671), 2, ts_builtin_sym_end, anon_sym_LF, - [208241] = 6, + [208886] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8918), 1, anon_sym_LBRACK, - ACTIONS(9191), 1, - anon_sym_RBRACK, - STATE(4878), 1, - aux_sym_val_table_repeat1, + ACTIONS(8920), 1, + anon_sym_LPAREN, + STATE(5164), 1, + sym_parameter_bracks, + STATE(5165), 1, + sym_parameter_parens, + STATE(5261), 1, + sym_comment, + [208905] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(5262), 1, sym_comment, - STATE(5542), 1, - sym_val_list, - [208260] = 4, + ACTIONS(8602), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8604), 2, + ts_builtin_sym_end, + anon_sym_LF, + [208920] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5263), 1, sym_comment, - ACTIONS(8502), 2, + ACTIONS(8669), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8671), 2, ts_builtin_sym_end, anon_sym_LF, - [208275] = 5, + [208935] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9193), 1, - anon_sym_DQUOTE, - STATE(5254), 1, - aux_sym__str_double_quotes_repeat1, STATE(5264), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208292] = 4, + ACTIONS(8602), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8604), 2, + ts_builtin_sym_end, + anon_sym_LF, + [208950] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5265), 1, sym_comment, - ACTIONS(8560), 2, + ACTIONS(8669), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8562), 2, + ACTIONS(8671), 2, ts_builtin_sym_end, anon_sym_LF, - [208307] = 4, + [208965] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5266), 1, sym_comment, - ACTIONS(8502), 2, + ACTIONS(8602), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8604), 2, ts_builtin_sym_end, anon_sym_LF, - [208322] = 4, + [208980] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5267), 1, sym_comment, - ACTIONS(8560), 2, + ACTIONS(8669), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8562), 2, + ACTIONS(8671), 2, ts_builtin_sym_end, anon_sym_LF, - [208337] = 4, + [208995] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5268), 1, sym_comment, - ACTIONS(8502), 2, + ACTIONS(8602), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8604), 2, ts_builtin_sym_end, anon_sym_LF, - [208352] = 4, + [209010] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5269), 1, sym_comment, - ACTIONS(8560), 2, + ACTIONS(8669), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8562), 2, + ACTIONS(8671), 2, ts_builtin_sym_end, anon_sym_LF, - [208367] = 4, + [209025] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5270), 1, sym_comment, - ACTIONS(8560), 2, + ACTIONS(8602), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8562), 2, + ACTIONS(8604), 2, ts_builtin_sym_end, anon_sym_LF, - [208382] = 4, + [209040] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5271), 1, sym_comment, - ACTIONS(8502), 2, + ACTIONS(8669), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8671), 2, ts_builtin_sym_end, anon_sym_LF, - [208397] = 6, + [209055] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_LBRACK, - ACTIONS(8665), 1, - anon_sym_LPAREN, - STATE(4891), 1, - sym_parameter_bracks, - STATE(4897), 1, - sym_parameter_parens, STATE(5272), 1, sym_comment, - [208416] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1468), 1, - sym_block, - STATE(5273), 1, - sym_comment, - STATE(5538), 1, - sym_returns, - [208435] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5274), 1, - sym_comment, - ACTIONS(9195), 4, + ACTIONS(9340), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [208448] = 6, + [209068] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8657), 1, + ACTIONS(8224), 1, anon_sym_LPAREN2, - ACTIONS(9197), 1, + ACTIONS(9342), 1, anon_sym_DOT2, - ACTIONS(9199), 1, + ACTIONS(9344), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9201), 1, + ACTIONS(9346), 1, aux_sym__immediate_decimal_token3, - STATE(5275), 1, - sym_comment, - [208467] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(1500), 1, - sym_block, - STATE(5276), 1, + STATE(5273), 1, sym_comment, - STATE(5536), 1, - sym_returns, - [208486] = 4, + [209087] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5277), 1, + STATE(5274), 1, sym_comment, - ACTIONS(8502), 2, + ACTIONS(8602), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8604), 2, ts_builtin_sym_end, anon_sym_LF, - [208501] = 5, + [209102] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9203), 1, + ACTIONS(9348), 1, anon_sym_DQUOTE, - STATE(5064), 1, - aux_sym__str_double_quotes_repeat1, - STATE(5278), 1, + STATE(5275), 1, sym_comment, - ACTIONS(8641), 2, + STATE(5283), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [208518] = 4, - ACTIONS(3), 1, + [209119] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9205), 1, - sym__long_flag_identifier, - STATE(5279), 1, + ACTIONS(9352), 1, + anon_sym_LF, + STATE(5276), 1, sym_comment, - ACTIONS(2964), 3, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - [208533] = 5, + ACTIONS(9350), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [209134] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5277), 1, + sym_comment, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8671), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209149] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9207), 1, - anon_sym_DQUOTE, STATE(5278), 1, - aux_sym__str_double_quotes_repeat1, - STATE(5280), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208550] = 4, + ACTIONS(8602), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8604), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209164] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5281), 1, + STATE(5279), 1, sym_comment, - ACTIONS(8560), 2, + ACTIONS(8669), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8562), 2, + ACTIONS(8671), 2, ts_builtin_sym_end, anon_sym_LF, - [208565] = 4, + [209179] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5282), 1, + STATE(5280), 1, sym_comment, - ACTIONS(8502), 2, + ACTIONS(8602), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8604), 2, ts_builtin_sym_end, anon_sym_LF, - [208580] = 4, + [209194] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5283), 1, + STATE(5281), 1, sym_comment, - ACTIONS(8560), 2, + ACTIONS(8669), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8562), 2, + ACTIONS(8671), 2, ts_builtin_sym_end, anon_sym_LF, - [208595] = 4, + [209209] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5284), 1, + STATE(5282), 1, sym_comment, - ACTIONS(8560), 2, + ACTIONS(8602), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8562), 2, + ACTIONS(8604), 2, ts_builtin_sym_end, anon_sym_LF, - [208610] = 5, + [209224] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9209), 1, + ACTIONS(9354), 1, anon_sym_DQUOTE, - STATE(5064), 1, + STATE(5138), 1, aux_sym__str_double_quotes_repeat1, - STATE(5285), 1, + STATE(5283), 1, sym_comment, - ACTIONS(8641), 2, + ACTIONS(8854), 2, sym__escaped_str_content, sym_escape_sequence, - [208627] = 5, + [209241] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5284), 1, + sym_comment, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8671), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209256] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9211), 1, - anon_sym_DQUOTE, STATE(5285), 1, - aux_sym__str_double_quotes_repeat1, + sym_comment, + ACTIONS(8610), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209271] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(5286), 1, sym_comment, - ACTIONS(8641), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208644] = 4, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209286] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(5287), 1, sym_comment, - ACTIONS(8502), 2, + ACTIONS(8610), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(8504), 2, + ACTIONS(8612), 2, ts_builtin_sym_end, anon_sym_LF, - [208659] = 3, - ACTIONS(3), 1, + [209301] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(5288), 1, sym_comment, - ACTIONS(3053), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - [208671] = 4, - ACTIONS(3), 1, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209316] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9213), 1, - anon_sym_DOT2, STATE(5289), 1, sym_comment, - ACTIONS(3111), 2, + ACTIONS(8610), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [208685] = 5, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9215), 1, - anon_sym_DOT2, - ACTIONS(9217), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9219), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9356), 1, + anon_sym_RBRACK, STATE(5290), 1, sym_comment, - [208701] = 5, - ACTIONS(3), 1, + STATE(5297), 1, + aux_sym_val_table_repeat1, + STATE(5555), 1, + sym_val_list, + [209350] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9221), 1, - anon_sym_RBRACK, - ACTIONS(9223), 1, - sym_hex_digit, + ACTIONS(9358), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5291), 1, sym_comment, - STATE(5307), 1, - aux_sym_val_binary_repeat1, - [208717] = 5, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209367] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8984), 1, - anon_sym_DOT2, - ACTIONS(8986), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8988), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9360), 1, + anon_sym_DQUOTE, + STATE(5291), 1, + aux_sym__str_double_quotes_repeat1, STATE(5292), 1, sym_comment, - [208733] = 5, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209384] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_EQ, - ACTIONS(9225), 1, - anon_sym_AT, - STATE(3984), 1, - sym_param_cmd, + ACTIONS(9362), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5293), 1, sym_comment, - [208749] = 5, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209401] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9227), 1, - anon_sym_DOT2, - ACTIONS(9229), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9231), 1, - aux_sym__immediate_decimal_token3, STATE(5294), 1, sym_comment, - [208765] = 4, - ACTIONS(3), 1, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209416] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9233), 1, - anon_sym_DOT2, + ACTIONS(9364), 1, + anon_sym_DQUOTE, + STATE(5293), 1, + aux_sym__str_double_quotes_repeat1, STATE(5295), 1, sym_comment, - ACTIONS(3131), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [208779] = 3, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209433] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9366), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5296), 1, sym_comment, - ACTIONS(6686), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [208791] = 3, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209450] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9368), 1, + anon_sym_RBRACK, + STATE(5239), 1, + aux_sym_val_table_repeat1, STATE(5297), 1, sym_comment, - ACTIONS(6686), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [208803] = 5, - ACTIONS(3), 1, + STATE(5555), 1, + sym_val_list, + [209469] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9235), 1, - anon_sym_DOT2, - ACTIONS(9237), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9239), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9370), 1, + anon_sym_DQUOTE, + STATE(5296), 1, + aux_sym__str_double_quotes_repeat1, STATE(5298), 1, sym_comment, - [208819] = 4, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209486] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9241), 1, - anon_sym_DOT2, + ACTIONS(9372), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5299), 1, sym_comment, - ACTIONS(3125), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [208833] = 5, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209503] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9243), 1, - anon_sym_DOT2, - ACTIONS(9245), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9247), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9374), 1, + anon_sym_DQUOTE, + STATE(5299), 1, + aux_sym__str_double_quotes_repeat1, STATE(5300), 1, sym_comment, - [208849] = 5, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209520] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9249), 1, - anon_sym_RBRACK, STATE(5301), 1, sym_comment, - STATE(5357), 1, - aux_sym_val_binary_repeat1, - [208865] = 5, - ACTIONS(3), 1, + ACTIONS(8610), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209535] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9251), 1, - anon_sym_DOT2, - ACTIONS(9253), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9255), 1, - aux_sym__immediate_decimal_token3, STATE(5302), 1, sym_comment, - [208881] = 5, - ACTIONS(3), 1, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209550] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(109), 1, - anon_sym_COLON, - ACTIONS(1183), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9257), 1, - anon_sym_DOT2, + ACTIONS(9376), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5303), 1, sym_comment, - [208897] = 5, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209567] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9215), 1, - anon_sym_DOT2, - ACTIONS(9219), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9259), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9378), 1, + anon_sym_DQUOTE, + STATE(5303), 1, + aux_sym__str_double_quotes_repeat1, STATE(5304), 1, sym_comment, - [208913] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209584] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8825), 1, - anon_sym_SEMI, + ACTIONS(9380), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5305), 1, sym_comment, - ACTIONS(8827), 2, - ts_builtin_sym_end, - anon_sym_LF, - [208927] = 5, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209601] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9215), 1, - anon_sym_DOT2, - ACTIONS(9219), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9261), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9382), 1, + anon_sym_DQUOTE, + STATE(5305), 1, + aux_sym__str_double_quotes_repeat1, STATE(5306), 1, sym_comment, - [208943] = 5, - ACTIONS(3), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209618] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9263), 1, - anon_sym_RBRACK, STATE(5307), 1, sym_comment, - STATE(5357), 1, - aux_sym_val_binary_repeat1, - [208959] = 5, - ACTIONS(3), 1, + ACTIONS(8610), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209633] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1378), 1, - sym_block, STATE(5308), 1, sym_comment, - [208975] = 4, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209648] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8849), 1, - anon_sym_SEMI, STATE(5309), 1, sym_comment, - ACTIONS(8851), 2, + ACTIONS(8610), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8612), 2, ts_builtin_sym_end, anon_sym_LF, - [208989] = 5, - ACTIONS(3), 1, + [209663] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9098), 1, - anon_sym_DOT2, - ACTIONS(9100), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9102), 1, - aux_sym__immediate_decimal_token3, STATE(5310), 1, sym_comment, - [209005] = 5, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209678] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9235), 1, - anon_sym_DOT2, - ACTIONS(9239), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9265), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8918), 1, + anon_sym_LBRACK, + ACTIONS(8920), 1, + anon_sym_LPAREN, + STATE(4981), 1, + sym_parameter_bracks, + STATE(4982), 1, + sym_parameter_parens, STATE(5311), 1, sym_comment, - [209021] = 5, + [209697] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, - anon_sym_LF, - STATE(1633), 1, - sym__terminator, STATE(5312), 1, sym_comment, - [209037] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8520), 1, + ACTIONS(8610), 2, + anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(9267), 1, - anon_sym_EQ_GT, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209712] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(5313), 1, sym_comment, - STATE(5415), 1, - aux_sym_match_pattern_repeat1, - [209053] = 3, - ACTIONS(3), 1, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209727] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(5314), 1, sym_comment, - ACTIONS(6186), 3, + ACTIONS(8610), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [209065] = 5, - ACTIONS(3), 1, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209742] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9269), 1, - anon_sym_RBRACK, - STATE(5301), 1, - aux_sym_val_binary_repeat1, STATE(5315), 1, sym_comment, - [209081] = 5, - ACTIONS(3), 1, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209757] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9076), 1, - anon_sym_DOT2, - ACTIONS(9078), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9080), 1, - aux_sym__immediate_decimal_token3, STATE(5316), 1, sym_comment, - [209097] = 5, - ACTIONS(3), 1, + ACTIONS(8610), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209772] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9271), 1, - anon_sym_DOT2, - ACTIONS(9273), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9275), 1, - aux_sym__immediate_decimal_token3, STATE(5317), 1, sym_comment, - [209113] = 5, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209787] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9277), 1, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9384), 1, anon_sym_RBRACK, + STATE(5033), 1, + aux_sym_val_table_repeat1, STATE(5318), 1, sym_comment, - STATE(5323), 1, - aux_sym_val_binary_repeat1, - [209129] = 5, + STATE(5555), 1, + sym_val_list, + [209806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, - anon_sym_DOT2, - ACTIONS(8833), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8835), 1, - aux_sym__immediate_decimal_token3, STATE(5319), 1, sym_comment, - [209145] = 5, + ACTIONS(9386), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [209819] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9279), 1, + ACTIONS(9328), 1, + anon_sym_LPAREN2, + ACTIONS(9388), 1, anon_sym_DOT2, - ACTIONS(9281), 1, + ACTIONS(9390), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9283), 1, + ACTIONS(9392), 1, aux_sym__immediate_decimal_token3, STATE(5320), 1, sym_comment, - [209161] = 5, - ACTIONS(3), 1, + [209838] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9285), 1, - anon_sym_EQ, - ACTIONS(9287), 1, - anon_sym_COLON, STATE(5321), 1, sym_comment, - STATE(6097), 1, - sym_param_type, - [209177] = 5, - ACTIONS(3), 1, + ACTIONS(8610), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209853] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8865), 1, - anon_sym_DOT2, - ACTIONS(8867), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token3, STATE(5322), 1, sym_comment, - [209193] = 5, - ACTIONS(3), 1, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209868] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9289), 1, - anon_sym_RBRACK, + ACTIONS(9394), 1, + anon_sym_DQUOTE, STATE(5323), 1, sym_comment, - STATE(5357), 1, - aux_sym_val_binary_repeat1, - [209209] = 4, + STATE(5332), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209885] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9293), 1, - anon_sym_LF, STATE(5324), 1, sym_comment, - ACTIONS(9291), 2, + ACTIONS(8610), 2, anon_sym_SEMI, - anon_sym_RPAREN, - [209223] = 5, - ACTIONS(3), 1, + anon_sym_PIPE, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209900] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9044), 1, - anon_sym_DOT2, - ACTIONS(9046), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9048), 1, - aux_sym__immediate_decimal_token3, STATE(5325), 1, sym_comment, - [209239] = 5, - ACTIONS(3), 1, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209915] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9295), 1, - anon_sym_DOT2, - ACTIONS(9297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9299), 1, - aux_sym__immediate_decimal_token3, STATE(5326), 1, sym_comment, - [209255] = 5, - ACTIONS(3), 1, + ACTIONS(8606), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8608), 2, + ts_builtin_sym_end, + anon_sym_LF, + [209930] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9287), 1, - anon_sym_COLON, - ACTIONS(9301), 1, - anon_sym_EQ, + ACTIONS(9396), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5327), 1, sym_comment, - STATE(5955), 1, - sym_param_type, - [209271] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209947] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9305), 1, - anon_sym_LF, + ACTIONS(9398), 1, + anon_sym_DQUOTE, + STATE(5327), 1, + aux_sym__str_double_quotes_repeat1, STATE(5328), 1, sym_comment, - ACTIONS(9303), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [209285] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209964] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9309), 1, - anon_sym_LF, + ACTIONS(9400), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5329), 1, sym_comment, - ACTIONS(9307), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [209299] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209981] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8883), 1, - anon_sym_SEMI, STATE(5330), 1, sym_comment, - ACTIONS(8885), 2, + ACTIONS(8610), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8612), 2, ts_builtin_sym_end, anon_sym_LF, - [209313] = 5, + [209996] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3798), 1, - anon_sym_RPAREN, - ACTIONS(9311), 1, - anon_sym_SEMI, - ACTIONS(9313), 1, - anon_sym_LF, STATE(5331), 1, sym_comment, - [209329] = 5, - ACTIONS(3), 1, + ACTIONS(8610), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8612), 2, + ts_builtin_sym_end, + anon_sym_LF, + [210011] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8968), 1, - anon_sym_DOT2, - ACTIONS(8970), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8972), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9402), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5332), 1, sym_comment, - [209345] = 5, - ACTIONS(105), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210028] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8761), 1, - anon_sym_LF, - STATE(2545), 1, - aux_sym_pipe_element_repeat1, STATE(5333), 1, sym_comment, - [209361] = 4, - ACTIONS(105), 1, + ACTIONS(9404), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [210041] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9317), 1, - anon_sym_LF, + ACTIONS(8122), 1, + anon_sym_LPAREN2, + ACTIONS(9406), 1, + anon_sym_DOT2, + ACTIONS(9408), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9410), 1, + aux_sym__immediate_decimal_token3, STATE(5334), 1, sym_comment, - ACTIONS(9315), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [209375] = 5, + [210060] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8761), 1, - anon_sym_LF, - STATE(2534), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(9412), 1, + anon_sym_DQUOTE, + STATE(5329), 1, + aux_sym__str_double_quotes_repeat1, STATE(5335), 1, sym_comment, - [209391] = 4, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210077] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8953), 1, - anon_sym_SEMI, + ACTIONS(9414), 1, + anon_sym_DQUOTE, + STATE(5209), 1, + aux_sym__str_double_quotes_repeat1, STATE(5336), 1, sym_comment, - ACTIONS(8955), 2, - ts_builtin_sym_end, - anon_sym_LF, - [209405] = 5, - ACTIONS(105), 1, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210094] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2806), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(9319), 1, - anon_sym_DOT2, - ACTIONS(9321), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9416), 1, + anon_sym_RBRACK, + STATE(5243), 1, + aux_sym_val_table_repeat1, STATE(5337), 1, sym_comment, - [209421] = 5, - ACTIONS(3), 1, + STATE(5555), 1, + sym_val_list, + [210113] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9032), 1, - anon_sym_DOT2, - ACTIONS(9034), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9036), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9418), 1, + anon_sym_DQUOTE, + STATE(5138), 1, + aux_sym__str_double_quotes_repeat1, STATE(5338), 1, sym_comment, - [209437] = 5, + ACTIONS(8854), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210130] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9287), 1, - anon_sym_COLON, - ACTIONS(9323), 1, - anon_sym_EQ, + ACTIONS(9171), 1, + anon_sym_DOT2, + ACTIONS(9175), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9177), 1, + aux_sym__immediate_decimal_token3, STATE(5339), 1, sym_comment, - STATE(5722), 1, - sym_param_type, - [209453] = 5, + [210146] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9325), 1, - anon_sym_DOT2, - ACTIONS(9327), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9329), 1, - aux_sym__immediate_decimal_token3, STATE(5340), 1, sym_comment, - [209469] = 5, + ACTIONS(6897), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [210158] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9331), 1, + ACTIONS(9420), 1, anon_sym_DOT2, - ACTIONS(9333), 1, + ACTIONS(9422), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9335), 1, + ACTIONS(9424), 1, aux_sym__immediate_decimal_token3, STATE(5341), 1, sym_comment, - [209485] = 5, + [210174] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9060), 1, - anon_sym_DOT2, - ACTIONS(9064), 1, + ACTIONS(117), 1, + anon_sym_COLON, + ACTIONS(9426), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9066), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9428), 1, + aux_sym__immediate_decimal_token2, STATE(5342), 1, sym_comment, - [209501] = 5, + [210190] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2904), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(9337), 1, - anon_sym_DOT2, - ACTIONS(9339), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3885), 1, + anon_sym_RPAREN, + ACTIONS(9430), 1, + anon_sym_SEMI, + ACTIONS(9432), 1, + anon_sym_LF, STATE(5343), 1, sym_comment, - [209517] = 4, - ACTIONS(105), 1, + [210206] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, - anon_sym_SEMI, + ACTIONS(9072), 1, + anon_sym_DOT2, + ACTIONS(9074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9076), 1, + aux_sym__immediate_decimal_token3, STATE(5344), 1, sym_comment, - ACTIONS(8699), 2, - ts_builtin_sym_end, - anon_sym_LF, - [209531] = 4, + [210222] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8949), 1, - anon_sym_SEMI, + ACTIONS(2906), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(9434), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9436), 1, + aux_sym__immediate_decimal_token2, STATE(5345), 1, sym_comment, - ACTIONS(8951), 2, - ts_builtin_sym_end, - anon_sym_LF, - [209545] = 5, + [210238] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8761), 1, - anon_sym_LF, - STATE(2501), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(9146), 1, + anon_sym_LPAREN, STATE(5346), 1, sym_comment, - [209561] = 4, + ACTIONS(9148), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [210252] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9343), 1, + ACTIONS(9440), 1, anon_sym_LF, STATE(5347), 1, sym_comment, - ACTIONS(9341), 2, + ACTIONS(9438), 2, anon_sym_SEMI, anon_sym_RPAREN, - [209575] = 5, - ACTIONS(3), 1, + [210266] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9345), 1, - anon_sym_RBRACK, + ACTIONS(9444), 1, + anon_sym_LF, STATE(5348), 1, sym_comment, - STATE(5357), 1, - aux_sym_val_binary_repeat1, - [209591] = 5, + ACTIONS(9442), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [210280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9347), 1, + ACTIONS(9446), 1, anon_sym_DOT2, - ACTIONS(9349), 1, + ACTIONS(9448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9351), 1, + ACTIONS(9450), 1, aux_sym__immediate_decimal_token3, STATE(5349), 1, sym_comment, - [209607] = 5, + [210296] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9353), 1, - anon_sym_DOT2, - ACTIONS(9355), 1, + ACTIONS(109), 1, + anon_sym_COLON, + ACTIONS(9452), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9357), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9454), 1, + aux_sym__immediate_decimal_token2, STATE(5350), 1, sym_comment, - [209623] = 4, - ACTIONS(105), 1, + [210312] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8939), 1, - anon_sym_SEMI, + ACTIONS(9456), 1, + anon_sym_EQ, + ACTIONS(9458), 1, + anon_sym_COLON, STATE(5351), 1, sym_comment, - ACTIONS(8941), 2, - ts_builtin_sym_end, - anon_sym_LF, - [209637] = 5, + STATE(6029), 1, + sym_param_type, + [210328] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3254), 1, - anon_sym_SEMI, - ACTIONS(3256), 1, + ACTIONS(9462), 1, anon_sym_LF, - STATE(1632), 1, - sym__terminator, STATE(5352), 1, sym_comment, - [209653] = 5, + ACTIONS(9460), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [210342] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1364), 1, - sym_block, + ACTIONS(9464), 1, + anon_sym_DOT2, + ACTIONS(9466), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9468), 1, + aux_sym__immediate_decimal_token3, STATE(5353), 1, sym_comment, - [209669] = 5, + [210358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9287), 1, - anon_sym_COLON, - ACTIONS(9359), 1, - anon_sym_EQ, + ACTIONS(9470), 1, + anon_sym_RBRACK, + ACTIONS(9472), 1, + sym_hex_digit, STATE(5354), 1, sym_comment, - STATE(6092), 1, - sym_param_type, - [209685] = 5, + STATE(5370), 1, + aux_sym_val_binary_repeat1, + [210374] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9361), 1, - anon_sym_RBRACK, + ACTIONS(9474), 1, + anon_sym_DOT2, + ACTIONS(9476), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9478), 1, + aux_sym__immediate_decimal_token3, STATE(5355), 1, sym_comment, - STATE(5371), 1, - aux_sym_val_binary_repeat1, - [209701] = 4, - ACTIONS(105), 1, + [210390] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, - anon_sym_LPAREN, + ACTIONS(9480), 1, + anon_sym_DOT2, + ACTIONS(9482), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9484), 1, + aux_sym__immediate_decimal_token3, STATE(5356), 1, sym_comment, - ACTIONS(8711), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [209715] = 4, + [210406] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9363), 1, - anon_sym_RBRACK, - ACTIONS(9365), 1, + ACTIONS(9472), 1, sym_hex_digit, - STATE(5357), 2, + ACTIONS(9486), 1, + anon_sym_RBRACK, + STATE(5357), 1, sym_comment, + STATE(5359), 1, aux_sym_val_binary_repeat1, - [209729] = 4, - ACTIONS(105), 1, + [210422] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9370), 1, - anon_sym_LF, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9488), 1, + anon_sym_RBRACK, + STATE(5357), 1, + aux_sym_val_binary_repeat1, STATE(5358), 1, sym_comment, - ACTIONS(9368), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [209743] = 5, + [210438] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8943), 1, - anon_sym_DOT2, - ACTIONS(8945), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8947), 1, - aux_sym__immediate_decimal_token3, - STATE(5359), 1, + ACTIONS(9490), 1, + anon_sym_RBRACK, + ACTIONS(9492), 1, + sym_hex_digit, + STATE(5359), 2, sym_comment, - [209759] = 5, + aux_sym_val_binary_repeat1, + [210452] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9372), 1, - anon_sym_RBRACK, - STATE(5348), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9265), 1, + anon_sym_DOT2, + ACTIONS(9267), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9269), 1, + aux_sym__immediate_decimal_token3, STATE(5360), 1, sym_comment, - [209775] = 5, - ACTIONS(105), 1, + [210468] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2782), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(9374), 1, + ACTIONS(9495), 1, + anon_sym_DOT2, + ACTIONS(9497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9376), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9499), 1, + aux_sym__immediate_decimal_token3, STATE(5361), 1, sym_comment, - [209791] = 5, + [210484] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9378), 1, + ACTIONS(9096), 1, anon_sym_DOT2, - ACTIONS(9380), 1, + ACTIONS(9098), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9382), 1, + ACTIONS(9100), 1, aux_sym__immediate_decimal_token3, STATE(5362), 1, sym_comment, - [209807] = 5, + [210500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9384), 1, - anon_sym_RBRACK, - STATE(5357), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9458), 1, + anon_sym_COLON, + ACTIONS(9501), 1, + anon_sym_EQ, STATE(5363), 1, sym_comment, - [209823] = 5, - ACTIONS(3), 1, + STATE(6070), 1, + sym_param_type, + [210516] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8328), 1, - anon_sym_DOT2, - ACTIONS(8334), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9386), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, + anon_sym_LF, + STATE(1657), 1, + sym__terminator, STATE(5364), 1, sym_comment, - [209839] = 5, + [210532] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9388), 1, + ACTIONS(9024), 1, anon_sym_DOT2, - ACTIONS(9390), 1, + ACTIONS(9026), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9392), 1, + ACTIONS(9028), 1, aux_sym__immediate_decimal_token3, STATE(5365), 1, sym_comment, - [209855] = 4, + [210548] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9394), 1, + ACTIONS(9503), 1, anon_sym_DOT2, STATE(5366), 1, sym_comment, - ACTIONS(3099), 2, + ACTIONS(3173), 2, anon_sym_DASH, anon_sym_LBRACE, - [209869] = 4, + [210562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9396), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9446), 1, + anon_sym_DOT2, + ACTIONS(9450), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9505), 1, + aux_sym__immediate_decimal_token1, STATE(5367), 1, sym_comment, - ACTIONS(2876), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [209883] = 5, - ACTIONS(3), 1, + [210578] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8897), 1, + ACTIONS(2832), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(9507), 1, anon_sym_DOT2, - ACTIONS(8899), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9509), 1, + aux_sym__immediate_decimal_token2, STATE(5368), 1, sym_comment, - [209899] = 4, + [210594] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9398), 1, + ACTIONS(9474), 1, anon_sym_DOT2, + ACTIONS(9478), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9511), 1, + aux_sym__immediate_decimal_token1, STATE(5369), 1, sym_comment, - ACTIONS(3105), 2, - anon_sym_DASH, - anon_sym_LBRACE, - [209913] = 5, + [210610] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9279), 1, - anon_sym_DOT2, - ACTIONS(9283), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9400), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9513), 1, + anon_sym_RBRACK, + STATE(5359), 1, + aux_sym_val_binary_repeat1, STATE(5370), 1, sym_comment, - [209929] = 5, + [210626] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, + ACTIONS(9472), 1, sym_hex_digit, - ACTIONS(9402), 1, + ACTIONS(9515), 1, anon_sym_RBRACK, - STATE(5357), 1, + STATE(5359), 1, aux_sym_val_binary_repeat1, STATE(5371), 1, sym_comment, - [209945] = 4, + [210642] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9404), 1, + ACTIONS(9517), 1, anon_sym_DOT2, STATE(5372), 1, sym_comment, - ACTIONS(3111), 2, - anon_sym_DASH, - anon_sym_LBRACE, - [209959] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9406), 1, - anon_sym_DOT2, - STATE(5373), 1, - sym_comment, - ACTIONS(3117), 2, + ACTIONS(3200), 2, anon_sym_DASH, anon_sym_LBRACE, - [209973] = 5, + [210656] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9408), 1, + ACTIONS(9519), 1, anon_sym_DOT2, - ACTIONS(9410), 1, + ACTIONS(9521), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9412), 1, - aux_sym__immediate_decimal_token3, - STATE(5374), 1, - sym_comment, - [209989] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8761), 1, - anon_sym_LF, - STATE(2507), 1, - aux_sym_pipe_element_repeat1, - STATE(5375), 1, + ACTIONS(9523), 1, + aux_sym__immediate_decimal_token3, + STATE(5373), 1, sym_comment, - [210005] = 5, + [210672] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_COLON, - ACTIONS(1244), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9414), 1, + ACTIONS(8972), 1, anon_sym_DOT2, - STATE(5376), 1, + ACTIONS(8974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8976), 1, + aux_sym__immediate_decimal_token3, + STATE(5374), 1, sym_comment, - [210021] = 5, + [210688] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9416), 1, + ACTIONS(9525), 1, anon_sym_DOT2, - ACTIONS(9418), 1, + ACTIONS(9527), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9420), 1, + ACTIONS(9529), 1, aux_sym__immediate_decimal_token3, - STATE(5377), 1, + STATE(5375), 1, sym_comment, - [210037] = 5, + [210704] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9531), 1, + anon_sym_RBRACK, + STATE(5359), 1, + aux_sym_val_binary_repeat1, + STATE(5376), 1, + sym_comment, + [210720] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2806), 1, + ACTIONS(2832), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(9321), 1, + ACTIONS(9509), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9422), 1, + ACTIONS(9533), 1, aux_sym__immediate_decimal_token1, - STATE(5378), 1, + STATE(5377), 1, sym_comment, - [210053] = 4, + [210736] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9424), 1, + ACTIONS(9535), 1, anon_sym_DOT2, - STATE(5379), 1, + ACTIONS(9537), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9539), 1, + aux_sym__immediate_decimal_token3, + STATE(5378), 1, sym_comment, - ACTIONS(3125), 2, - anon_sym_DASH, + [210752] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(8104), 1, anon_sym_LBRACE, - [210067] = 5, + STATE(1390), 1, + sym_block, + STATE(5379), 1, + sym_comment, + [210768] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8871), 1, - anon_sym_DOT2, - ACTIONS(8873), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8875), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9541), 1, + anon_sym_RBRACK, + STATE(5376), 1, + aux_sym_val_binary_repeat1, STATE(5380), 1, sym_comment, - [210083] = 4, + [210784] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9426), 1, + ACTIONS(8906), 1, anon_sym_DOT2, + ACTIONS(8910), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8912), 1, + aux_sym__immediate_decimal_token3, STATE(5381), 1, sym_comment, - ACTIONS(3131), 2, - anon_sym_DASH, - anon_sym_LBRACE, - [210097] = 5, + [210800] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9428), 1, - anon_sym_RBRACK, - STATE(5357), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9543), 1, + anon_sym_DOT2, STATE(5382), 1, sym_comment, - [210113] = 5, + ACTIONS(3208), 2, + anon_sym_DASH, + anon_sym_LBRACE, + [210814] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9430), 1, + ACTIONS(8514), 1, anon_sym_DOT2, - ACTIONS(9432), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9434), 1, + ACTIONS(8520), 1, aux_sym__immediate_decimal_token3, + ACTIONS(9545), 1, + aux_sym__immediate_decimal_token1, STATE(5383), 1, sym_comment, - [210129] = 5, + [210830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9436), 1, + ACTIONS(9547), 1, anon_sym_DOT2, - ACTIONS(9438), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9440), 1, - aux_sym__immediate_decimal_token3, STATE(5384), 1, sym_comment, - [210145] = 5, - ACTIONS(105), 1, + ACTIONS(3214), 2, + anon_sym_DASH, + anon_sym_LBRACE, + [210844] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_PIPE, - ACTIONS(8761), 1, - anon_sym_LF, - STATE(2482), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(9549), 1, + anon_sym_DOT2, + ACTIONS(9551), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9553), 1, + aux_sym__immediate_decimal_token3, STATE(5385), 1, sym_comment, - [210161] = 5, + [210860] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9442), 1, - anon_sym_RBRACK, - STATE(5382), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9519), 1, + anon_sym_DOT2, + ACTIONS(9523), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9555), 1, + aux_sym__immediate_decimal_token1, STATE(5386), 1, sym_comment, - [210177] = 5, + [210876] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9444), 1, + ACTIONS(8838), 1, anon_sym_SEMI, - ACTIONS(9446), 1, - anon_sym_LF, - ACTIONS(9448), 1, - anon_sym_RPAREN, STATE(5387), 1, sym_comment, - [210193] = 4, + ACTIONS(8840), 2, + ts_builtin_sym_end, + anon_sym_LF, + [210890] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9114), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(9557), 1, + anon_sym_LBRACE, + STATE(4454), 1, + sym_block, STATE(5388), 1, sym_comment, - ACTIONS(2808), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [210207] = 3, + [210906] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9559), 1, + anon_sym_RBRACK, + STATE(5359), 1, + aux_sym_val_binary_repeat1, STATE(5389), 1, sym_comment, - ACTIONS(1365), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [210219] = 4, + [210922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(9561), 1, anon_sym_DOT2, + ACTIONS(9563), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9565), 1, + aux_sym__immediate_decimal_token3, STATE(5390), 1, sym_comment, - ACTIONS(6630), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [210233] = 4, - ACTIONS(105), 1, + [210938] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9450), 1, - anon_sym_LF, + ACTIONS(9567), 1, + anon_sym_DOT2, + ACTIONS(9569), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9571), 1, + aux_sym__immediate_decimal_token3, STATE(5391), 1, sym_comment, - ACTIONS(3826), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [210247] = 4, + [210954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DOT2, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9573), 1, + anon_sym_RBRACK, + STATE(5389), 1, + aux_sym_val_binary_repeat1, STATE(5392), 1, sym_comment, - ACTIONS(1365), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [210261] = 4, + [210970] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9452), 1, - anon_sym_LPAREN, + ACTIONS(9152), 1, + anon_sym_SEMI, STATE(5393), 1, sym_comment, - ACTIONS(9454), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [210275] = 3, + ACTIONS(9154), 2, + ts_builtin_sym_end, + anon_sym_LF, + [210984] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8956), 1, + anon_sym_DOT2, + ACTIONS(8960), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8962), 1, + aux_sym__immediate_decimal_token3, STATE(5394), 1, sym_comment, - ACTIONS(6630), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [210287] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9456), 1, - anon_sym_LPAREN, - STATE(5395), 1, - sym_comment, - ACTIONS(9458), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [210301] = 5, + [211000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, + ACTIONS(8870), 1, anon_sym_DOT2, - ACTIONS(8723), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8725), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token3, + STATE(5395), 1, + sym_comment, + [211016] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9575), 1, + anon_sym_COMMA, STATE(5396), 1, sym_comment, - [210317] = 4, + ACTIONS(9577), 2, + anon_sym_RBRACK, + sym_hex_digit, + [211030] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9460), 1, - anon_sym_DQUOTE, + ACTIONS(9581), 1, + anon_sym_LF, STATE(5397), 1, sym_comment, - ACTIONS(9462), 2, - sym__escaped_str_content, - sym_escape_sequence, - [210331] = 5, - ACTIONS(3), 1, + ACTIONS(9579), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [211044] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9464), 1, - anon_sym_RBRACK, + ACTIONS(9583), 1, + anon_sym_SEMI, + ACTIONS(9585), 1, + anon_sym_LF, + ACTIONS(9587), 1, + anon_sym_RPAREN, STATE(5398), 1, sym_comment, - STATE(5405), 1, - aux_sym_val_binary_repeat1, - [210347] = 3, - ACTIONS(3), 1, + [211060] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9589), 1, + anon_sym_LF, STATE(5399), 1, sym_comment, - ACTIONS(6706), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [210359] = 5, - ACTIONS(3), 1, + ACTIONS(3929), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [211074] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8737), 1, - anon_sym_DOT2, - ACTIONS(8741), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8743), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9591), 1, + anon_sym_LF, STATE(5400), 1, sym_comment, - [210375] = 4, + ACTIONS(3919), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [211088] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9466), 1, + ACTIONS(9595), 1, anon_sym_LF, STATE(5401), 1, sym_comment, - ACTIONS(3816), 2, + ACTIONS(9593), 2, anon_sym_SEMI, anon_sym_RPAREN, - [210389] = 5, + [211102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9331), 1, - anon_sym_DOT2, - ACTIONS(9335), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9468), 1, - aux_sym__immediate_decimal_token1, STATE(5402), 1, sym_comment, - [210405] = 4, - ACTIONS(105), 1, + ACTIONS(3234), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + [211114] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3471), 1, - anon_sym_SEMI, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9597), 1, + anon_sym_RBRACK, + STATE(5359), 1, + aux_sym_val_binary_repeat1, STATE(5403), 1, sym_comment, - ACTIONS(3802), 2, - ts_builtin_sym_end, - anon_sym_LF, - [210419] = 4, + [211130] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9470), 1, - anon_sym_COMMA, + ACTIONS(9519), 1, + anon_sym_DOT2, + ACTIONS(9523), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9599), 1, + aux_sym__immediate_decimal_token1, STATE(5404), 1, sym_comment, - ACTIONS(9472), 2, - anon_sym_RBRACK, - sym_hex_digit, - [210433] = 5, - ACTIONS(3), 1, + [211146] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9474), 1, - anon_sym_RBRACK, - STATE(5357), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9603), 1, + anon_sym_LF, STATE(5405), 1, sym_comment, - [210449] = 5, + ACTIONS(9601), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [211160] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9131), 1, + ACTIONS(9253), 1, anon_sym_DOT2, - ACTIONS(9133), 1, + ACTIONS(9257), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9135), 1, + ACTIONS(9259), 1, aux_sym__immediate_decimal_token3, STATE(5406), 1, sym_comment, - [210465] = 5, + [211176] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(148), 1, - aux_sym_unquoted_token6, - ACTIONS(150), 1, - anon_sym_DOT2, - ACTIONS(9476), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9458), 1, + anon_sym_COLON, + ACTIONS(9605), 1, + anon_sym_EQ, STATE(5407), 1, sym_comment, - [210481] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3461), 1, - anon_sym_SEMI, - STATE(5408), 1, - sym_comment, - ACTIONS(3800), 2, - ts_builtin_sym_end, - anon_sym_LF, - [210495] = 5, + STATE(6043), 1, + sym_param_type, + [211192] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, + ACTIONS(9472), 1, sym_hex_digit, - ACTIONS(9478), 1, + ACTIONS(9607), 1, anon_sym_RBRACK, - STATE(5363), 1, + STATE(5359), 1, aux_sym_val_binary_repeat1, - STATE(5409), 1, + STATE(5408), 1, sym_comment, - [210511] = 5, + [211208] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7949), 1, + ACTIONS(117), 1, + anon_sym_COLON, + ACTIONS(9428), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9609), 1, anon_sym_DOT2, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8913), 1, - aux_sym__immediate_decimal_token1, + STATE(5409), 1, + sym_comment, + [211224] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9611), 1, + anon_sym_RBRACK, + STATE(5403), 1, + aux_sym_val_binary_repeat1, STATE(5410), 1, sym_comment, - [210527] = 5, + [211240] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9104), 1, + ACTIONS(9613), 1, anon_sym_DOT2, - ACTIONS(9106), 1, + ACTIONS(9615), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9108), 1, + ACTIONS(9617), 1, aux_sym__immediate_decimal_token3, STATE(5411), 1, sym_comment, - [210543] = 4, - ACTIONS(105), 1, + [211256] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9482), 1, - anon_sym_LF, + ACTIONS(8120), 1, + anon_sym_DOT2, + ACTIONS(8128), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8882), 1, + aux_sym__immediate_decimal_token1, STATE(5412), 1, sym_comment, - ACTIONS(9480), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [210557] = 5, + [211272] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8789), 1, + ACTIONS(8864), 1, anon_sym_DOT2, - ACTIONS(8793), 1, + ACTIONS(8866), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8795), 1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, STATE(5413), 1, sym_comment, - [210573] = 5, + [211288] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9408), 1, - anon_sym_DOT2, - ACTIONS(9412), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9484), 1, - aux_sym__immediate_decimal_token1, STATE(5414), 1, sym_comment, - [210589] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9486), 1, + ACTIONS(6297), 3, anon_sym_PIPE, - ACTIONS(9489), 1, + anon_sym_if, anon_sym_EQ_GT, - STATE(5415), 2, + [211300] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9619), 1, + anon_sym_RBRACK, + STATE(5408), 1, + aux_sym_val_binary_repeat1, + STATE(5415), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [210603] = 4, + [211316] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9621), 1, + anon_sym_DOT2, + ACTIONS(9623), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9625), 1, + aux_sym__immediate_decimal_token3, + STATE(5416), 1, + sym_comment, + [211332] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8701), 1, + ACTIONS(8942), 1, anon_sym_SEMI, - STATE(5416), 1, + STATE(5417), 1, sym_comment, - ACTIONS(8703), 2, + ACTIONS(8944), 2, ts_builtin_sym_end, anon_sym_LF, - [210617] = 5, + [211346] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9491), 1, - anon_sym_RBRACK, - STATE(5417), 1, + ACTIONS(132), 1, + anon_sym_COLON, + ACTIONS(9627), 1, + anon_sym_DOT2, + ACTIONS(9629), 1, + aux_sym__immediate_decimal_token2, + STATE(5418), 1, sym_comment, - STATE(5433), 1, - aux_sym_val_binary_repeat1, - [210633] = 5, + [211362] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, + ACTIONS(9472), 1, sym_hex_digit, - ACTIONS(9493), 1, + ACTIONS(9631), 1, anon_sym_RBRACK, - STATE(5418), 1, + STATE(5419), 1, sym_comment, - STATE(5463), 1, + STATE(5435), 1, aux_sym_val_binary_repeat1, - [210649] = 5, + [211378] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, + ACTIONS(147), 1, + aux_sym_unquoted_token6, + ACTIONS(149), 1, + anon_sym_DOT2, + ACTIONS(9633), 1, + aux_sym__immediate_decimal_token2, + STATE(5420), 1, + sym_comment, + [211394] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9472), 1, sym_hex_digit, - ACTIONS(9495), 1, + ACTIONS(9635), 1, anon_sym_RBRACK, - STATE(5357), 1, + STATE(5359), 1, aux_sym_val_binary_repeat1, - STATE(5419), 1, + STATE(5421), 1, sym_comment, - [210665] = 5, + [211410] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9331), 1, + ACTIONS(9474), 1, anon_sym_DOT2, - ACTIONS(9335), 1, + ACTIONS(9478), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9497), 1, + ACTIONS(9637), 1, aux_sym__immediate_decimal_token1, - STATE(5420), 1, - sym_comment, - [210681] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2904), 1, - aux_sym_unquoted_token3, - ACTIONS(9499), 1, - anon_sym_DOT2, - ACTIONS(9501), 1, - aux_sym__immediate_decimal_token2, - STATE(5421), 1, - sym_comment, - [210697] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3655), 1, - anon_sym_SEMI, STATE(5422), 1, sym_comment, - ACTIONS(3657), 2, - ts_builtin_sym_end, - anon_sym_LF, - [210711] = 5, + [211426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9503), 1, + ACTIONS(9639), 1, anon_sym_DOT2, - ACTIONS(9505), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9507), 1, - aux_sym__immediate_decimal_token3, STATE(5423), 1, sym_comment, - [210727] = 5, + ACTIONS(3214), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9295), 1, + ACTIONS(9641), 1, anon_sym_DOT2, - ACTIONS(9299), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9509), 1, - aux_sym__immediate_decimal_token1, STATE(5424), 1, sym_comment, - [210743] = 3, + ACTIONS(3208), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211454] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9643), 1, + anon_sym_DOT2, STATE(5425), 1, sym_comment, - ACTIONS(6722), 3, + ACTIONS(3200), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [210755] = 5, + [211468] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9511), 1, - anon_sym_RBRACK, - STATE(5419), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9645), 1, + anon_sym_DOT2, STATE(5426), 1, sym_comment, - [210771] = 5, + ACTIONS(3173), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211482] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(115), 1, - aux_sym_unquoted_token6, - ACTIONS(117), 1, - anon_sym_DOT2, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9647), 1, + anon_sym_RBRACK, + STATE(5421), 1, + aux_sym_val_binary_repeat1, STATE(5427), 1, sym_comment, - [210787] = 5, + [211498] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8769), 1, + ACTIONS(9006), 1, anon_sym_DOT2, - ACTIONS(8773), 1, + ACTIONS(9010), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8775), 1, + ACTIONS(9012), 1, aux_sym__immediate_decimal_token3, STATE(5428), 1, sym_comment, - [210803] = 4, - ACTIONS(105), 1, + [211514] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8998), 1, - anon_sym_SEMI, + ACTIONS(9649), 1, + anon_sym_DOT2, STATE(5429), 1, sym_comment, - ACTIONS(9000), 2, - ts_builtin_sym_end, - anon_sym_LF, - [210817] = 3, + ACTIONS(3165), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211528] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9651), 1, + anon_sym_DOT2, STATE(5430), 1, sym_comment, - ACTIONS(6718), 3, + ACTIONS(3240), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [210829] = 5, + [211542] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(107), 1, - aux_sym_unquoted_token6, - ACTIONS(109), 1, + ACTIONS(8222), 1, anon_sym_DOT2, - ACTIONS(8895), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(8230), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9299), 1, + aux_sym__immediate_decimal_token1, STATE(5431), 1, sym_comment, - [210845] = 5, + [211558] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9513), 1, + ACTIONS(9653), 1, anon_sym_DOT2, - ACTIONS(9515), 1, + ACTIONS(9655), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9517), 1, + ACTIONS(9657), 1, aux_sym__immediate_decimal_token3, STATE(5432), 1, sym_comment, - [210861] = 5, + [211574] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9519), 1, - anon_sym_RBRACK, - STATE(5357), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9120), 1, + anon_sym_DOT2, + ACTIONS(9122), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9124), 1, + aux_sym__immediate_decimal_token3, STATE(5433), 1, sym_comment, - [210877] = 5, + [211590] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(107), 1, - aux_sym_unquoted_token6, - ACTIONS(8895), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9521), 1, + ACTIONS(9659), 1, anon_sym_DOT2, + ACTIONS(9661), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9663), 1, + aux_sym__immediate_decimal_token3, STATE(5434), 1, sym_comment, - [210893] = 5, + [211606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9513), 1, - anon_sym_DOT2, - ACTIONS(9517), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9524), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9665), 1, + anon_sym_RBRACK, + STATE(5359), 1, + aux_sym_val_binary_repeat1, STATE(5435), 1, sym_comment, - [210909] = 5, - ACTIONS(3), 1, + [211622] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7993), 1, - anon_sym_DOT2, - ACTIONS(8001), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8649), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8934), 1, + anon_sym_LF, + STATE(2532), 1, + aux_sym_pipe_element_repeat1, STATE(5436), 1, sym_comment, - [210925] = 4, + [211638] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9528), 1, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8934), 1, anon_sym_LF, + STATE(2534), 1, + aux_sym_pipe_element_repeat1, STATE(5437), 1, sym_comment, - ACTIONS(9526), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [210939] = 4, + [211654] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9532), 1, - anon_sym_LF, + ACTIONS(3347), 1, + anon_sym_SEMI, STATE(5438), 1, sym_comment, - ACTIONS(9530), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [210953] = 5, - ACTIONS(3), 1, + ACTIONS(3349), 2, + ts_builtin_sym_end, + anon_sym_LF, + [211668] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7993), 1, - anon_sym_DOT2, - ACTIONS(8001), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8713), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(3357), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, + anon_sym_LF, + STATE(1674), 1, + sym__terminator, STATE(5439), 1, sym_comment, - [210969] = 5, + [211684] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(127), 1, - aux_sym_unquoted_token6, - ACTIONS(9534), 1, + ACTIONS(9048), 1, anon_sym_DOT2, - ACTIONS(9537), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9050), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9052), 1, + aux_sym__immediate_decimal_token3, STATE(5440), 1, sym_comment, - [210985] = 5, - ACTIONS(3), 1, + [211700] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9347), 1, - anon_sym_DOT2, - ACTIONS(9351), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9539), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8946), 1, + anon_sym_SEMI, STATE(5441), 1, sym_comment, - [211001] = 5, - ACTIONS(3), 1, + ACTIONS(8948), 2, + ts_builtin_sym_end, + anon_sym_LF, + [211714] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8450), 1, - anon_sym_DOT2, - ACTIONS(8456), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9541), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8950), 1, + anon_sym_SEMI, STATE(5442), 1, sym_comment, - [211017] = 5, - ACTIONS(3), 1, + ACTIONS(8952), 2, + ts_builtin_sym_end, + anon_sym_LF, + [211728] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9287), 1, - anon_sym_COLON, - ACTIONS(9543), 1, - anon_sym_EQ, + ACTIONS(8926), 1, + anon_sym_SEMI, STATE(5443), 1, sym_comment, - STATE(6035), 1, - sym_param_type, - [211033] = 5, + ACTIONS(8928), 2, + ts_builtin_sym_end, + anon_sym_LF, + [211742] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2806), 1, - aux_sym_unquoted_token3, - ACTIONS(9545), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9547), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(8922), 1, + anon_sym_SEMI, STATE(5444), 1, sym_comment, - [211049] = 5, - ACTIONS(105), 1, + ACTIONS(8924), 2, + ts_builtin_sym_end, + anon_sym_LF, + [211756] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2806), 1, - aux_sym_unquoted_token3, - ACTIONS(9547), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9549), 1, + ACTIONS(9667), 1, anon_sym_DOT2, + ACTIONS(9669), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9671), 1, + aux_sym__immediate_decimal_token3, STATE(5445), 1, sym_comment, - [211065] = 5, + [211772] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9197), 1, - anon_sym_DOT2, - ACTIONS(9199), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9201), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9458), 1, + anon_sym_COLON, + ACTIONS(9673), 1, + anon_sym_EQ, STATE(5446), 1, sym_comment, - [211081] = 5, - ACTIONS(3), 1, + STATE(5781), 1, + sym_param_type, + [211788] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9551), 1, - anon_sym_RBRACK, + ACTIONS(8914), 1, + anon_sym_SEMI, STATE(5447), 1, sym_comment, - STATE(5455), 1, - aux_sym_val_binary_repeat1, - [211097] = 5, + ACTIONS(8916), 2, + ts_builtin_sym_end, + anon_sym_LF, + [211802] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2782), 1, + ACTIONS(2934), 1, aux_sym_unquoted_token3, - ACTIONS(9553), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9555), 1, + ACTIONS(9675), 1, + anon_sym_DOT2, + ACTIONS(9677), 1, aux_sym__immediate_decimal_token2, STATE(5448), 1, sym_comment, - [211113] = 3, + [211818] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9679), 1, + anon_sym_RBRACK, + STATE(5359), 1, + aux_sym_val_binary_repeat1, STATE(5449), 1, sym_comment, - ACTIONS(6690), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211125] = 5, + [211834] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(9557), 1, - anon_sym_LBRACE, - STATE(4433), 1, - sym_block, + ACTIONS(9659), 1, + anon_sym_DOT2, + ACTIONS(9663), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9681), 1, + aux_sym__immediate_decimal_token1, STATE(5450), 1, sym_comment, - [211141] = 5, + [211850] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, + ACTIONS(9472), 1, sym_hex_digit, - ACTIONS(9559), 1, + ACTIONS(9683), 1, anon_sym_RBRACK, + STATE(5449), 1, + aux_sym_val_binary_repeat1, STATE(5451), 1, sym_comment, - STATE(5462), 1, - aux_sym_val_binary_repeat1, - [211157] = 5, + [211866] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8037), 1, - anon_sym_DOT2, - ACTIONS(8045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8923), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(7433), 1, + anon_sym_EQ, + ACTIONS(9685), 1, + anon_sym_AT, + STATE(4044), 1, + sym_param_cmd, STATE(5452), 1, sym_comment, - [211173] = 5, + [211882] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9279), 1, - anon_sym_DOT2, - ACTIONS(9283), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9561), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8659), 1, + anon_sym_PIPE, + ACTIONS(9687), 1, + anon_sym_EQ_GT, STATE(5453), 1, sym_comment, - [211189] = 5, + STATE(5478), 1, + aux_sym_match_pattern_repeat1, + [211898] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8655), 1, + ACTIONS(8784), 1, anon_sym_DOT2, - ACTIONS(8659), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8661), 1, + ACTIONS(8790), 1, aux_sym__immediate_decimal_token3, + ACTIONS(9689), 1, + aux_sym__immediate_decimal_token1, STATE(5454), 1, sym_comment, - [211205] = 5, + [211914] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9563), 1, - anon_sym_RBRACK, - STATE(5357), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9062), 1, + anon_sym_DOT2, + ACTIONS(9064), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9066), 1, + aux_sym__immediate_decimal_token3, STATE(5455), 1, sym_comment, - [211221] = 4, + [211930] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9565), 1, + ACTIONS(9691), 1, anon_sym_DOT2, + ACTIONS(9693), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9695), 1, + aux_sym__immediate_decimal_token3, STATE(5456), 1, sym_comment, - ACTIONS(3117), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [211235] = 4, + [211946] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9147), 1, + ACTIONS(107), 1, + aux_sym_unquoted_token6, + ACTIONS(109), 1, + anon_sym_DOT2, + ACTIONS(9293), 1, aux_sym__immediate_decimal_token2, STATE(5457), 1, sym_comment, - ACTIONS(2784), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [211249] = 5, + [211962] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9567), 1, - anon_sym_DOT2, - ACTIONS(9569), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9571), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9458), 1, + anon_sym_COLON, + ACTIONS(9697), 1, + anon_sym_EQ, STATE(5458), 1, sym_comment, - [211265] = 4, + STATE(6150), 1, + sym_param_type, + [211978] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9573), 1, + ACTIONS(6358), 1, anon_sym_DOT2, STATE(5459), 1, sym_comment, - ACTIONS(3105), 2, + ACTIONS(1371), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [211279] = 4, + [211992] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9575), 1, + ACTIONS(6358), 1, anon_sym_DOT2, STATE(5460), 1, sym_comment, - ACTIONS(3099), 2, + ACTIONS(6815), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [211293] = 5, + [212006] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9577), 1, - anon_sym_DOT2, - ACTIONS(9579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9581), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9699), 1, + anon_sym_RBRACK, STATE(5461), 1, sym_comment, - [211309] = 5, + STATE(5482), 1, + aux_sym_val_binary_repeat1, + [212022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9583), 1, - anon_sym_RBRACK, - STATE(5357), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9701), 1, + anon_sym_DOT2, + ACTIONS(9703), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9705), 1, + aux_sym__immediate_decimal_token3, STATE(5462), 1, sym_comment, - [211325] = 5, + [212038] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - sym_hex_digit, - ACTIONS(9585), 1, - anon_sym_RBRACK, - STATE(5357), 1, - aux_sym_val_binary_repeat1, + ACTIONS(9283), 1, + anon_sym_DOT2, + ACTIONS(9285), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9287), 1, + aux_sym__immediate_decimal_token3, STATE(5463), 1, sym_comment, - [211341] = 5, + [212054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - anon_sym_DOT2, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token3, STATE(5464), 1, sym_comment, - [211357] = 4, + ACTIONS(6893), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212066] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1364), 1, - sym_block, STATE(5465), 1, sym_comment, - [211370] = 4, + ACTIONS(6853), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212078] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8065), 1, - anon_sym_LBRACE, - STATE(1347), 1, - sym_val_record, STATE(5466), 1, sym_comment, - [211383] = 4, - ACTIONS(3), 1, + ACTIONS(6853), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212090] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1378), 1, - sym_block, + ACTIONS(5959), 1, + aux_sym_unquoted_token3, STATE(5467), 1, sym_comment, - [211396] = 4, + ACTIONS(1375), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [212104] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9587), 1, - anon_sym_DOT2, - ACTIONS(9589), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9707), 1, + anon_sym_RBRACK, + STATE(5359), 1, + aux_sym_val_binary_repeat1, STATE(5468), 1, sym_comment, - [211409] = 4, + [212120] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1509), 1, - sym_block, + ACTIONS(9709), 1, + anon_sym_DOT2, + ACTIONS(9711), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9713), 1, + aux_sym__immediate_decimal_token3, STATE(5469), 1, sym_comment, - [211422] = 4, + [212136] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9591), 1, + ACTIONS(9342), 1, anon_sym_DOT2, - ACTIONS(9593), 1, + ACTIONS(9344), 1, aux_sym__immediate_decimal_token1, + ACTIONS(9346), 1, + aux_sym__immediate_decimal_token3, STATE(5470), 1, sym_comment, - [211435] = 4, + [212152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1457), 1, - sym_block, STATE(5471), 1, sym_comment, - [211448] = 4, + ACTIONS(1371), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212164] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9557), 1, - anon_sym_LBRACE, - STATE(4412), 1, - sym_block, + ACTIONS(115), 1, + aux_sym_unquoted_token6, + ACTIONS(9237), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9715), 1, + anon_sym_DOT2, STATE(5472), 1, sym_comment, - [211461] = 4, + [212180] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9595), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9597), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9720), 1, + anon_sym_LF, STATE(5473), 1, sym_comment, - [211474] = 4, - ACTIONS(3), 1, + ACTIONS(9718), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [212194] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1508), 1, - sym_block, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8934), 1, + anon_sym_LF, + STATE(2547), 1, + aux_sym_pipe_element_repeat1, STATE(5474), 1, sym_comment, - [211487] = 4, - ACTIONS(3), 1, + [212210] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1497), 1, - sym_block, + ACTIONS(9722), 1, + anon_sym_LPAREN, STATE(5475), 1, sym_comment, - [211500] = 4, - ACTIONS(3), 1, + ACTIONS(9724), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [212224] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1554), 1, - sym_block, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8934), 1, + anon_sym_LF, + STATE(2551), 1, + aux_sym_pipe_element_repeat1, STATE(5476), 1, sym_comment, - [211513] = 4, - ACTIONS(3), 1, + [212240] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1254), 1, - sym_block, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(8934), 1, + anon_sym_LF, + STATE(2552), 1, + aux_sym_pipe_element_repeat1, STATE(5477), 1, sym_comment, - [211526] = 4, - ACTIONS(105), 1, + [212256] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(9599), 1, - aux_sym__immediate_decimal_token2, - STATE(5478), 1, + ACTIONS(9726), 1, + anon_sym_PIPE, + ACTIONS(9729), 1, + anon_sym_EQ_GT, + STATE(5478), 2, sym_comment, - [211539] = 4, + aux_sym_match_pattern_repeat1, + [212270] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9557), 1, - anon_sym_LBRACE, - STATE(4433), 1, - sym_block, + ACTIONS(115), 1, + aux_sym_unquoted_token6, + ACTIONS(117), 1, + anon_sym_DOT2, + ACTIONS(9237), 1, + aux_sym__immediate_decimal_token2, STATE(5479), 1, sym_comment, - [211552] = 4, - ACTIONS(105), 1, + [212286] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - aux_sym_unquoted_token3, - ACTIONS(9601), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9659), 1, + anon_sym_DOT2, + ACTIONS(9663), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9731), 1, + aux_sym__immediate_decimal_token1, STATE(5480), 1, sym_comment, - [211565] = 4, + [212302] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1255), 1, - sym_block, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9733), 1, + anon_sym_RBRACK, STATE(5481), 1, sym_comment, - [211578] = 4, + STATE(5497), 1, + aux_sym_val_binary_repeat1, + [212318] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_DOT2, - ACTIONS(9605), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9735), 1, + anon_sym_RBRACK, + STATE(5359), 1, + aux_sym_val_binary_repeat1, STATE(5482), 1, sym_comment, - [211591] = 4, + [212334] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9607), 1, + ACTIONS(2936), 1, anon_sym_LBRACE, - STATE(4498), 1, - sym_block, + ACTIONS(6311), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9737), 1, + anon_sym_DOT2, STATE(5483), 1, sym_comment, - [211604] = 4, + [212350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9609), 1, - anon_sym_DASH2, - ACTIONS(9611), 1, - aux_sym_short_flag_token1, STATE(5484), 1, sym_comment, - [211617] = 4, + ACTIONS(6901), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212362] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9613), 1, + ACTIONS(9156), 1, anon_sym_DOT2, - ACTIONS(9615), 1, - aux_sym_unquoted_token6, + ACTIONS(9158), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9160), 1, + aux_sym__immediate_decimal_token3, STATE(5485), 1, sym_comment, - [211630] = 4, + [212378] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9557), 1, - anon_sym_LBRACE, - STATE(4630), 1, - sym_block, STATE(5486), 1, sym_comment, - [211643] = 4, + ACTIONS(6869), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212390] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(107), 1, - aux_sym_unquoted_token6, - ACTIONS(109), 1, + ACTIONS(9653), 1, anon_sym_DOT2, + ACTIONS(9657), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9741), 1, + aux_sym__immediate_decimal_token1, STATE(5487), 1, sym_comment, - [211656] = 4, + [212406] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8051), 1, - anon_sym_DASH2, - ACTIONS(9617), 1, - aux_sym_short_flag_token1, STATE(5488), 1, sym_comment, - [211669] = 4, + ACTIONS(9743), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212418] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1330), 1, - sym_block, STATE(5489), 1, sym_comment, - [211682] = 4, + ACTIONS(6861), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212430] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_block, + ACTIONS(9745), 1, + anon_sym_DOT2, + ACTIONS(9747), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9749), 1, + aux_sym__immediate_decimal_token3, STATE(5490), 1, sym_comment, - [211695] = 4, + [212446] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_block, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9751), 1, + anon_sym_RBRACK, + STATE(5468), 1, + aux_sym_val_binary_repeat1, STATE(5491), 1, sym_comment, - [211708] = 4, - ACTIONS(3), 1, + [212462] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9619), 1, - anon_sym_COMMA, - ACTIONS(9621), 1, - anon_sym_RBRACE, + ACTIONS(3555), 1, + anon_sym_SEMI, STATE(5492), 1, sym_comment, - [211721] = 4, - ACTIONS(3), 1, + ACTIONS(3895), 2, + ts_builtin_sym_end, + anon_sym_LF, + [212476] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(115), 1, - aux_sym_unquoted_token6, - ACTIONS(117), 1, - anon_sym_DOT2, + ACTIONS(3545), 1, + anon_sym_SEMI, STATE(5493), 1, sym_comment, - [211734] = 3, - ACTIONS(3), 1, + ACTIONS(3893), 2, + ts_builtin_sym_end, + anon_sym_LF, + [212490] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8898), 1, + anon_sym_SEMI, STATE(5494), 1, sym_comment, - ACTIONS(9489), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [211745] = 4, - ACTIONS(105), 1, + ACTIONS(8900), 2, + ts_builtin_sym_end, + anon_sym_LF, + [212504] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2782), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(9376), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9326), 1, + anon_sym_DOT2, + ACTIONS(9330), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9332), 1, + aux_sym__immediate_decimal_token3, STATE(5495), 1, sym_comment, - [211758] = 4, + [212520] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9623), 1, - anon_sym_DASH2, - ACTIONS(9625), 1, - aux_sym_short_flag_token1, + ACTIONS(9745), 1, + anon_sym_DOT2, + ACTIONS(9749), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9753), 1, + aux_sym__immediate_decimal_token1, STATE(5496), 1, sym_comment, - [211771] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1349), 1, - sym_block, + [212536] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9755), 1, + anon_sym_RBRACK, + STATE(5359), 1, + aux_sym_val_binary_repeat1, STATE(5497), 1, sym_comment, - [211784] = 4, + [212552] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9627), 1, + ACTIONS(9211), 1, anon_sym_DOT2, - ACTIONS(9629), 1, + ACTIONS(9213), 1, aux_sym__immediate_decimal_token1, + ACTIONS(9215), 1, + aux_sym__immediate_decimal_token3, STATE(5498), 1, sym_comment, - [211797] = 4, + [212568] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1442), 1, - sym_block, + ACTIONS(8134), 1, + anon_sym_DOT2, + ACTIONS(8142), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9183), 1, + aux_sym__immediate_decimal_token1, STATE(5499), 1, sym_comment, - [211810] = 4, + [212584] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1444), 1, - sym_block, STATE(5500), 1, sym_comment, - [211823] = 4, - ACTIONS(3), 1, + ACTIONS(6865), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212596] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9631), 1, - anon_sym_DASH2, - ACTIONS(9633), 1, - aux_sym_short_flag_token1, + ACTIONS(9759), 1, + anon_sym_LF, STATE(5501), 1, sym_comment, - [211836] = 4, + ACTIONS(9757), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [212610] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9593), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9635), 1, + ACTIONS(9567), 1, anon_sym_DOT2, + ACTIONS(9571), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9761), 1, + aux_sym__immediate_decimal_token1, STATE(5502), 1, sym_comment, - [211849] = 4, - ACTIONS(3), 1, + [212626] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9629), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9637), 1, + ACTIONS(2934), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(9763), 1, anon_sym_DOT2, + ACTIONS(9765), 1, + aux_sym__immediate_decimal_token2, STATE(5503), 1, sym_comment, - [211862] = 4, + [212642] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(1454), 1, + STATE(1404), 1, sym_block, STATE(5504), 1, sym_comment, - [211875] = 4, + [212658] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1453), 1, - sym_block, + ACTIONS(9243), 1, + aux_sym__immediate_decimal_token2, STATE(5505), 1, sym_comment, - [211888] = 4, + ACTIONS(2834), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [212672] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1450), 1, - sym_block, + ACTIONS(130), 1, + aux_sym_unquoted_token6, + ACTIONS(9767), 1, + anon_sym_DOT2, + ACTIONS(9770), 1, + aux_sym__immediate_decimal_token2, STATE(5506), 1, sym_comment, - [211901] = 4, + [212688] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1393), 1, - sym_block, STATE(5507), 1, sym_comment, - [211914] = 4, + ACTIONS(6873), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212700] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1382), 1, - sym_block, + ACTIONS(9406), 1, + anon_sym_DOT2, + ACTIONS(9408), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9410), 1, + aux_sym__immediate_decimal_token3, STATE(5508), 1, sym_comment, - [211927] = 4, + [212716] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1376), 1, - sym_block, + ACTIONS(9388), 1, + anon_sym_DOT2, + ACTIONS(9390), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9392), 1, + aux_sym__immediate_decimal_token3, STATE(5509), 1, sym_comment, - [211940] = 4, + [212732] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(148), 1, - aux_sym_unquoted_token6, - ACTIONS(150), 1, - anon_sym_DOT2, + ACTIONS(9247), 1, + aux_sym__immediate_decimal_token2, STATE(5510), 1, sym_comment, - [211953] = 4, + ACTIONS(2908), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [212746] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9639), 1, - anon_sym_DOT2, - ACTIONS(9641), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9772), 1, + aux_sym__immediate_decimal_token2, STATE(5511), 1, sym_comment, - [211966] = 4, + ACTIONS(2986), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [212760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1594), 1, - sym_block, STATE(5512), 1, sym_comment, - [211979] = 4, + ACTIONS(6815), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212772] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1311), 1, - sym_block, STATE(5513), 1, sym_comment, - [211992] = 4, - ACTIONS(3), 1, + ACTIONS(9774), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212784] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1603), 1, - sym_block, + ACTIONS(9776), 1, + anon_sym_LPAREN, STATE(5514), 1, sym_comment, - [212005] = 4, - ACTIONS(3), 1, + ACTIONS(9778), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [212798] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9637), 1, - anon_sym_DOT2, - ACTIONS(9643), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9782), 1, + anon_sym_LF, STATE(5515), 1, sym_comment, - [212018] = 3, - ACTIONS(3), 1, + ACTIONS(9780), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [212812] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(9784), 1, + anon_sym_DQUOTE, STATE(5516), 1, sym_comment, - ACTIONS(3173), 2, - sym_identifier, - anon_sym_DASH, - [212029] = 4, + ACTIONS(9786), 2, + sym__escaped_str_content, + sym_escape_sequence, + [212826] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(165), 1, - aux_sym_unquoted_token6, - ACTIONS(167), 1, - anon_sym_DOT2, + ACTIONS(9472), 1, + sym_hex_digit, + ACTIONS(9788), 1, + anon_sym_RBRACK, + STATE(5371), 1, + aux_sym_val_binary_repeat1, STATE(5517), 1, sym_comment, - [212042] = 4, - ACTIONS(3), 1, + [212842] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9643), 1, + ACTIONS(2906), 1, + aux_sym_unquoted_token3, + ACTIONS(9790), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9645), 1, - anon_sym_DOT2, + ACTIONS(9792), 1, + aux_sym__immediate_decimal_token2, STATE(5518), 1, sym_comment, - [212055] = 4, - ACTIONS(3), 1, + [212858] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1478), 1, - sym_block, + ACTIONS(2832), 1, + aux_sym_unquoted_token3, + ACTIONS(9794), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9796), 1, + aux_sym__immediate_decimal_token2, STATE(5519), 1, sym_comment, - [212068] = 3, - ACTIONS(3), 1, + [212874] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2832), 1, + aux_sym_unquoted_token3, + ACTIONS(9796), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9798), 1, + anon_sym_DOT2, STATE(5520), 1, sym_comment, - ACTIONS(3403), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [212079] = 4, + [212890] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_LBRACE, - STATE(1329), 1, - sym_block, + ACTIONS(9800), 1, + anon_sym_DOT2, + ACTIONS(9802), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9804), 1, + aux_sym__immediate_decimal_token3, STATE(5521), 1, sym_comment, - [212092] = 4, + [212906] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9647), 1, - anon_sym_DASH2, - ACTIONS(9649), 1, - aux_sym_short_flag_token1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1307), 1, + sym_block, STATE(5522), 1, sym_comment, - [212105] = 4, + [212919] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1493), 1, - sym_block, + ACTIONS(3153), 1, + anon_sym_in, + ACTIONS(9806), 1, + sym__long_flag_identifier, STATE(5523), 1, sym_comment, - [212118] = 4, + [212932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(1616), 1, + STATE(1310), 1, sym_block, STATE(5524), 1, sym_comment, - [212131] = 4, - ACTIONS(3), 1, + [212945] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9651), 1, - anon_sym_DASH, + ACTIONS(2984), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(9808), 1, + aux_sym__immediate_decimal_token2, STATE(5525), 1, sym_comment, - STATE(6067), 1, - sym_param_short_flag, - [212144] = 4, + [212958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9653), 1, - anon_sym_DOT2, - ACTIONS(9655), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1317), 1, + sym_block, STATE(5526), 1, sym_comment, - [212157] = 4, + [212971] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9607), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4506), 1, + STATE(1324), 1, sym_block, STATE(5527), 1, sym_comment, - [212170] = 4, + [212984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7955), 1, - anon_sym_DASH2, - ACTIONS(9657), 1, - aux_sym_short_flag_token1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1333), 1, + sym_block, STATE(5528), 1, sym_comment, - [212183] = 3, + [212997] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1351), 1, + sym_block, STATE(5529), 1, sym_comment, - ACTIONS(9659), 2, - anon_sym_RBRACK, - sym_hex_digit, - [212194] = 4, - ACTIONS(105), 1, + [213010] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2806), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(9321), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1355), 1, + sym_block, STATE(5530), 1, sym_comment, - [212207] = 4, + [213023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9661), 1, - anon_sym_DASH2, - ACTIONS(9663), 1, - aux_sym_short_flag_token1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1289), 1, + sym_block, STATE(5531), 1, sym_comment, - [212220] = 4, + [213036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(1470), 1, + STATE(1460), 1, sym_block, STATE(5532), 1, sym_comment, - [212233] = 4, + [213049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(9810), 1, anon_sym_LBRACE, - STATE(1585), 1, + STATE(4740), 1, sym_block, STATE(5533), 1, sym_comment, - [212246] = 3, + [213062] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1451), 1, + sym_block, STATE(5534), 1, sym_comment, - ACTIONS(3547), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [212257] = 4, + [213075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(9665), 1, - anon_sym_make, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1364), 1, + sym_block, STATE(5535), 1, sym_comment, - [212270] = 4, + [213088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(1609), 1, + STATE(1450), 1, sym_block, STATE(5536), 1, sym_comment, - [212283] = 3, + [213101] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1599), 1, + sym_block, STATE(5537), 1, sym_comment, - ACTIONS(3591), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [212294] = 4, + [213114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(1606), 1, + STATE(1371), 1, sym_block, STATE(5538), 1, sym_comment, - [212307] = 4, + [213127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(1533), 1, + STATE(1398), 1, sym_block, STATE(5539), 1, sym_comment, - [212320] = 4, - ACTIONS(105), 1, + [213140] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9667), 1, + ACTIONS(9812), 1, + anon_sym_DOT2, + ACTIONS(9814), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9669), 1, - aux_sym__list_item_starts_with_sign_token1, STATE(5540), 1, sym_comment, - [212333] = 4, - ACTIONS(3), 1, + [213153] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2960), 1, - anon_sym_in, - ACTIONS(9671), 1, - sym__long_flag_identifier, + ACTIONS(9816), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9818), 1, + aux_sym__unquoted_in_list_token5, STATE(5541), 1, sym_comment, - [212346] = 3, + [213166] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1583), 1, + sym_block, STATE(5542), 1, sym_comment, - ACTIONS(9673), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [212357] = 4, + [213179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8118), 1, anon_sym_LBRACE, - STATE(1495), 1, + STATE(1582), 1, sym_block, STATE(5543), 1, sym_comment, - [212370] = 4, + [213192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8118), 1, anon_sym_LBRACE, - STATE(1496), 1, + STATE(1641), 1, sym_block, STATE(5544), 1, sym_comment, - [212383] = 4, + [213205] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8178), 1, + ACTIONS(8118), 1, anon_sym_LBRACE, - STATE(1575), 1, - sym_val_record, + STATE(1580), 1, + sym_block, STATE(5545), 1, sym_comment, - [212396] = 4, - ACTIONS(105), 1, + [213218] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9677), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1470), 1, + sym_block, STATE(5546), 1, sym_comment, - [212409] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2806), 1, - aux_sym_unquoted_token3, - ACTIONS(9547), 1, - aux_sym__immediate_decimal_token2, - STATE(5547), 1, - sym_comment, - [212422] = 4, + [213231] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9557), 1, + ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4747), 1, + STATE(1468), 1, sym_block, - STATE(5548), 1, + STATE(5547), 1, sym_comment, - [212435] = 4, - ACTIONS(3), 1, + [213244] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9679), 1, - anon_sym_DOT2, - ACTIONS(9681), 1, + ACTIONS(9816), 1, aux_sym__immediate_decimal_token1, - STATE(5549), 1, + ACTIONS(9820), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5548), 1, sym_comment, - [212448] = 4, + [213257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8118), 1, anon_sym_LBRACE, - STATE(1534), 1, + STATE(1600), 1, sym_block, - STATE(5550), 1, + STATE(5549), 1, sym_comment, - [212461] = 4, + [213270] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9683), 1, + ACTIONS(9822), 1, anon_sym_DOT2, - ACTIONS(9685), 1, - aux_sym_unquoted_token6, - STATE(5551), 1, + ACTIONS(9824), 1, + aux_sym__immediate_decimal_token1, + STATE(5550), 1, sym_comment, - [212474] = 4, + [213283] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9687), 1, - anon_sym_DASH2, - ACTIONS(9689), 1, - aux_sym_short_flag_token1, + ACTIONS(9826), 1, + anon_sym_COMMA, + ACTIONS(9828), 1, + anon_sym_RBRACE, + STATE(5551), 1, + sym_comment, + [213296] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2906), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(9436), 1, + aux_sym__immediate_decimal_token2, STATE(5552), 1, sym_comment, - [212487] = 4, + [213309] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1475), 1, - sym_block, STATE(5553), 1, sym_comment, - [212500] = 4, + ACTIONS(9729), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [213320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9605), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9691), 1, - anon_sym_DOT2, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1597), 1, + sym_block, STATE(5554), 1, sym_comment, - [212513] = 4, + [213333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LBRACE, - STATE(1570), 1, - sym_block, STATE(5555), 1, sym_comment, - [212526] = 4, + ACTIONS(9830), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [213344] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9629), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9693), 1, - anon_sym_DOT2, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym_block, STATE(5556), 1, sym_comment, - [212539] = 4, + [213357] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9611), 1, - aux_sym_short_flag_token1, - ACTIONS(9695), 1, - anon_sym_DASH2, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1544), 1, + sym_block, STATE(5557), 1, sym_comment, - [212552] = 3, + [213370] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1562), 1, + sym_block, STATE(5558), 1, sym_comment, - ACTIONS(3391), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [212563] = 4, + [213383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9697), 1, - anon_sym_DOT2, - ACTIONS(9699), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8158), 1, + anon_sym_LBRACE, + STATE(1306), 1, + sym_val_record, STATE(5559), 1, sym_comment, - [212576] = 4, + [213396] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2782), 1, - aux_sym_unquoted_token3, - ACTIONS(9555), 1, + ACTIONS(2832), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(9509), 1, aux_sym__immediate_decimal_token2, STATE(5560), 1, sym_comment, - [212589] = 4, + [213409] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9609), 1, - anon_sym_DASH2, - ACTIONS(9701), 1, - aux_sym_short_flag_token1, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1563), 1, + sym_block, STATE(5561), 1, sym_comment, - [212602] = 3, + [213422] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9703), 1, - anon_sym_DOT2, + ACTIONS(9557), 1, + anon_sym_LBRACE, + STATE(4452), 1, + sym_block, STATE(5562), 1, sym_comment, - [212612] = 3, - ACTIONS(3), 1, + [213435] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1185), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2906), 1, + aux_sym_unquoted_token3, + ACTIONS(9792), 1, + aux_sym__immediate_decimal_token2, STATE(5563), 1, sym_comment, - [212622] = 3, - ACTIONS(105), 1, + [213448] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9705), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1485), 1, + sym_block, STATE(5564), 1, sym_comment, - [212632] = 3, - ACTIONS(105), 1, + [213461] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9707), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9832), 1, + anon_sym_DASH2, + ACTIONS(9834), 1, + aux_sym_short_flag_token1, STATE(5565), 1, sym_comment, - [212642] = 3, + [213474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9709), 1, - anon_sym_DOT2, STATE(5566), 1, sym_comment, - [212652] = 3, + ACTIONS(3453), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [213485] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_DOT2, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1534), 1, + sym_block, STATE(5567), 1, sym_comment, - [212662] = 3, + [213498] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9713), 1, - anon_sym_DOT2, + ACTIONS(9836), 1, + anon_sym_DASH, STATE(5568), 1, sym_comment, - [212672] = 3, + STATE(6168), 1, + sym_param_short_flag, + [213511] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9715), 1, - anon_sym_DOT2, STATE(5569), 1, sym_comment, - [212682] = 3, - ACTIONS(105), 1, + ACTIONS(3439), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [213522] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9717), 1, - aux_sym_unquoted_token3, + ACTIONS(115), 1, + aux_sym_unquoted_token6, + ACTIONS(117), 1, + anon_sym_DOT2, STATE(5570), 1, sym_comment, - [212692] = 3, + [213535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9719), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(117), 1, + anon_sym_COLON, + ACTIONS(9428), 1, + aux_sym__immediate_decimal_token2, STATE(5571), 1, sym_comment, - [212702] = 3, + [213548] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9721), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(1377), 1, + anon_sym_LBRACE, + ACTIONS(5959), 1, + aux_sym_unquoted_token3, STATE(5572), 1, sym_comment, - [212712] = 3, + [213561] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9723), 1, + ACTIONS(6257), 1, aux_sym__immediate_decimal_token1, + ACTIONS(9838), 1, + anon_sym_DOT2, STATE(5573), 1, sym_comment, - [212722] = 3, - ACTIONS(3), 1, + [213574] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9725), 1, - anon_sym_RBRACE, + ACTIONS(2832), 1, + aux_sym_unquoted_token3, + ACTIONS(9796), 1, + aux_sym__immediate_decimal_token2, STATE(5574), 1, sym_comment, - [212732] = 3, - ACTIONS(3), 1, + [213587] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1268), 1, + ACTIONS(9840), 1, aux_sym__immediate_decimal_token1, + ACTIONS(9842), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5575), 1, sym_comment, - [212742] = 3, - ACTIONS(105), 1, + [213600] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3940), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9832), 1, + anon_sym_DASH2, + ACTIONS(9844), 1, + aux_sym_short_flag_token1, STATE(5576), 1, sym_comment, - [212752] = 3, + [213613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9727), 1, - anon_sym_DOT2, + ACTIONS(9557), 1, + anon_sym_LBRACE, + STATE(4454), 1, + sym_block, STATE(5577), 1, sym_comment, - [212762] = 3, - ACTIONS(3), 1, + [213626] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1264), 1, + ACTIONS(9846), 1, aux_sym__immediate_decimal_token1, + ACTIONS(9848), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5578), 1, sym_comment, - [212772] = 3, + [213639] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9729), 1, - anon_sym_RPAREN, + ACTIONS(9850), 1, + anon_sym_DOT2, + ACTIONS(9852), 1, + aux_sym__immediate_decimal_token1, STATE(5579), 1, sym_comment, - [212782] = 3, + [213652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9731), 1, - anon_sym_RPAREN, + ACTIONS(9854), 1, + anon_sym_DOT2, + ACTIONS(9856), 1, + aux_sym__immediate_decimal_token1, STATE(5580), 1, sym_comment, - [212792] = 3, + [213665] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1710), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1549), 1, + sym_block, STATE(5581), 1, sym_comment, - [212802] = 3, - ACTIONS(105), 1, + [213678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9733), 1, - aux_sym_unquoted_token3, + ACTIONS(9858), 1, + anon_sym_DOT2, + ACTIONS(9860), 1, + aux_sym_unquoted_token6, STATE(5582), 1, sym_comment, - [212812] = 3, + [213691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9735), 1, + ACTIONS(107), 1, + aux_sym_unquoted_token6, + ACTIONS(109), 1, anon_sym_DOT2, STATE(5583), 1, sym_comment, - [212822] = 3, + [213704] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9737), 1, + ACTIONS(147), 1, + aux_sym_unquoted_token6, + ACTIONS(149), 1, anon_sym_DOT2, STATE(5584), 1, sym_comment, - [212832] = 3, - ACTIONS(3), 1, + [213717] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9739), 1, - anon_sym_DOT2, + ACTIONS(9820), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9862), 1, + aux_sym__immediate_decimal_token1, STATE(5585), 1, sym_comment, - [212842] = 3, + [213730] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9864), 1, + anon_sym_DASH2, + ACTIONS(9866), 1, + aux_sym_short_flag_token1, STATE(5586), 1, sym_comment, - [212852] = 3, + [213743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9741), 1, - anon_sym_RBRACE, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1404), 1, + sym_block, STATE(5587), 1, sym_comment, - [212862] = 3, + [213756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9743), 1, + ACTIONS(9868), 1, + anon_sym_DOT2, + ACTIONS(9870), 1, aux_sym__immediate_decimal_token1, STATE(5588), 1, sym_comment, - [212872] = 3, + [213769] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9745), 1, + ACTIONS(157), 1, + aux_sym_unquoted_token6, + ACTIONS(159), 1, anon_sym_DOT2, STATE(5589), 1, sym_comment, - [212882] = 3, + [213782] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9747), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8104), 1, + anon_sym_LBRACE, + STATE(1390), 1, + sym_block, STATE(5590), 1, sym_comment, - [212892] = 3, + [213795] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9749), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1616), 1, + sym_block, STATE(5591), 1, sym_comment, - [212902] = 3, + [213808] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9751), 1, - anon_sym_DOT2, + ACTIONS(8140), 1, + anon_sym_DASH2, + ACTIONS(9872), 1, + aux_sym_short_flag_token1, STATE(5592), 1, sym_comment, - [212912] = 3, + [213821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7795), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9557), 1, + anon_sym_LBRACE, + STATE(4518), 1, + sym_block, STATE(5593), 1, sym_comment, - [212922] = 3, - ACTIONS(3), 1, + [213834] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9753), 1, - anon_sym_DOT2, + ACTIONS(2984), 1, + aux_sym_unquoted_token3, + ACTIONS(9874), 1, + aux_sym__immediate_decimal_token2, STATE(5594), 1, sym_comment, - [212932] = 3, + [213847] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9755), 1, + ACTIONS(6257), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9876), 1, anon_sym_DOT2, STATE(5595), 1, sym_comment, - [212942] = 3, + [213860] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9757), 1, + ACTIONS(9878), 1, anon_sym_DOT2, + ACTIONS(9880), 1, + aux_sym__immediate_decimal_token1, STATE(5596), 1, sym_comment, - [212952] = 3, + [213873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9759), 1, + ACTIONS(9856), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9882), 1, anon_sym_DOT2, STATE(5597), 1, sym_comment, - [212962] = 3, - ACTIONS(105), 1, + [213886] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9884), 1, + anon_sym_DASH2, + ACTIONS(9886), 1, + aux_sym_short_flag_token1, STATE(5598), 1, sym_comment, - [212972] = 3, + [213899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7771), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1614), 1, + sym_block, STATE(5599), 1, sym_comment, - [212982] = 3, - ACTIONS(105), 1, + [213912] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9763), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1613), 1, + sym_block, STATE(5600), 1, sym_comment, - [212992] = 3, + [213925] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9765), 1, - aux_sym__immediate_decimal_token1, STATE(5601), 1, sym_comment, - [213002] = 3, + ACTIONS(3535), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [213936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9767), 1, - anon_sym_RBRACE, + ACTIONS(9888), 1, + anon_sym_DOT2, + ACTIONS(9890), 1, + aux_sym__immediate_decimal_token1, STATE(5602), 1, sym_comment, - [213012] = 3, + [213949] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9769), 1, - aux_sym__immediate_decimal_token1, STATE(5603), 1, sym_comment, - [213022] = 3, - ACTIONS(105), 1, + ACTIONS(3527), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [213960] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5142), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9892), 1, + anon_sym_DASH2, + ACTIONS(9894), 1, + aux_sym_short_flag_token1, STATE(5604), 1, sym_comment, - [213032] = 3, + [213973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9771), 1, - anon_sym_DOT2, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1591), 1, + sym_block, STATE(5605), 1, sym_comment, - [213042] = 3, + [213986] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_RPAREN, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1511), 1, + sym_block, STATE(5606), 1, sym_comment, - [213052] = 3, + [213999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9775), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(1588), 1, + sym_block, STATE(5607), 1, sym_comment, - [213062] = 3, + [214012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9777), 1, - anon_sym_RBRACE, STATE(5608), 1, sym_comment, - [213072] = 3, + ACTIONS(3262), 2, + sym_identifier, + anon_sym_DASH, + [214023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9779), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9810), 1, + anon_sym_LBRACE, + STATE(4547), 1, + sym_block, STATE(5609), 1, sym_comment, - [213082] = 3, + [214036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9781), 1, + ACTIONS(9896), 1, + anon_sym_DOT2, + ACTIONS(9898), 1, aux_sym__immediate_decimal_token1, STATE(5610), 1, sym_comment, - [213092] = 3, + [214049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9783), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8228), 1, + anon_sym_DASH2, + ACTIONS(9900), 1, + aux_sym_short_flag_token1, STATE(5611), 1, sym_comment, - [213102] = 3, + [214062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9785), 1, - anon_sym_RPAREN, + ACTIONS(4144), 1, + anon_sym_COLON, + ACTIONS(9902), 1, + anon_sym_make, STATE(5612), 1, sym_comment, - [213112] = 3, + [214075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9787), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9904), 1, + anon_sym_DOT2, + ACTIONS(9906), 1, + aux_sym_unquoted_token6, STATE(5613), 1, sym_comment, - [213122] = 3, + [214088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9789), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9834), 1, + aux_sym_short_flag_token1, + ACTIONS(9908), 1, + anon_sym_DASH2, STATE(5614), 1, sym_comment, - [213132] = 3, + [214101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9791), 1, - anon_sym_COLON, + ACTIONS(9910), 1, + anon_sym_DASH2, + ACTIONS(9912), 1, + aux_sym_short_flag_token1, STATE(5615), 1, sym_comment, - [213142] = 3, + [214114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9793), 1, - anon_sym_RBRACE, + ACTIONS(149), 1, + anon_sym_COLON, + ACTIONS(9914), 1, + aux_sym__immediate_decimal_token2, STATE(5616), 1, sym_comment, - [213152] = 3, - ACTIONS(105), 1, + [214127] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9795), 1, - aux_sym_unquoted_token3, STATE(5617), 1, sym_comment, - [213162] = 3, + ACTIONS(9916), 2, + anon_sym_RBRACK, + sym_hex_digit, + [214138] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9797), 1, + ACTIONS(9838), 1, anon_sym_DOT2, + ACTIONS(9880), 1, + aux_sym__immediate_decimal_token1, STATE(5618), 1, sym_comment, - [213172] = 3, + [214151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9799), 1, + ACTIONS(9814), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9918), 1, anon_sym_DOT2, STATE(5619), 1, sym_comment, - [213182] = 3, + [214164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9801), 1, - anon_sym_DOT2, + ACTIONS(9920), 1, + anon_sym_DASH2, + ACTIONS(9922), 1, + aux_sym_short_flag_token1, STATE(5620), 1, sym_comment, - [213192] = 3, + [214177] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9803), 1, - anon_sym_DOT2, + ACTIONS(109), 1, + anon_sym_COLON, + ACTIONS(9454), 1, + aux_sym__immediate_decimal_token2, STATE(5621), 1, sym_comment, - [213202] = 3, + [214190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9805), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9557), 1, + anon_sym_LBRACE, + STATE(4829), 1, + sym_block, STATE(5622), 1, sym_comment, - [213212] = 3, - ACTIONS(105), 1, + [214203] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9807), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(8168), 1, + anon_sym_LBRACE, + STATE(1592), 1, + sym_val_record, STATE(5623), 1, sym_comment, - [213222] = 3, + [214216] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9809), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9924), 1, + anon_sym_RPAREN, STATE(5624), 1, sym_comment, - [213232] = 3, + [214226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9811), 1, - anon_sym_RPAREN, + ACTIONS(1278), 1, + aux_sym__immediate_decimal_token1, STATE(5625), 1, sym_comment, - [213242] = 3, + [214236] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9813), 1, + ACTIONS(7890), 1, aux_sym__immediate_decimal_token1, STATE(5626), 1, sym_comment, - [213252] = 3, + [214246] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9815), 1, + ACTIONS(5318), 1, aux_sym__list_item_starts_with_sign_token1, STATE(5627), 1, sym_comment, - [213262] = 3, + [214256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9926), 1, + anon_sym_DOT2, STATE(5628), 1, sym_comment, - [213272] = 3, + [214266] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9819), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(3230), 1, + anon_sym_in, STATE(5629), 1, sym_comment, - [213282] = 3, - ACTIONS(3), 1, + [214276] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9821), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(4029), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5630), 1, sym_comment, - [213292] = 3, + [214286] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9823), 1, - anon_sym_RBRACE, + ACTIONS(9928), 1, + aux_sym__immediate_decimal_token1, STATE(5631), 1, sym_comment, - [213302] = 3, + [214296] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8198), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9930), 1, + anon_sym_RBRACE, STATE(5632), 1, sym_comment, - [213312] = 3, + [214306] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8299), 1, + ACTIONS(9932), 1, aux_sym__immediate_decimal_token1, STATE(5633), 1, sym_comment, - [213322] = 3, + [214316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1120), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9934), 1, + anon_sym_DOT2, STATE(5634), 1, sym_comment, - [213332] = 3, + [214326] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1704), 1, + ACTIONS(9936), 1, aux_sym__list_item_starts_with_sign_token1, STATE(5635), 1, sym_comment, - [213342] = 3, + [214336] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9825), 1, - anon_sym_DOT2, + ACTIONS(9938), 1, + aux_sym__immediate_decimal_token1, STATE(5636), 1, sym_comment, - [213352] = 3, - ACTIONS(3), 1, + [214346] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9827), 1, - anon_sym_DOT2, + ACTIONS(9940), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5637), 1, sym_comment, - [213362] = 3, + [214356] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9829), 1, - anon_sym_RPAREN, + ACTIONS(9942), 1, + aux_sym__immediate_decimal_token1, STATE(5638), 1, sym_comment, - [213372] = 3, + [214366] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9831), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9944), 1, + anon_sym_DOT2, STATE(5639), 1, sym_comment, - [213382] = 3, + [214376] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9833), 1, - anon_sym_RBRACE, + ACTIONS(9946), 1, + anon_sym_DOT2, STATE(5640), 1, sym_comment, - [213392] = 3, + [214386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1067), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9948), 1, + anon_sym_DOT2, STATE(5641), 1, sym_comment, - [213402] = 3, + [214396] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9835), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9950), 1, + anon_sym_DOT2, STATE(5642), 1, sym_comment, - [213412] = 3, + [214406] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9837), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9952), 1, + anon_sym_DOT2, STATE(5643), 1, sym_comment, - [213422] = 3, + [214416] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9839), 1, - anon_sym_RPAREN, + ACTIONS(9954), 1, + anon_sym_DOT2, STATE(5644), 1, sym_comment, - [213432] = 3, - ACTIONS(3), 1, + [214426] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9841), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9956), 1, + aux_sym_unquoted_token3, STATE(5645), 1, sym_comment, - [213442] = 3, + [214436] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9843), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9958), 1, + anon_sym_DOT2, STATE(5646), 1, sym_comment, - [213452] = 3, + [214446] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9845), 1, + ACTIONS(9960), 1, aux_sym_unquoted_token3, STATE(5647), 1, sym_comment, - [213462] = 3, + [214456] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9847), 1, - anon_sym_DOT2, + ACTIONS(9962), 1, + anon_sym_RPAREN, STATE(5648), 1, sym_comment, - [213472] = 3, + [214466] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9849), 1, - anon_sym_DOT2, + ACTIONS(1111), 1, + aux_sym__immediate_decimal_token1, STATE(5649), 1, sym_comment, - [213482] = 3, + [214476] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9851), 1, - anon_sym_DOT2, + ACTIONS(9964), 1, + anon_sym_RBRACE, STATE(5650), 1, sym_comment, - [213492] = 3, + [214486] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9853), 1, - anon_sym_RPAREN, + ACTIONS(9966), 1, + aux_sym__immediate_decimal_token1, STATE(5651), 1, sym_comment, - [213502] = 3, + [214496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9855), 1, + ACTIONS(1124), 1, aux_sym__immediate_decimal_token1, STATE(5652), 1, sym_comment, - [213512] = 3, + [214506] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9857), 1, + ACTIONS(9968), 1, anon_sym_DOT2, STATE(5653), 1, sym_comment, - [213522] = 3, - ACTIONS(3), 1, + [214516] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7711), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9970), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5654), 1, sym_comment, - [213532] = 3, + [214526] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9859), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9972), 1, + anon_sym_RPAREN, STATE(5655), 1, sym_comment, - [213542] = 3, + [214536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9861), 1, + ACTIONS(1729), 1, aux_sym__immediate_decimal_token1, STATE(5656), 1, sym_comment, - [213552] = 3, - ACTIONS(105), 1, + [214546] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9863), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9974), 1, + anon_sym_RBRACE, STATE(5657), 1, sym_comment, - [213562] = 3, + [214556] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9865), 1, + ACTIONS(7967), 1, aux_sym__immediate_decimal_token1, STATE(5658), 1, sym_comment, - [213572] = 3, + [214566] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9976), 1, + anon_sym_DOT2, STATE(5659), 1, sym_comment, - [213582] = 3, - ACTIONS(3), 1, + [214576] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7719), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9978), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5660), 1, sym_comment, - [213592] = 3, - ACTIONS(105), 1, + [214586] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9869), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(1725), 1, + aux_sym__immediate_decimal_token1, STATE(5661), 1, sym_comment, - [213602] = 3, + [214596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9871), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9980), 1, + anon_sym_RBRACE, STATE(5662), 1, sym_comment, - [213612] = 3, + [214606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9873), 1, - anon_sym_RBRACE, + ACTIONS(9982), 1, + aux_sym__immediate_decimal_token1, STATE(5663), 1, sym_comment, - [213622] = 3, + [214616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9875), 1, + ACTIONS(9984), 1, anon_sym_RPAREN, STATE(5664), 1, sym_comment, - [213632] = 3, + [214626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9877), 1, + ACTIONS(9986), 1, aux_sym__immediate_decimal_token1, STATE(5665), 1, sym_comment, - [213642] = 3, + [214636] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9879), 1, + ACTIONS(9988), 1, aux_sym__immediate_decimal_token1, STATE(5666), 1, sym_comment, - [213652] = 3, + [214646] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9881), 1, - anon_sym_RPAREN, + ACTIONS(9990), 1, + aux_sym__immediate_decimal_token1, STATE(5667), 1, sym_comment, - [213662] = 3, - ACTIONS(3), 1, + [214656] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9883), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9992), 1, + aux_sym_unquoted_token3, STATE(5668), 1, sym_comment, - [213672] = 3, + [214666] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9885), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9994), 1, + anon_sym_DOT2, STATE(5669), 1, sym_comment, - [213682] = 3, - ACTIONS(105), 1, + [214676] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1379), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9996), 1, + anon_sym_DOT2, STATE(5670), 1, sym_comment, - [213692] = 3, + [214686] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9887), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9998), 1, + anon_sym_DOT2, STATE(5671), 1, sym_comment, - [213702] = 3, + [214696] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9889), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10000), 1, + anon_sym_DOT2, STATE(5672), 1, sym_comment, - [213712] = 3, + [214706] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9891), 1, + ACTIONS(10002), 1, anon_sym_DOT2, STATE(5673), 1, sym_comment, - [213722] = 3, + [214716] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9893), 1, + ACTIONS(10004), 1, anon_sym_DOT2, STATE(5674), 1, sym_comment, - [213732] = 3, + [214726] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9895), 1, - anon_sym_RBRACE, + ACTIONS(10006), 1, + anon_sym_DOT2, STATE(5675), 1, sym_comment, - [213742] = 3, + [214736] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9897), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10008), 1, + anon_sym_DOT2, STATE(5676), 1, sym_comment, - [213752] = 3, + [214746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9899), 1, - anon_sym_RPAREN, + ACTIONS(10010), 1, + aux_sym__immediate_decimal_token1, STATE(5677), 1, sym_comment, - [213762] = 3, - ACTIONS(3), 1, + [214756] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9901), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10012), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5678), 1, sym_comment, - [213772] = 3, + [214766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9903), 1, - anon_sym_RPAREN, + ACTIONS(10014), 1, + aux_sym__immediate_decimal_token1, STATE(5679), 1, sym_comment, - [213782] = 3, - ACTIONS(3), 1, + [214776] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9605), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10016), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5680), 1, sym_comment, - [213792] = 3, + [214786] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9905), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10018), 1, + anon_sym_RPAREN, STATE(5681), 1, sym_comment, - [213802] = 3, + [214796] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9907), 1, + ACTIONS(10020), 1, aux_sym__immediate_decimal_token1, STATE(5682), 1, sym_comment, - [213812] = 3, + [214806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8039), 1, - anon_sym_LPAREN2, + ACTIONS(10022), 1, + aux_sym__immediate_decimal_token1, STATE(5683), 1, sym_comment, - [213822] = 3, + [214816] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9153), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10024), 1, + anon_sym_RBRACE, STATE(5684), 1, sym_comment, - [213832] = 3, + [214826] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9145), 1, + ACTIONS(10026), 1, aux_sym__immediate_decimal_token1, STATE(5685), 1, sym_comment, - [213842] = 3, - ACTIONS(105), 1, + [214836] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9909), 1, - aux_sym_unquoted_token3, + ACTIONS(10028), 1, + aux_sym__immediate_decimal_token1, STATE(5686), 1, sym_comment, - [213852] = 3, + [214846] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9911), 1, - anon_sym_DOT2, + ACTIONS(10030), 1, + aux_sym__immediate_decimal_token1, STATE(5687), 1, sym_comment, - [213862] = 3, + [214856] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, + ACTIONS(10032), 1, + aux_sym__immediate_decimal_token1, STATE(5688), 1, sym_comment, - [213872] = 3, + [214866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9915), 1, - anon_sym_DOT2, + ACTIONS(10034), 1, + aux_sym__immediate_decimal_token1, STATE(5689), 1, sym_comment, - [213882] = 3, - ACTIONS(3), 1, + [214876] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_RPAREN, + ACTIONS(1739), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5690), 1, sym_comment, - [213892] = 3, + [214886] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9919), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10036), 1, + anon_sym_DOT2, STATE(5691), 1, sym_comment, - [213902] = 3, + [214896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9921), 1, + ACTIONS(10038), 1, anon_sym_DOT2, STATE(5692), 1, sym_comment, - [213912] = 3, + [214906] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9923), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10040), 1, + anon_sym_COLON, STATE(5693), 1, sym_comment, - [213922] = 3, + [214916] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9925), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10042), 1, + anon_sym_RPAREN, STATE(5694), 1, sym_comment, - [213932] = 3, - ACTIONS(105), 1, + [214926] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9927), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10044), 1, + aux_sym__immediate_decimal_token1, STATE(5695), 1, sym_comment, - [213942] = 3, + [214936] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9929), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10046), 1, + anon_sym_RBRACE, STATE(5696), 1, sym_comment, - [213952] = 3, - ACTIONS(105), 1, + [214946] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10048), 1, + anon_sym_DOT2, STATE(5697), 1, sym_comment, - [213962] = 3, + [214956] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9933), 1, + ACTIONS(10050), 1, aux_sym__immediate_decimal_token1, STATE(5698), 1, sym_comment, - [213972] = 3, + [214966] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9935), 1, - anon_sym_RPAREN, + ACTIONS(10052), 1, + aux_sym__immediate_decimal_token1, STATE(5699), 1, sym_comment, - [213982] = 3, + [214976] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9937), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10054), 1, + anon_sym_RPAREN, STATE(5700), 1, sym_comment, - [213992] = 3, + [214986] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9939), 1, - anon_sym_RBRACE, + ACTIONS(10056), 1, + aux_sym__immediate_decimal_token1, STATE(5701), 1, sym_comment, - [214002] = 3, + [214996] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9941), 1, + ACTIONS(10058), 1, aux_sym__immediate_decimal_token1, STATE(5702), 1, sym_comment, - [214012] = 3, + [215006] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9943), 1, + ACTIONS(9814), 1, aux_sym__immediate_decimal_token1, STATE(5703), 1, sym_comment, - [214022] = 3, + [215016] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9945), 1, - anon_sym_RPAREN, + ACTIONS(10060), 1, + anon_sym_RBRACE, STATE(5704), 1, sym_comment, - [214032] = 3, + [215026] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2049), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10062), 1, + aux_sym_unquoted_token3, STATE(5705), 1, sym_comment, - [214042] = 3, + [215036] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9947), 1, + ACTIONS(10064), 1, anon_sym_DOT2, STATE(5706), 1, sym_comment, - [214052] = 3, + [215046] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9949), 1, - anon_sym_DOT2, + ACTIONS(10066), 1, + anon_sym_RPAREN, STATE(5707), 1, sym_comment, - [214062] = 3, + [215056] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9951), 1, - anon_sym_RPAREN, + ACTIONS(10068), 1, + aux_sym__immediate_decimal_token1, STATE(5708), 1, sym_comment, - [214072] = 3, + [215066] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9953), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10070), 1, + anon_sym_DOT2, STATE(5709), 1, sym_comment, - [214082] = 3, + [215076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9955), 1, - ts_builtin_sym_end, + ACTIONS(10072), 1, + anon_sym_DOT2, STATE(5710), 1, sym_comment, - [214092] = 3, + [215086] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9957), 1, - anon_sym_RBRACE, + ACTIONS(10074), 1, + aux_sym__immediate_decimal_token1, STATE(5711), 1, sym_comment, - [214102] = 3, + [215096] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9959), 1, + ACTIONS(10076), 1, aux_sym__immediate_decimal_token1, STATE(5712), 1, sym_comment, - [214112] = 3, + [215106] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9961), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10078), 1, + anon_sym_DOT2, STATE(5713), 1, sym_comment, - [214122] = 3, + [215116] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9963), 1, - anon_sym_RPAREN, + ACTIONS(10080), 1, + aux_sym__immediate_decimal_token1, STATE(5714), 1, sym_comment, - [214132] = 3, + [215126] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5403), 1, - anon_sym_PIPE, + ACTIONS(10082), 1, + aux_sym__immediate_decimal_token1, STATE(5715), 1, sym_comment, - [214142] = 3, + [215136] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9965), 1, - anon_sym_DOT2, + ACTIONS(7874), 1, + aux_sym__immediate_decimal_token1, STATE(5716), 1, sym_comment, - [214152] = 3, - ACTIONS(3), 1, + [215146] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9967), 1, - anon_sym_RPAREN, + ACTIONS(10084), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5717), 1, sym_comment, - [214162] = 3, + [215156] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1225), 1, + ACTIONS(7878), 1, aux_sym__immediate_decimal_token1, STATE(5718), 1, sym_comment, - [214172] = 3, - ACTIONS(3), 1, + [215166] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9969), 1, - anon_sym_DOT2, + ACTIONS(10086), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5719), 1, sym_comment, - [214182] = 3, + [215176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1229), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10088), 1, + anon_sym_RPAREN, STATE(5720), 1, sym_comment, - [214192] = 3, + [215186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9971), 1, - anon_sym_EQ, + ACTIONS(10090), 1, + aux_sym__immediate_decimal_token1, STATE(5721), 1, sym_comment, - [214202] = 3, + [215196] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9973), 1, - anon_sym_EQ, + ACTIONS(10092), 1, + aux_sym__immediate_decimal_token1, STATE(5722), 1, sym_comment, - [214212] = 3, - ACTIONS(105), 1, + [215206] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4793), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10094), 1, + anon_sym_RBRACE, STATE(5723), 1, sym_comment, - [214222] = 3, + [215216] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9975), 1, - anon_sym_RPAREN, + ACTIONS(10096), 1, + aux_sym__immediate_decimal_token1, STATE(5724), 1, sym_comment, - [214232] = 3, + [215226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9977), 1, + ACTIONS(10098), 1, aux_sym__immediate_decimal_token1, STATE(5725), 1, sym_comment, - [214242] = 3, - ACTIONS(105), 1, + [215236] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9979), 1, - aux_sym_unquoted_token3, + ACTIONS(10100), 1, + aux_sym__immediate_decimal_token1, STATE(5726), 1, sym_comment, - [214252] = 3, + [215246] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9981), 1, + ACTIONS(10102), 1, aux_sym__immediate_decimal_token1, STATE(5727), 1, sym_comment, - [214262] = 3, + [215256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9983), 1, - anon_sym_DOT2, + ACTIONS(10104), 1, + aux_sym__immediate_decimal_token1, STATE(5728), 1, sym_comment, - [214272] = 3, + [215266] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9985), 1, - anon_sym_DOT2, + ACTIONS(10106), 1, + anon_sym_RPAREN, STATE(5729), 1, sym_comment, - [214282] = 3, - ACTIONS(3), 1, + [215276] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9987), 1, - anon_sym_DOT2, + ACTIONS(1385), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5730), 1, sym_comment, - [214292] = 3, + [215286] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9989), 1, - anon_sym_RPAREN, + ACTIONS(10108), 1, + anon_sym_DOT2, STATE(5731), 1, sym_comment, - [214302] = 3, + [215296] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1260), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10110), 1, + anon_sym_DOT2, STATE(5732), 1, sym_comment, - [214312] = 3, + [215306] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9991), 1, - anon_sym_DOT2, + ACTIONS(10112), 1, + anon_sym_RPAREN, STATE(5733), 1, sym_comment, - [214322] = 3, + [215316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1256), 1, + ACTIONS(10114), 1, aux_sym__immediate_decimal_token1, STATE(5734), 1, sym_comment, - [214332] = 3, + [215326] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9993), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10116), 1, + anon_sym_RBRACE, STATE(5735), 1, sym_comment, - [214342] = 3, - ACTIONS(105), 1, + [215336] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9995), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10118), 1, + aux_sym__immediate_decimal_token1, STATE(5736), 1, sym_comment, - [214352] = 3, + [215346] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9997), 1, + ACTIONS(10120), 1, aux_sym__immediate_decimal_token1, STATE(5737), 1, sym_comment, - [214362] = 3, + [215356] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9999), 1, - anon_sym_RPAREN, + ACTIONS(10122), 1, + aux_sym__immediate_decimal_token1, STATE(5738), 1, sym_comment, - [214372] = 3, + [215366] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10001), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10124), 1, + anon_sym_RPAREN, STATE(5739), 1, sym_comment, - [214382] = 3, + [215376] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1191), 1, + ACTIONS(10126), 1, aux_sym__immediate_decimal_token1, STATE(5740), 1, sym_comment, - [214392] = 3, + [215386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, + ACTIONS(10128), 1, aux_sym__immediate_decimal_token1, STATE(5741), 1, sym_comment, - [214402] = 3, + [215396] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10005), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10130), 1, + ts_builtin_sym_end, STATE(5742), 1, sym_comment, - [214412] = 3, + [215406] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10007), 1, - anon_sym_RBRACE, + ACTIONS(5542), 1, + anon_sym_PIPE, STATE(5743), 1, sym_comment, - [214422] = 3, + [215416] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10009), 1, - anon_sym_RPAREN, + ACTIONS(10132), 1, + anon_sym_DOT2, STATE(5744), 1, sym_comment, - [214432] = 3, + [215426] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10011), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10134), 1, + anon_sym_EQ, STATE(5745), 1, sym_comment, - [214442] = 3, + [215436] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10136), 1, + anon_sym_RPAREN, STATE(5746), 1, sym_comment, - [214452] = 3, + [215446] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10013), 1, + ACTIONS(1237), 1, aux_sym__immediate_decimal_token1, STATE(5747), 1, sym_comment, - [214462] = 3, + [215456] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10015), 1, - anon_sym_RPAREN, + ACTIONS(10138), 1, + anon_sym_EQ, STATE(5748), 1, sym_comment, - [214472] = 3, + [215466] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1387), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10140), 1, + aux_sym_unquoted_token3, STATE(5749), 1, sym_comment, - [214482] = 3, + [215476] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10017), 1, - anon_sym_RPAREN, + ACTIONS(1229), 1, + aux_sym__immediate_decimal_token1, STATE(5750), 1, sym_comment, - [214492] = 3, + [215486] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10019), 1, - anon_sym_DOT2, + ACTIONS(10142), 1, + aux_sym__immediate_decimal_token1, STATE(5751), 1, sym_comment, - [214502] = 3, + [215496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10021), 1, + ACTIONS(10144), 1, anon_sym_DOT2, STATE(5752), 1, sym_comment, - [214512] = 3, + [215506] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10023), 1, - anon_sym_RBRACE, + ACTIONS(9241), 1, + aux_sym__immediate_decimal_token1, STATE(5753), 1, sym_comment, - [214522] = 3, + [215516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10025), 1, - anon_sym_RPAREN, + ACTIONS(9245), 1, + aux_sym__immediate_decimal_token1, STATE(5754), 1, sym_comment, - [214532] = 3, - ACTIONS(105), 1, + [215526] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10027), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10146), 1, + anon_sym_DOT2, STATE(5755), 1, sym_comment, - [214542] = 3, + [215536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10029), 1, - anon_sym_RPAREN, + ACTIONS(10148), 1, + anon_sym_DOT2, STATE(5756), 1, sym_comment, - [214552] = 3, + [215546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10031), 1, - anon_sym_RBRACE, + ACTIONS(10150), 1, + anon_sym_DOT2, STATE(5757), 1, sym_comment, - [214562] = 3, + [215556] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10033), 1, - anon_sym_RPAREN, + ACTIONS(10152), 1, + aux_sym__immediate_decimal_token1, STATE(5758), 1, sym_comment, - [214572] = 3, - ACTIONS(105), 1, + [215566] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5123), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(10154), 1, + anon_sym_RPAREN, STATE(5759), 1, sym_comment, - [214582] = 3, - ACTIONS(105), 1, + [215576] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10035), 1, - aux_sym_unquoted_token3, + ACTIONS(10156), 1, + aux_sym__immediate_decimal_token1, STATE(5760), 1, sym_comment, - [214592] = 3, - ACTIONS(3), 1, + [215586] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10037), 1, - anon_sym_RPAREN, + ACTIONS(10158), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5761), 1, sym_comment, - [214602] = 3, + [215596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10039), 1, - anon_sym_DOT2, + ACTIONS(10160), 1, + aux_sym__immediate_decimal_token1, STATE(5762), 1, sym_comment, - [214612] = 3, + [215606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10041), 1, - anon_sym_DOT2, + ACTIONS(10162), 1, + aux_sym__immediate_decimal_token1, STATE(5763), 1, sym_comment, - [214622] = 3, - ACTIONS(3), 1, + [215616] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10043), 1, - anon_sym_RPAREN, + ACTIONS(10164), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5764), 1, sym_comment, - [214632] = 3, + [215626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10045), 1, - anon_sym_DOT2, + ACTIONS(10166), 1, + aux_sym__immediate_decimal_token1, STATE(5765), 1, sym_comment, - [214642] = 3, + [215636] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10047), 1, - anon_sym_RPAREN, + ACTIONS(10168), 1, + anon_sym_RBRACE, STATE(5766), 1, sym_comment, - [214652] = 3, + [215646] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10049), 1, - anon_sym_RPAREN, + ACTIONS(1149), 1, + aux_sym__immediate_decimal_token1, STATE(5767), 1, sym_comment, - [214662] = 3, + [215656] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10051), 1, + ACTIONS(10170), 1, anon_sym_RPAREN, STATE(5768), 1, sym_comment, - [214672] = 3, + [215666] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10053), 1, + ACTIONS(10172), 1, anon_sym_RPAREN, STATE(5769), 1, sym_comment, - [214682] = 3, + [215676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10055), 1, - anon_sym_RPAREN, + ACTIONS(1741), 1, + aux_sym__immediate_decimal_token1, STATE(5770), 1, sym_comment, - [214692] = 3, - ACTIONS(3), 1, + [215686] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10057), 1, - anon_sym_RPAREN, + ACTIONS(2080), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5771), 1, sym_comment, - [214702] = 3, + [215696] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10059), 1, - anon_sym_RPAREN, + ACTIONS(10174), 1, + anon_sym_DOT2, STATE(5772), 1, sym_comment, - [214712] = 3, + [215706] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10061), 1, - anon_sym_DOT2, + ACTIONS(1745), 1, + aux_sym__immediate_decimal_token1, STATE(5773), 1, sym_comment, - [214722] = 3, + [215716] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10063), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10176), 1, + anon_sym_DOT2, STATE(5774), 1, sym_comment, - [214732] = 3, - ACTIONS(105), 1, + [215726] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10065), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10178), 1, + anon_sym_RBRACE, STATE(5775), 1, sym_comment, - [214742] = 3, + [215736] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10067), 1, + ACTIONS(1187), 1, aux_sym__immediate_decimal_token1, STATE(5776), 1, sym_comment, - [214752] = 3, + [215746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9665), 1, - anon_sym_make, + ACTIONS(10180), 1, + anon_sym_RPAREN, STATE(5777), 1, sym_comment, - [214762] = 3, - ACTIONS(105), 1, + [215756] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10182), 1, + anon_sym_RPAREN, STATE(5778), 1, sym_comment, - [214772] = 3, + [215766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10071), 1, + ACTIONS(10184), 1, aux_sym__immediate_decimal_token1, STATE(5779), 1, sym_comment, - [214782] = 3, + [215776] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10073), 1, - anon_sym_RBRACE, + ACTIONS(8136), 1, + anon_sym_LPAREN2, STATE(5780), 1, sym_comment, - [214792] = 3, + [215786] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10075), 1, - anon_sym_LBRACK2, + ACTIONS(10186), 1, + anon_sym_EQ, STATE(5781), 1, sym_comment, - [214802] = 3, + [215796] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10077), 1, + ACTIONS(10188), 1, aux_sym__immediate_decimal_token1, STATE(5782), 1, sym_comment, - [214812] = 3, - ACTIONS(3), 1, + [215806] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10079), 1, - anon_sym_RPAREN, + ACTIONS(4997), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5783), 1, sym_comment, - [214822] = 3, - ACTIONS(105), 1, + [215816] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2115), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10190), 1, + anon_sym_RBRACE, STATE(5784), 1, sym_comment, - [214832] = 3, - ACTIONS(3), 1, + [215826] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10081), 1, - anon_sym_DOT2, + ACTIONS(10192), 1, + aux_sym_unquoted_token3, STATE(5785), 1, sym_comment, - [214842] = 3, + [215836] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10083), 1, + ACTIONS(10194), 1, anon_sym_DOT2, STATE(5786), 1, sym_comment, - [214852] = 3, + [215846] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9685), 1, - aux_sym_unquoted_token6, + ACTIONS(10196), 1, + anon_sym_RPAREN, STATE(5787), 1, sym_comment, - [214862] = 3, + [215856] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10085), 1, - anon_sym_RBRACE, + ACTIONS(10198), 1, + aux_sym__immediate_decimal_token1, STATE(5788), 1, sym_comment, - [214872] = 3, + [215866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10087), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10200), 1, + anon_sym_DOT2, STATE(5789), 1, sym_comment, - [214882] = 3, + [215876] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10089), 1, - anon_sym_RPAREN, + ACTIONS(10202), 1, + anon_sym_DOT2, STATE(5790), 1, sym_comment, - [214892] = 3, + [215886] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10091), 1, - anon_sym_RPAREN, + ACTIONS(10204), 1, + aux_sym__immediate_decimal_token1, STATE(5791), 1, sym_comment, - [214902] = 3, + [215896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10093), 1, + ACTIONS(10206), 1, anon_sym_DOT2, STATE(5792), 1, sym_comment, - [214912] = 3, + [215906] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10095), 1, - anon_sym_LBRACE, + ACTIONS(10208), 1, + aux_sym__immediate_decimal_token1, STATE(5793), 1, sym_comment, - [214922] = 3, - ACTIONS(3), 1, + [215916] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10097), 1, - anon_sym_EQ, + ACTIONS(10210), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5794), 1, sym_comment, - [214932] = 3, + [215926] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10099), 1, + ACTIONS(10212), 1, anon_sym_RPAREN, STATE(5795), 1, sym_comment, - [214942] = 3, + [215936] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7951), 1, - anon_sym_LPAREN2, + ACTIONS(10214), 1, + aux_sym__immediate_decimal_token1, STATE(5796), 1, sym_comment, - [214952] = 3, + [215946] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_COLON, + ACTIONS(10216), 1, + aux_sym__immediate_decimal_token1, STATE(5797), 1, sym_comment, - [214962] = 3, + [215956] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1139), 1, + ACTIONS(10218), 1, aux_sym__immediate_decimal_token1, STATE(5798), 1, sym_comment, - [214972] = 3, - ACTIONS(3), 1, + [215966] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10101), 1, - anon_sym_in, + ACTIONS(10220), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5799), 1, sym_comment, - [214982] = 3, + [215976] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10103), 1, - anon_sym_RBRACE, + ACTIONS(10222), 1, + aux_sym__immediate_decimal_token1, STATE(5800), 1, sym_comment, - [214992] = 3, - ACTIONS(105), 1, + [215986] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10105), 1, - aux_sym_unquoted_token3, + ACTIONS(10224), 1, + anon_sym_RBRACE, STATE(5801), 1, sym_comment, - [215002] = 3, + [215996] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10107), 1, - anon_sym_DOT2, + ACTIONS(10226), 1, + anon_sym_RPAREN, STATE(5802), 1, sym_comment, - [215012] = 3, + [216006] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10109), 1, - anon_sym_DOT2, + ACTIONS(1221), 1, + aux_sym__immediate_decimal_token1, STATE(5803), 1, sym_comment, - [215022] = 3, + [216016] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10111), 1, - anon_sym_DOT2, + ACTIONS(9452), 1, + aux_sym__immediate_decimal_token1, STATE(5804), 1, sym_comment, - [215032] = 3, + [216026] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10113), 1, - anon_sym_DOT2, + ACTIONS(1233), 1, + aux_sym__immediate_decimal_token1, STATE(5805), 1, sym_comment, - [215042] = 3, + [216036] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10115), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10228), 1, + anon_sym_RPAREN, STATE(5806), 1, sym_comment, - [215052] = 3, + [216046] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10117), 1, + ACTIONS(1417), 1, aux_sym__list_item_starts_with_sign_token1, STATE(5807), 1, sym_comment, - [215062] = 3, + [216056] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10119), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10230), 1, + anon_sym_DOT2, STATE(5808), 1, sym_comment, - [215072] = 3, + [216066] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10121), 1, - anon_sym_DOT2, + ACTIONS(10232), 1, + anon_sym_RPAREN, STATE(5809), 1, sym_comment, - [215082] = 3, + [216076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10123), 1, - anon_sym_DOT2, + ACTIONS(10234), 1, + aux_sym__immediate_decimal_token1, STATE(5810), 1, sym_comment, - [215092] = 3, + [216086] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10125), 1, + ACTIONS(10236), 1, anon_sym_DOT2, STATE(5811), 1, sym_comment, - [215102] = 3, + [216096] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10127), 1, + ACTIONS(10238), 1, aux_sym__immediate_decimal_token1, STATE(5812), 1, sym_comment, - [215112] = 3, + [216106] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10129), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10240), 1, + anon_sym_RBRACE, STATE(5813), 1, sym_comment, - [215122] = 3, + [216116] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10131), 1, - anon_sym_RBRACE, + ACTIONS(9426), 1, + aux_sym__immediate_decimal_token1, STATE(5814), 1, sym_comment, - [215132] = 3, + [216126] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10133), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10242), 1, + anon_sym_RPAREN, STATE(5815), 1, sym_comment, - [215142] = 3, + [216136] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10135), 1, - anon_sym_RPAREN, + ACTIONS(1282), 1, + aux_sym__immediate_decimal_token1, STATE(5816), 1, sym_comment, - [215152] = 3, - ACTIONS(105), 1, + [216146] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5783), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10244), 1, + anon_sym_RPAREN, STATE(5817), 1, sym_comment, - [215162] = 3, + [216156] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10137), 1, - anon_sym_DOT2, + ACTIONS(1267), 1, + aux_sym__immediate_decimal_token1, STATE(5818), 1, sym_comment, - [215172] = 3, - ACTIONS(3), 1, + [216166] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_DOT2, + ACTIONS(5216), 1, + aux_sym__unquoted_in_list_token5, STATE(5819), 1, sym_comment, - [215182] = 3, + [216176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6215), 1, - anon_sym_SEMI, + ACTIONS(10246), 1, + anon_sym_DOT2, STATE(5820), 1, sym_comment, - [215192] = 3, + [216186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10141), 1, - anon_sym_DOT2, + ACTIONS(10248), 1, + anon_sym_RPAREN, STATE(5821), 1, sym_comment, - [215202] = 3, + [216196] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10143), 1, - anon_sym_DOT2, + ACTIONS(10250), 1, + aux_sym__immediate_decimal_token1, STATE(5822), 1, sym_comment, - [215212] = 3, - ACTIONS(3), 1, + [216206] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10145), 1, - anon_sym_DOT2, + ACTIONS(10252), 1, + aux_sym_unquoted_token3, STATE(5823), 1, sym_comment, - [215222] = 3, + [216216] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10147), 1, - anon_sym_DOT2, + ACTIONS(10254), 1, + aux_sym__immediate_decimal_token1, STATE(5824), 1, sym_comment, - [215232] = 3, + [216226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10149), 1, - anon_sym_LBRACE, + ACTIONS(10256), 1, + aux_sym__immediate_decimal_token1, STATE(5825), 1, sym_comment, - [215242] = 3, + [216236] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10151), 1, - anon_sym_RBRACE, + ACTIONS(10258), 1, + anon_sym_DOT2, STATE(5826), 1, sym_comment, - [215252] = 3, + [216246] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10153), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10260), 1, + anon_sym_RPAREN, STATE(5827), 1, sym_comment, - [215262] = 3, + [216256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10155), 1, - anon_sym_RPAREN, + ACTIONS(10262), 1, + aux_sym__immediate_decimal_token1, STATE(5828), 1, sym_comment, - [215272] = 3, + [216266] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10157), 1, - sym_identifier, + ACTIONS(10264), 1, + anon_sym_DOT2, STATE(5829), 1, sym_comment, - [215282] = 3, + [216276] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10159), 1, - sym_identifier, + ACTIONS(10266), 1, + aux_sym__immediate_decimal_token1, STATE(5830), 1, sym_comment, - [215292] = 3, + [216286] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10161), 1, - sym__long_flag_identifier, + ACTIONS(10268), 1, + anon_sym_DOT2, STATE(5831), 1, sym_comment, - [215302] = 3, + [216296] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10163), 1, - aux_sym_param_short_flag_token1, + ACTIONS(10270), 1, + anon_sym_RPAREN, STATE(5832), 1, sym_comment, - [215312] = 3, + [216306] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10165), 1, - anon_sym_COLON, + ACTIONS(10272), 1, + aux_sym__immediate_decimal_token1, STATE(5833), 1, sym_comment, - [215322] = 3, + [216316] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10167), 1, - aux_sym_unquoted_token3, + ACTIONS(10274), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5834), 1, sym_comment, - [215332] = 3, + [216326] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10169), 1, - anon_sym_DOT2, + ACTIONS(10276), 1, + anon_sym_RPAREN, STATE(5835), 1, sym_comment, - [215342] = 3, + [216336] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10171), 1, - anon_sym_DOT2, + ACTIONS(10278), 1, + aux_sym__immediate_decimal_token1, STATE(5836), 1, sym_comment, - [215352] = 3, - ACTIONS(3), 1, + [216346] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10173), 1, - anon_sym_DOT2, + ACTIONS(10280), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5837), 1, sym_comment, - [215362] = 3, + [216356] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10175), 1, - anon_sym_DOT2, + ACTIONS(10282), 1, + anon_sym_RPAREN, STATE(5838), 1, sym_comment, - [215372] = 3, + [216366] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7777), 1, + ACTIONS(10284), 1, aux_sym__immediate_decimal_token1, STATE(5839), 1, sym_comment, - [215382] = 3, - ACTIONS(105), 1, + [216376] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10177), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10286), 1, + anon_sym_RBRACE, STATE(5840), 1, sym_comment, - [215392] = 3, + [216386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7791), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10288), 1, + anon_sym_RPAREN, STATE(5841), 1, sym_comment, - [215402] = 3, - ACTIONS(105), 1, + [216396] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10179), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10290), 1, + aux_sym__immediate_decimal_token1, STATE(5842), 1, sym_comment, - [215412] = 3, + [216406] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10181), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10292), 1, + anon_sym_RPAREN, STATE(5843), 1, sym_comment, - [215422] = 3, + [216416] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10183), 1, - anon_sym_RBRACE, + ACTIONS(10294), 1, + anon_sym_RPAREN, STATE(5844), 1, sym_comment, - [215432] = 3, + [216426] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1195), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10296), 1, + anon_sym_RPAREN, STATE(5845), 1, sym_comment, - [215442] = 3, + [216436] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9615), 1, - aux_sym_unquoted_token6, + ACTIONS(10298), 1, + anon_sym_RPAREN, STATE(5846), 1, sym_comment, - [215452] = 3, + [216446] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10185), 1, + ACTIONS(10300), 1, anon_sym_RPAREN, STATE(5847), 1, sym_comment, - [215462] = 3, + [216456] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10187), 1, - anon_sym_DOT2, + ACTIONS(10302), 1, + anon_sym_RPAREN, STATE(5848), 1, sym_comment, - [215472] = 3, + [216466] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10189), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10304), 1, + anon_sym_RPAREN, STATE(5849), 1, sym_comment, - [215482] = 3, + [216476] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5397), 1, + ACTIONS(2170), 1, aux_sym__list_item_starts_with_sign_token1, STATE(5850), 1, sym_comment, - [215492] = 3, + [216486] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10191), 1, + ACTIONS(10306), 1, anon_sym_DOT2, STATE(5851), 1, sym_comment, - [215502] = 3, + [216496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10193), 1, - anon_sym_RPAREN, + ACTIONS(10308), 1, + anon_sym_DOT2, STATE(5852), 1, sym_comment, - [215512] = 3, + [216506] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10195), 1, - anon_sym_DOT2, + ACTIONS(9902), 1, + anon_sym_make, STATE(5853), 1, sym_comment, - [215522] = 3, + [216516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10197), 1, + ACTIONS(10310), 1, anon_sym_RBRACE, STATE(5854), 1, sym_comment, - [215532] = 3, + [216526] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10199), 1, - anon_sym_RBRACE, + ACTIONS(10312), 1, + aux_sym__immediate_decimal_token1, STATE(5855), 1, sym_comment, - [215542] = 3, + [216536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1181), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10314), 1, + anon_sym_RPAREN, STATE(5856), 1, sym_comment, - [215552] = 3, + [216546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10201), 1, - anon_sym_RPAREN, + ACTIONS(10316), 1, + anon_sym_LBRACK2, STATE(5857), 1, sym_comment, - [215562] = 3, + [216556] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10203), 1, - anon_sym_COLON, + ACTIONS(1191), 1, + aux_sym__immediate_decimal_token1, STATE(5858), 1, sym_comment, - [215572] = 3, + [216566] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10205), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10318), 1, + anon_sym_in, STATE(5859), 1, sym_comment, - [215582] = 3, - ACTIONS(105), 1, + [216576] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10207), 1, - aux_sym_unquoted_token3, + ACTIONS(10320), 1, + anon_sym_RBRACE, STATE(5860), 1, sym_comment, - [215592] = 3, + [216586] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10209), 1, - anon_sym_DOT2, + ACTIONS(10322), 1, + sym_identifier, STATE(5861), 1, sym_comment, - [215602] = 3, + [216596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10211), 1, - anon_sym_DOT2, + ACTIONS(10324), 1, + sym_identifier, STATE(5862), 1, sym_comment, - [215612] = 3, + [216606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10213), 1, - sym_cmd_identifier, + ACTIONS(9906), 1, + aux_sym_unquoted_token6, STATE(5863), 1, sym_comment, - [215622] = 3, + [216616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10215), 1, - anon_sym_DOT2, + ACTIONS(10326), 1, + sym__long_flag_identifier, STATE(5864), 1, sym_comment, - [215632] = 3, + [216626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10217), 1, - anon_sym_DOT2, + ACTIONS(10328), 1, + aux_sym_param_short_flag_token1, STATE(5865), 1, sym_comment, - [215642] = 3, + [216636] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10219), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10330), 1, + anon_sym_RPAREN, STATE(5866), 1, sym_comment, - [215652] = 3, + [216646] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10221), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10332), 1, + aux_sym_unquoted_token3, STATE(5867), 1, sym_comment, - [215662] = 3, + [216656] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10223), 1, - anon_sym_RBRACE, + ACTIONS(10334), 1, + anon_sym_DOT2, STATE(5868), 1, sym_comment, - [215672] = 3, - ACTIONS(105), 1, + [216666] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10225), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10336), 1, + anon_sym_LBRACE, STATE(5869), 1, sym_comment, - [215682] = 3, + [216676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10227), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10338), 1, + anon_sym_LBRACE, STATE(5870), 1, sym_comment, - [215692] = 3, + [216686] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10229), 1, - anon_sym_DOT2, + ACTIONS(4144), 1, + anon_sym_COLON, STATE(5871), 1, sym_comment, - [215702] = 3, + [216696] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10231), 1, - anon_sym_RBRACE, + ACTIONS(10340), 1, + anon_sym_DOT2, STATE(5872), 1, sym_comment, - [215712] = 3, + [216706] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1049), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8224), 1, + anon_sym_LPAREN2, STATE(5873), 1, sym_comment, - [215722] = 3, + [216716] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10233), 1, - anon_sym_RPAREN, + ACTIONS(10342), 1, + anon_sym_DOT2, STATE(5874), 1, sym_comment, - [215732] = 3, + [216726] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10235), 1, + ACTIONS(10344), 1, anon_sym_DOT2, STATE(5875), 1, sym_comment, - [215742] = 3, - ACTIONS(105), 1, + [216736] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5521), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10346), 1, + anon_sym_DOT2, STATE(5876), 1, sym_comment, - [215752] = 3, + [216746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10237), 1, - anon_sym_LBRACK2, + ACTIONS(10348), 1, + aux_sym__immediate_decimal_token1, STATE(5877), 1, sym_comment, - [215762] = 3, - ACTIONS(3), 1, + [216756] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10239), 1, - anon_sym_DOT2, + ACTIONS(10350), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5878), 1, sym_comment, - [215772] = 3, + [216766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10241), 1, - anon_sym_DOT2, + ACTIONS(10352), 1, + aux_sym__immediate_decimal_token1, STATE(5879), 1, sym_comment, - [215782] = 3, - ACTIONS(3), 1, + [216776] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10243), 1, - anon_sym_DOT2, + ACTIONS(10354), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5880), 1, sym_comment, - [215792] = 3, + [216786] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_RPAREN, + ACTIONS(10356), 1, + aux_sym__immediate_decimal_token1, STATE(5881), 1, sym_comment, - [215802] = 3, + [216796] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10247), 1, - anon_sym_RPAREN, + ACTIONS(10358), 1, + anon_sym_RBRACE, STATE(5882), 1, sym_comment, - [215812] = 3, + [216806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1055), 1, + ACTIONS(10360), 1, aux_sym__immediate_decimal_token1, STATE(5883), 1, sym_comment, - [215822] = 3, + [216816] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10249), 1, - anon_sym_DOT2, + ACTIONS(10362), 1, + anon_sym_RPAREN, STATE(5884), 1, sym_comment, - [215832] = 3, - ACTIONS(3), 1, + [216826] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10251), 1, - anon_sym_DOT2, + ACTIONS(5550), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5885), 1, sym_comment, - [215842] = 3, + [216836] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10253), 1, + ACTIONS(10364), 1, anon_sym_DOT2, STATE(5886), 1, sym_comment, - [215852] = 3, + [216846] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10255), 1, - anon_sym_RPAREN, + ACTIONS(10366), 1, + anon_sym_DOT2, STATE(5887), 1, sym_comment, - [215862] = 3, - ACTIONS(105), 1, + [216856] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10257), 1, - aux_sym_unquoted_token3, + ACTIONS(10368), 1, + anon_sym_DOT2, STATE(5888), 1, sym_comment, - [215872] = 3, + [216866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10259), 1, + ACTIONS(10370), 1, anon_sym_DOT2, STATE(5889), 1, sym_comment, - [215882] = 3, + [216876] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10261), 1, + ACTIONS(10372), 1, anon_sym_DOT2, STATE(5890), 1, sym_comment, - [215892] = 3, + [216886] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10263), 1, - anon_sym_DOT2, + ACTIONS(10374), 1, + anon_sym_RBRACE, STATE(5891), 1, sym_comment, - [215902] = 3, + [216896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10265), 1, - anon_sym_DOT2, + ACTIONS(10376), 1, + aux_sym__immediate_decimal_token1, STATE(5892), 1, sym_comment, - [215912] = 3, + [216906] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10267), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10378), 1, + anon_sym_RPAREN, STATE(5893), 1, sym_comment, - [215922] = 3, - ACTIONS(105), 1, + [216916] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10269), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10380), 1, + anon_sym_COLON, STATE(5894), 1, sym_comment, - [215932] = 3, + [216926] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10271), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10382), 1, + anon_sym_LBRACE, STATE(5895), 1, sym_comment, - [215942] = 3, - ACTIONS(105), 1, + [216936] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10273), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10384), 1, + anon_sym_LBRACE, STATE(5896), 1, sym_comment, - [215952] = 3, + [216946] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10275), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(6346), 1, + anon_sym_SEMI, STATE(5897), 1, sym_comment, - [215962] = 3, + [216956] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10277), 1, - anon_sym_RBRACE, + ACTIONS(10386), 1, + anon_sym_DOT2, STATE(5898), 1, sym_comment, - [215972] = 3, + [216966] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10279), 1, - anon_sym_RBRACE, + ACTIONS(10388), 1, + anon_sym_DOT2, STATE(5899), 1, sym_comment, - [215982] = 3, + [216976] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10281), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10390), 1, + anon_sym_DOT2, STATE(5900), 1, sym_comment, - [215992] = 3, + [216986] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10283), 1, - anon_sym_RPAREN, + ACTIONS(10392), 1, + anon_sym_DOT2, STATE(5901), 1, sym_comment, - [216002] = 3, + [216996] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10285), 1, + ACTIONS(10394), 1, anon_sym_RBRACE, STATE(5902), 1, sym_comment, - [216012] = 3, - ACTIONS(105), 1, + [217006] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2532), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(4336), 1, + anon_sym_COLON, STATE(5903), 1, sym_comment, - [216022] = 3, - ACTIONS(3), 1, + [217016] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10287), 1, - anon_sym_DOT2, + ACTIONS(2906), 1, + aux_sym__unquoted_in_list_token3, STATE(5904), 1, sym_comment, - [216032] = 3, + [217026] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10289), 1, - anon_sym_DASH2, + ACTIONS(10396), 1, + anon_sym_RPAREN, STATE(5905), 1, sym_comment, - [216042] = 3, - ACTIONS(3), 1, + [217036] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10291), 1, - anon_sym_DOT2, + ACTIONS(10398), 1, + aux_sym_unquoted_token3, STATE(5906), 1, sym_comment, - [216052] = 3, + [217046] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10293), 1, - anon_sym_RBRACE, + ACTIONS(10400), 1, + anon_sym_DOT2, STATE(5907), 1, sym_comment, - [216062] = 3, + [217056] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10295), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10402), 1, + anon_sym_DOT2, STATE(5908), 1, sym_comment, - [216072] = 3, + [217066] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10297), 1, - anon_sym_LBRACK2, + ACTIONS(10404), 1, + anon_sym_DOT2, STATE(5909), 1, sym_comment, - [216082] = 3, + [217076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10299), 1, + ACTIONS(10406), 1, anon_sym_DOT2, STATE(5910), 1, sym_comment, - [216092] = 3, - ACTIONS(105), 1, + [217086] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10301), 1, - aux_sym_unquoted_token3, + ACTIONS(7952), 1, + aux_sym__immediate_decimal_token1, STATE(5911), 1, sym_comment, - [216102] = 3, - ACTIONS(3), 1, + [217096] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10303), 1, - anon_sym_DOT2, + ACTIONS(10408), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5912), 1, sym_comment, - [216112] = 3, + [217106] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10305), 1, - anon_sym_GT, + ACTIONS(7929), 1, + aux_sym__immediate_decimal_token1, STATE(5913), 1, sym_comment, - [216122] = 3, - ACTIONS(3), 1, + [217116] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10307), 1, - anon_sym_DOT2, + ACTIONS(10410), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5914), 1, sym_comment, - [216132] = 3, + [217126] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10309), 1, - anon_sym_DOT2, + ACTIONS(10412), 1, + aux_sym__immediate_decimal_token1, STATE(5915), 1, sym_comment, - [216142] = 3, + [217136] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10311), 1, - anon_sym_DOT2, + ACTIONS(10414), 1, + anon_sym_RBRACE, STATE(5916), 1, sym_comment, - [216152] = 3, + [217146] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10313), 1, - anon_sym_DOT2, + ACTIONS(10416), 1, + aux_sym__immediate_decimal_token1, STATE(5917), 1, sym_comment, - [216162] = 3, + [217156] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10315), 1, - anon_sym_DOT2, + ACTIONS(10418), 1, + anon_sym_RPAREN, STATE(5918), 1, sym_comment, - [216172] = 3, - ACTIONS(3), 1, + [217166] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10317), 1, - anon_sym_DOT2, + ACTIONS(5636), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5919), 1, sym_comment, - [216182] = 3, + [217176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10319), 1, + ACTIONS(10420), 1, anon_sym_DOT2, STATE(5920), 1, sym_comment, - [216192] = 3, + [217186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7769), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9860), 1, + aux_sym_unquoted_token6, STATE(5921), 1, sym_comment, - [216202] = 3, - ACTIONS(105), 1, + [217196] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10321), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10422), 1, + anon_sym_DOT2, STATE(5922), 1, sym_comment, - [216212] = 3, + [217206] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10323), 1, - anon_sym_EQ, + ACTIONS(10424), 1, + anon_sym_RBRACE, STATE(5923), 1, sym_comment, - [216222] = 3, + [217216] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7760), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10426), 1, + anon_sym_DOT2, STATE(5924), 1, sym_comment, - [216232] = 3, - ACTIONS(105), 1, + [217226] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9597), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(1145), 1, + aux_sym__immediate_decimal_token1, STATE(5925), 1, sym_comment, - [216242] = 3, + [217236] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10325), 1, + ACTIONS(1243), 1, aux_sym__immediate_decimal_token1, STATE(5926), 1, sym_comment, - [216252] = 3, + [217246] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10327), 1, - anon_sym_RBRACE, + ACTIONS(10428), 1, + anon_sym_RPAREN, STATE(5927), 1, sym_comment, - [216262] = 3, + [217256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10329), 1, - anon_sym_RBRACE, + ACTIONS(10430), 1, + anon_sym_RPAREN, STATE(5928), 1, sym_comment, - [216272] = 3, + [217266] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10432), 1, + anon_sym_RPAREN, STATE(5929), 1, sym_comment, - [216282] = 3, + [217276] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10331), 1, + ACTIONS(10434), 1, anon_sym_RPAREN, STATE(5930), 1, sym_comment, - [216292] = 3, + [217286] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9669), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10436), 1, + aux_sym_unquoted_token3, STATE(5931), 1, sym_comment, - [216302] = 3, + [217296] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10333), 1, - anon_sym_LBRACK2, + ACTIONS(10438), 1, + anon_sym_DOT2, STATE(5932), 1, sym_comment, - [216312] = 3, + [217306] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10335), 1, - anon_sym_RBRACE, + ACTIONS(10440), 1, + anon_sym_DOT2, STATE(5933), 1, sym_comment, - [216322] = 3, - ACTIONS(105), 1, + [217316] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4775), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10442), 1, + anon_sym_DOT2, STATE(5934), 1, sym_comment, - [216332] = 3, + [217326] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10337), 1, + ACTIONS(10444), 1, anon_sym_DOT2, STATE(5935), 1, sym_comment, - [216342] = 3, - ACTIONS(105), 1, + [217336] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(10446), 1, + aux_sym__immediate_decimal_token1, STATE(5936), 1, sym_comment, - [216352] = 3, + [217346] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10339), 1, - anon_sym_DOT2, + ACTIONS(10448), 1, + sym_cmd_identifier, STATE(5937), 1, sym_comment, - [216362] = 3, - ACTIONS(3), 1, + [217356] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10341), 1, - anon_sym_DOT2, + ACTIONS(10450), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5938), 1, sym_comment, - [216372] = 3, + [217366] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10343), 1, - anon_sym_DOT2, + ACTIONS(10452), 1, + aux_sym__immediate_decimal_token1, STATE(5939), 1, sym_comment, - [216382] = 3, - ACTIONS(3), 1, + [217376] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10345), 1, - anon_sym_DOT2, + ACTIONS(10454), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5940), 1, sym_comment, - [216392] = 3, + [217386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10347), 1, - anon_sym_DOT2, + ACTIONS(10456), 1, + aux_sym__immediate_decimal_token1, STATE(5941), 1, sym_comment, - [216402] = 3, + [217396] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10349), 1, - anon_sym_DOT2, + ACTIONS(10458), 1, + anon_sym_RBRACE, STATE(5942), 1, sym_comment, - [216412] = 3, + [217406] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10351), 1, - anon_sym_LBRACK2, + ACTIONS(1033), 1, + aux_sym__immediate_decimal_token1, STATE(5943), 1, sym_comment, - [216422] = 3, + [217416] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10353), 1, - anon_sym_RBRACE, + ACTIONS(10460), 1, + anon_sym_RPAREN, STATE(5944), 1, sym_comment, - [216432] = 3, - ACTIONS(3), 1, + [217426] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8893), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2530), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5945), 1, sym_comment, - [216442] = 3, + [217436] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10355), 1, + ACTIONS(10462), 1, anon_sym_DOT2, STATE(5946), 1, sym_comment, - [216452] = 3, + [217446] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10357), 1, - anon_sym_RPAREN, + ACTIONS(10464), 1, + anon_sym_DOT2, STATE(5947), 1, sym_comment, - [216462] = 3, - ACTIONS(105), 1, + [217456] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9677), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(10466), 1, + anon_sym_RBRACE, STATE(5948), 1, sym_comment, - [216472] = 3, + [217466] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10359), 1, - anon_sym_DOT2, + ACTIONS(1037), 1, + aux_sym__immediate_decimal_token1, STATE(5949), 1, sym_comment, - [216482] = 3, + [217476] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10361), 1, + ACTIONS(10468), 1, anon_sym_DOT2, STATE(5950), 1, sym_comment, - [216492] = 3, - ACTIONS(3), 1, + [217486] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10363), 1, - anon_sym_DOT2, + ACTIONS(10470), 1, + aux_sym_unquoted_token3, STATE(5951), 1, sym_comment, - [216502] = 3, + [217496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10365), 1, - anon_sym_RBRACK, + ACTIONS(10472), 1, + anon_sym_DOT2, STATE(5952), 1, sym_comment, - [216512] = 3, + [217506] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_LBRACK2, + ACTIONS(3273), 1, + anon_sym_in, STATE(5953), 1, sym_comment, - [216522] = 3, + [217516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10369), 1, - anon_sym_EQ, + ACTIONS(10474), 1, + anon_sym_LBRACK2, STATE(5954), 1, sym_comment, - [216532] = 3, + [217526] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10371), 1, - anon_sym_EQ, + ACTIONS(10476), 1, + anon_sym_RBRACE, STATE(5955), 1, sym_comment, - [216542] = 3, + [217536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10373), 1, + ACTIONS(10478), 1, anon_sym_DOT2, STATE(5956), 1, sym_comment, - [216552] = 3, + [217546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10375), 1, - anon_sym_catch, + ACTIONS(10480), 1, + anon_sym_DOT2, STATE(5957), 1, sym_comment, - [216562] = 3, + [217556] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10377), 1, - anon_sym_SEMI, + ACTIONS(10482), 1, + anon_sym_DOT2, STATE(5958), 1, sym_comment, - [216572] = 3, + [217566] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10379), 1, + ACTIONS(10484), 1, anon_sym_DOT2, STATE(5959), 1, sym_comment, - [216582] = 3, + [217576] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10381), 1, - anon_sym_DOT2, + ACTIONS(10486), 1, + aux_sym__immediate_decimal_token1, STATE(5960), 1, sym_comment, - [216592] = 3, + [217586] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10383), 1, + ACTIONS(10488), 1, anon_sym_DOT2, STATE(5961), 1, sym_comment, - [216602] = 3, + [217596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10385), 1, - anon_sym_in, + ACTIONS(10490), 1, + anon_sym_DOT2, STATE(5962), 1, sym_comment, - [216612] = 3, + [217606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10387), 1, - anon_sym_LBRACK2, + ACTIONS(10492), 1, + anon_sym_DOT2, STATE(5963), 1, sym_comment, - [216622] = 3, - ACTIONS(3), 1, + [217616] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4888), 1, - anon_sym_RBRACE, + ACTIONS(10494), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5964), 1, sym_comment, - [216632] = 3, + [217626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(563), 1, - ts_builtin_sym_end, + ACTIONS(10496), 1, + aux_sym__immediate_decimal_token1, STATE(5965), 1, sym_comment, - [216642] = 3, - ACTIONS(3), 1, + [217636] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10389), 1, - anon_sym_DOT2, + ACTIONS(9848), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5966), 1, sym_comment, - [216652] = 3, + [217646] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10391), 1, - anon_sym_EQ_GT, + ACTIONS(10498), 1, + aux_sym__immediate_decimal_token1, STATE(5967), 1, sym_comment, - [216662] = 3, + [217656] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9629), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10500), 1, + anon_sym_RBRACE, STATE(5968), 1, sym_comment, - [216672] = 3, + [217666] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10393), 1, - anon_sym_DOT2, + ACTIONS(10502), 1, + anon_sym_RBRACE, STATE(5969), 1, sym_comment, - [216682] = 3, + [217676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10395), 1, - anon_sym_DOT2, + ACTIONS(10504), 1, + aux_sym__immediate_decimal_token1, STATE(5970), 1, sym_comment, - [216692] = 3, + [217686] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10397), 1, - anon_sym_DOT2, + ACTIONS(10506), 1, + anon_sym_RPAREN, STATE(5971), 1, sym_comment, - [216702] = 3, + [217696] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10399), 1, - anon_sym_EQ_GT, + ACTIONS(10508), 1, + anon_sym_RBRACE, STATE(5972), 1, sym_comment, - [216712] = 3, - ACTIONS(3), 1, + [217706] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10401), 1, - anon_sym_LBRACK2, + ACTIONS(4924), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5973), 1, sym_comment, - [216722] = 3, + [217716] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10403), 1, - anon_sym_RBRACK, + ACTIONS(10510), 1, + anon_sym_DOT2, STATE(5974), 1, sym_comment, - [216732] = 3, - ACTIONS(105), 1, + [217726] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10405), 1, - aux_sym_comment_token1, + ACTIONS(10512), 1, + anon_sym_DOT2, STATE(5975), 1, sym_comment, - [216742] = 3, + [217736] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10407), 1, - anon_sym_DOT2, + ACTIONS(10514), 1, + anon_sym_RBRACE, STATE(5976), 1, sym_comment, - [216752] = 3, + [217746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4874), 1, - anon_sym_RBRACE, + ACTIONS(10516), 1, + aux_sym__immediate_decimal_token1, STATE(5977), 1, sym_comment, - [216762] = 3, + [217756] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10409), 1, - ts_builtin_sym_end, + ACTIONS(10518), 1, + anon_sym_RPAREN, STATE(5978), 1, sym_comment, - [216772] = 3, + [217766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10411), 1, - anon_sym_DOT2, + ACTIONS(9856), 1, + aux_sym__immediate_decimal_token1, STATE(5979), 1, sym_comment, - [216782] = 3, - ACTIONS(3), 1, + [217776] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10413), 1, - anon_sym_DOT2, + ACTIONS(10520), 1, + aux_sym_unquoted_token3, STATE(5980), 1, sym_comment, - [216792] = 3, + [217786] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10415), 1, - anon_sym_DOT2, + ACTIONS(10522), 1, + anon_sym_DASH2, STATE(5981), 1, sym_comment, - [216802] = 3, - ACTIONS(105), 1, + [217796] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10417), 1, - aux_sym_unquoted_token3, + ACTIONS(10524), 1, + anon_sym_GT, STATE(5982), 1, sym_comment, - [216812] = 3, + [217806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10419), 1, - anon_sym_LBRACK2, + ACTIONS(10526), 1, + anon_sym_DOT2, STATE(5983), 1, sym_comment, - [216822] = 3, + [217816] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10421), 1, - anon_sym_GT, + ACTIONS(10528), 1, + anon_sym_LBRACK2, STATE(5984), 1, sym_comment, - [216832] = 3, + [217826] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, - sym_cmd_identifier, + ACTIONS(10530), 1, + anon_sym_DOT2, STATE(5985), 1, sym_comment, - [216842] = 3, + [217836] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10425), 1, + ACTIONS(10532), 1, anon_sym_DOT2, STATE(5986), 1, sym_comment, - [216852] = 3, + [217846] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10427), 1, + ACTIONS(10534), 1, anon_sym_DOT2, STATE(5987), 1, sym_comment, - [216862] = 3, + [217856] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10429), 1, + ACTIONS(10536), 1, anon_sym_DOT2, STATE(5988), 1, sym_comment, - [216872] = 3, + [217866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10431), 1, - anon_sym_DOT2, + ACTIONS(7962), 1, + aux_sym__immediate_decimal_token1, STATE(5989), 1, sym_comment, - [216882] = 3, - ACTIONS(3), 1, + [217876] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10433), 1, - anon_sym_DOT2, + ACTIONS(10538), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5990), 1, sym_comment, - [216892] = 3, + [217886] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10435), 1, + ACTIONS(10540), 1, anon_sym_DOT2, STATE(5991), 1, sym_comment, - [216902] = 3, + [217896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10437), 1, + ACTIONS(10542), 1, anon_sym_DOT2, STATE(5992), 1, sym_comment, - [216912] = 3, + [217906] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10439), 1, - anon_sym_LBRACK2, + ACTIONS(10544), 1, + anon_sym_DOT2, STATE(5993), 1, sym_comment, - [216922] = 3, + [217916] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10441), 1, - anon_sym_DOT2, + ACTIONS(7916), 1, + aux_sym__immediate_decimal_token1, STATE(5994), 1, sym_comment, - [216932] = 3, - ACTIONS(3), 1, + [217926] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9820), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(5995), 1, sym_comment, - [216942] = 3, + [217936] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10443), 1, - anon_sym_DOT2, + ACTIONS(10546), 1, + aux_sym__immediate_decimal_token1, STATE(5996), 1, sym_comment, - [216952] = 3, + [217946] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10445), 1, - anon_sym_RBRACE, + ACTIONS(10548), 1, + anon_sym_EQ, STATE(5997), 1, sym_comment, - [216962] = 3, + [217956] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10447), 1, - anon_sym_RBRACK, + ACTIONS(10550), 1, + anon_sym_RBRACE, STATE(5998), 1, sym_comment, - [216972] = 3, + [217966] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10449), 1, - anon_sym_DOT2, + ACTIONS(10552), 1, + anon_sym_RBRACE, STATE(5999), 1, sym_comment, - [216982] = 3, + [217976] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10451), 1, - anon_sym_DOT2, + ACTIONS(9291), 1, + aux_sym__immediate_decimal_token1, STATE(6000), 1, sym_comment, - [216992] = 3, + [217986] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10453), 1, - anon_sym_DOT2, + ACTIONS(10554), 1, + anon_sym_RPAREN, STATE(6001), 1, sym_comment, - [217002] = 3, + [217996] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_DASH_GT, + ACTIONS(10556), 1, + anon_sym_EQ_GT, STATE(6002), 1, sym_comment, - [217012] = 3, - ACTIONS(3), 1, + [218006] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10457), 1, - anon_sym_LBRACK2, + ACTIONS(5959), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(6003), 1, sym_comment, - [217022] = 3, - ACTIONS(105), 1, + [218016] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10459), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10558), 1, + anon_sym_DOT2, STATE(6004), 1, sym_comment, - [217032] = 3, + [218026] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10461), 1, + ACTIONS(10560), 1, anon_sym_DOT2, STATE(6005), 1, sym_comment, - [217042] = 3, + [218036] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10463), 1, - anon_sym_LBRACK2, + ACTIONS(10562), 1, + anon_sym_RBRACE, STATE(6006), 1, sym_comment, - [217052] = 3, + [218046] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8152), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10564), 1, + anon_sym_LBRACK2, STATE(6007), 1, sym_comment, - [217062] = 3, + [218056] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10465), 1, - anon_sym_DOT2, + ACTIONS(9235), 1, + aux_sym__immediate_decimal_token1, STATE(6008), 1, sym_comment, - [217072] = 3, - ACTIONS(3), 1, + [218066] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10467), 1, - anon_sym_DOT2, + ACTIONS(9842), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(6009), 1, sym_comment, - [217082] = 3, - ACTIONS(3), 1, + [218076] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10469), 1, - anon_sym_DOT2, + ACTIONS(10566), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(6010), 1, sym_comment, - [217092] = 3, + [218086] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10471), 1, - anon_sym_RPAREN, + ACTIONS(10568), 1, + anon_sym_DOT2, STATE(6011), 1, sym_comment, - [217102] = 3, + [218096] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10473), 1, - anon_sym_LBRACK2, + ACTIONS(10570), 1, + anon_sym_DOT2, STATE(6012), 1, sym_comment, - [217112] = 3, - ACTIONS(105), 1, + [218106] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10475), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10572), 1, + anon_sym_RBRACK, STATE(6013), 1, sym_comment, - [217122] = 3, + [218116] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10477), 1, + ACTIONS(10574), 1, anon_sym_DOT2, STATE(6014), 1, sym_comment, - [217132] = 3, + [218126] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10479), 1, - anon_sym_RPAREN, + ACTIONS(10576), 1, + anon_sym_DOT2, STATE(6015), 1, sym_comment, - [217142] = 3, + [218136] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10481), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10578), 1, + anon_sym_DOT2, STATE(6016), 1, sym_comment, - [217152] = 3, + [218146] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10483), 1, - anon_sym_DOT2, + ACTIONS(10580), 1, + anon_sym_RBRACE, STATE(6017), 1, sym_comment, - [217162] = 3, + [218156] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10485), 1, - anon_sym_DOT2, + ACTIONS(10582), 1, + anon_sym_LBRACK2, STATE(6018), 1, sym_comment, - [217172] = 3, + [218166] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10487), 1, - anon_sym_DOT2, + ACTIONS(10584), 1, + sym_identifier, STATE(6019), 1, sym_comment, - [217182] = 3, + [218176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10489), 1, - anon_sym_RBRACE, + ACTIONS(10586), 1, + anon_sym_LBRACE, STATE(6020), 1, sym_comment, - [217192] = 3, + [218186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10491), 1, + ACTIONS(10588), 1, anon_sym_DOT2, STATE(6021), 1, sym_comment, - [217202] = 3, - ACTIONS(3), 1, + [218196] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10493), 1, - anon_sym_RBRACE, + ACTIONS(9818), 1, + aux_sym__unquoted_in_list_token5, STATE(6022), 1, sym_comment, - [217212] = 3, + [218206] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10495), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10590), 1, + anon_sym_DOT2, STATE(6023), 1, sym_comment, - [217222] = 3, + [218216] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10497), 1, + ACTIONS(10592), 1, anon_sym_DOT2, STATE(6024), 1, sym_comment, - [217232] = 3, + [218226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10499), 1, + ACTIONS(10594), 1, anon_sym_DOT2, STATE(6025), 1, sym_comment, - [217242] = 3, + [218236] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10501), 1, + ACTIONS(10596), 1, anon_sym_DOT2, STATE(6026), 1, sym_comment, - [217252] = 3, + [218246] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10503), 1, - anon_sym_RPAREN, + ACTIONS(10598), 1, + anon_sym_EQ, STATE(6027), 1, sym_comment, - [217262] = 3, + [218256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10505), 1, - anon_sym_DOT2, + ACTIONS(10600), 1, + anon_sym_LBRACK2, STATE(6028), 1, sym_comment, - [217272] = 3, + [218266] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10507), 1, - anon_sym_RBRACE, + ACTIONS(10602), 1, + anon_sym_EQ, STATE(6029), 1, sym_comment, - [217282] = 3, - ACTIONS(105), 1, + [218276] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2675), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10604), 1, + anon_sym_catch, STATE(6030), 1, sym_comment, - [217292] = 3, + [218286] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10509), 1, + ACTIONS(10606), 1, anon_sym_DOT2, STATE(6031), 1, sym_comment, - [217302] = 3, + [218296] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10511), 1, + ACTIONS(10608), 1, anon_sym_DOT2, STATE(6032), 1, sym_comment, - [217312] = 3, + [218306] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10513), 1, - anon_sym_DOT2, + ACTIONS(585), 1, + ts_builtin_sym_end, STATE(6033), 1, sym_comment, - [217322] = 3, + [218316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10515), 1, + ACTIONS(10610), 1, anon_sym_DOT2, STATE(6034), 1, sym_comment, - [217332] = 3, + [218326] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10517), 1, - anon_sym_EQ, + ACTIONS(10612), 1, + anon_sym_DOT2, STATE(6035), 1, sym_comment, - [217342] = 3, + [218336] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10519), 1, + ACTIONS(10614), 1, anon_sym_DOT2, STATE(6036), 1, sym_comment, - [217352] = 3, + [218346] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10521), 1, - anon_sym_DOT2, + ACTIONS(10616), 1, + anon_sym_RBRACK, STATE(6037), 1, sym_comment, - [217362] = 3, + [218356] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10523), 1, - anon_sym_DOT2, + ACTIONS(10618), 1, + anon_sym_LBRACK2, STATE(6038), 1, sym_comment, - [217372] = 3, + [218366] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10525), 1, - anon_sym_DOT2, + ACTIONS(10620), 1, + anon_sym_RBRACK, STATE(6039), 1, sym_comment, - [217382] = 3, + [218376] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10527), 1, - anon_sym_EQ, + ACTIONS(10622), 1, + anon_sym_SEMI, STATE(6040), 1, sym_comment, - [217392] = 3, + [218386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10529), 1, + ACTIONS(10624), 1, anon_sym_DOT2, STATE(6041), 1, sym_comment, - [217402] = 3, + [218396] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10531), 1, - anon_sym_DOT2, + ACTIONS(10626), 1, + anon_sym_in, STATE(6042), 1, sym_comment, - [217412] = 3, + [218406] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10533), 1, - anon_sym_DOT2, + ACTIONS(10628), 1, + anon_sym_EQ, STATE(6043), 1, sym_comment, - [217422] = 3, + [218416] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10535), 1, + ACTIONS(10630), 1, anon_sym_DOT2, STATE(6044), 1, sym_comment, - [217432] = 3, + [218426] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10537), 1, + ACTIONS(10632), 1, anon_sym_DOT2, STATE(6045), 1, sym_comment, - [217442] = 3, + [218436] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10539), 1, - anon_sym_RBRACE, + ACTIONS(10634), 1, + anon_sym_DOT2, STATE(6046), 1, sym_comment, - [217452] = 3, + [218446] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10541), 1, - anon_sym_DOT2, + ACTIONS(10636), 1, + anon_sym_EQ, STATE(6047), 1, sym_comment, - [217462] = 3, + [218456] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10543), 1, - anon_sym_DOT2, + ACTIONS(10638), 1, + anon_sym_LBRACK2, STATE(6048), 1, sym_comment, - [217472] = 3, + [218466] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10545), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10640), 1, + anon_sym_EQ_GT, STATE(6049), 1, sym_comment, - [217482] = 3, - ACTIONS(3), 1, + [218476] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10547), 1, - anon_sym_DOT2, + ACTIONS(10642), 1, + aux_sym_comment_token1, STATE(6050), 1, sym_comment, - [217492] = 3, + [218486] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10549), 1, + ACTIONS(10644), 1, anon_sym_DOT2, STATE(6051), 1, sym_comment, - [217502] = 3, + [218496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10551), 1, - anon_sym_DOT2, + ACTIONS(10646), 1, + ts_builtin_sym_end, STATE(6052), 1, sym_comment, - [217512] = 3, + [218506] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10553), 1, - anon_sym_DOT2, + ACTIONS(10648), 1, + sym_cmd_identifier, STATE(6053), 1, sym_comment, - [217522] = 3, + [218516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10650), 1, anon_sym_DOT2, STATE(6054), 1, sym_comment, - [217532] = 3, + [218526] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10557), 1, - anon_sym_EQ, + ACTIONS(10652), 1, + anon_sym_DOT2, STATE(6055), 1, sym_comment, - [217542] = 3, + [218536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10559), 1, + ACTIONS(10654), 1, anon_sym_DOT2, STATE(6056), 1, sym_comment, - [217552] = 3, + [218546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10561), 1, - sym_cmd_identifier, + ACTIONS(4878), 1, + anon_sym_RBRACE, STATE(6057), 1, sym_comment, - [217562] = 3, + [218556] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10563), 1, - anon_sym_DOT2, + ACTIONS(10656), 1, + anon_sym_LBRACK2, STATE(6058), 1, sym_comment, - [217572] = 3, + [218566] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7882), 1, + ACTIONS(10658), 1, aux_sym__immediate_decimal_token1, STATE(6059), 1, sym_comment, - [217582] = 3, - ACTIONS(3), 1, + [218576] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10565), 1, - anon_sym_DOT2, + ACTIONS(10660), 1, + aux_sym__unquoted_in_list_token3, STATE(6060), 1, sym_comment, - [217592] = 3, + [218586] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10567), 1, + ACTIONS(10662), 1, anon_sym_DOT2, STATE(6061), 1, sym_comment, - [217602] = 3, + [218596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10569), 1, - anon_sym_DOT2, + ACTIONS(10664), 1, + anon_sym_LBRACE, STATE(6062), 1, sym_comment, - [217612] = 3, - ACTIONS(3), 1, + [218606] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10571), 1, - anon_sym_DOT2, + ACTIONS(10666), 1, + aux_sym_unquoted_token3, STATE(6063), 1, sym_comment, - [217622] = 3, + [218616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10573), 1, + ACTIONS(10668), 1, anon_sym_DOT2, STATE(6064), 1, sym_comment, - [217632] = 3, + [218626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10575), 1, - anon_sym_make, + ACTIONS(10670), 1, + anon_sym_DOT2, STATE(6065), 1, sym_comment, - [217642] = 3, + [218636] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10577), 1, + ACTIONS(10672), 1, anon_sym_DOT2, STATE(6066), 1, sym_comment, - [217652] = 3, + [218646] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10579), 1, - anon_sym_RPAREN, + ACTIONS(10674), 1, + anon_sym_GT, STATE(6067), 1, sym_comment, - [217662] = 3, + [218656] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10581), 1, - anon_sym_DOT2, + ACTIONS(10676), 1, + anon_sym_LBRACK2, STATE(6068), 1, sym_comment, - [217672] = 3, - ACTIONS(3), 1, + [218666] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10583), 1, - anon_sym_EQ, + ACTIONS(2984), 1, + aux_sym_unquoted_token3, STATE(6069), 1, sym_comment, - [217682] = 3, - ACTIONS(105), 1, + [218676] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10585), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(10678), 1, + anon_sym_EQ, STATE(6070), 1, sym_comment, - [217692] = 3, + [218686] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10587), 1, - anon_sym_LBRACE, + ACTIONS(10680), 1, + anon_sym_DOT2, STATE(6071), 1, sym_comment, - [217702] = 3, + [218696] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10587), 1, - anon_sym_LBRACE, + ACTIONS(10682), 1, + anon_sym_EQ, STATE(6072), 1, sym_comment, - [217712] = 3, + [218706] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10589), 1, - anon_sym_DASH_GT, + ACTIONS(10684), 1, + anon_sym_LBRACK2, STATE(6073), 1, sym_comment, - [217722] = 3, - ACTIONS(105), 1, + [218716] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10591), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(10686), 1, + anon_sym_DOT2, STATE(6074), 1, sym_comment, - [217732] = 3, + [218726] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10593), 1, - anon_sym_else, + ACTIONS(10688), 1, + anon_sym_DOT2, STATE(6075), 1, sym_comment, - [217742] = 3, + [218736] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10595), 1, - anon_sym_EQ, + ACTIONS(10690), 1, + anon_sym_DOT2, STATE(6076), 1, sym_comment, - [217752] = 3, + [218746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_SEMI, + ACTIONS(10692), 1, + anon_sym_DOT2, STATE(6077), 1, sym_comment, - [217762] = 3, + [218756] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10599), 1, - anon_sym_RBRACK, + ACTIONS(10694), 1, + anon_sym_LBRACK2, STATE(6078), 1, sym_comment, - [217772] = 3, + [218766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6271), 1, - anon_sym_SEMI, + ACTIONS(10696), 1, + anon_sym_DOT2, STATE(6079), 1, sym_comment, - [217782] = 3, + [218776] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10601), 1, - anon_sym_in, + ACTIONS(10698), 1, + anon_sym_DOT2, STATE(6080), 1, sym_comment, - [217792] = 3, + [218786] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9267), 1, - anon_sym_EQ_GT, + ACTIONS(10700), 1, + anon_sym_RPAREN, STATE(6081), 1, sym_comment, - [217802] = 3, + [218796] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10603), 1, - anon_sym_RBRACE, + ACTIONS(10702), 1, + anon_sym_DOT2, STATE(6082), 1, sym_comment, - [217812] = 3, + [218806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7918), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10704), 1, + anon_sym_DOT2, STATE(6083), 1, sym_comment, - [217822] = 3, + [218816] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10605), 1, - anon_sym_RBRACK, + ACTIONS(10706), 1, + anon_sym_DOT2, STATE(6084), 1, sym_comment, - [217832] = 3, + [218826] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10607), 1, + ACTIONS(10708), 1, anon_sym_DOT2, STATE(6085), 1, sym_comment, - [217842] = 3, + [218836] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10609), 1, - anon_sym_DOT2, + ACTIONS(10710), 1, + anon_sym_RBRACK, STATE(6086), 1, sym_comment, - [217852] = 3, + [218846] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10611), 1, - anon_sym_in, + ACTIONS(10712), 1, + anon_sym_LBRACK2, STATE(6087), 1, sym_comment, - [217862] = 3, + [218856] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10613), 1, - anon_sym_DOT2, + ACTIONS(10714), 1, + anon_sym_RBRACK, STATE(6088), 1, sym_comment, - [217872] = 3, + [218866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10615), 1, + ACTIONS(10716), 1, anon_sym_DOT2, STATE(6089), 1, sym_comment, - [217882] = 3, - ACTIONS(3), 1, + [218876] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10617), 1, - anon_sym_DOT2, + ACTIONS(10718), 1, + aux_sym_unquoted_token3, STATE(6090), 1, sym_comment, - [217892] = 3, + [218886] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10619), 1, - anon_sym_EQ, + ACTIONS(10720), 1, + anon_sym_GT, STATE(6091), 1, sym_comment, - [217902] = 3, + [218896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10621), 1, - anon_sym_EQ, + ACTIONS(10722), 1, + anon_sym_DOT2, STATE(6092), 1, sym_comment, - [217912] = 3, + [218906] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10623), 1, - anon_sym_GT, + ACTIONS(10724), 1, + anon_sym_DOT2, STATE(6093), 1, sym_comment, - [217922] = 3, + [218916] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10625), 1, - anon_sym_LBRACE, + ACTIONS(10726), 1, + anon_sym_DOT2, STATE(6094), 1, sym_comment, - [217932] = 3, - ACTIONS(105), 1, + [218926] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10627), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(10728), 1, + anon_sym_DOT2, STATE(6095), 1, sym_comment, - [217942] = 3, + [218936] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10629), 1, - anon_sym_EQ, + ACTIONS(10730), 1, + anon_sym_DOT2, STATE(6096), 1, sym_comment, - [217952] = 3, + [218946] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10631), 1, - anon_sym_EQ, + ACTIONS(10732), 1, + anon_sym_DOT2, STATE(6097), 1, sym_comment, - [217962] = 3, - ACTIONS(105), 1, + [218956] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10633), 1, - aux_sym_unquoted_token3, + ACTIONS(10734), 1, + anon_sym_DOT2, STATE(6098), 1, sym_comment, - [217972] = 3, + [218966] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10635), 1, - anon_sym_RBRACK, + ACTIONS(10736), 1, + anon_sym_DOT2, STATE(6099), 1, sym_comment, - [217982] = 3, - ACTIONS(105), 1, + [218976] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10637), 1, - aux_sym_shebang_token1, + ACTIONS(10738), 1, + anon_sym_DOT2, STATE(6100), 1, sym_comment, - [217992] = 3, + [218986] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10639), 1, - anon_sym_RBRACE, + ACTIONS(10740), 1, + anon_sym_DOT2, STATE(6101), 1, sym_comment, - [218002] = 3, + [218996] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10641), 1, - anon_sym_EQ_GT, + ACTIONS(10742), 1, + anon_sym_DOT2, STATE(6102), 1, sym_comment, - [218012] = 3, + [219006] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, - anon_sym_LPAREN2, + ACTIONS(10744), 1, + anon_sym_DOT2, STATE(6103), 1, sym_comment, - [218022] = 3, + [219016] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10643), 1, - anon_sym_DOT2, + ACTIONS(8300), 1, + aux_sym__immediate_decimal_token1, STATE(6104), 1, sym_comment, - [218032] = 3, + [219026] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10645), 1, - anon_sym_LBRACE, + ACTIONS(10746), 1, + anon_sym_RBRACE, STATE(6105), 1, sym_comment, - [218042] = 3, + [219036] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10647), 1, - sym_identifier, + ACTIONS(10748), 1, + anon_sym_DOT2, STATE(6106), 1, sym_comment, - [218052] = 3, + [219046] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_LPAREN2, + ACTIONS(10750), 1, + anon_sym_DOT2, STATE(6107), 1, sym_comment, - [218062] = 3, + [219056] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10649), 1, + ACTIONS(10752), 1, anon_sym_DOT2, STATE(6108), 1, sym_comment, - [218072] = 3, + [219066] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, - anon_sym_LPAREN2, + ACTIONS(10754), 1, + anon_sym_DOT2, STATE(6109), 1, sym_comment, - [218082] = 3, + [219076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10651), 1, - anon_sym_DOT2, + ACTIONS(10756), 1, + anon_sym_RBRACE, STATE(6110), 1, sym_comment, - [218092] = 3, + [219086] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9062), 1, - anon_sym_LPAREN2, + ACTIONS(10758), 1, + anon_sym_DOT2, STATE(6111), 1, sym_comment, - [218102] = 3, + [219096] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10653), 1, + ACTIONS(10760), 1, anon_sym_DOT2, STATE(6112), 1, sym_comment, - [218112] = 3, + [219106] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8657), 1, - anon_sym_LPAREN2, + ACTIONS(10762), 1, + anon_sym_RBRACK, STATE(6113), 1, sym_comment, - [218122] = 3, + [219116] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(10764), 1, anon_sym_DOT2, STATE(6114), 1, sym_comment, - [218132] = 3, + [219126] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8791), 1, - anon_sym_LPAREN2, + ACTIONS(10766), 1, + anon_sym_DOT2, STATE(6115), 1, sym_comment, - [218142] = 3, + [219136] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10657), 1, - anon_sym_DOT2, + ACTIONS(10768), 1, + anon_sym_DASH_GT, STATE(6116), 1, sym_comment, - [218152] = 3, + [219146] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_LPAREN2, + ACTIONS(10770), 1, + anon_sym_DOT2, STATE(6117), 1, sym_comment, - [218162] = 3, + [219156] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10659), 1, + ACTIONS(10772), 1, anon_sym_DOT2, STATE(6118), 1, sym_comment, - [218172] = 3, - ACTIONS(3), 1, + [219166] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8771), 1, - anon_sym_LPAREN2, + ACTIONS(10774), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(6119), 1, sym_comment, - [218182] = 3, + [219176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10661), 1, + ACTIONS(10776), 1, anon_sym_DOT2, STATE(6120), 1, sym_comment, - [218192] = 3, + [219186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10663), 1, + ACTIONS(10778), 1, anon_sym_DOT2, STATE(6121), 1, sym_comment, - [218202] = 3, + [219196] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10665), 1, - anon_sym_DOT2, + ACTIONS(8254), 1, + aux_sym__immediate_decimal_token1, STATE(6122), 1, sym_comment, - [218212] = 3, + [219206] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10667), 1, + ACTIONS(10780), 1, anon_sym_DOT2, STATE(6123), 1, sym_comment, - [218222] = 3, + [219216] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10669), 1, + ACTIONS(10782), 1, anon_sym_DOT2, STATE(6124), 1, sym_comment, - [218232] = 3, + [219226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9593), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(4894), 1, + anon_sym_RBRACE, STATE(6125), 1, sym_comment, - [218242] = 3, + [219236] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10671), 1, - anon_sym_RBRACK, + ACTIONS(10784), 1, + anon_sym_DOT2, STATE(6126), 1, sym_comment, - [218252] = 3, + [219246] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3155), 1, - anon_sym_in, + ACTIONS(10786), 1, + anon_sym_DOT2, STATE(6127), 1, sym_comment, - [218262] = 3, + [219256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3161), 1, - anon_sym_in, + ACTIONS(4880), 1, + anon_sym_RBRACE, STATE(6128), 1, sym_comment, - [218272] = 3, - ACTIONS(105), 1, + [219266] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2782), 1, - aux_sym_unquoted_token3, + ACTIONS(10788), 1, + anon_sym_DOT2, STATE(6129), 1, sym_comment, - [218282] = 3, + [219276] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(10790), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(6130), 1, + sym_comment, + [219286] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3053), 1, + ACTIONS(10792), 1, + anon_sym_DOT2, + STATE(6131), 1, + sym_comment, + [219296] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10794), 1, + anon_sym_EQ, + STATE(6132), 1, + sym_comment, + [219306] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10796), 1, + anon_sym_DOT2, + STATE(6133), 1, + sym_comment, + [219316] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10798), 1, + aux_sym__immediate_decimal_token1, + STATE(6134), 1, + sym_comment, + [219326] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10800), 1, + anon_sym_DOT2, + STATE(6135), 1, + sym_comment, + [219336] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10802), 1, + anon_sym_make, + STATE(6136), 1, + sym_comment, + [219346] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10804), 1, + anon_sym_DOT2, + STATE(6137), 1, + sym_comment, + [219356] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10806), 1, + anon_sym_RBRACE, + STATE(6138), 1, + sym_comment, + [219366] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10808), 1, + anon_sym_DOT2, + STATE(6139), 1, + sym_comment, + [219376] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4868), 1, + anon_sym_RBRACE, + STATE(6140), 1, + sym_comment, + [219386] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10810), 1, + anon_sym_DOT2, + STATE(6141), 1, + sym_comment, + [219396] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10812), 1, + anon_sym_RBRACE, + STATE(6142), 1, + sym_comment, + [219406] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10814), 1, + anon_sym_DOT2, + STATE(6143), 1, + sym_comment, + [219416] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3234), 1, anon_sym_in, - STATE(6130), 1, + STATE(6144), 1, + sym_comment, + [219426] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10816), 1, + anon_sym_DOT2, + STATE(6145), 1, + sym_comment, + [219436] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10818), 1, + aux_sym__immediate_decimal_token1, + STATE(6146), 1, + sym_comment, + [219446] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10820), 1, + anon_sym_RPAREN, + STATE(6147), 1, + sym_comment, + [219456] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10822), 1, + anon_sym_RBRACE, + STATE(6148), 1, sym_comment, - [218292] = 3, + [219466] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2806), 1, - aux_sym_unquoted_token3, - STATE(6131), 1, + ACTIONS(2681), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(6149), 1, + sym_comment, + [219476] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10824), 1, + anon_sym_EQ, + STATE(6150), 1, sym_comment, - [218302] = 3, + [219486] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10826), 1, + anon_sym_EQ, + STATE(6151), 1, + sym_comment, + [219496] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10828), 1, + anon_sym_DOT2, + STATE(6152), 1, + sym_comment, + [219506] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10830), 1, + anon_sym_DOT2, + STATE(6153), 1, + sym_comment, + [219516] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3034), 1, - aux_sym__unquoted_in_list_token3, - STATE(6132), 1, + ACTIONS(2832), 1, + aux_sym_unquoted_token3, + STATE(6154), 1, + sym_comment, + [219526] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10832), 1, + anon_sym_in, + STATE(6155), 1, + sym_comment, + [219536] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9687), 1, + anon_sym_EQ_GT, + STATE(6156), 1, sym_comment, - [218312] = 3, + [219546] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2906), 1, aux_sym_unquoted_token3, - STATE(6133), 1, + STATE(6157), 1, + sym_comment, + [219556] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10834), 1, + anon_sym_RBRACE, + STATE(6158), 1, sym_comment, - [218322] = 3, + [219566] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3034), 1, + ACTIONS(3256), 1, aux_sym_unquoted_token3, - STATE(6134), 1, + STATE(6159), 1, sym_comment, - [218332] = 3, + [219576] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10836), 1, + anon_sym_EQ_GT, + STATE(6160), 1, + sym_comment, + [219586] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10838), 1, + anon_sym_DOT2, + STATE(6161), 1, + sym_comment, + [219596] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10840), 1, + anon_sym_in, + STATE(6162), 1, + sym_comment, + [219606] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10842), 1, + aux_sym__immediate_decimal_token1, + STATE(6163), 1, + sym_comment, + [219616] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10844), 1, + anon_sym_RPAREN, + STATE(6164), 1, + sym_comment, + [219626] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8021), 1, + aux_sym__immediate_decimal_token1, + STATE(6165), 1, + sym_comment, + [219636] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10846), 1, + anon_sym_EQ, + STATE(6166), 1, + sym_comment, + [219646] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2806), 1, + ACTIONS(2832), 1, aux_sym__unquoted_in_list_token3, - STATE(6135), 1, + STATE(6167), 1, + sym_comment, + [219656] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10848), 1, + anon_sym_RPAREN, + STATE(6168), 1, + sym_comment, + [219666] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10850), 1, + anon_sym_RBRACE, + STATE(6169), 1, + sym_comment, + [219676] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10852), 1, + sym_cmd_identifier, + STATE(6170), 1, sym_comment, - [218342] = 3, + [219686] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2782), 1, + ACTIONS(3256), 1, aux_sym__unquoted_in_list_token3, - STATE(6136), 1, + STATE(6171), 1, + sym_comment, + [219696] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(10854), 1, + aux_sym_shebang_token1, + STATE(6172), 1, + sym_comment, + [219706] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10856), 1, + anon_sym_RBRACE, + STATE(6173), 1, + sym_comment, + [219716] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6364), 1, + anon_sym_SEMI, + STATE(6174), 1, + sym_comment, + [219726] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10858), 1, + anon_sym_RBRACK, + STATE(6175), 1, + sym_comment, + [219736] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8122), 1, + anon_sym_LPAREN2, + STATE(6176), 1, + sym_comment, + [219746] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10860), 1, + anon_sym_DOT2, + STATE(6177), 1, + sym_comment, + [219756] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8958), 1, + anon_sym_LPAREN2, + STATE(6178), 1, + sym_comment, + [219766] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10862), 1, + anon_sym_DOT2, + STATE(6179), 1, + sym_comment, + [219776] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9173), 1, + anon_sym_LPAREN2, + STATE(6180), 1, + sym_comment, + [219786] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10864), 1, + anon_sym_DOT2, + STATE(6181), 1, + sym_comment, + [219796] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9255), 1, + anon_sym_LPAREN2, + STATE(6182), 1, + sym_comment, + [219806] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10866), 1, + anon_sym_DOT2, + STATE(6183), 1, + sym_comment, + [219816] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9328), 1, + anon_sym_LPAREN2, + STATE(6184), 1, + sym_comment, + [219826] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10868), 1, + anon_sym_DOT2, + STATE(6185), 1, + sym_comment, + [219836] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8872), 1, + anon_sym_LPAREN2, + STATE(6186), 1, + sym_comment, + [219846] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10870), 1, + anon_sym_DOT2, + STATE(6187), 1, + sym_comment, + [219856] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9008), 1, + anon_sym_LPAREN2, + STATE(6188), 1, + sym_comment, + [219866] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10872), 1, + anon_sym_DOT2, + STATE(6189), 1, + sym_comment, + [219876] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8908), 1, + anon_sym_LPAREN2, + STATE(6190), 1, + sym_comment, + [219886] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10874), 1, + anon_sym_DOT2, + STATE(6191), 1, + sym_comment, + [219896] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10876), 1, + anon_sym_DOT2, + STATE(6192), 1, + sym_comment, + [219906] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10878), 1, + anon_sym_DOT2, + STATE(6193), 1, + sym_comment, + [219916] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10880), 1, + anon_sym_DOT2, + STATE(6194), 1, + sym_comment, + [219926] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10882), 1, + anon_sym_DOT2, + STATE(6195), 1, + sym_comment, + [219936] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2984), 1, + aux_sym__unquoted_in_list_token3, + STATE(6196), 1, + sym_comment, + [219946] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10884), 1, + anon_sym_SEMI, + STATE(6197), 1, + sym_comment, + [219956] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10886), 1, + anon_sym_EQ, + STATE(6198), 1, + sym_comment, + [219966] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10888), 1, + anon_sym_else, + STATE(6199), 1, + sym_comment, + [219976] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(10890), 1, + aux_sym__unquoted_in_list_token5, + STATE(6200), 1, + sym_comment, + [219986] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10892), 1, + anon_sym_DASH_GT, + STATE(6201), 1, + sym_comment, + [219996] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8099), 1, + aux_sym__immediate_decimal_token1, + STATE(6202), 1, + sym_comment, + [220006] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10894), 1, + anon_sym_LBRACE, + STATE(6203), 1, + sym_comment, + [220016] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10894), 1, + anon_sym_LBRACE, + STATE(6204), 1, + sym_comment, + [220026] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10896), 1, + anon_sym_DOT2, + STATE(6205), 1, + sym_comment, + [220036] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10898), 1, + anon_sym_DOT2, + STATE(6206), 1, + sym_comment, + [220046] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10900), 1, + anon_sym_DOT2, + STATE(6207), 1, sym_comment, - [218352] = 1, - ACTIONS(10673), 1, + [220056] = 1, + ACTIONS(10902), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1239)] = 0, - [SMALL_STATE(1240)] = 73, - [SMALL_STATE(1241)] = 146, - [SMALL_STATE(1242)] = 219, - [SMALL_STATE(1243)] = 292, - [SMALL_STATE(1244)] = 365, - [SMALL_STATE(1245)] = 456, - [SMALL_STATE(1246)] = 529, - [SMALL_STATE(1247)] = 602, - [SMALL_STATE(1248)] = 693, - [SMALL_STATE(1249)] = 772, - [SMALL_STATE(1250)] = 847, - [SMALL_STATE(1251)] = 920, - [SMALL_STATE(1252)] = 1011, - [SMALL_STATE(1253)] = 1086, - [SMALL_STATE(1254)] = 1159, - [SMALL_STATE(1255)] = 1232, - [SMALL_STATE(1256)] = 1305, - [SMALL_STATE(1257)] = 1378, - [SMALL_STATE(1258)] = 1451, - [SMALL_STATE(1259)] = 1524, - [SMALL_STATE(1260)] = 1599, - [SMALL_STATE(1261)] = 1672, - [SMALL_STATE(1262)] = 1745, - [SMALL_STATE(1263)] = 1888, - [SMALL_STATE(1264)] = 2031, - [SMALL_STATE(1265)] = 2174, - [SMALL_STATE(1266)] = 2317, - [SMALL_STATE(1267)] = 2390, - [SMALL_STATE(1268)] = 2463, - [SMALL_STATE(1269)] = 2554, - [SMALL_STATE(1270)] = 2645, - [SMALL_STATE(1271)] = 2720, - [SMALL_STATE(1272)] = 2795, - [SMALL_STATE(1273)] = 2868, - [SMALL_STATE(1274)] = 2945, - [SMALL_STATE(1275)] = 3024, - [SMALL_STATE(1276)] = 3099, - [SMALL_STATE(1277)] = 3172, - [SMALL_STATE(1278)] = 3245, - [SMALL_STATE(1279)] = 3322, - [SMALL_STATE(1280)] = 3399, - [SMALL_STATE(1281)] = 3472, - [SMALL_STATE(1282)] = 3615, - [SMALL_STATE(1283)] = 3688, - [SMALL_STATE(1284)] = 3761, - [SMALL_STATE(1285)] = 3836, - [SMALL_STATE(1286)] = 3909, - [SMALL_STATE(1287)] = 3982, - [SMALL_STATE(1288)] = 4057, - [SMALL_STATE(1289)] = 4130, - [SMALL_STATE(1290)] = 4203, - [SMALL_STATE(1291)] = 4276, - [SMALL_STATE(1292)] = 4349, - [SMALL_STATE(1293)] = 4422, - [SMALL_STATE(1294)] = 4495, - [SMALL_STATE(1295)] = 4568, - [SMALL_STATE(1296)] = 4641, - [SMALL_STATE(1297)] = 4714, - [SMALL_STATE(1298)] = 4787, - [SMALL_STATE(1299)] = 4930, - [SMALL_STATE(1300)] = 5073, - [SMALL_STATE(1301)] = 5146, - [SMALL_STATE(1302)] = 5219, - [SMALL_STATE(1303)] = 5292, - [SMALL_STATE(1304)] = 5365, - [SMALL_STATE(1305)] = 5438, - [SMALL_STATE(1306)] = 5511, - [SMALL_STATE(1307)] = 5584, - [SMALL_STATE(1308)] = 5657, - [SMALL_STATE(1309)] = 5730, - [SMALL_STATE(1310)] = 5803, - [SMALL_STATE(1311)] = 5876, - [SMALL_STATE(1312)] = 5949, - [SMALL_STATE(1313)] = 6022, - [SMALL_STATE(1314)] = 6095, - [SMALL_STATE(1315)] = 6168, - [SMALL_STATE(1316)] = 6241, - [SMALL_STATE(1317)] = 6314, - [SMALL_STATE(1318)] = 6387, - [SMALL_STATE(1319)] = 6460, - [SMALL_STATE(1320)] = 6533, - [SMALL_STATE(1321)] = 6606, - [SMALL_STATE(1322)] = 6683, - [SMALL_STATE(1323)] = 6760, - [SMALL_STATE(1324)] = 6833, - [SMALL_STATE(1325)] = 6906, - [SMALL_STATE(1326)] = 6979, - [SMALL_STATE(1327)] = 7052, - [SMALL_STATE(1328)] = 7125, - [SMALL_STATE(1329)] = 7198, - [SMALL_STATE(1330)] = 7271, - [SMALL_STATE(1331)] = 7344, - [SMALL_STATE(1332)] = 7417, - [SMALL_STATE(1333)] = 7490, - [SMALL_STATE(1334)] = 7563, - [SMALL_STATE(1335)] = 7636, - [SMALL_STATE(1336)] = 7709, - [SMALL_STATE(1337)] = 7782, - [SMALL_STATE(1338)] = 7925, - [SMALL_STATE(1339)] = 8068, - [SMALL_STATE(1340)] = 8211, - [SMALL_STATE(1341)] = 8286, - [SMALL_STATE(1342)] = 8359, - [SMALL_STATE(1343)] = 8432, - [SMALL_STATE(1344)] = 8505, - [SMALL_STATE(1345)] = 8578, - [SMALL_STATE(1346)] = 8653, - [SMALL_STATE(1347)] = 8726, - [SMALL_STATE(1348)] = 8799, - [SMALL_STATE(1349)] = 8872, - [SMALL_STATE(1350)] = 8945, - [SMALL_STATE(1351)] = 9018, - [SMALL_STATE(1352)] = 9091, - [SMALL_STATE(1353)] = 9164, - [SMALL_STATE(1354)] = 9237, - [SMALL_STATE(1355)] = 9380, - [SMALL_STATE(1356)] = 9523, - [SMALL_STATE(1357)] = 9598, - [SMALL_STATE(1358)] = 9671, - [SMALL_STATE(1359)] = 9814, - [SMALL_STATE(1360)] = 9887, - [SMALL_STATE(1361)] = 9978, - [SMALL_STATE(1362)] = 10051, - [SMALL_STATE(1363)] = 10124, - [SMALL_STATE(1364)] = 10197, - [SMALL_STATE(1365)] = 10270, - [SMALL_STATE(1366)] = 10343, - [SMALL_STATE(1367)] = 10416, - [SMALL_STATE(1368)] = 10489, - [SMALL_STATE(1369)] = 10562, - [SMALL_STATE(1370)] = 10653, - [SMALL_STATE(1371)] = 10796, - [SMALL_STATE(1372)] = 10939, - [SMALL_STATE(1373)] = 11012, - [SMALL_STATE(1374)] = 11155, - [SMALL_STATE(1375)] = 11298, - [SMALL_STATE(1376)] = 11371, - [SMALL_STATE(1377)] = 11444, - [SMALL_STATE(1378)] = 11517, - [SMALL_STATE(1379)] = 11590, - [SMALL_STATE(1380)] = 11681, - [SMALL_STATE(1381)] = 11824, - [SMALL_STATE(1382)] = 11897, - [SMALL_STATE(1383)] = 11970, - [SMALL_STATE(1384)] = 12047, - [SMALL_STATE(1385)] = 12120, - [SMALL_STATE(1386)] = 12263, - [SMALL_STATE(1387)] = 12336, - [SMALL_STATE(1388)] = 12409, - [SMALL_STATE(1389)] = 12482, - [SMALL_STATE(1390)] = 12555, - [SMALL_STATE(1391)] = 12628, - [SMALL_STATE(1392)] = 12701, - [SMALL_STATE(1393)] = 12774, - [SMALL_STATE(1394)] = 12847, - [SMALL_STATE(1395)] = 12920, - [SMALL_STATE(1396)] = 12993, - [SMALL_STATE(1397)] = 13066, - [SMALL_STATE(1398)] = 13139, - [SMALL_STATE(1399)] = 13212, - [SMALL_STATE(1400)] = 13285, - [SMALL_STATE(1401)] = 13358, - [SMALL_STATE(1402)] = 13431, - [SMALL_STATE(1403)] = 13510, - [SMALL_STATE(1404)] = 13583, - [SMALL_STATE(1405)] = 13674, - [SMALL_STATE(1406)] = 13747, - [SMALL_STATE(1407)] = 13820, - [SMALL_STATE(1408)] = 13893, - [SMALL_STATE(1409)] = 13970, - [SMALL_STATE(1410)] = 14061, - [SMALL_STATE(1411)] = 14134, - [SMALL_STATE(1412)] = 14211, - [SMALL_STATE(1413)] = 14284, - [SMALL_STATE(1414)] = 14357, - [SMALL_STATE(1415)] = 14430, - [SMALL_STATE(1416)] = 14503, - [SMALL_STATE(1417)] = 14576, - [SMALL_STATE(1418)] = 14649, - [SMALL_STATE(1419)] = 14722, - [SMALL_STATE(1420)] = 14795, - [SMALL_STATE(1421)] = 14886, - [SMALL_STATE(1422)] = 15029, - [SMALL_STATE(1423)] = 15172, - [SMALL_STATE(1424)] = 15315, - [SMALL_STATE(1425)] = 15458, - [SMALL_STATE(1426)] = 15549, - [SMALL_STATE(1427)] = 15622, - [SMALL_STATE(1428)] = 15699, - [SMALL_STATE(1429)] = 15776, - [SMALL_STATE(1430)] = 15849, - [SMALL_STATE(1431)] = 15922, - [SMALL_STATE(1432)] = 15997, - [SMALL_STATE(1433)] = 16070, - [SMALL_STATE(1434)] = 16143, - [SMALL_STATE(1435)] = 16218, - [SMALL_STATE(1436)] = 16291, - [SMALL_STATE(1437)] = 16364, - [SMALL_STATE(1438)] = 16443, - [SMALL_STATE(1439)] = 16516, - [SMALL_STATE(1440)] = 16589, - [SMALL_STATE(1441)] = 16662, - [SMALL_STATE(1442)] = 16735, - [SMALL_STATE(1443)] = 16808, - [SMALL_STATE(1444)] = 16881, - [SMALL_STATE(1445)] = 16954, - [SMALL_STATE(1446)] = 17027, - [SMALL_STATE(1447)] = 17100, - [SMALL_STATE(1448)] = 17173, - [SMALL_STATE(1449)] = 17246, - [SMALL_STATE(1450)] = 17319, - [SMALL_STATE(1451)] = 17392, - [SMALL_STATE(1452)] = 17465, - [SMALL_STATE(1453)] = 17538, - [SMALL_STATE(1454)] = 17611, - [SMALL_STATE(1455)] = 17684, - [SMALL_STATE(1456)] = 17757, - [SMALL_STATE(1457)] = 17830, - [SMALL_STATE(1458)] = 17903, - [SMALL_STATE(1459)] = 17976, - [SMALL_STATE(1460)] = 18119, - [SMALL_STATE(1461)] = 18262, - [SMALL_STATE(1462)] = 18334, - [SMALL_STATE(1463)] = 18406, - [SMALL_STATE(1464)] = 18478, - [SMALL_STATE(1465)] = 18550, - [SMALL_STATE(1466)] = 18622, - [SMALL_STATE(1467)] = 18694, - [SMALL_STATE(1468)] = 18766, - [SMALL_STATE(1469)] = 18838, - [SMALL_STATE(1470)] = 18910, - [SMALL_STATE(1471)] = 18982, - [SMALL_STATE(1472)] = 19054, - [SMALL_STATE(1473)] = 19196, - [SMALL_STATE(1474)] = 19268, - [SMALL_STATE(1475)] = 19340, - [SMALL_STATE(1476)] = 19412, - [SMALL_STATE(1477)] = 19484, - [SMALL_STATE(1478)] = 19626, - [SMALL_STATE(1479)] = 19698, - [SMALL_STATE(1480)] = 19774, - [SMALL_STATE(1481)] = 19846, - [SMALL_STATE(1482)] = 19918, - [SMALL_STATE(1483)] = 19990, - [SMALL_STATE(1484)] = 20132, - [SMALL_STATE(1485)] = 20204, - [SMALL_STATE(1486)] = 20276, - [SMALL_STATE(1487)] = 20348, - [SMALL_STATE(1488)] = 20420, - [SMALL_STATE(1489)] = 20492, - [SMALL_STATE(1490)] = 20564, - [SMALL_STATE(1491)] = 20636, - [SMALL_STATE(1492)] = 20708, - [SMALL_STATE(1493)] = 20780, - [SMALL_STATE(1494)] = 20852, - [SMALL_STATE(1495)] = 20924, - [SMALL_STATE(1496)] = 20996, - [SMALL_STATE(1497)] = 21068, - [SMALL_STATE(1498)] = 21140, - [SMALL_STATE(1499)] = 21212, - [SMALL_STATE(1500)] = 21284, - [SMALL_STATE(1501)] = 21356, - [SMALL_STATE(1502)] = 21498, - [SMALL_STATE(1503)] = 21640, - [SMALL_STATE(1504)] = 21782, - [SMALL_STATE(1505)] = 21924, - [SMALL_STATE(1506)] = 22066, - [SMALL_STATE(1507)] = 22138, - [SMALL_STATE(1508)] = 22214, - [SMALL_STATE(1509)] = 22286, - [SMALL_STATE(1510)] = 22358, - [SMALL_STATE(1511)] = 22434, - [SMALL_STATE(1512)] = 22506, - [SMALL_STATE(1513)] = 22578, - [SMALL_STATE(1514)] = 22650, - [SMALL_STATE(1515)] = 22722, - [SMALL_STATE(1516)] = 22794, - [SMALL_STATE(1517)] = 22866, - [SMALL_STATE(1518)] = 22938, - [SMALL_STATE(1519)] = 23010, - [SMALL_STATE(1520)] = 23082, - [SMALL_STATE(1521)] = 23154, - [SMALL_STATE(1522)] = 23226, - [SMALL_STATE(1523)] = 23302, - [SMALL_STATE(1524)] = 23374, - [SMALL_STATE(1525)] = 23450, - [SMALL_STATE(1526)] = 23522, - [SMALL_STATE(1527)] = 23594, - [SMALL_STATE(1528)] = 23666, - [SMALL_STATE(1529)] = 23738, - [SMALL_STATE(1530)] = 23810, - [SMALL_STATE(1531)] = 23882, - [SMALL_STATE(1532)] = 23954, - [SMALL_STATE(1533)] = 24026, - [SMALL_STATE(1534)] = 24098, - [SMALL_STATE(1535)] = 24170, - [SMALL_STATE(1536)] = 24242, - [SMALL_STATE(1537)] = 24314, - [SMALL_STATE(1538)] = 24386, - [SMALL_STATE(1539)] = 24528, - [SMALL_STATE(1540)] = 24600, - [SMALL_STATE(1541)] = 24672, - [SMALL_STATE(1542)] = 24744, - [SMALL_STATE(1543)] = 24816, - [SMALL_STATE(1544)] = 24958, - [SMALL_STATE(1545)] = 25100, - [SMALL_STATE(1546)] = 25242, - [SMALL_STATE(1547)] = 25314, - [SMALL_STATE(1548)] = 25456, - [SMALL_STATE(1549)] = 25528, - [SMALL_STATE(1550)] = 25600, - [SMALL_STATE(1551)] = 25676, - [SMALL_STATE(1552)] = 25748, - [SMALL_STATE(1553)] = 25820, - [SMALL_STATE(1554)] = 25896, - [SMALL_STATE(1555)] = 25968, - [SMALL_STATE(1556)] = 26040, - [SMALL_STATE(1557)] = 26112, - [SMALL_STATE(1558)] = 26254, - [SMALL_STATE(1559)] = 26396, - [SMALL_STATE(1560)] = 26538, - [SMALL_STATE(1561)] = 26610, - [SMALL_STATE(1562)] = 26752, - [SMALL_STATE(1563)] = 26824, - [SMALL_STATE(1564)] = 26896, - [SMALL_STATE(1565)] = 27038, - [SMALL_STATE(1566)] = 27110, - [SMALL_STATE(1567)] = 27252, - [SMALL_STATE(1568)] = 27394, - [SMALL_STATE(1569)] = 27466, - [SMALL_STATE(1570)] = 27538, - [SMALL_STATE(1571)] = 27610, - [SMALL_STATE(1572)] = 27682, - [SMALL_STATE(1573)] = 27754, - [SMALL_STATE(1574)] = 27826, - [SMALL_STATE(1575)] = 27898, - [SMALL_STATE(1576)] = 27970, - [SMALL_STATE(1577)] = 28046, - [SMALL_STATE(1578)] = 28118, - [SMALL_STATE(1579)] = 28190, - [SMALL_STATE(1580)] = 28262, - [SMALL_STATE(1581)] = 28334, - [SMALL_STATE(1582)] = 28406, - [SMALL_STATE(1583)] = 28478, - [SMALL_STATE(1584)] = 28550, - [SMALL_STATE(1585)] = 28622, - [SMALL_STATE(1586)] = 28694, - [SMALL_STATE(1587)] = 28836, - [SMALL_STATE(1588)] = 28908, - [SMALL_STATE(1589)] = 29050, - [SMALL_STATE(1590)] = 29192, - [SMALL_STATE(1591)] = 29264, - [SMALL_STATE(1592)] = 29336, - [SMALL_STATE(1593)] = 29408, - [SMALL_STATE(1594)] = 29480, - [SMALL_STATE(1595)] = 29552, - [SMALL_STATE(1596)] = 29624, - [SMALL_STATE(1597)] = 29696, - [SMALL_STATE(1598)] = 29768, - [SMALL_STATE(1599)] = 29840, - [SMALL_STATE(1600)] = 29912, - [SMALL_STATE(1601)] = 29984, - [SMALL_STATE(1602)] = 30056, - [SMALL_STATE(1603)] = 30128, - [SMALL_STATE(1604)] = 30200, - [SMALL_STATE(1605)] = 30272, - [SMALL_STATE(1606)] = 30344, - [SMALL_STATE(1607)] = 30416, - [SMALL_STATE(1608)] = 30488, - [SMALL_STATE(1609)] = 30560, - [SMALL_STATE(1610)] = 30632, - [SMALL_STATE(1611)] = 30774, - [SMALL_STATE(1612)] = 30846, - [SMALL_STATE(1613)] = 30918, - [SMALL_STATE(1614)] = 30990, - [SMALL_STATE(1615)] = 31062, - [SMALL_STATE(1616)] = 31134, - [SMALL_STATE(1617)] = 31206, - [SMALL_STATE(1618)] = 31278, - [SMALL_STATE(1619)] = 31350, - [SMALL_STATE(1620)] = 31422, - [SMALL_STATE(1621)] = 31494, - [SMALL_STATE(1622)] = 31636, - [SMALL_STATE(1623)] = 31708, - [SMALL_STATE(1624)] = 31780, - [SMALL_STATE(1625)] = 31852, - [SMALL_STATE(1626)] = 31924, - [SMALL_STATE(1627)] = 31995, - [SMALL_STATE(1628)] = 32066, - [SMALL_STATE(1629)] = 32137, - [SMALL_STATE(1630)] = 32208, - [SMALL_STATE(1631)] = 32279, - [SMALL_STATE(1632)] = 32350, - [SMALL_STATE(1633)] = 32421, - [SMALL_STATE(1634)] = 32492, - [SMALL_STATE(1635)] = 32563, - [SMALL_STATE(1636)] = 32634, - [SMALL_STATE(1637)] = 32705, - [SMALL_STATE(1638)] = 32776, - [SMALL_STATE(1639)] = 32847, - [SMALL_STATE(1640)] = 32918, - [SMALL_STATE(1641)] = 32989, - [SMALL_STATE(1642)] = 33060, - [SMALL_STATE(1643)] = 33131, - [SMALL_STATE(1644)] = 33202, - [SMALL_STATE(1645)] = 33273, - [SMALL_STATE(1646)] = 33344, - [SMALL_STATE(1647)] = 33415, - [SMALL_STATE(1648)] = 33486, - [SMALL_STATE(1649)] = 33557, - [SMALL_STATE(1650)] = 33628, - [SMALL_STATE(1651)] = 33699, - [SMALL_STATE(1652)] = 33770, - [SMALL_STATE(1653)] = 33840, - [SMALL_STATE(1654)] = 33909, - [SMALL_STATE(1655)] = 33986, - [SMALL_STATE(1656)] = 34055, - [SMALL_STATE(1657)] = 34189, - [SMALL_STATE(1658)] = 34261, - [SMALL_STATE(1659)] = 34335, - [SMALL_STATE(1660)] = 34409, - [SMALL_STATE(1661)] = 34483, - [SMALL_STATE(1662)] = 34619, - [SMALL_STATE(1663)] = 34755, - [SMALL_STATE(1664)] = 34889, - [SMALL_STATE(1665)] = 35023, - [SMALL_STATE(1666)] = 35157, - [SMALL_STATE(1667)] = 35291, - [SMALL_STATE(1668)] = 35365, - [SMALL_STATE(1669)] = 35439, - [SMALL_STATE(1670)] = 35575, - [SMALL_STATE(1671)] = 35709, - [SMALL_STATE(1672)] = 35845, - [SMALL_STATE(1673)] = 35979, - [SMALL_STATE(1674)] = 36113, - [SMALL_STATE(1675)] = 36185, - [SMALL_STATE(1676)] = 36319, - [SMALL_STATE(1677)] = 36453, - [SMALL_STATE(1678)] = 36589, - [SMALL_STATE(1679)] = 36725, - [SMALL_STATE(1680)] = 36859, - [SMALL_STATE(1681)] = 36995, - [SMALL_STATE(1682)] = 37131, - [SMALL_STATE(1683)] = 37265, - [SMALL_STATE(1684)] = 37401, - [SMALL_STATE(1685)] = 37537, - [SMALL_STATE(1686)] = 37671, - [SMALL_STATE(1687)] = 37805, - [SMALL_STATE(1688)] = 37941, - [SMALL_STATE(1689)] = 38075, - [SMALL_STATE(1690)] = 38209, - [SMALL_STATE(1691)] = 38281, - [SMALL_STATE(1692)] = 38415, - [SMALL_STATE(1693)] = 38549, - [SMALL_STATE(1694)] = 38623, - [SMALL_STATE(1695)] = 38755, - [SMALL_STATE(1696)] = 38889, - [SMALL_STATE(1697)] = 39023, - [SMALL_STATE(1698)] = 39159, - [SMALL_STATE(1699)] = 39233, - [SMALL_STATE(1700)] = 39369, - [SMALL_STATE(1701)] = 39503, - [SMALL_STATE(1702)] = 39637, - [SMALL_STATE(1703)] = 39709, - [SMALL_STATE(1704)] = 39843, - [SMALL_STATE(1705)] = 39978, - [SMALL_STATE(1706)] = 40113, - [SMALL_STATE(1707)] = 40248, - [SMALL_STATE(1708)] = 40383, - [SMALL_STATE(1709)] = 40518, - [SMALL_STATE(1710)] = 40653, - [SMALL_STATE(1711)] = 40788, - [SMALL_STATE(1712)] = 40861, - [SMALL_STATE(1713)] = 40996, - [SMALL_STATE(1714)] = 41131, - [SMALL_STATE(1715)] = 41266, - [SMALL_STATE(1716)] = 41401, - [SMALL_STATE(1717)] = 41536, - [SMALL_STATE(1718)] = 41671, - [SMALL_STATE(1719)] = 41806, - [SMALL_STATE(1720)] = 41941, - [SMALL_STATE(1721)] = 42076, - [SMALL_STATE(1722)] = 42211, - [SMALL_STATE(1723)] = 42346, - [SMALL_STATE(1724)] = 42481, - [SMALL_STATE(1725)] = 42616, - [SMALL_STATE(1726)] = 42751, - [SMALL_STATE(1727)] = 42886, - [SMALL_STATE(1728)] = 43021, - [SMALL_STATE(1729)] = 43156, - [SMALL_STATE(1730)] = 43291, - [SMALL_STATE(1731)] = 43426, - [SMALL_STATE(1732)] = 43561, - [SMALL_STATE(1733)] = 43696, - [SMALL_STATE(1734)] = 43831, - [SMALL_STATE(1735)] = 43966, - [SMALL_STATE(1736)] = 44101, - [SMALL_STATE(1737)] = 44236, - [SMALL_STATE(1738)] = 44371, - [SMALL_STATE(1739)] = 44504, - [SMALL_STATE(1740)] = 44639, - [SMALL_STATE(1741)] = 44774, - [SMALL_STATE(1742)] = 44909, - [SMALL_STATE(1743)] = 45044, - [SMALL_STATE(1744)] = 45177, - [SMALL_STATE(1745)] = 45312, - [SMALL_STATE(1746)] = 45379, - [SMALL_STATE(1747)] = 45514, - [SMALL_STATE(1748)] = 45581, - [SMALL_STATE(1749)] = 45716, - [SMALL_STATE(1750)] = 45789, - [SMALL_STATE(1751)] = 45860, - [SMALL_STATE(1752)] = 45995, - [SMALL_STATE(1753)] = 46068, - [SMALL_STATE(1754)] = 46203, - [SMALL_STATE(1755)] = 46338, - [SMALL_STATE(1756)] = 46473, - [SMALL_STATE(1757)] = 46608, - [SMALL_STATE(1758)] = 46743, - [SMALL_STATE(1759)] = 46878, - [SMALL_STATE(1760)] = 47013, - [SMALL_STATE(1761)] = 47148, - [SMALL_STATE(1762)] = 47283, - [SMALL_STATE(1763)] = 47418, - [SMALL_STATE(1764)] = 47553, - [SMALL_STATE(1765)] = 47688, - [SMALL_STATE(1766)] = 47823, - [SMALL_STATE(1767)] = 47894, - [SMALL_STATE(1768)] = 48029, - [SMALL_STATE(1769)] = 48164, - [SMALL_STATE(1770)] = 48299, - [SMALL_STATE(1771)] = 48434, - [SMALL_STATE(1772)] = 48569, - [SMALL_STATE(1773)] = 48704, - [SMALL_STATE(1774)] = 48839, - [SMALL_STATE(1775)] = 48974, - [SMALL_STATE(1776)] = 49109, - [SMALL_STATE(1777)] = 49244, - [SMALL_STATE(1778)] = 49379, - [SMALL_STATE(1779)] = 49514, - [SMALL_STATE(1780)] = 49649, - [SMALL_STATE(1781)] = 49784, - [SMALL_STATE(1782)] = 49919, - [SMALL_STATE(1783)] = 49992, - [SMALL_STATE(1784)] = 50065, - [SMALL_STATE(1785)] = 50200, - [SMALL_STATE(1786)] = 50335, - [SMALL_STATE(1787)] = 50470, - [SMALL_STATE(1788)] = 50605, - [SMALL_STATE(1789)] = 50740, - [SMALL_STATE(1790)] = 50875, - [SMALL_STATE(1791)] = 51010, - [SMALL_STATE(1792)] = 51145, - [SMALL_STATE(1793)] = 51280, - [SMALL_STATE(1794)] = 51415, - [SMALL_STATE(1795)] = 51550, - [SMALL_STATE(1796)] = 51685, - [SMALL_STATE(1797)] = 51758, - [SMALL_STATE(1798)] = 51893, - [SMALL_STATE(1799)] = 52028, - [SMALL_STATE(1800)] = 52163, - [SMALL_STATE(1801)] = 52232, - [SMALL_STATE(1802)] = 52303, - [SMALL_STATE(1803)] = 52438, - [SMALL_STATE(1804)] = 52573, - [SMALL_STATE(1805)] = 52708, - [SMALL_STATE(1806)] = 52779, - [SMALL_STATE(1807)] = 52914, - [SMALL_STATE(1808)] = 52985, - [SMALL_STATE(1809)] = 53120, - [SMALL_STATE(1810)] = 53255, - [SMALL_STATE(1811)] = 53390, - [SMALL_STATE(1812)] = 53525, - [SMALL_STATE(1813)] = 53660, - [SMALL_STATE(1814)] = 53733, - [SMALL_STATE(1815)] = 53868, - [SMALL_STATE(1816)] = 54003, - [SMALL_STATE(1817)] = 54138, - [SMALL_STATE(1818)] = 54273, - [SMALL_STATE(1819)] = 54408, - [SMALL_STATE(1820)] = 54543, - [SMALL_STATE(1821)] = 54678, - [SMALL_STATE(1822)] = 54813, - [SMALL_STATE(1823)] = 54948, - [SMALL_STATE(1824)] = 55083, - [SMALL_STATE(1825)] = 55218, - [SMALL_STATE(1826)] = 55289, - [SMALL_STATE(1827)] = 55366, - [SMALL_STATE(1828)] = 55501, - [SMALL_STATE(1829)] = 55636, - [SMALL_STATE(1830)] = 55771, - [SMALL_STATE(1831)] = 55906, - [SMALL_STATE(1832)] = 56041, - [SMALL_STATE(1833)] = 56176, - [SMALL_STATE(1834)] = 56311, - [SMALL_STATE(1835)] = 56446, - [SMALL_STATE(1836)] = 56519, - [SMALL_STATE(1837)] = 56592, - [SMALL_STATE(1838)] = 56663, - [SMALL_STATE(1839)] = 56734, - [SMALL_STATE(1840)] = 56807, - [SMALL_STATE(1841)] = 56942, - [SMALL_STATE(1842)] = 57077, - [SMALL_STATE(1843)] = 57212, - [SMALL_STATE(1844)] = 57347, - [SMALL_STATE(1845)] = 57482, - [SMALL_STATE(1846)] = 57617, - [SMALL_STATE(1847)] = 57686, - [SMALL_STATE(1848)] = 57821, - [SMALL_STATE(1849)] = 57956, - [SMALL_STATE(1850)] = 58091, - [SMALL_STATE(1851)] = 58226, - [SMALL_STATE(1852)] = 58361, - [SMALL_STATE(1853)] = 58496, - [SMALL_STATE(1854)] = 58569, - [SMALL_STATE(1855)] = 58704, - [SMALL_STATE(1856)] = 58839, - [SMALL_STATE(1857)] = 58974, - [SMALL_STATE(1858)] = 59109, - [SMALL_STATE(1859)] = 59244, - [SMALL_STATE(1860)] = 59379, - [SMALL_STATE(1861)] = 59514, - [SMALL_STATE(1862)] = 59649, - [SMALL_STATE(1863)] = 59784, - [SMALL_STATE(1864)] = 59919, - [SMALL_STATE(1865)] = 59988, - [SMALL_STATE(1866)] = 60123, - [SMALL_STATE(1867)] = 60258, - [SMALL_STATE(1868)] = 60393, - [SMALL_STATE(1869)] = 60466, - [SMALL_STATE(1870)] = 60601, - [SMALL_STATE(1871)] = 60736, - [SMALL_STATE(1872)] = 60871, - [SMALL_STATE(1873)] = 61006, - [SMALL_STATE(1874)] = 61141, - [SMALL_STATE(1875)] = 61276, - [SMALL_STATE(1876)] = 61411, - [SMALL_STATE(1877)] = 61546, - [SMALL_STATE(1878)] = 61681, - [SMALL_STATE(1879)] = 61816, - [SMALL_STATE(1880)] = 61885, - [SMALL_STATE(1881)] = 62020, - [SMALL_STATE(1882)] = 62155, - [SMALL_STATE(1883)] = 62290, - [SMALL_STATE(1884)] = 62363, - [SMALL_STATE(1885)] = 62498, - [SMALL_STATE(1886)] = 62633, - [SMALL_STATE(1887)] = 62702, - [SMALL_STATE(1888)] = 62837, - [SMALL_STATE(1889)] = 62972, - [SMALL_STATE(1890)] = 63107, - [SMALL_STATE(1891)] = 63242, - [SMALL_STATE(1892)] = 63377, - [SMALL_STATE(1893)] = 63450, - [SMALL_STATE(1894)] = 63582, - [SMALL_STATE(1895)] = 63650, - [SMALL_STATE(1896)] = 63718, - [SMALL_STATE(1897)] = 63786, - [SMALL_STATE(1898)] = 63852, - [SMALL_STATE(1899)] = 63918, - [SMALL_STATE(1900)] = 63984, - [SMALL_STATE(1901)] = 64050, - [SMALL_STATE(1902)] = 64118, - [SMALL_STATE(1903)] = 64186, - [SMALL_STATE(1904)] = 64254, - [SMALL_STATE(1905)] = 64386, - [SMALL_STATE(1906)] = 64454, - [SMALL_STATE(1907)] = 64520, - [SMALL_STATE(1908)] = 64586, - [SMALL_STATE(1909)] = 64652, - [SMALL_STATE(1910)] = 64720, - [SMALL_STATE(1911)] = 64788, - [SMALL_STATE(1912)] = 64854, - [SMALL_STATE(1913)] = 64920, - [SMALL_STATE(1914)] = 64988, - [SMALL_STATE(1915)] = 65054, - [SMALL_STATE(1916)] = 65120, - [SMALL_STATE(1917)] = 65250, - [SMALL_STATE(1918)] = 65380, - [SMALL_STATE(1919)] = 65512, - [SMALL_STATE(1920)] = 65644, - [SMALL_STATE(1921)] = 65776, - [SMALL_STATE(1922)] = 65844, - [SMALL_STATE(1923)] = 65973, - [SMALL_STATE(1924)] = 66098, - [SMALL_STATE(1925)] = 66223, - [SMALL_STATE(1926)] = 66348, - [SMALL_STATE(1927)] = 66473, - [SMALL_STATE(1928)] = 66598, - [SMALL_STATE(1929)] = 66723, - [SMALL_STATE(1930)] = 66850, - [SMALL_STATE(1931)] = 66977, - [SMALL_STATE(1932)] = 67104, - [SMALL_STATE(1933)] = 67169, - [SMALL_STATE(1934)] = 67294, - [SMALL_STATE(1935)] = 67419, - [SMALL_STATE(1936)] = 67546, - [SMALL_STATE(1937)] = 67671, - [SMALL_STATE(1938)] = 67796, - [SMALL_STATE(1939)] = 67921, - [SMALL_STATE(1940)] = 68046, - [SMALL_STATE(1941)] = 68171, - [SMALL_STATE(1942)] = 68296, - [SMALL_STATE(1943)] = 68361, - [SMALL_STATE(1944)] = 68486, - [SMALL_STATE(1945)] = 68611, - [SMALL_STATE(1946)] = 68736, - [SMALL_STATE(1947)] = 68861, - [SMALL_STATE(1948)] = 68986, - [SMALL_STATE(1949)] = 69111, - [SMALL_STATE(1950)] = 69236, - [SMALL_STATE(1951)] = 69361, - [SMALL_STATE(1952)] = 69486, - [SMALL_STATE(1953)] = 69611, - [SMALL_STATE(1954)] = 69736, - [SMALL_STATE(1955)] = 69861, - [SMALL_STATE(1956)] = 69986, - [SMALL_STATE(1957)] = 70111, - [SMALL_STATE(1958)] = 70236, - [SMALL_STATE(1959)] = 70363, - [SMALL_STATE(1960)] = 70488, - [SMALL_STATE(1961)] = 70613, - [SMALL_STATE(1962)] = 70738, - [SMALL_STATE(1963)] = 70865, - [SMALL_STATE(1964)] = 70990, - [SMALL_STATE(1965)] = 71115, - [SMALL_STATE(1966)] = 71240, - [SMALL_STATE(1967)] = 71365, - [SMALL_STATE(1968)] = 71490, - [SMALL_STATE(1969)] = 71615, - [SMALL_STATE(1970)] = 71740, - [SMALL_STATE(1971)] = 71865, - [SMALL_STATE(1972)] = 71992, - [SMALL_STATE(1973)] = 72117, - [SMALL_STATE(1974)] = 72242, - [SMALL_STATE(1975)] = 72367, - [SMALL_STATE(1976)] = 72492, - [SMALL_STATE(1977)] = 72617, - [SMALL_STATE(1978)] = 72742, - [SMALL_STATE(1979)] = 72867, - [SMALL_STATE(1980)] = 72992, - [SMALL_STATE(1981)] = 73117, - [SMALL_STATE(1982)] = 73182, - [SMALL_STATE(1983)] = 73307, - [SMALL_STATE(1984)] = 73432, - [SMALL_STATE(1985)] = 73557, - [SMALL_STATE(1986)] = 73682, - [SMALL_STATE(1987)] = 73807, - [SMALL_STATE(1988)] = 73932, - [SMALL_STATE(1989)] = 74057, - [SMALL_STATE(1990)] = 74182, - [SMALL_STATE(1991)] = 74307, - [SMALL_STATE(1992)] = 74432, - [SMALL_STATE(1993)] = 74497, - [SMALL_STATE(1994)] = 74622, - [SMALL_STATE(1995)] = 74747, - [SMALL_STATE(1996)] = 74874, - [SMALL_STATE(1997)] = 74999, - [SMALL_STATE(1998)] = 75124, - [SMALL_STATE(1999)] = 75249, - [SMALL_STATE(2000)] = 75374, - [SMALL_STATE(2001)] = 75499, - [SMALL_STATE(2002)] = 75624, - [SMALL_STATE(2003)] = 75749, - [SMALL_STATE(2004)] = 75876, - [SMALL_STATE(2005)] = 76003, - [SMALL_STATE(2006)] = 76128, - [SMALL_STATE(2007)] = 76255, - [SMALL_STATE(2008)] = 76320, - [SMALL_STATE(2009)] = 76447, - [SMALL_STATE(2010)] = 76574, - [SMALL_STATE(2011)] = 76701, - [SMALL_STATE(2012)] = 76828, - [SMALL_STATE(2013)] = 76953, - [SMALL_STATE(2014)] = 77078, - [SMALL_STATE(2015)] = 77203, - [SMALL_STATE(2016)] = 77328, - [SMALL_STATE(2017)] = 77453, - [SMALL_STATE(2018)] = 77578, - [SMALL_STATE(2019)] = 77703, - [SMALL_STATE(2020)] = 77828, - [SMALL_STATE(2021)] = 77893, - [SMALL_STATE(2022)] = 78018, - [SMALL_STATE(2023)] = 78083, - [SMALL_STATE(2024)] = 78208, - [SMALL_STATE(2025)] = 78273, - [SMALL_STATE(2026)] = 78338, - [SMALL_STATE(2027)] = 78463, - [SMALL_STATE(2028)] = 78588, - [SMALL_STATE(2029)] = 78713, - [SMALL_STATE(2030)] = 78778, - [SMALL_STATE(2031)] = 78903, - [SMALL_STATE(2032)] = 79028, - [SMALL_STATE(2033)] = 79153, - [SMALL_STATE(2034)] = 79278, - [SMALL_STATE(2035)] = 79403, - [SMALL_STATE(2036)] = 79528, - [SMALL_STATE(2037)] = 79653, - [SMALL_STATE(2038)] = 79778, - [SMALL_STATE(2039)] = 79903, - [SMALL_STATE(2040)] = 80028, - [SMALL_STATE(2041)] = 80153, - [SMALL_STATE(2042)] = 80278, - [SMALL_STATE(2043)] = 80403, - [SMALL_STATE(2044)] = 80528, - [SMALL_STATE(2045)] = 80653, - [SMALL_STATE(2046)] = 80778, - [SMALL_STATE(2047)] = 80903, - [SMALL_STATE(2048)] = 81028, - [SMALL_STATE(2049)] = 81153, - [SMALL_STATE(2050)] = 81278, - [SMALL_STATE(2051)] = 81403, - [SMALL_STATE(2052)] = 81528, - [SMALL_STATE(2053)] = 81653, - [SMALL_STATE(2054)] = 81778, - [SMALL_STATE(2055)] = 81903, - [SMALL_STATE(2056)] = 82028, - [SMALL_STATE(2057)] = 82153, - [SMALL_STATE(2058)] = 82278, - [SMALL_STATE(2059)] = 82403, - [SMALL_STATE(2060)] = 82528, - [SMALL_STATE(2061)] = 82653, - [SMALL_STATE(2062)] = 82778, - [SMALL_STATE(2063)] = 82845, - [SMALL_STATE(2064)] = 82912, - [SMALL_STATE(2065)] = 83037, - [SMALL_STATE(2066)] = 83164, - [SMALL_STATE(2067)] = 83289, - [SMALL_STATE(2068)] = 83414, - [SMALL_STATE(2069)] = 83539, - [SMALL_STATE(2070)] = 83664, - [SMALL_STATE(2071)] = 83789, - [SMALL_STATE(2072)] = 83914, - [SMALL_STATE(2073)] = 84039, - [SMALL_STATE(2074)] = 84164, - [SMALL_STATE(2075)] = 84289, - [SMALL_STATE(2076)] = 84414, - [SMALL_STATE(2077)] = 84539, - [SMALL_STATE(2078)] = 84664, - [SMALL_STATE(2079)] = 84789, - [SMALL_STATE(2080)] = 84914, - [SMALL_STATE(2081)] = 85039, - [SMALL_STATE(2082)] = 85164, - [SMALL_STATE(2083)] = 85293, - [SMALL_STATE(2084)] = 85360, - [SMALL_STATE(2085)] = 85427, - [SMALL_STATE(2086)] = 85552, - [SMALL_STATE(2087)] = 85677, - [SMALL_STATE(2088)] = 85802, - [SMALL_STATE(2089)] = 85867, - [SMALL_STATE(2090)] = 85992, - [SMALL_STATE(2091)] = 86117, - [SMALL_STATE(2092)] = 86182, - [SMALL_STATE(2093)] = 86247, - [SMALL_STATE(2094)] = 86312, - [SMALL_STATE(2095)] = 86377, - [SMALL_STATE(2096)] = 86442, - [SMALL_STATE(2097)] = 86507, - [SMALL_STATE(2098)] = 86572, - [SMALL_STATE(2099)] = 86637, - [SMALL_STATE(2100)] = 86704, - [SMALL_STATE(2101)] = 86769, - [SMALL_STATE(2102)] = 86834, - [SMALL_STATE(2103)] = 86899, - [SMALL_STATE(2104)] = 86964, - [SMALL_STATE(2105)] = 87029, - [SMALL_STATE(2106)] = 87094, - [SMALL_STATE(2107)] = 87159, - [SMALL_STATE(2108)] = 87224, - [SMALL_STATE(2109)] = 87349, - [SMALL_STATE(2110)] = 87474, - [SMALL_STATE(2111)] = 87599, - [SMALL_STATE(2112)] = 87664, - [SMALL_STATE(2113)] = 87789, - [SMALL_STATE(2114)] = 87914, - [SMALL_STATE(2115)] = 88039, - [SMALL_STATE(2116)] = 88164, - [SMALL_STATE(2117)] = 88229, - [SMALL_STATE(2118)] = 88294, - [SMALL_STATE(2119)] = 88419, - [SMALL_STATE(2120)] = 88544, - [SMALL_STATE(2121)] = 88669, - [SMALL_STATE(2122)] = 88734, - [SMALL_STATE(2123)] = 88799, - [SMALL_STATE(2124)] = 88924, - [SMALL_STATE(2125)] = 89049, - [SMALL_STATE(2126)] = 89114, - [SMALL_STATE(2127)] = 89179, - [SMALL_STATE(2128)] = 89304, - [SMALL_STATE(2129)] = 89429, - [SMALL_STATE(2130)] = 89494, - [SMALL_STATE(2131)] = 89559, - [SMALL_STATE(2132)] = 89624, - [SMALL_STATE(2133)] = 89749, - [SMALL_STATE(2134)] = 89874, - [SMALL_STATE(2135)] = 89939, - [SMALL_STATE(2136)] = 90004, - [SMALL_STATE(2137)] = 90069, - [SMALL_STATE(2138)] = 90134, - [SMALL_STATE(2139)] = 90199, - [SMALL_STATE(2140)] = 90324, - [SMALL_STATE(2141)] = 90449, - [SMALL_STATE(2142)] = 90514, - [SMALL_STATE(2143)] = 90579, - [SMALL_STATE(2144)] = 90704, - [SMALL_STATE(2145)] = 90769, - [SMALL_STATE(2146)] = 90834, - [SMALL_STATE(2147)] = 90901, - [SMALL_STATE(2148)] = 91026, - [SMALL_STATE(2149)] = 91091, - [SMALL_STATE(2150)] = 91216, - [SMALL_STATE(2151)] = 91341, - [SMALL_STATE(2152)] = 91466, - [SMALL_STATE(2153)] = 91531, - [SMALL_STATE(2154)] = 91596, - [SMALL_STATE(2155)] = 91661, - [SMALL_STATE(2156)] = 91726, - [SMALL_STATE(2157)] = 91851, - [SMALL_STATE(2158)] = 91918, - [SMALL_STATE(2159)] = 91983, - [SMALL_STATE(2160)] = 92048, - [SMALL_STATE(2161)] = 92113, - [SMALL_STATE(2162)] = 92238, - [SMALL_STATE(2163)] = 92363, - [SMALL_STATE(2164)] = 92488, - [SMALL_STATE(2165)] = 92613, - [SMALL_STATE(2166)] = 92738, - [SMALL_STATE(2167)] = 92803, - [SMALL_STATE(2168)] = 92928, - [SMALL_STATE(2169)] = 93053, - [SMALL_STATE(2170)] = 93178, - [SMALL_STATE(2171)] = 93303, - [SMALL_STATE(2172)] = 93428, - [SMALL_STATE(2173)] = 93553, - [SMALL_STATE(2174)] = 93618, - [SMALL_STATE(2175)] = 93691, - [SMALL_STATE(2176)] = 93816, - [SMALL_STATE(2177)] = 93941, - [SMALL_STATE(2178)] = 94066, - [SMALL_STATE(2179)] = 94191, - [SMALL_STATE(2180)] = 94256, - [SMALL_STATE(2181)] = 94321, - [SMALL_STATE(2182)] = 94386, - [SMALL_STATE(2183)] = 94511, - [SMALL_STATE(2184)] = 94638, - [SMALL_STATE(2185)] = 94703, - [SMALL_STATE(2186)] = 94828, - [SMALL_STATE(2187)] = 94953, - [SMALL_STATE(2188)] = 95078, - [SMALL_STATE(2189)] = 95203, - [SMALL_STATE(2190)] = 95328, - [SMALL_STATE(2191)] = 95455, - [SMALL_STATE(2192)] = 95582, - [SMALL_STATE(2193)] = 95707, - [SMALL_STATE(2194)] = 95832, - [SMALL_STATE(2195)] = 95957, - [SMALL_STATE(2196)] = 96082, - [SMALL_STATE(2197)] = 96207, - [SMALL_STATE(2198)] = 96332, - [SMALL_STATE(2199)] = 96457, - [SMALL_STATE(2200)] = 96582, - [SMALL_STATE(2201)] = 96707, - [SMALL_STATE(2202)] = 96832, - [SMALL_STATE(2203)] = 96957, - [SMALL_STATE(2204)] = 97082, - [SMALL_STATE(2205)] = 97207, - [SMALL_STATE(2206)] = 97332, - [SMALL_STATE(2207)] = 97396, - [SMALL_STATE(2208)] = 97460, - [SMALL_STATE(2209)] = 97524, - [SMALL_STATE(2210)] = 97594, - [SMALL_STATE(2211)] = 97658, - [SMALL_STATE(2212)] = 97722, - [SMALL_STATE(2213)] = 97786, - [SMALL_STATE(2214)] = 97850, - [SMALL_STATE(2215)] = 97914, - [SMALL_STATE(2216)] = 97978, - [SMALL_STATE(2217)] = 98042, - [SMALL_STATE(2218)] = 98106, - [SMALL_STATE(2219)] = 98170, - [SMALL_STATE(2220)] = 98234, - [SMALL_STATE(2221)] = 98298, - [SMALL_STATE(2222)] = 98362, - [SMALL_STATE(2223)] = 98440, - [SMALL_STATE(2224)] = 98568, - [SMALL_STATE(2225)] = 98632, - [SMALL_STATE(2226)] = 98704, - [SMALL_STATE(2227)] = 98768, - [SMALL_STATE(2228)] = 98850, - [SMALL_STATE(2229)] = 98914, - [SMALL_STATE(2230)] = 98984, - [SMALL_STATE(2231)] = 99048, - [SMALL_STATE(2232)] = 99114, - [SMALL_STATE(2233)] = 99178, - [SMALL_STATE(2234)] = 99252, - [SMALL_STATE(2235)] = 99316, - [SMALL_STATE(2236)] = 99400, - [SMALL_STATE(2237)] = 99464, - [SMALL_STATE(2238)] = 99528, - [SMALL_STATE(2239)] = 99592, - [SMALL_STATE(2240)] = 99656, - [SMALL_STATE(2241)] = 99744, - [SMALL_STATE(2242)] = 99830, - [SMALL_STATE(2243)] = 99894, - [SMALL_STATE(2244)] = 99958, - [SMALL_STATE(2245)] = 100022, - [SMALL_STATE(2246)] = 100086, - [SMALL_STATE(2247)] = 100176, - [SMALL_STATE(2248)] = 100240, - [SMALL_STATE(2249)] = 100332, - [SMALL_STATE(2250)] = 100396, - [SMALL_STATE(2251)] = 100460, - [SMALL_STATE(2252)] = 100554, - [SMALL_STATE(2253)] = 100618, - [SMALL_STATE(2254)] = 100714, - [SMALL_STATE(2255)] = 100778, - [SMALL_STATE(2256)] = 100842, - [SMALL_STATE(2257)] = 100906, - [SMALL_STATE(2258)] = 100970, - [SMALL_STATE(2259)] = 101034, - [SMALL_STATE(2260)] = 101102, - [SMALL_STATE(2261)] = 101166, - [SMALL_STATE(2262)] = 101230, - [SMALL_STATE(2263)] = 101294, - [SMALL_STATE(2264)] = 101422, - [SMALL_STATE(2265)] = 101486, - [SMALL_STATE(2266)] = 101550, - [SMALL_STATE(2267)] = 101614, - [SMALL_STATE(2268)] = 101678, - [SMALL_STATE(2269)] = 101742, - [SMALL_STATE(2270)] = 101806, - [SMALL_STATE(2271)] = 101870, - [SMALL_STATE(2272)] = 101934, - [SMALL_STATE(2273)] = 101998, - [SMALL_STATE(2274)] = 102062, - [SMALL_STATE(2275)] = 102126, - [SMALL_STATE(2276)] = 102190, - [SMALL_STATE(2277)] = 102254, - [SMALL_STATE(2278)] = 102343, - [SMALL_STATE(2279)] = 102431, - [SMALL_STATE(2280)] = 102551, - [SMALL_STATE(2281)] = 102634, - [SMALL_STATE(2282)] = 102717, - [SMALL_STATE(2283)] = 102840, - [SMALL_STATE(2284)] = 102963, - [SMALL_STATE(2285)] = 103086, - [SMALL_STATE(2286)] = 103169, - [SMALL_STATE(2287)] = 103252, - [SMALL_STATE(2288)] = 103335, - [SMALL_STATE(2289)] = 103418, - [SMALL_STATE(2290)] = 103541, - [SMALL_STATE(2291)] = 103621, - [SMALL_STATE(2292)] = 103701, - [SMALL_STATE(2293)] = 103783, - [SMALL_STATE(2294)] = 103865, - [SMALL_STATE(2295)] = 103983, - [SMALL_STATE(2296)] = 104065, - [SMALL_STATE(2297)] = 104147, - [SMALL_STATE(2298)] = 104229, - [SMALL_STATE(2299)] = 104311, - [SMALL_STATE(2300)] = 104388, - [SMALL_STATE(2301)] = 104467, - [SMALL_STATE(2302)] = 104544, - [SMALL_STATE(2303)] = 104621, - [SMALL_STATE(2304)] = 104698, - [SMALL_STATE(2305)] = 104775, - [SMALL_STATE(2306)] = 104852, - [SMALL_STATE(2307)] = 104929, - [SMALL_STATE(2308)] = 105006, - [SMALL_STATE(2309)] = 105085, - [SMALL_STATE(2310)] = 105162, - [SMALL_STATE(2311)] = 105239, - [SMALL_STATE(2312)] = 105316, - [SMALL_STATE(2313)] = 105393, - [SMALL_STATE(2314)] = 105469, - [SMALL_STATE(2315)] = 105545, - [SMALL_STATE(2316)] = 105621, - [SMALL_STATE(2317)] = 105697, - [SMALL_STATE(2318)] = 105773, - [SMALL_STATE(2319)] = 105849, - [SMALL_STATE(2320)] = 105925, - [SMALL_STATE(2321)] = 106001, - [SMALL_STATE(2322)] = 106077, - [SMALL_STATE(2323)] = 106153, - [SMALL_STATE(2324)] = 106229, - [SMALL_STATE(2325)] = 106305, - [SMALL_STATE(2326)] = 106410, - [SMALL_STATE(2327)] = 106468, - [SMALL_STATE(2328)] = 106528, - [SMALL_STATE(2329)] = 106588, - [SMALL_STATE(2330)] = 106648, - [SMALL_STATE(2331)] = 106708, - [SMALL_STATE(2332)] = 106768, - [SMALL_STATE(2333)] = 106828, - [SMALL_STATE(2334)] = 106888, - [SMALL_STATE(2335)] = 106946, - [SMALL_STATE(2336)] = 107004, - [SMALL_STATE(2337)] = 107064, - [SMALL_STATE(2338)] = 107122, - [SMALL_STATE(2339)] = 107182, - [SMALL_STATE(2340)] = 107242, - [SMALL_STATE(2341)] = 107302, - [SMALL_STATE(2342)] = 107362, - [SMALL_STATE(2343)] = 107422, - [SMALL_STATE(2344)] = 107482, - [SMALL_STATE(2345)] = 107542, - [SMALL_STATE(2346)] = 107602, - [SMALL_STATE(2347)] = 107662, - [SMALL_STATE(2348)] = 107720, - [SMALL_STATE(2349)] = 107778, - [SMALL_STATE(2350)] = 107833, - [SMALL_STATE(2351)] = 107888, - [SMALL_STATE(2352)] = 107943, - [SMALL_STATE(2353)] = 108000, - [SMALL_STATE(2354)] = 108059, - [SMALL_STATE(2355)] = 108118, - [SMALL_STATE(2356)] = 108177, - [SMALL_STATE(2357)] = 108234, - [SMALL_STATE(2358)] = 108291, - [SMALL_STATE(2359)] = 108346, - [SMALL_STATE(2360)] = 108403, - [SMALL_STATE(2361)] = 108460, - [SMALL_STATE(2362)] = 108515, - [SMALL_STATE(2363)] = 108574, - [SMALL_STATE(2364)] = 108631, - [SMALL_STATE(2365)] = 108690, - [SMALL_STATE(2366)] = 108743, - [SMALL_STATE(2367)] = 108800, - [SMALL_STATE(2368)] = 108853, - [SMALL_STATE(2369)] = 108910, - [SMALL_STATE(2370)] = 108969, - [SMALL_STATE(2371)] = 109028, - [SMALL_STATE(2372)] = 109085, - [SMALL_STATE(2373)] = 109142, - [SMALL_STATE(2374)] = 109201, - [SMALL_STATE(2375)] = 109258, - [SMALL_STATE(2376)] = 109317, - [SMALL_STATE(2377)] = 109370, - [SMALL_STATE(2378)] = 109427, - [SMALL_STATE(2379)] = 109482, - [SMALL_STATE(2380)] = 109541, - [SMALL_STATE(2381)] = 109624, - [SMALL_STATE(2382)] = 109683, - [SMALL_STATE(2383)] = 109736, - [SMALL_STATE(2384)] = 109789, - [SMALL_STATE(2385)] = 109842, - [SMALL_STATE(2386)] = 109901, - [SMALL_STATE(2387)] = 109956, - [SMALL_STATE(2388)] = 110015, - [SMALL_STATE(2389)] = 110074, - [SMALL_STATE(2390)] = 110133, - [SMALL_STATE(2391)] = 110192, - [SMALL_STATE(2392)] = 110251, - [SMALL_STATE(2393)] = 110303, - [SMALL_STATE(2394)] = 110359, - [SMALL_STATE(2395)] = 110413, - [SMALL_STATE(2396)] = 110465, - [SMALL_STATE(2397)] = 110521, - [SMALL_STATE(2398)] = 110599, - [SMALL_STATE(2399)] = 110653, - [SMALL_STATE(2400)] = 110711, - [SMALL_STATE(2401)] = 110765, - [SMALL_STATE(2402)] = 110819, - [SMALL_STATE(2403)] = 110871, - [SMALL_STATE(2404)] = 110925, - [SMALL_STATE(2405)] = 110977, - [SMALL_STATE(2406)] = 111031, - [SMALL_STATE(2407)] = 111089, - [SMALL_STATE(2408)] = 111143, - [SMALL_STATE(2409)] = 111197, - [SMALL_STATE(2410)] = 111253, - [SMALL_STATE(2411)] = 111317, - [SMALL_STATE(2412)] = 111369, - [SMALL_STATE(2413)] = 111421, - [SMALL_STATE(2414)] = 111477, - [SMALL_STATE(2415)] = 111539, - [SMALL_STATE(2416)] = 111591, - [SMALL_STATE(2417)] = 111643, - [SMALL_STATE(2418)] = 111697, - [SMALL_STATE(2419)] = 111751, - [SMALL_STATE(2420)] = 111805, - [SMALL_STATE(2421)] = 111859, - [SMALL_STATE(2422)] = 111923, - [SMALL_STATE(2423)] = 111979, - [SMALL_STATE(2424)] = 112033, - [SMALL_STATE(2425)] = 112087, - [SMALL_STATE(2426)] = 112139, - [SMALL_STATE(2427)] = 112193, - [SMALL_STATE(2428)] = 112249, - [SMALL_STATE(2429)] = 112303, - [SMALL_STATE(2430)] = 112355, - [SMALL_STATE(2431)] = 112409, - [SMALL_STATE(2432)] = 112473, - [SMALL_STATE(2433)] = 112527, - [SMALL_STATE(2434)] = 112579, - [SMALL_STATE(2435)] = 112637, - [SMALL_STATE(2436)] = 112691, - [SMALL_STATE(2437)] = 112743, - [SMALL_STATE(2438)] = 112797, - [SMALL_STATE(2439)] = 112849, - [SMALL_STATE(2440)] = 112905, - [SMALL_STATE(2441)] = 112957, - [SMALL_STATE(2442)] = 113013, - [SMALL_STATE(2443)] = 113065, - [SMALL_STATE(2444)] = 113121, - [SMALL_STATE(2445)] = 113175, - [SMALL_STATE(2446)] = 113228, - [SMALL_STATE(2447)] = 113279, - [SMALL_STATE(2448)] = 113332, - [SMALL_STATE(2449)] = 113385, - [SMALL_STATE(2450)] = 113442, - [SMALL_STATE(2451)] = 113499, - [SMALL_STATE(2452)] = 113556, - [SMALL_STATE(2453)] = 113607, - [SMALL_STATE(2454)] = 113658, - [SMALL_STATE(2455)] = 113709, - [SMALL_STATE(2456)] = 113762, - [SMALL_STATE(2457)] = 113815, - [SMALL_STATE(2458)] = 113866, - [SMALL_STATE(2459)] = 113917, - [SMALL_STATE(2460)] = 113970, - [SMALL_STATE(2461)] = 114021, - [SMALL_STATE(2462)] = 114072, - [SMALL_STATE(2463)] = 114123, - [SMALL_STATE(2464)] = 114174, - [SMALL_STATE(2465)] = 114231, - [SMALL_STATE(2466)] = 114282, - [SMALL_STATE(2467)] = 114333, - [SMALL_STATE(2468)] = 114384, - [SMALL_STATE(2469)] = 114435, - [SMALL_STATE(2470)] = 114486, - [SMALL_STATE(2471)] = 114541, - [SMALL_STATE(2472)] = 114592, - [SMALL_STATE(2473)] = 114643, - [SMALL_STATE(2474)] = 114700, - [SMALL_STATE(2475)] = 114751, - [SMALL_STATE(2476)] = 114802, - [SMALL_STATE(2477)] = 114853, - [SMALL_STATE(2478)] = 114904, - [SMALL_STATE(2479)] = 114955, - [SMALL_STATE(2480)] = 115012, - [SMALL_STATE(2481)] = 115063, - [SMALL_STATE(2482)] = 115114, - [SMALL_STATE(2483)] = 115169, - [SMALL_STATE(2484)] = 115220, - [SMALL_STATE(2485)] = 115271, - [SMALL_STATE(2486)] = 115322, - [SMALL_STATE(2487)] = 115373, - [SMALL_STATE(2488)] = 115426, - [SMALL_STATE(2489)] = 115477, - [SMALL_STATE(2490)] = 115530, - [SMALL_STATE(2491)] = 115583, - [SMALL_STATE(2492)] = 115636, - [SMALL_STATE(2493)] = 115693, - [SMALL_STATE(2494)] = 115744, - [SMALL_STATE(2495)] = 115795, - [SMALL_STATE(2496)] = 115846, - [SMALL_STATE(2497)] = 115897, - [SMALL_STATE(2498)] = 115948, - [SMALL_STATE(2499)] = 115999, - [SMALL_STATE(2500)] = 116050, - [SMALL_STATE(2501)] = 116101, - [SMALL_STATE(2502)] = 116156, - [SMALL_STATE(2503)] = 116207, - [SMALL_STATE(2504)] = 116264, - [SMALL_STATE(2505)] = 116315, - [SMALL_STATE(2506)] = 116366, - [SMALL_STATE(2507)] = 116417, - [SMALL_STATE(2508)] = 116472, - [SMALL_STATE(2509)] = 116523, - [SMALL_STATE(2510)] = 116574, - [SMALL_STATE(2511)] = 116625, - [SMALL_STATE(2512)] = 116676, - [SMALL_STATE(2513)] = 116733, - [SMALL_STATE(2514)] = 116784, - [SMALL_STATE(2515)] = 116835, - [SMALL_STATE(2516)] = 116886, - [SMALL_STATE(2517)] = 116937, - [SMALL_STATE(2518)] = 116988, - [SMALL_STATE(2519)] = 117039, - [SMALL_STATE(2520)] = 117090, - [SMALL_STATE(2521)] = 117147, - [SMALL_STATE(2522)] = 117202, - [SMALL_STATE(2523)] = 117253, - [SMALL_STATE(2524)] = 117306, - [SMALL_STATE(2525)] = 117357, - [SMALL_STATE(2526)] = 117408, - [SMALL_STATE(2527)] = 117459, - [SMALL_STATE(2528)] = 117510, - [SMALL_STATE(2529)] = 117561, - [SMALL_STATE(2530)] = 117612, - [SMALL_STATE(2531)] = 117663, - [SMALL_STATE(2532)] = 117714, - [SMALL_STATE(2533)] = 117771, - [SMALL_STATE(2534)] = 117822, - [SMALL_STATE(2535)] = 117877, - [SMALL_STATE(2536)] = 117928, - [SMALL_STATE(2537)] = 117979, - [SMALL_STATE(2538)] = 118030, - [SMALL_STATE(2539)] = 118081, - [SMALL_STATE(2540)] = 118132, - [SMALL_STATE(2541)] = 118183, - [SMALL_STATE(2542)] = 118234, - [SMALL_STATE(2543)] = 118285, - [SMALL_STATE(2544)] = 118336, - [SMALL_STATE(2545)] = 118387, - [SMALL_STATE(2546)] = 118442, - [SMALL_STATE(2547)] = 118493, - [SMALL_STATE(2548)] = 118544, - [SMALL_STATE(2549)] = 118595, - [SMALL_STATE(2550)] = 118646, - [SMALL_STATE(2551)] = 118697, - [SMALL_STATE(2552)] = 118748, - [SMALL_STATE(2553)] = 118801, - [SMALL_STATE(2554)] = 118858, - [SMALL_STATE(2555)] = 118909, - [SMALL_STATE(2556)] = 118960, - [SMALL_STATE(2557)] = 119011, - [SMALL_STATE(2558)] = 119062, - [SMALL_STATE(2559)] = 119113, - [SMALL_STATE(2560)] = 119170, - [SMALL_STATE(2561)] = 119221, - [SMALL_STATE(2562)] = 119272, - [SMALL_STATE(2563)] = 119323, - [SMALL_STATE(2564)] = 119374, - [SMALL_STATE(2565)] = 119427, - [SMALL_STATE(2566)] = 119476, - [SMALL_STATE(2567)] = 119529, - [SMALL_STATE(2568)] = 119580, - [SMALL_STATE(2569)] = 119637, - [SMALL_STATE(2570)] = 119688, - [SMALL_STATE(2571)] = 119741, - [SMALL_STATE(2572)] = 119792, - [SMALL_STATE(2573)] = 119843, - [SMALL_STATE(2574)] = 119924, - [SMALL_STATE(2575)] = 119975, - [SMALL_STATE(2576)] = 120026, - [SMALL_STATE(2577)] = 120081, - [SMALL_STATE(2578)] = 120132, - [SMALL_STATE(2579)] = 120183, - [SMALL_STATE(2580)] = 120234, - [SMALL_STATE(2581)] = 120285, - [SMALL_STATE(2582)] = 120336, - [SMALL_STATE(2583)] = 120389, - [SMALL_STATE(2584)] = 120442, - [SMALL_STATE(2585)] = 120493, - [SMALL_STATE(2586)] = 120544, - [SMALL_STATE(2587)] = 120595, - [SMALL_STATE(2588)] = 120646, - [SMALL_STATE(2589)] = 120703, - [SMALL_STATE(2590)] = 120754, - [SMALL_STATE(2591)] = 120811, - [SMALL_STATE(2592)] = 120862, - [SMALL_STATE(2593)] = 120913, - [SMALL_STATE(2594)] = 120964, - [SMALL_STATE(2595)] = 121015, - [SMALL_STATE(2596)] = 121066, - [SMALL_STATE(2597)] = 121116, - [SMALL_STATE(2598)] = 121166, - [SMALL_STATE(2599)] = 121216, - [SMALL_STATE(2600)] = 121268, - [SMALL_STATE(2601)] = 121318, - [SMALL_STATE(2602)] = 121368, - [SMALL_STATE(2603)] = 121440, - [SMALL_STATE(2604)] = 121490, - [SMALL_STATE(2605)] = 121540, - [SMALL_STATE(2606)] = 121590, - [SMALL_STATE(2607)] = 121640, - [SMALL_STATE(2608)] = 121692, - [SMALL_STATE(2609)] = 121742, - [SMALL_STATE(2610)] = 121792, - [SMALL_STATE(2611)] = 121850, - [SMALL_STATE(2612)] = 121900, - [SMALL_STATE(2613)] = 121950, - [SMALL_STATE(2614)] = 122000, - [SMALL_STATE(2615)] = 122054, - [SMALL_STATE(2616)] = 122104, - [SMALL_STATE(2617)] = 122154, - [SMALL_STATE(2618)] = 122204, - [SMALL_STATE(2619)] = 122254, - [SMALL_STATE(2620)] = 122310, - [SMALL_STATE(2621)] = 122382, - [SMALL_STATE(2622)] = 122432, - [SMALL_STATE(2623)] = 122490, - [SMALL_STATE(2624)] = 122540, - [SMALL_STATE(2625)] = 122590, - [SMALL_STATE(2626)] = 122640, - [SMALL_STATE(2627)] = 122690, - [SMALL_STATE(2628)] = 122740, - [SMALL_STATE(2629)] = 122790, - [SMALL_STATE(2630)] = 122840, - [SMALL_STATE(2631)] = 122890, - [SMALL_STATE(2632)] = 122940, - [SMALL_STATE(2633)] = 122990, - [SMALL_STATE(2634)] = 123040, - [SMALL_STATE(2635)] = 123090, - [SMALL_STATE(2636)] = 123140, - [SMALL_STATE(2637)] = 123190, - [SMALL_STATE(2638)] = 123240, - [SMALL_STATE(2639)] = 123290, - [SMALL_STATE(2640)] = 123340, - [SMALL_STATE(2641)] = 123390, - [SMALL_STATE(2642)] = 123440, - [SMALL_STATE(2643)] = 123490, - [SMALL_STATE(2644)] = 123540, - [SMALL_STATE(2645)] = 123590, - [SMALL_STATE(2646)] = 123640, - [SMALL_STATE(2647)] = 123690, - [SMALL_STATE(2648)] = 123740, - [SMALL_STATE(2649)] = 123790, - [SMALL_STATE(2650)] = 123840, - [SMALL_STATE(2651)] = 123890, - [SMALL_STATE(2652)] = 123940, - [SMALL_STATE(2653)] = 123990, - [SMALL_STATE(2654)] = 124040, - [SMALL_STATE(2655)] = 124090, - [SMALL_STATE(2656)] = 124140, - [SMALL_STATE(2657)] = 124190, - [SMALL_STATE(2658)] = 124240, - [SMALL_STATE(2659)] = 124290, - [SMALL_STATE(2660)] = 124340, - [SMALL_STATE(2661)] = 124396, - [SMALL_STATE(2662)] = 124446, - [SMALL_STATE(2663)] = 124496, - [SMALL_STATE(2664)] = 124546, - [SMALL_STATE(2665)] = 124596, - [SMALL_STATE(2666)] = 124646, - [SMALL_STATE(2667)] = 124718, - [SMALL_STATE(2668)] = 124768, - [SMALL_STATE(2669)] = 124818, - [SMALL_STATE(2670)] = 124868, - [SMALL_STATE(2671)] = 124918, - [SMALL_STATE(2672)] = 124990, - [SMALL_STATE(2673)] = 125062, - [SMALL_STATE(2674)] = 125112, - [SMALL_STATE(2675)] = 125162, - [SMALL_STATE(2676)] = 125212, - [SMALL_STATE(2677)] = 125262, - [SMALL_STATE(2678)] = 125312, - [SMALL_STATE(2679)] = 125362, - [SMALL_STATE(2680)] = 125412, - [SMALL_STATE(2681)] = 125462, - [SMALL_STATE(2682)] = 125512, - [SMALL_STATE(2683)] = 125568, - [SMALL_STATE(2684)] = 125618, - [SMALL_STATE(2685)] = 125668, - [SMALL_STATE(2686)] = 125718, - [SMALL_STATE(2687)] = 125768, - [SMALL_STATE(2688)] = 125818, - [SMALL_STATE(2689)] = 125868, - [SMALL_STATE(2690)] = 125918, - [SMALL_STATE(2691)] = 125968, - [SMALL_STATE(2692)] = 126018, - [SMALL_STATE(2693)] = 126090, - [SMALL_STATE(2694)] = 126140, - [SMALL_STATE(2695)] = 126190, - [SMALL_STATE(2696)] = 126240, - [SMALL_STATE(2697)] = 126290, - [SMALL_STATE(2698)] = 126340, - [SMALL_STATE(2699)] = 126416, - [SMALL_STATE(2700)] = 126466, - [SMALL_STATE(2701)] = 126516, - [SMALL_STATE(2702)] = 126566, - [SMALL_STATE(2703)] = 126616, - [SMALL_STATE(2704)] = 126666, - [SMALL_STATE(2705)] = 126724, - [SMALL_STATE(2706)] = 126774, - [SMALL_STATE(2707)] = 126824, - [SMALL_STATE(2708)] = 126874, - [SMALL_STATE(2709)] = 126924, - [SMALL_STATE(2710)] = 126974, - [SMALL_STATE(2711)] = 127024, - [SMALL_STATE(2712)] = 127074, - [SMALL_STATE(2713)] = 127124, - [SMALL_STATE(2714)] = 127174, - [SMALL_STATE(2715)] = 127224, - [SMALL_STATE(2716)] = 127274, - [SMALL_STATE(2717)] = 127324, - [SMALL_STATE(2718)] = 127381, - [SMALL_STATE(2719)] = 127436, - [SMALL_STATE(2720)] = 127487, - [SMALL_STATE(2721)] = 127544, - [SMALL_STATE(2722)] = 127593, - [SMALL_STATE(2723)] = 127644, - [SMALL_STATE(2724)] = 127695, - [SMALL_STATE(2725)] = 127746, - [SMALL_STATE(2726)] = 127797, - [SMALL_STATE(2727)] = 127852, - [SMALL_STATE(2728)] = 127901, - [SMALL_STATE(2729)] = 127950, - [SMALL_STATE(2730)] = 128005, - [SMALL_STATE(2731)] = 128074, - [SMALL_STATE(2732)] = 128125, - [SMALL_STATE(2733)] = 128180, - [SMALL_STATE(2734)] = 128235, - [SMALL_STATE(2735)] = 128304, - [SMALL_STATE(2736)] = 128359, - [SMALL_STATE(2737)] = 128414, - [SMALL_STATE(2738)] = 128463, - [SMALL_STATE(2739)] = 128518, - [SMALL_STATE(2740)] = 128567, - [SMALL_STATE(2741)] = 128622, - [SMALL_STATE(2742)] = 128671, - [SMALL_STATE(2743)] = 128737, - [SMALL_STATE(2744)] = 128803, - [SMALL_STATE(2745)] = 128851, - [SMALL_STATE(2746)] = 128933, - [SMALL_STATE(2747)] = 129015, - [SMALL_STATE(2748)] = 129063, - [SMALL_STATE(2749)] = 129129, - [SMALL_STATE(2750)] = 129177, - [SMALL_STATE(2751)] = 129225, - [SMALL_STATE(2752)] = 129273, - [SMALL_STATE(2753)] = 129321, - [SMALL_STATE(2754)] = 129369, - [SMALL_STATE(2755)] = 129417, - [SMALL_STATE(2756)] = 129465, - [SMALL_STATE(2757)] = 129515, - [SMALL_STATE(2758)] = 129563, - [SMALL_STATE(2759)] = 129611, - [SMALL_STATE(2760)] = 129659, - [SMALL_STATE(2761)] = 129707, - [SMALL_STATE(2762)] = 129755, - [SMALL_STATE(2763)] = 129803, - [SMALL_STATE(2764)] = 129851, - [SMALL_STATE(2765)] = 129917, - [SMALL_STATE(2766)] = 129965, - [SMALL_STATE(2767)] = 130031, - [SMALL_STATE(2768)] = 130097, - [SMALL_STATE(2769)] = 130145, - [SMALL_STATE(2770)] = 130197, - [SMALL_STATE(2771)] = 130245, - [SMALL_STATE(2772)] = 130293, - [SMALL_STATE(2773)] = 130341, - [SMALL_STATE(2774)] = 130389, - [SMALL_STATE(2775)] = 130437, - [SMALL_STATE(2776)] = 130491, - [SMALL_STATE(2777)] = 130557, - [SMALL_STATE(2778)] = 130611, - [SMALL_STATE(2779)] = 130677, - [SMALL_STATE(2780)] = 130743, - [SMALL_STATE(2781)] = 130791, - [SMALL_STATE(2782)] = 130861, - [SMALL_STATE(2783)] = 130915, - [SMALL_STATE(2784)] = 130985, - [SMALL_STATE(2785)] = 131033, - [SMALL_STATE(2786)] = 131081, - [SMALL_STATE(2787)] = 131129, - [SMALL_STATE(2788)] = 131177, - [SMALL_STATE(2789)] = 131225, - [SMALL_STATE(2790)] = 131281, - [SMALL_STATE(2791)] = 131327, - [SMALL_STATE(2792)] = 131381, - [SMALL_STATE(2793)] = 131433, - [SMALL_STATE(2794)] = 131481, - [SMALL_STATE(2795)] = 131535, - [SMALL_STATE(2796)] = 131583, - [SMALL_STATE(2797)] = 131631, - [SMALL_STATE(2798)] = 131679, - [SMALL_STATE(2799)] = 131727, - [SMALL_STATE(2800)] = 131777, - [SMALL_STATE(2801)] = 131825, - [SMALL_STATE(2802)] = 131879, - [SMALL_STATE(2803)] = 131927, - [SMALL_STATE(2804)] = 131981, - [SMALL_STATE(2805)] = 132029, - [SMALL_STATE(2806)] = 132077, - [SMALL_STATE(2807)] = 132129, - [SMALL_STATE(2808)] = 132177, - [SMALL_STATE(2809)] = 132225, - [SMALL_STATE(2810)] = 132273, - [SMALL_STATE(2811)] = 132321, - [SMALL_STATE(2812)] = 132369, - [SMALL_STATE(2813)] = 132423, - [SMALL_STATE(2814)] = 132471, - [SMALL_STATE(2815)] = 132525, - [SMALL_STATE(2816)] = 132573, - [SMALL_STATE(2817)] = 132621, - [SMALL_STATE(2818)] = 132675, - [SMALL_STATE(2819)] = 132741, - [SMALL_STATE(2820)] = 132807, - [SMALL_STATE(2821)] = 132873, - [SMALL_STATE(2822)] = 132921, - [SMALL_STATE(2823)] = 132975, - [SMALL_STATE(2824)] = 133023, - [SMALL_STATE(2825)] = 133071, - [SMALL_STATE(2826)] = 133119, - [SMALL_STATE(2827)] = 133189, - [SMALL_STATE(2828)] = 133259, - [SMALL_STATE(2829)] = 133329, - [SMALL_STATE(2830)] = 133377, - [SMALL_STATE(2831)] = 133447, - [SMALL_STATE(2832)] = 133500, - [SMALL_STATE(2833)] = 133553, - [SMALL_STATE(2834)] = 133606, - [SMALL_STATE(2835)] = 133653, - [SMALL_STATE(2836)] = 133700, - [SMALL_STATE(2837)] = 133753, - [SMALL_STATE(2838)] = 133800, - [SMALL_STATE(2839)] = 133879, - [SMALL_STATE(2840)] = 133956, - [SMALL_STATE(2841)] = 134003, - [SMALL_STATE(2842)] = 134078, - [SMALL_STATE(2843)] = 134151, - [SMALL_STATE(2844)] = 134196, - [SMALL_STATE(2845)] = 134267, - [SMALL_STATE(2846)] = 134336, - [SMALL_STATE(2847)] = 134403, - [SMALL_STATE(2848)] = 134456, - [SMALL_STATE(2849)] = 134513, - [SMALL_STATE(2850)] = 134562, - [SMALL_STATE(2851)] = 134607, - [SMALL_STATE(2852)] = 134652, - [SMALL_STATE(2853)] = 134705, - [SMALL_STATE(2854)] = 134758, - [SMALL_STATE(2855)] = 134807, - [SMALL_STATE(2856)] = 134872, - [SMALL_STATE(2857)] = 134927, - [SMALL_STATE(2858)] = 134972, - [SMALL_STATE(2859)] = 135033, - [SMALL_STATE(2860)] = 135112, - [SMALL_STATE(2861)] = 135161, - [SMALL_STATE(2862)] = 135210, - [SMALL_STATE(2863)] = 135259, - [SMALL_STATE(2864)] = 135308, - [SMALL_STATE(2865)] = 135353, - [SMALL_STATE(2866)] = 135406, - [SMALL_STATE(2867)] = 135459, - [SMALL_STATE(2868)] = 135512, - [SMALL_STATE(2869)] = 135565, - [SMALL_STATE(2870)] = 135618, - [SMALL_STATE(2871)] = 135671, - [SMALL_STATE(2872)] = 135718, - [SMALL_STATE(2873)] = 135799, - [SMALL_STATE(2874)] = 135880, - [SMALL_STATE(2875)] = 135959, - [SMALL_STATE(2876)] = 136011, - [SMALL_STATE(2877)] = 136063, - [SMALL_STATE(2878)] = 136127, - [SMALL_STATE(2879)] = 136191, - [SMALL_STATE(2880)] = 136237, - [SMALL_STATE(2881)] = 136289, - [SMALL_STATE(2882)] = 136341, - [SMALL_STATE(2883)] = 136387, - [SMALL_STATE(2884)] = 136451, - [SMALL_STATE(2885)] = 136503, - [SMALL_STATE(2886)] = 136547, - [SMALL_STATE(2887)] = 136615, - [SMALL_STATE(2888)] = 136679, - [SMALL_STATE(2889)] = 136743, - [SMALL_STATE(2890)] = 136795, - [SMALL_STATE(2891)] = 136851, - [SMALL_STATE(2892)] = 136897, - [SMALL_STATE(2893)] = 136967, - [SMALL_STATE(2894)] = 137019, - [SMALL_STATE(2895)] = 137093, - [SMALL_STATE(2896)] = 137145, - [SMALL_STATE(2897)] = 137217, - [SMALL_STATE(2898)] = 137271, - [SMALL_STATE(2899)] = 137349, - [SMALL_STATE(2900)] = 137401, - [SMALL_STATE(2901)] = 137453, - [SMALL_STATE(2902)] = 137517, - [SMALL_STATE(2903)] = 137569, - [SMALL_STATE(2904)] = 137621, - [SMALL_STATE(2905)] = 137695, - [SMALL_STATE(2906)] = 137771, - [SMALL_STATE(2907)] = 137839, - [SMALL_STATE(2908)] = 137889, - [SMALL_STATE(2909)] = 137941, - [SMALL_STATE(2910)] = 137989, - [SMALL_STATE(2911)] = 138065, - [SMALL_STATE(2912)] = 138137, - [SMALL_STATE(2913)] = 138187, - [SMALL_STATE(2914)] = 138239, - [SMALL_STATE(2915)] = 138305, - [SMALL_STATE(2916)] = 138369, - [SMALL_STATE(2917)] = 138421, - [SMALL_STATE(2918)] = 138471, - [SMALL_STATE(2919)] = 138549, - [SMALL_STATE(2920)] = 138601, - [SMALL_STATE(2921)] = 138665, - [SMALL_STATE(2922)] = 138729, - [SMALL_STATE(2923)] = 138781, - [SMALL_STATE(2924)] = 138859, - [SMALL_STATE(2925)] = 138911, - [SMALL_STATE(2926)] = 138971, - [SMALL_STATE(2927)] = 139035, - [SMALL_STATE(2928)] = 139089, - [SMALL_STATE(2929)] = 139167, - [SMALL_STATE(2930)] = 139231, - [SMALL_STATE(2931)] = 139301, - [SMALL_STATE(2932)] = 139353, - [SMALL_STATE(2933)] = 139417, - [SMALL_STATE(2934)] = 139465, - [SMALL_STATE(2935)] = 139529, - [SMALL_STATE(2936)] = 139589, - [SMALL_STATE(2937)] = 139643, - [SMALL_STATE(2938)] = 139707, - [SMALL_STATE(2939)] = 139753, - [SMALL_STATE(2940)] = 139805, - [SMALL_STATE(2941)] = 139857, - [SMALL_STATE(2942)] = 139905, - [SMALL_STATE(2943)] = 139961, - [SMALL_STATE(2944)] = 140027, - [SMALL_STATE(2945)] = 140074, - [SMALL_STATE(2946)] = 140143, - [SMALL_STATE(2947)] = 140188, - [SMALL_STATE(2948)] = 140259, - [SMALL_STATE(2949)] = 140332, - [SMALL_STATE(2950)] = 140379, - [SMALL_STATE(2951)] = 140426, - [SMALL_STATE(2952)] = 140473, - [SMALL_STATE(2953)] = 140518, - [SMALL_STATE(2954)] = 140563, - [SMALL_STATE(2955)] = 140614, - [SMALL_STATE(2956)] = 140659, - [SMALL_STATE(2957)] = 140718, - [SMALL_STATE(2958)] = 140771, - [SMALL_STATE(2959)] = 140834, - [SMALL_STATE(2960)] = 140879, - [SMALL_STATE(2961)] = 140954, - [SMALL_STATE(2962)] = 141003, - [SMALL_STATE(2963)] = 141080, - [SMALL_STATE(2964)] = 141131, - [SMALL_STATE(2965)] = 141182, - [SMALL_STATE(2966)] = 141229, - [SMALL_STATE(2967)] = 141274, - [SMALL_STATE(2968)] = 141319, - [SMALL_STATE(2969)] = 141372, - [SMALL_STATE(2970)] = 141417, - [SMALL_STATE(2971)] = 141462, - [SMALL_STATE(2972)] = 141517, - [SMALL_STATE(2973)] = 141582, - [SMALL_STATE(2974)] = 141649, - [SMALL_STATE(2975)] = 141694, - [SMALL_STATE(2976)] = 141745, - [SMALL_STATE(2977)] = 141792, - [SMALL_STATE(2978)] = 141839, - [SMALL_STATE(2979)] = 141886, - [SMALL_STATE(2980)] = 141931, - [SMALL_STATE(2981)] = 141978, - [SMALL_STATE(2982)] = 142023, - [SMALL_STATE(2983)] = 142074, - [SMALL_STATE(2984)] = 142119, - [SMALL_STATE(2985)] = 142164, - [SMALL_STATE(2986)] = 142237, - [SMALL_STATE(2987)] = 142282, - [SMALL_STATE(2988)] = 142327, - [SMALL_STATE(2989)] = 142380, - [SMALL_STATE(2990)] = 142431, - [SMALL_STATE(2991)] = 142476, - [SMALL_STATE(2992)] = 142521, - [SMALL_STATE(2993)] = 142566, - [SMALL_STATE(2994)] = 142611, - [SMALL_STATE(2995)] = 142660, - [SMALL_STATE(2996)] = 142724, - [SMALL_STATE(2997)] = 142768, - [SMALL_STATE(2998)] = 142814, - [SMALL_STATE(2999)] = 142884, - [SMALL_STATE(3000)] = 142932, - [SMALL_STATE(3001)] = 142976, - [SMALL_STATE(3002)] = 143022, - [SMALL_STATE(3003)] = 143072, - [SMALL_STATE(3004)] = 143144, - [SMALL_STATE(3005)] = 143190, - [SMALL_STATE(3006)] = 143234, - [SMALL_STATE(3007)] = 143302, - [SMALL_STATE(3008)] = 143346, - [SMALL_STATE(3009)] = 143416, - [SMALL_STATE(3010)] = 143460, - [SMALL_STATE(3011)] = 143504, - [SMALL_STATE(3012)] = 143548, - [SMALL_STATE(3013)] = 143592, - [SMALL_STATE(3014)] = 143636, - [SMALL_STATE(3015)] = 143680, - [SMALL_STATE(3016)] = 143724, - [SMALL_STATE(3017)] = 143768, - [SMALL_STATE(3018)] = 143812, - [SMALL_STATE(3019)] = 143858, - [SMALL_STATE(3020)] = 143908, - [SMALL_STATE(3021)] = 143952, - [SMALL_STATE(3022)] = 143998, - [SMALL_STATE(3023)] = 144042, - [SMALL_STATE(3024)] = 144094, - [SMALL_STATE(3025)] = 144138, - [SMALL_STATE(3026)] = 144182, - [SMALL_STATE(3027)] = 144232, - [SMALL_STATE(3028)] = 144276, - [SMALL_STATE(3029)] = 144320, - [SMALL_STATE(3030)] = 144368, - [SMALL_STATE(3031)] = 144412, - [SMALL_STATE(3032)] = 144456, - [SMALL_STATE(3033)] = 144500, - [SMALL_STATE(3034)] = 144544, - [SMALL_STATE(3035)] = 144588, - [SMALL_STATE(3036)] = 144658, - [SMALL_STATE(3037)] = 144702, - [SMALL_STATE(3038)] = 144746, - [SMALL_STATE(3039)] = 144816, - [SMALL_STATE(3040)] = 144860, - [SMALL_STATE(3041)] = 144906, - [SMALL_STATE(3042)] = 144954, - [SMALL_STATE(3043)] = 145024, - [SMALL_STATE(3044)] = 145068, - [SMALL_STATE(3045)] = 145112, - [SMALL_STATE(3046)] = 145156, - [SMALL_STATE(3047)] = 145200, - [SMALL_STATE(3048)] = 145244, - [SMALL_STATE(3049)] = 145288, - [SMALL_STATE(3050)] = 145332, - [SMALL_STATE(3051)] = 145376, - [SMALL_STATE(3052)] = 145442, - [SMALL_STATE(3053)] = 145486, - [SMALL_STATE(3054)] = 145530, - [SMALL_STATE(3055)] = 145582, - [SMALL_STATE(3056)] = 145626, - [SMALL_STATE(3057)] = 145688, - [SMALL_STATE(3058)] = 145732, - [SMALL_STATE(3059)] = 145782, - [SMALL_STATE(3060)] = 145826, - [SMALL_STATE(3061)] = 145870, - [SMALL_STATE(3062)] = 145914, - [SMALL_STATE(3063)] = 145958, - [SMALL_STATE(3064)] = 146018, - [SMALL_STATE(3065)] = 146062, - [SMALL_STATE(3066)] = 146106, - [SMALL_STATE(3067)] = 146156, - [SMALL_STATE(3068)] = 146200, - [SMALL_STATE(3069)] = 146250, - [SMALL_STATE(3070)] = 146320, - [SMALL_STATE(3071)] = 146366, - [SMALL_STATE(3072)] = 146412, - [SMALL_STATE(3073)] = 146456, - [SMALL_STATE(3074)] = 146510, - [SMALL_STATE(3075)] = 146554, - [SMALL_STATE(3076)] = 146604, - [SMALL_STATE(3077)] = 146648, - [SMALL_STATE(3078)] = 146704, - [SMALL_STATE(3079)] = 146750, - [SMALL_STATE(3080)] = 146794, - [SMALL_STATE(3081)] = 146842, - [SMALL_STATE(3082)] = 146886, - [SMALL_STATE(3083)] = 146930, - [SMALL_STATE(3084)] = 146974, - [SMALL_STATE(3085)] = 147032, - [SMALL_STATE(3086)] = 147078, - [SMALL_STATE(3087)] = 147122, - [SMALL_STATE(3088)] = 147166, - [SMALL_STATE(3089)] = 147218, - [SMALL_STATE(3090)] = 147261, - [SMALL_STATE(3091)] = 147310, - [SMALL_STATE(3092)] = 147367, - [SMALL_STATE(3093)] = 147416, - [SMALL_STATE(3094)] = 147465, - [SMALL_STATE(3095)] = 147524, - [SMALL_STATE(3096)] = 147567, - [SMALL_STATE(3097)] = 147610, - [SMALL_STATE(3098)] = 147653, - [SMALL_STATE(3099)] = 147704, - [SMALL_STATE(3100)] = 147747, - [SMALL_STATE(3101)] = 147790, - [SMALL_STATE(3102)] = 147833, - [SMALL_STATE(3103)] = 147878, - [SMALL_STATE(3104)] = 147925, - [SMALL_STATE(3105)] = 147968, - [SMALL_STATE(3106)] = 148013, - [SMALL_STATE(3107)] = 148060, - [SMALL_STATE(3108)] = 148103, - [SMALL_STATE(3109)] = 148146, - [SMALL_STATE(3110)] = 148207, - [SMALL_STATE(3111)] = 148250, - [SMALL_STATE(3112)] = 148313, - [SMALL_STATE(3113)] = 148368, - [SMALL_STATE(3114)] = 148411, - [SMALL_STATE(3115)] = 148460, - [SMALL_STATE(3116)] = 148527, - [SMALL_STATE(3117)] = 148570, - [SMALL_STATE(3118)] = 148623, - [SMALL_STATE(3119)] = 148668, - [SMALL_STATE(3120)] = 148711, - [SMALL_STATE(3121)] = 148754, - [SMALL_STATE(3122)] = 148799, - [SMALL_STATE(3123)] = 148844, - [SMALL_STATE(3124)] = 148887, - [SMALL_STATE(3125)] = 148934, - [SMALL_STATE(3126)] = 148983, - [SMALL_STATE(3127)] = 149026, - [SMALL_STATE(3128)] = 149069, - [SMALL_STATE(3129)] = 149118, - [SMALL_STATE(3130)] = 149161, - [SMALL_STATE(3131)] = 149204, - [SMALL_STATE(3132)] = 149247, - [SMALL_STATE(3133)] = 149290, - [SMALL_STATE(3134)] = 149339, - [SMALL_STATE(3135)] = 149382, - [SMALL_STATE(3136)] = 149431, - [SMALL_STATE(3137)] = 149474, - [SMALL_STATE(3138)] = 149517, - [SMALL_STATE(3139)] = 149560, - [SMALL_STATE(3140)] = 149603, - [SMALL_STATE(3141)] = 149646, - [SMALL_STATE(3142)] = 149689, - [SMALL_STATE(3143)] = 149732, - [SMALL_STATE(3144)] = 149775, - [SMALL_STATE(3145)] = 149818, - [SMALL_STATE(3146)] = 149861, - [SMALL_STATE(3147)] = 149904, - [SMALL_STATE(3148)] = 149947, - [SMALL_STATE(3149)] = 149990, - [SMALL_STATE(3150)] = 150033, - [SMALL_STATE(3151)] = 150076, - [SMALL_STATE(3152)] = 150119, - [SMALL_STATE(3153)] = 150162, - [SMALL_STATE(3154)] = 150205, - [SMALL_STATE(3155)] = 150254, - [SMALL_STATE(3156)] = 150297, - [SMALL_STATE(3157)] = 150340, - [SMALL_STATE(3158)] = 150383, - [SMALL_STATE(3159)] = 150426, - [SMALL_STATE(3160)] = 150471, - [SMALL_STATE(3161)] = 150514, - [SMALL_STATE(3162)] = 150583, - [SMALL_STATE(3163)] = 150626, - [SMALL_STATE(3164)] = 150675, - [SMALL_STATE(3165)] = 150744, - [SMALL_STATE(3166)] = 150787, - [SMALL_STATE(3167)] = 150830, - [SMALL_STATE(3168)] = 150879, - [SMALL_STATE(3169)] = 150928, - [SMALL_STATE(3170)] = 150971, - [SMALL_STATE(3171)] = 151014, - [SMALL_STATE(3172)] = 151057, - [SMALL_STATE(3173)] = 151100, - [SMALL_STATE(3174)] = 151169, - [SMALL_STATE(3175)] = 151212, - [SMALL_STATE(3176)] = 151255, - [SMALL_STATE(3177)] = 151298, - [SMALL_STATE(3178)] = 151367, - [SMALL_STATE(3179)] = 151410, - [SMALL_STATE(3180)] = 151453, - [SMALL_STATE(3181)] = 151496, - [SMALL_STATE(3182)] = 151539, - [SMALL_STATE(3183)] = 151582, - [SMALL_STATE(3184)] = 151625, - [SMALL_STATE(3185)] = 151668, - [SMALL_STATE(3186)] = 151711, - [SMALL_STATE(3187)] = 151754, - [SMALL_STATE(3188)] = 151819, - [SMALL_STATE(3189)] = 151862, - [SMALL_STATE(3190)] = 151911, - [SMALL_STATE(3191)] = 151956, - [SMALL_STATE(3192)] = 152001, - [SMALL_STATE(3193)] = 152044, - [SMALL_STATE(3194)] = 152087, - [SMALL_STATE(3195)] = 152156, - [SMALL_STATE(3196)] = 152199, - [SMALL_STATE(3197)] = 152242, - [SMALL_STATE(3198)] = 152285, - [SMALL_STATE(3199)] = 152328, - [SMALL_STATE(3200)] = 152371, - [SMALL_STATE(3201)] = 152414, - [SMALL_STATE(3202)] = 152459, - [SMALL_STATE(3203)] = 152502, - [SMALL_STATE(3204)] = 152545, - [SMALL_STATE(3205)] = 152592, - [SMALL_STATE(3206)] = 152635, - [SMALL_STATE(3207)] = 152678, - [SMALL_STATE(3208)] = 152721, - [SMALL_STATE(3209)] = 152764, - [SMALL_STATE(3210)] = 152813, - [SMALL_STATE(3211)] = 152856, - [SMALL_STATE(3212)] = 152899, - [SMALL_STATE(3213)] = 152942, - [SMALL_STATE(3214)] = 152989, - [SMALL_STATE(3215)] = 153036, - [SMALL_STATE(3216)] = 153079, - [SMALL_STATE(3217)] = 153122, - [SMALL_STATE(3218)] = 153165, - [SMALL_STATE(3219)] = 153208, - [SMALL_STATE(3220)] = 153251, - [SMALL_STATE(3221)] = 153296, - [SMALL_STATE(3222)] = 153339, - [SMALL_STATE(3223)] = 153382, - [SMALL_STATE(3224)] = 153451, - [SMALL_STATE(3225)] = 153497, - [SMALL_STATE(3226)] = 153541, - [SMALL_STATE(3227)] = 153587, - [SMALL_STATE(3228)] = 153633, - [SMALL_STATE(3229)] = 153675, - [SMALL_STATE(3230)] = 153717, - [SMALL_STATE(3231)] = 153759, - [SMALL_STATE(3232)] = 153801, - [SMALL_STATE(3233)] = 153843, - [SMALL_STATE(3234)] = 153885, - [SMALL_STATE(3235)] = 153927, - [SMALL_STATE(3236)] = 153973, - [SMALL_STATE(3237)] = 154015, - [SMALL_STATE(3238)] = 154061, - [SMALL_STATE(3239)] = 154107, - [SMALL_STATE(3240)] = 154151, - [SMALL_STATE(3241)] = 154193, - [SMALL_STATE(3242)] = 154237, - [SMALL_STATE(3243)] = 154279, - [SMALL_STATE(3244)] = 154321, - [SMALL_STATE(3245)] = 154367, - [SMALL_STATE(3246)] = 154409, - [SMALL_STATE(3247)] = 154451, - [SMALL_STATE(3248)] = 154493, - [SMALL_STATE(3249)] = 154535, - [SMALL_STATE(3250)] = 154585, - [SMALL_STATE(3251)] = 154629, - [SMALL_STATE(3252)] = 154673, - [SMALL_STATE(3253)] = 154720, - [SMALL_STATE(3254)] = 154767, - [SMALL_STATE(3255)] = 154810, - [SMALL_STATE(3256)] = 154853, - [SMALL_STATE(3257)] = 154896, - [SMALL_STATE(3258)] = 154939, - [SMALL_STATE(3259)] = 154986, - [SMALL_STATE(3260)] = 155029, - [SMALL_STATE(3261)] = 155072, - [SMALL_STATE(3262)] = 155113, - [SMALL_STATE(3263)] = 155154, - [SMALL_STATE(3264)] = 155197, - [SMALL_STATE(3265)] = 155240, - [SMALL_STATE(3266)] = 155283, - [SMALL_STATE(3267)] = 155326, - [SMALL_STATE(3268)] = 155371, - [SMALL_STATE(3269)] = 155414, - [SMALL_STATE(3270)] = 155457, - [SMALL_STATE(3271)] = 155498, - [SMALL_STATE(3272)] = 155541, - [SMALL_STATE(3273)] = 155584, - [SMALL_STATE(3274)] = 155627, - [SMALL_STATE(3275)] = 155668, - [SMALL_STATE(3276)] = 155711, - [SMALL_STATE(3277)] = 155752, - [SMALL_STATE(3278)] = 155793, - [SMALL_STATE(3279)] = 155848, - [SMALL_STATE(3280)] = 155889, - [SMALL_STATE(3281)] = 155940, - [SMALL_STATE(3282)] = 155983, - [SMALL_STATE(3283)] = 156040, - [SMALL_STATE(3284)] = 156087, - [SMALL_STATE(3285)] = 156134, - [SMALL_STATE(3286)] = 156177, - [SMALL_STATE(3287)] = 156220, - [SMALL_STATE(3288)] = 156273, - [SMALL_STATE(3289)] = 156332, - [SMALL_STATE(3290)] = 156393, - [SMALL_STATE(3291)] = 156456, - [SMALL_STATE(3292)] = 156521, - [SMALL_STATE(3293)] = 156588, - [SMALL_STATE(3294)] = 156657, - [SMALL_STATE(3295)] = 156728, - [SMALL_STATE(3296)] = 156771, - [SMALL_STATE(3297)] = 156814, - [SMALL_STATE(3298)] = 156855, - [SMALL_STATE(3299)] = 156896, - [SMALL_STATE(3300)] = 156937, - [SMALL_STATE(3301)] = 156980, - [SMALL_STATE(3302)] = 157021, - [SMALL_STATE(3303)] = 157062, - [SMALL_STATE(3304)] = 157103, - [SMALL_STATE(3305)] = 157144, - [SMALL_STATE(3306)] = 157185, - [SMALL_STATE(3307)] = 157228, - [SMALL_STATE(3308)] = 157269, - [SMALL_STATE(3309)] = 157310, - [SMALL_STATE(3310)] = 157351, - [SMALL_STATE(3311)] = 157392, - [SMALL_STATE(3312)] = 157433, - [SMALL_STATE(3313)] = 157474, - [SMALL_STATE(3314)] = 157515, - [SMALL_STATE(3315)] = 157562, - [SMALL_STATE(3316)] = 157605, - [SMALL_STATE(3317)] = 157648, - [SMALL_STATE(3318)] = 157691, - [SMALL_STATE(3319)] = 157734, - [SMALL_STATE(3320)] = 157775, - [SMALL_STATE(3321)] = 157818, - [SMALL_STATE(3322)] = 157863, - [SMALL_STATE(3323)] = 157908, - [SMALL_STATE(3324)] = 157955, - [SMALL_STATE(3325)] = 157998, - [SMALL_STATE(3326)] = 158039, - [SMALL_STATE(3327)] = 158080, - [SMALL_STATE(3328)] = 158121, - [SMALL_STATE(3329)] = 158162, - [SMALL_STATE(3330)] = 158203, - [SMALL_STATE(3331)] = 158248, - [SMALL_STATE(3332)] = 158291, - [SMALL_STATE(3333)] = 158336, - [SMALL_STATE(3334)] = 158377, - [SMALL_STATE(3335)] = 158418, - [SMALL_STATE(3336)] = 158459, - [SMALL_STATE(3337)] = 158504, - [SMALL_STATE(3338)] = 158545, - [SMALL_STATE(3339)] = 158592, - [SMALL_STATE(3340)] = 158633, - [SMALL_STATE(3341)] = 158674, - [SMALL_STATE(3342)] = 158715, - [SMALL_STATE(3343)] = 158756, - [SMALL_STATE(3344)] = 158797, - [SMALL_STATE(3345)] = 158838, - [SMALL_STATE(3346)] = 158885, - [SMALL_STATE(3347)] = 158926, - [SMALL_STATE(3348)] = 158967, - [SMALL_STATE(3349)] = 159008, - [SMALL_STATE(3350)] = 159049, - [SMALL_STATE(3351)] = 159090, - [SMALL_STATE(3352)] = 159131, - [SMALL_STATE(3353)] = 159172, - [SMALL_STATE(3354)] = 159213, - [SMALL_STATE(3355)] = 159258, - [SMALL_STATE(3356)] = 159301, - [SMALL_STATE(3357)] = 159342, - [SMALL_STATE(3358)] = 159389, - [SMALL_STATE(3359)] = 159432, - [SMALL_STATE(3360)] = 159479, - [SMALL_STATE(3361)] = 159520, - [SMALL_STATE(3362)] = 159561, - [SMALL_STATE(3363)] = 159602, - [SMALL_STATE(3364)] = 159643, - [SMALL_STATE(3365)] = 159684, - [SMALL_STATE(3366)] = 159725, - [SMALL_STATE(3367)] = 159766, - [SMALL_STATE(3368)] = 159807, - [SMALL_STATE(3369)] = 159848, - [SMALL_STATE(3370)] = 159889, - [SMALL_STATE(3371)] = 159932, - [SMALL_STATE(3372)] = 159975, - [SMALL_STATE(3373)] = 160019, - [SMALL_STATE(3374)] = 160089, - [SMALL_STATE(3375)] = 160129, - [SMALL_STATE(3376)] = 160169, - [SMALL_STATE(3377)] = 160237, - [SMALL_STATE(3378)] = 160277, - [SMALL_STATE(3379)] = 160317, - [SMALL_STATE(3380)] = 160361, - [SMALL_STATE(3381)] = 160405, - [SMALL_STATE(3382)] = 160449, - [SMALL_STATE(3383)] = 160489, - [SMALL_STATE(3384)] = 160531, - [SMALL_STATE(3385)] = 160597, - [SMALL_STATE(3386)] = 160661, - [SMALL_STATE(3387)] = 160705, - [SMALL_STATE(3388)] = 160747, - [SMALL_STATE(3389)] = 160809, - [SMALL_STATE(3390)] = 160851, - [SMALL_STATE(3391)] = 160911, - [SMALL_STATE(3392)] = 160953, - [SMALL_STATE(3393)] = 160993, - [SMALL_STATE(3394)] = 161051, - [SMALL_STATE(3395)] = 161093, - [SMALL_STATE(3396)] = 161135, - [SMALL_STATE(3397)] = 161187, - [SMALL_STATE(3398)] = 161227, - [SMALL_STATE(3399)] = 161269, - [SMALL_STATE(3400)] = 161309, - [SMALL_STATE(3401)] = 161355, - [SMALL_STATE(3402)] = 161395, - [SMALL_STATE(3403)] = 161451, - [SMALL_STATE(3404)] = 161501, - [SMALL_STATE(3405)] = 161555, - [SMALL_STATE(3406)] = 161595, - [SMALL_STATE(3407)] = 161635, - [SMALL_STATE(3408)] = 161675, - [SMALL_STATE(3409)] = 161715, - [SMALL_STATE(3410)] = 161755, - [SMALL_STATE(3411)] = 161795, - [SMALL_STATE(3412)] = 161835, - [SMALL_STATE(3413)] = 161875, - [SMALL_STATE(3414)] = 161915, - [SMALL_STATE(3415)] = 161955, - [SMALL_STATE(3416)] = 161995, - [SMALL_STATE(3417)] = 162035, - [SMALL_STATE(3418)] = 162075, - [SMALL_STATE(3419)] = 162115, - [SMALL_STATE(3420)] = 162155, - [SMALL_STATE(3421)] = 162195, - [SMALL_STATE(3422)] = 162239, - [SMALL_STATE(3423)] = 162279, - [SMALL_STATE(3424)] = 162319, - [SMALL_STATE(3425)] = 162359, - [SMALL_STATE(3426)] = 162399, - [SMALL_STATE(3427)] = 162439, - [SMALL_STATE(3428)] = 162479, - [SMALL_STATE(3429)] = 162549, - [SMALL_STATE(3430)] = 162589, - [SMALL_STATE(3431)] = 162657, - [SMALL_STATE(3432)] = 162697, - [SMALL_STATE(3433)] = 162763, - [SMALL_STATE(3434)] = 162803, - [SMALL_STATE(3435)] = 162843, - [SMALL_STATE(3436)] = 162907, - [SMALL_STATE(3437)] = 162951, - [SMALL_STATE(3438)] = 163013, - [SMALL_STATE(3439)] = 163055, - [SMALL_STATE(3440)] = 163115, - [SMALL_STATE(3441)] = 163159, - [SMALL_STATE(3442)] = 163217, - [SMALL_STATE(3443)] = 163259, - [SMALL_STATE(3444)] = 163311, - [SMALL_STATE(3445)] = 163351, - [SMALL_STATE(3446)] = 163393, - [SMALL_STATE(3447)] = 163433, - [SMALL_STATE(3448)] = 163479, - [SMALL_STATE(3449)] = 163521, - [SMALL_STATE(3450)] = 163577, - [SMALL_STATE(3451)] = 163619, - [SMALL_STATE(3452)] = 163659, - [SMALL_STATE(3453)] = 163709, - [SMALL_STATE(3454)] = 163749, - [SMALL_STATE(3455)] = 163803, - [SMALL_STATE(3456)] = 163843, - [SMALL_STATE(3457)] = 163883, - [SMALL_STATE(3458)] = 163923, - [SMALL_STATE(3459)] = 163962, - [SMALL_STATE(3460)] = 164003, - [SMALL_STATE(3461)] = 164044, - [SMALL_STATE(3462)] = 164111, - [SMALL_STATE(3463)] = 164152, - [SMALL_STATE(3464)] = 164219, - [SMALL_STATE(3465)] = 164286, - [SMALL_STATE(3466)] = 164327, - [SMALL_STATE(3467)] = 164368, - [SMALL_STATE(3468)] = 164409, - [SMALL_STATE(3469)] = 164476, - [SMALL_STATE(3470)] = 164515, - [SMALL_STATE(3471)] = 164582, - [SMALL_STATE(3472)] = 164621, - [SMALL_STATE(3473)] = 164662, - [SMALL_STATE(3474)] = 164729, - [SMALL_STATE(3475)] = 164796, - [SMALL_STATE(3476)] = 164835, - [SMALL_STATE(3477)] = 164874, - [SMALL_STATE(3478)] = 164913, - [SMALL_STATE(3479)] = 164980, - [SMALL_STATE(3480)] = 165019, - [SMALL_STATE(3481)] = 165058, - [SMALL_STATE(3482)] = 165125, - [SMALL_STATE(3483)] = 165192, - [SMALL_STATE(3484)] = 165259, - [SMALL_STATE(3485)] = 165326, - [SMALL_STATE(3486)] = 165393, - [SMALL_STATE(3487)] = 165434, - [SMALL_STATE(3488)] = 165475, - [SMALL_STATE(3489)] = 165516, - [SMALL_STATE(3490)] = 165583, - [SMALL_STATE(3491)] = 165622, - [SMALL_STATE(3492)] = 165661, - [SMALL_STATE(3493)] = 165700, - [SMALL_STATE(3494)] = 165767, - [SMALL_STATE(3495)] = 165808, - [SMALL_STATE(3496)] = 165846, - [SMALL_STATE(3497)] = 165884, - [SMALL_STATE(3498)] = 165922, - [SMALL_STATE(3499)] = 165960, - [SMALL_STATE(3500)] = 165998, - [SMALL_STATE(3501)] = 166036, - [SMALL_STATE(3502)] = 166074, - [SMALL_STATE(3503)] = 166112, - [SMALL_STATE(3504)] = 166150, - [SMALL_STATE(3505)] = 166188, - [SMALL_STATE(3506)] = 166226, - [SMALL_STATE(3507)] = 166264, - [SMALL_STATE(3508)] = 166302, - [SMALL_STATE(3509)] = 166340, - [SMALL_STATE(3510)] = 166378, - [SMALL_STATE(3511)] = 166416, - [SMALL_STATE(3512)] = 166454, - [SMALL_STATE(3513)] = 166492, - [SMALL_STATE(3514)] = 166530, - [SMALL_STATE(3515)] = 166568, - [SMALL_STATE(3516)] = 166606, - [SMALL_STATE(3517)] = 166644, - [SMALL_STATE(3518)] = 166682, - [SMALL_STATE(3519)] = 166720, - [SMALL_STATE(3520)] = 166758, - [SMALL_STATE(3521)] = 166798, - [SMALL_STATE(3522)] = 166838, - [SMALL_STATE(3523)] = 166876, - [SMALL_STATE(3524)] = 166914, - [SMALL_STATE(3525)] = 166952, - [SMALL_STATE(3526)] = 166990, - [SMALL_STATE(3527)] = 167028, - [SMALL_STATE(3528)] = 167066, - [SMALL_STATE(3529)] = 167104, - [SMALL_STATE(3530)] = 167142, - [SMALL_STATE(3531)] = 167180, - [SMALL_STATE(3532)] = 167218, - [SMALL_STATE(3533)] = 167256, - [SMALL_STATE(3534)] = 167294, - [SMALL_STATE(3535)] = 167332, - [SMALL_STATE(3536)] = 167370, - [SMALL_STATE(3537)] = 167408, - [SMALL_STATE(3538)] = 167446, - [SMALL_STATE(3539)] = 167484, - [SMALL_STATE(3540)] = 167522, - [SMALL_STATE(3541)] = 167560, - [SMALL_STATE(3542)] = 167598, - [SMALL_STATE(3543)] = 167636, - [SMALL_STATE(3544)] = 167674, - [SMALL_STATE(3545)] = 167712, - [SMALL_STATE(3546)] = 167750, - [SMALL_STATE(3547)] = 167788, - [SMALL_STATE(3548)] = 167826, - [SMALL_STATE(3549)] = 167864, - [SMALL_STATE(3550)] = 167904, - [SMALL_STATE(3551)] = 167942, - [SMALL_STATE(3552)] = 167980, - [SMALL_STATE(3553)] = 168018, - [SMALL_STATE(3554)] = 168056, - [SMALL_STATE(3555)] = 168094, - [SMALL_STATE(3556)] = 168132, - [SMALL_STATE(3557)] = 168170, - [SMALL_STATE(3558)] = 168208, - [SMALL_STATE(3559)] = 168246, - [SMALL_STATE(3560)] = 168284, - [SMALL_STATE(3561)] = 168322, - [SMALL_STATE(3562)] = 168360, - [SMALL_STATE(3563)] = 168398, - [SMALL_STATE(3564)] = 168435, - [SMALL_STATE(3565)] = 168472, - [SMALL_STATE(3566)] = 168509, - [SMALL_STATE(3567)] = 168546, - [SMALL_STATE(3568)] = 168600, - [SMALL_STATE(3569)] = 168654, - [SMALL_STATE(3570)] = 168708, - [SMALL_STATE(3571)] = 168762, - [SMALL_STATE(3572)] = 168816, - [SMALL_STATE(3573)] = 168870, - [SMALL_STATE(3574)] = 168918, - [SMALL_STATE(3575)] = 168966, - [SMALL_STATE(3576)] = 169014, - [SMALL_STATE(3577)] = 169062, - [SMALL_STATE(3578)] = 169110, - [SMALL_STATE(3579)] = 169158, - [SMALL_STATE(3580)] = 169206, - [SMALL_STATE(3581)] = 169254, - [SMALL_STATE(3582)] = 169302, - [SMALL_STATE(3583)] = 169350, - [SMALL_STATE(3584)] = 169398, - [SMALL_STATE(3585)] = 169446, - [SMALL_STATE(3586)] = 169495, - [SMALL_STATE(3587)] = 169544, - [SMALL_STATE(3588)] = 169593, - [SMALL_STATE(3589)] = 169646, - [SMALL_STATE(3590)] = 169695, - [SMALL_STATE(3591)] = 169748, - [SMALL_STATE(3592)] = 169797, - [SMALL_STATE(3593)] = 169846, - [SMALL_STATE(3594)] = 169894, - [SMALL_STATE(3595)] = 169942, - [SMALL_STATE(3596)] = 169990, - [SMALL_STATE(3597)] = 170038, - [SMALL_STATE(3598)] = 170086, - [SMALL_STATE(3599)] = 170134, - [SMALL_STATE(3600)] = 170182, - [SMALL_STATE(3601)] = 170230, - [SMALL_STATE(3602)] = 170278, - [SMALL_STATE(3603)] = 170326, - [SMALL_STATE(3604)] = 170354, - [SMALL_STATE(3605)] = 170382, - [SMALL_STATE(3606)] = 170430, - [SMALL_STATE(3607)] = 170478, - [SMALL_STATE(3608)] = 170521, - [SMALL_STATE(3609)] = 170568, - [SMALL_STATE(3610)] = 170615, - [SMALL_STATE(3611)] = 170662, - [SMALL_STATE(3612)] = 170705, - [SMALL_STATE(3613)] = 170748, - [SMALL_STATE(3614)] = 170791, - [SMALL_STATE(3615)] = 170834, - [SMALL_STATE(3616)] = 170881, - [SMALL_STATE(3617)] = 170928, - [SMALL_STATE(3618)] = 170971, - [SMALL_STATE(3619)] = 171014, - [SMALL_STATE(3620)] = 171061, - [SMALL_STATE(3621)] = 171108, - [SMALL_STATE(3622)] = 171151, - [SMALL_STATE(3623)] = 171194, - [SMALL_STATE(3624)] = 171237, - [SMALL_STATE(3625)] = 171280, - [SMALL_STATE(3626)] = 171323, - [SMALL_STATE(3627)] = 171365, - [SMALL_STATE(3628)] = 171409, - [SMALL_STATE(3629)] = 171453, - [SMALL_STATE(3630)] = 171497, - [SMALL_STATE(3631)] = 171539, - [SMALL_STATE(3632)] = 171581, - [SMALL_STATE(3633)] = 171623, - [SMALL_STATE(3634)] = 171665, - [SMALL_STATE(3635)] = 171707, - [SMALL_STATE(3636)] = 171749, - [SMALL_STATE(3637)] = 171793, - [SMALL_STATE(3638)] = 171835, - [SMALL_STATE(3639)] = 171879, - [SMALL_STATE(3640)] = 171921, - [SMALL_STATE(3641)] = 171963, - [SMALL_STATE(3642)] = 172005, - [SMALL_STATE(3643)] = 172047, - [SMALL_STATE(3644)] = 172089, - [SMALL_STATE(3645)] = 172115, - [SMALL_STATE(3646)] = 172159, - [SMALL_STATE(3647)] = 172203, - [SMALL_STATE(3648)] = 172245, - [SMALL_STATE(3649)] = 172287, - [SMALL_STATE(3650)] = 172329, - [SMALL_STATE(3651)] = 172373, - [SMALL_STATE(3652)] = 172415, - [SMALL_STATE(3653)] = 172459, - [SMALL_STATE(3654)] = 172503, - [SMALL_STATE(3655)] = 172547, - [SMALL_STATE(3656)] = 172591, - [SMALL_STATE(3657)] = 172633, - [SMALL_STATE(3658)] = 172675, - [SMALL_STATE(3659)] = 172719, - [SMALL_STATE(3660)] = 172761, - [SMALL_STATE(3661)] = 172803, - [SMALL_STATE(3662)] = 172847, - [SMALL_STATE(3663)] = 172889, - [SMALL_STATE(3664)] = 172933, - [SMALL_STATE(3665)] = 172975, - [SMALL_STATE(3666)] = 173017, - [SMALL_STATE(3667)] = 173061, - [SMALL_STATE(3668)] = 173104, - [SMALL_STATE(3669)] = 173149, - [SMALL_STATE(3670)] = 173190, - [SMALL_STATE(3671)] = 173231, - [SMALL_STATE(3672)] = 173274, - [SMALL_STATE(3673)] = 173315, - [SMALL_STATE(3674)] = 173356, - [SMALL_STATE(3675)] = 173397, - [SMALL_STATE(3676)] = 173442, - [SMALL_STATE(3677)] = 173481, - [SMALL_STATE(3678)] = 173522, - [SMALL_STATE(3679)] = 173563, - [SMALL_STATE(3680)] = 173608, - [SMALL_STATE(3681)] = 173651, - [SMALL_STATE(3682)] = 173692, - [SMALL_STATE(3683)] = 173733, - [SMALL_STATE(3684)] = 173778, - [SMALL_STATE(3685)] = 173819, - [SMALL_STATE(3686)] = 173864, - [SMALL_STATE(3687)] = 173909, - [SMALL_STATE(3688)] = 173950, - [SMALL_STATE(3689)] = 173995, - [SMALL_STATE(3690)] = 174036, - [SMALL_STATE(3691)] = 174079, - [SMALL_STATE(3692)] = 174122, - [SMALL_STATE(3693)] = 174165, - [SMALL_STATE(3694)] = 174210, - [SMALL_STATE(3695)] = 174255, - [SMALL_STATE(3696)] = 174293, - [SMALL_STATE(3697)] = 174339, - [SMALL_STATE(3698)] = 174377, - [SMALL_STATE(3699)] = 174423, - [SMALL_STATE(3700)] = 174469, - [SMALL_STATE(3701)] = 174515, - [SMALL_STATE(3702)] = 174543, - [SMALL_STATE(3703)] = 174573, - [SMALL_STATE(3704)] = 174619, - [SMALL_STATE(3705)] = 174657, - [SMALL_STATE(3706)] = 174699, - [SMALL_STATE(3707)] = 174743, - [SMALL_STATE(3708)] = 174789, - [SMALL_STATE(3709)] = 174835, - [SMALL_STATE(3710)] = 174873, - [SMALL_STATE(3711)] = 174903, - [SMALL_STATE(3712)] = 174941, - [SMALL_STATE(3713)] = 174971, - [SMALL_STATE(3714)] = 175009, - [SMALL_STATE(3715)] = 175047, - [SMALL_STATE(3716)] = 175085, - [SMALL_STATE(3717)] = 175113, - [SMALL_STATE(3718)] = 175151, - [SMALL_STATE(3719)] = 175193, - [SMALL_STATE(3720)] = 175221, - [SMALL_STATE(3721)] = 175267, - [SMALL_STATE(3722)] = 175309, - [SMALL_STATE(3723)] = 175355, - [SMALL_STATE(3724)] = 175393, - [SMALL_STATE(3725)] = 175431, - [SMALL_STATE(3726)] = 175469, - [SMALL_STATE(3727)] = 175507, - [SMALL_STATE(3728)] = 175545, - [SMALL_STATE(3729)] = 175583, - [SMALL_STATE(3730)] = 175621, - [SMALL_STATE(3731)] = 175659, - [SMALL_STATE(3732)] = 175689, - [SMALL_STATE(3733)] = 175727, - [SMALL_STATE(3734)] = 175765, - [SMALL_STATE(3735)] = 175795, - [SMALL_STATE(3736)] = 175833, - [SMALL_STATE(3737)] = 175863, - [SMALL_STATE(3738)] = 175893, - [SMALL_STATE(3739)] = 175939, - [SMALL_STATE(3740)] = 175977, - [SMALL_STATE(3741)] = 176023, - [SMALL_STATE(3742)] = 176061, - [SMALL_STATE(3743)] = 176107, - [SMALL_STATE(3744)] = 176153, - [SMALL_STATE(3745)] = 176199, - [SMALL_STATE(3746)] = 176237, - [SMALL_STATE(3747)] = 176275, - [SMALL_STATE(3748)] = 176313, - [SMALL_STATE(3749)] = 176355, - [SMALL_STATE(3750)] = 176383, - [SMALL_STATE(3751)] = 176422, - [SMALL_STATE(3752)] = 176461, - [SMALL_STATE(3753)] = 176500, - [SMALL_STATE(3754)] = 176539, - [SMALL_STATE(3755)] = 176578, - [SMALL_STATE(3756)] = 176617, - [SMALL_STATE(3757)] = 176656, - [SMALL_STATE(3758)] = 176695, - [SMALL_STATE(3759)] = 176730, - [SMALL_STATE(3760)] = 176769, - [SMALL_STATE(3761)] = 176806, - [SMALL_STATE(3762)] = 176841, - [SMALL_STATE(3763)] = 176880, - [SMALL_STATE(3764)] = 176919, - [SMALL_STATE(3765)] = 176958, - [SMALL_STATE(3766)] = 176997, - [SMALL_STATE(3767)] = 177024, - [SMALL_STATE(3768)] = 177063, - [SMALL_STATE(3769)] = 177102, - [SMALL_STATE(3770)] = 177141, - [SMALL_STATE(3771)] = 177178, - [SMALL_STATE(3772)] = 177215, - [SMALL_STATE(3773)] = 177254, - [SMALL_STATE(3774)] = 177291, - [SMALL_STATE(3775)] = 177330, - [SMALL_STATE(3776)] = 177367, - [SMALL_STATE(3777)] = 177406, - [SMALL_STATE(3778)] = 177445, - [SMALL_STATE(3779)] = 177482, - [SMALL_STATE(3780)] = 177521, - [SMALL_STATE(3781)] = 177560, - [SMALL_STATE(3782)] = 177597, - [SMALL_STATE(3783)] = 177634, - [SMALL_STATE(3784)] = 177669, - [SMALL_STATE(3785)] = 177696, - [SMALL_STATE(3786)] = 177733, - [SMALL_STATE(3787)] = 177770, - [SMALL_STATE(3788)] = 177807, - [SMALL_STATE(3789)] = 177832, - [SMALL_STATE(3790)] = 177857, - [SMALL_STATE(3791)] = 177896, - [SMALL_STATE(3792)] = 177931, - [SMALL_STATE(3793)] = 177966, - [SMALL_STATE(3794)] = 178001, - [SMALL_STATE(3795)] = 178040, - [SMALL_STATE(3796)] = 178079, - [SMALL_STATE(3797)] = 178118, - [SMALL_STATE(3798)] = 178153, - [SMALL_STATE(3799)] = 178188, - [SMALL_STATE(3800)] = 178227, - [SMALL_STATE(3801)] = 178266, - [SMALL_STATE(3802)] = 178299, - [SMALL_STATE(3803)] = 178338, - [SMALL_STATE(3804)] = 178365, - [SMALL_STATE(3805)] = 178404, - [SMALL_STATE(3806)] = 178443, - [SMALL_STATE(3807)] = 178470, - [SMALL_STATE(3808)] = 178509, - [SMALL_STATE(3809)] = 178534, - [SMALL_STATE(3810)] = 178559, - [SMALL_STATE(3811)] = 178584, - [SMALL_STATE(3812)] = 178623, - [SMALL_STATE(3813)] = 178662, - [SMALL_STATE(3814)] = 178701, - [SMALL_STATE(3815)] = 178740, - [SMALL_STATE(3816)] = 178779, - [SMALL_STATE(3817)] = 178818, - [SMALL_STATE(3818)] = 178843, - [SMALL_STATE(3819)] = 178882, - [SMALL_STATE(3820)] = 178921, - [SMALL_STATE(3821)] = 178960, - [SMALL_STATE(3822)] = 178999, - [SMALL_STATE(3823)] = 179038, - [SMALL_STATE(3824)] = 179077, - [SMALL_STATE(3825)] = 179116, - [SMALL_STATE(3826)] = 179149, - [SMALL_STATE(3827)] = 179188, - [SMALL_STATE(3828)] = 179227, - [SMALL_STATE(3829)] = 179266, - [SMALL_STATE(3830)] = 179301, - [SMALL_STATE(3831)] = 179338, - [SMALL_STATE(3832)] = 179361, - [SMALL_STATE(3833)] = 179400, - [SMALL_STATE(3834)] = 179435, - [SMALL_STATE(3835)] = 179474, - [SMALL_STATE(3836)] = 179513, - [SMALL_STATE(3837)] = 179536, - [SMALL_STATE(3838)] = 179575, - [SMALL_STATE(3839)] = 179600, - [SMALL_STATE(3840)] = 179639, - [SMALL_STATE(3841)] = 179662, - [SMALL_STATE(3842)] = 179701, - [SMALL_STATE(3843)] = 179740, - [SMALL_STATE(3844)] = 179765, - [SMALL_STATE(3845)] = 179804, - [SMALL_STATE(3846)] = 179827, - [SMALL_STATE(3847)] = 179854, - [SMALL_STATE(3848)] = 179893, - [SMALL_STATE(3849)] = 179932, - [SMALL_STATE(3850)] = 179955, - [SMALL_STATE(3851)] = 179977, - [SMALL_STATE(3852)] = 180009, - [SMALL_STATE(3853)] = 180045, - [SMALL_STATE(3854)] = 180081, - [SMALL_STATE(3855)] = 180103, - [SMALL_STATE(3856)] = 180125, - [SMALL_STATE(3857)] = 180147, - [SMALL_STATE(3858)] = 180169, - [SMALL_STATE(3859)] = 180191, - [SMALL_STATE(3860)] = 180215, - [SMALL_STATE(3861)] = 180239, - [SMALL_STATE(3862)] = 180263, - [SMALL_STATE(3863)] = 180285, - [SMALL_STATE(3864)] = 180313, - [SMALL_STATE(3865)] = 180335, - [SMALL_STATE(3866)] = 180357, - [SMALL_STATE(3867)] = 180381, - [SMALL_STATE(3868)] = 180405, - [SMALL_STATE(3869)] = 180433, - [SMALL_STATE(3870)] = 180457, - [SMALL_STATE(3871)] = 180493, - [SMALL_STATE(3872)] = 180529, - [SMALL_STATE(3873)] = 180565, - [SMALL_STATE(3874)] = 180603, - [SMALL_STATE(3875)] = 180625, - [SMALL_STATE(3876)] = 180647, - [SMALL_STATE(3877)] = 180683, - [SMALL_STATE(3878)] = 180715, - [SMALL_STATE(3879)] = 180737, - [SMALL_STATE(3880)] = 180759, - [SMALL_STATE(3881)] = 180781, - [SMALL_STATE(3882)] = 180803, - [SMALL_STATE(3883)] = 180825, - [SMALL_STATE(3884)] = 180853, - [SMALL_STATE(3885)] = 180889, - [SMALL_STATE(3886)] = 180925, - [SMALL_STATE(3887)] = 180947, - [SMALL_STATE(3888)] = 180969, - [SMALL_STATE(3889)] = 180991, - [SMALL_STATE(3890)] = 181013, - [SMALL_STATE(3891)] = 181035, - [SMALL_STATE(3892)] = 181068, - [SMALL_STATE(3893)] = 181103, - [SMALL_STATE(3894)] = 181136, - [SMALL_STATE(3895)] = 181169, - [SMALL_STATE(3896)] = 181202, - [SMALL_STATE(3897)] = 181235, - [SMALL_STATE(3898)] = 181268, - [SMALL_STATE(3899)] = 181301, - [SMALL_STATE(3900)] = 181334, - [SMALL_STATE(3901)] = 181355, - [SMALL_STATE(3902)] = 181388, - [SMALL_STATE(3903)] = 181423, - [SMALL_STATE(3904)] = 181456, - [SMALL_STATE(3905)] = 181489, - [SMALL_STATE(3906)] = 181522, - [SMALL_STATE(3907)] = 181555, - [SMALL_STATE(3908)] = 181588, - [SMALL_STATE(3909)] = 181621, - [SMALL_STATE(3910)] = 181654, - [SMALL_STATE(3911)] = 181687, - [SMALL_STATE(3912)] = 181706, - [SMALL_STATE(3913)] = 181739, - [SMALL_STATE(3914)] = 181760, - [SMALL_STATE(3915)] = 181781, - [SMALL_STATE(3916)] = 181802, - [SMALL_STATE(3917)] = 181823, - [SMALL_STATE(3918)] = 181844, - [SMALL_STATE(3919)] = 181865, - [SMALL_STATE(3920)] = 181886, - [SMALL_STATE(3921)] = 181919, - [SMALL_STATE(3922)] = 181954, - [SMALL_STATE(3923)] = 181987, - [SMALL_STATE(3924)] = 182020, - [SMALL_STATE(3925)] = 182053, - [SMALL_STATE(3926)] = 182086, - [SMALL_STATE(3927)] = 182119, - [SMALL_STATE(3928)] = 182152, - [SMALL_STATE(3929)] = 182185, - [SMALL_STATE(3930)] = 182206, - [SMALL_STATE(3931)] = 182227, - [SMALL_STATE(3932)] = 182248, - [SMALL_STATE(3933)] = 182269, - [SMALL_STATE(3934)] = 182290, - [SMALL_STATE(3935)] = 182311, - [SMALL_STATE(3936)] = 182332, - [SMALL_STATE(3937)] = 182353, - [SMALL_STATE(3938)] = 182374, - [SMALL_STATE(3939)] = 182395, - [SMALL_STATE(3940)] = 182416, - [SMALL_STATE(3941)] = 182437, - [SMALL_STATE(3942)] = 182458, - [SMALL_STATE(3943)] = 182479, - [SMALL_STATE(3944)] = 182500, - [SMALL_STATE(3945)] = 182521, - [SMALL_STATE(3946)] = 182548, - [SMALL_STATE(3947)] = 182581, - [SMALL_STATE(3948)] = 182602, - [SMALL_STATE(3949)] = 182623, - [SMALL_STATE(3950)] = 182644, - [SMALL_STATE(3951)] = 182677, - [SMALL_STATE(3952)] = 182710, - [SMALL_STATE(3953)] = 182731, - [SMALL_STATE(3954)] = 182764, - [SMALL_STATE(3955)] = 182797, - [SMALL_STATE(3956)] = 182830, - [SMALL_STATE(3957)] = 182863, - [SMALL_STATE(3958)] = 182896, - [SMALL_STATE(3959)] = 182917, - [SMALL_STATE(3960)] = 182938, - [SMALL_STATE(3961)] = 182971, - [SMALL_STATE(3962)] = 183004, - [SMALL_STATE(3963)] = 183037, - [SMALL_STATE(3964)] = 183070, - [SMALL_STATE(3965)] = 183103, - [SMALL_STATE(3966)] = 183136, - [SMALL_STATE(3967)] = 183169, - [SMALL_STATE(3968)] = 183202, - [SMALL_STATE(3969)] = 183235, - [SMALL_STATE(3970)] = 183268, - [SMALL_STATE(3971)] = 183301, - [SMALL_STATE(3972)] = 183334, - [SMALL_STATE(3973)] = 183353, - [SMALL_STATE(3974)] = 183386, - [SMALL_STATE(3975)] = 183419, - [SMALL_STATE(3976)] = 183452, - [SMALL_STATE(3977)] = 183485, - [SMALL_STATE(3978)] = 183518, - [SMALL_STATE(3979)] = 183539, - [SMALL_STATE(3980)] = 183572, - [SMALL_STATE(3981)] = 183593, - [SMALL_STATE(3982)] = 183626, - [SMALL_STATE(3983)] = 183659, - [SMALL_STATE(3984)] = 183692, - [SMALL_STATE(3985)] = 183713, - [SMALL_STATE(3986)] = 183746, - [SMALL_STATE(3987)] = 183767, - [SMALL_STATE(3988)] = 183802, - [SMALL_STATE(3989)] = 183835, - [SMALL_STATE(3990)] = 183870, - [SMALL_STATE(3991)] = 183905, - [SMALL_STATE(3992)] = 183940, - [SMALL_STATE(3993)] = 183973, - [SMALL_STATE(3994)] = 184006, - [SMALL_STATE(3995)] = 184039, - [SMALL_STATE(3996)] = 184072, - [SMALL_STATE(3997)] = 184107, - [SMALL_STATE(3998)] = 184140, - [SMALL_STATE(3999)] = 184175, - [SMALL_STATE(4000)] = 184208, - [SMALL_STATE(4001)] = 184241, - [SMALL_STATE(4002)] = 184274, - [SMALL_STATE(4003)] = 184307, - [SMALL_STATE(4004)] = 184340, - [SMALL_STATE(4005)] = 184361, - [SMALL_STATE(4006)] = 184394, - [SMALL_STATE(4007)] = 184427, - [SMALL_STATE(4008)] = 184460, - [SMALL_STATE(4009)] = 184493, - [SMALL_STATE(4010)] = 184526, - [SMALL_STATE(4011)] = 184559, - [SMALL_STATE(4012)] = 184592, - [SMALL_STATE(4013)] = 184625, - [SMALL_STATE(4014)] = 184658, - [SMALL_STATE(4015)] = 184691, - [SMALL_STATE(4016)] = 184724, - [SMALL_STATE(4017)] = 184757, - [SMALL_STATE(4018)] = 184790, - [SMALL_STATE(4019)] = 184811, - [SMALL_STATE(4020)] = 184832, - [SMALL_STATE(4021)] = 184853, - [SMALL_STATE(4022)] = 184886, - [SMALL_STATE(4023)] = 184919, - [SMALL_STATE(4024)] = 184952, - [SMALL_STATE(4025)] = 184985, - [SMALL_STATE(4026)] = 185018, - [SMALL_STATE(4027)] = 185051, - [SMALL_STATE(4028)] = 185084, - [SMALL_STATE(4029)] = 185105, - [SMALL_STATE(4030)] = 185126, - [SMALL_STATE(4031)] = 185159, - [SMALL_STATE(4032)] = 185192, - [SMALL_STATE(4033)] = 185225, - [SMALL_STATE(4034)] = 185246, - [SMALL_STATE(4035)] = 185267, - [SMALL_STATE(4036)] = 185288, - [SMALL_STATE(4037)] = 185309, - [SMALL_STATE(4038)] = 185330, - [SMALL_STATE(4039)] = 185351, - [SMALL_STATE(4040)] = 185372, - [SMALL_STATE(4041)] = 185393, - [SMALL_STATE(4042)] = 185414, - [SMALL_STATE(4043)] = 185435, - [SMALL_STATE(4044)] = 185456, - [SMALL_STATE(4045)] = 185477, - [SMALL_STATE(4046)] = 185504, - [SMALL_STATE(4047)] = 185531, - [SMALL_STATE(4048)] = 185552, - [SMALL_STATE(4049)] = 185571, - [SMALL_STATE(4050)] = 185592, - [SMALL_STATE(4051)] = 185611, - [SMALL_STATE(4052)] = 185630, - [SMALL_STATE(4053)] = 185656, - [SMALL_STATE(4054)] = 185682, - [SMALL_STATE(4055)] = 185708, - [SMALL_STATE(4056)] = 185740, - [SMALL_STATE(4057)] = 185762, - [SMALL_STATE(4058)] = 185794, - [SMALL_STATE(4059)] = 185816, - [SMALL_STATE(4060)] = 185848, - [SMALL_STATE(4061)] = 185874, - [SMALL_STATE(4062)] = 185896, - [SMALL_STATE(4063)] = 185922, - [SMALL_STATE(4064)] = 185952, - [SMALL_STATE(4065)] = 185984, - [SMALL_STATE(4066)] = 186016, - [SMALL_STATE(4067)] = 186042, - [SMALL_STATE(4068)] = 186068, - [SMALL_STATE(4069)] = 186094, - [SMALL_STATE(4070)] = 186120, - [SMALL_STATE(4071)] = 186146, - [SMALL_STATE(4072)] = 186172, - [SMALL_STATE(4073)] = 186198, - [SMALL_STATE(4074)] = 186222, - [SMALL_STATE(4075)] = 186248, - [SMALL_STATE(4076)] = 186274, - [SMALL_STATE(4077)] = 186300, - [SMALL_STATE(4078)] = 186326, - [SMALL_STATE(4079)] = 186352, - [SMALL_STATE(4080)] = 186378, - [SMALL_STATE(4081)] = 186404, - [SMALL_STATE(4082)] = 186430, - [SMALL_STATE(4083)] = 186456, - [SMALL_STATE(4084)] = 186482, - [SMALL_STATE(4085)] = 186508, - [SMALL_STATE(4086)] = 186532, - [SMALL_STATE(4087)] = 186558, - [SMALL_STATE(4088)] = 186584, - [SMALL_STATE(4089)] = 186610, - [SMALL_STATE(4090)] = 186636, - [SMALL_STATE(4091)] = 186662, - [SMALL_STATE(4092)] = 186688, - [SMALL_STATE(4093)] = 186714, - [SMALL_STATE(4094)] = 186740, - [SMALL_STATE(4095)] = 186766, - [SMALL_STATE(4096)] = 186784, - [SMALL_STATE(4097)] = 186802, - [SMALL_STATE(4098)] = 186824, - [SMALL_STATE(4099)] = 186856, - [SMALL_STATE(4100)] = 186882, - [SMALL_STATE(4101)] = 186908, - [SMALL_STATE(4102)] = 186934, - [SMALL_STATE(4103)] = 186960, - [SMALL_STATE(4104)] = 186986, - [SMALL_STATE(4105)] = 187012, - [SMALL_STATE(4106)] = 187038, - [SMALL_STATE(4107)] = 187059, - [SMALL_STATE(4108)] = 187082, - [SMALL_STATE(4109)] = 187107, - [SMALL_STATE(4110)] = 187136, - [SMALL_STATE(4111)] = 187165, - [SMALL_STATE(4112)] = 187184, - [SMALL_STATE(4113)] = 187209, - [SMALL_STATE(4114)] = 187234, - [SMALL_STATE(4115)] = 187263, - [SMALL_STATE(4116)] = 187284, - [SMALL_STATE(4117)] = 187309, - [SMALL_STATE(4118)] = 187332, - [SMALL_STATE(4119)] = 187357, - [SMALL_STATE(4120)] = 187380, - [SMALL_STATE(4121)] = 187405, - [SMALL_STATE(4122)] = 187430, - [SMALL_STATE(4123)] = 187455, - [SMALL_STATE(4124)] = 187480, - [SMALL_STATE(4125)] = 187505, - [SMALL_STATE(4126)] = 187530, - [SMALL_STATE(4127)] = 187555, - [SMALL_STATE(4128)] = 187576, - [SMALL_STATE(4129)] = 187599, - [SMALL_STATE(4130)] = 187624, - [SMALL_STATE(4131)] = 187649, - [SMALL_STATE(4132)] = 187672, - [SMALL_STATE(4133)] = 187697, - [SMALL_STATE(4134)] = 187722, - [SMALL_STATE(4135)] = 187747, - [SMALL_STATE(4136)] = 187772, - [SMALL_STATE(4137)] = 187793, - [SMALL_STATE(4138)] = 187822, - [SMALL_STATE(4139)] = 187847, - [SMALL_STATE(4140)] = 187866, - [SMALL_STATE(4141)] = 187889, - [SMALL_STATE(4142)] = 187914, - [SMALL_STATE(4143)] = 187943, - [SMALL_STATE(4144)] = 187962, - [SMALL_STATE(4145)] = 187987, - [SMALL_STATE(4146)] = 188006, - [SMALL_STATE(4147)] = 188025, - [SMALL_STATE(4148)] = 188044, - [SMALL_STATE(4149)] = 188063, - [SMALL_STATE(4150)] = 188082, - [SMALL_STATE(4151)] = 188105, - [SMALL_STATE(4152)] = 188124, - [SMALL_STATE(4153)] = 188147, - [SMALL_STATE(4154)] = 188172, - [SMALL_STATE(4155)] = 188197, - [SMALL_STATE(4156)] = 188216, - [SMALL_STATE(4157)] = 188237, - [SMALL_STATE(4158)] = 188256, - [SMALL_STATE(4159)] = 188281, - [SMALL_STATE(4160)] = 188306, - [SMALL_STATE(4161)] = 188331, - [SMALL_STATE(4162)] = 188356, - [SMALL_STATE(4163)] = 188381, - [SMALL_STATE(4164)] = 188406, - [SMALL_STATE(4165)] = 188431, - [SMALL_STATE(4166)] = 188456, - [SMALL_STATE(4167)] = 188481, - [SMALL_STATE(4168)] = 188510, - [SMALL_STATE(4169)] = 188539, - [SMALL_STATE(4170)] = 188568, - [SMALL_STATE(4171)] = 188599, - [SMALL_STATE(4172)] = 188624, - [SMALL_STATE(4173)] = 188649, - [SMALL_STATE(4174)] = 188676, - [SMALL_STATE(4175)] = 188705, - [SMALL_STATE(4176)] = 188736, - [SMALL_STATE(4177)] = 188761, - [SMALL_STATE(4178)] = 188786, - [SMALL_STATE(4179)] = 188811, - [SMALL_STATE(4180)] = 188836, - [SMALL_STATE(4181)] = 188861, - [SMALL_STATE(4182)] = 188892, - [SMALL_STATE(4183)] = 188921, - [SMALL_STATE(4184)] = 188946, - [SMALL_STATE(4185)] = 188971, - [SMALL_STATE(4186)] = 188990, - [SMALL_STATE(4187)] = 189013, - [SMALL_STATE(4188)] = 189038, - [SMALL_STATE(4189)] = 189063, - [SMALL_STATE(4190)] = 189086, - [SMALL_STATE(4191)] = 189106, - [SMALL_STATE(4192)] = 189126, - [SMALL_STATE(4193)] = 189152, - [SMALL_STATE(4194)] = 189174, - [SMALL_STATE(4195)] = 189196, - [SMALL_STATE(4196)] = 189222, - [SMALL_STATE(4197)] = 189242, - [SMALL_STATE(4198)] = 189270, - [SMALL_STATE(4199)] = 189298, - [SMALL_STATE(4200)] = 189316, - [SMALL_STATE(4201)] = 189344, - [SMALL_STATE(4202)] = 189362, - [SMALL_STATE(4203)] = 189388, - [SMALL_STATE(4204)] = 189416, - [SMALL_STATE(4205)] = 189434, - [SMALL_STATE(4206)] = 189462, - [SMALL_STATE(4207)] = 189490, - [SMALL_STATE(4208)] = 189508, - [SMALL_STATE(4209)] = 189536, - [SMALL_STATE(4210)] = 189554, - [SMALL_STATE(4211)] = 189580, - [SMALL_STATE(4212)] = 189606, - [SMALL_STATE(4213)] = 189632, - [SMALL_STATE(4214)] = 189658, - [SMALL_STATE(4215)] = 189678, - [SMALL_STATE(4216)] = 189704, - [SMALL_STATE(4217)] = 189726, - [SMALL_STATE(4218)] = 189754, - [SMALL_STATE(4219)] = 189774, - [SMALL_STATE(4220)] = 189800, - [SMALL_STATE(4221)] = 189820, - [SMALL_STATE(4222)] = 189840, - [SMALL_STATE(4223)] = 189862, - [SMALL_STATE(4224)] = 189884, - [SMALL_STATE(4225)] = 189910, - [SMALL_STATE(4226)] = 189938, - [SMALL_STATE(4227)] = 189958, - [SMALL_STATE(4228)] = 189980, - [SMALL_STATE(4229)] = 189998, - [SMALL_STATE(4230)] = 190018, - [SMALL_STATE(4231)] = 190044, - [SMALL_STATE(4232)] = 190066, - [SMALL_STATE(4233)] = 190094, - [SMALL_STATE(4234)] = 190122, - [SMALL_STATE(4235)] = 190142, - [SMALL_STATE(4236)] = 190164, - [SMALL_STATE(4237)] = 190190, - [SMALL_STATE(4238)] = 190216, - [SMALL_STATE(4239)] = 190234, - [SMALL_STATE(4240)] = 190254, - [SMALL_STATE(4241)] = 190280, - [SMALL_STATE(4242)] = 190308, - [SMALL_STATE(4243)] = 190328, - [SMALL_STATE(4244)] = 190344, - [SMALL_STATE(4245)] = 190370, - [SMALL_STATE(4246)] = 190396, - [SMALL_STATE(4247)] = 190420, - [SMALL_STATE(4248)] = 190442, - [SMALL_STATE(4249)] = 190468, - [SMALL_STATE(4250)] = 190494, - [SMALL_STATE(4251)] = 190512, - [SMALL_STATE(4252)] = 190536, - [SMALL_STATE(4253)] = 190564, - [SMALL_STATE(4254)] = 190590, - [SMALL_STATE(4255)] = 190618, - [SMALL_STATE(4256)] = 190642, - [SMALL_STATE(4257)] = 190668, - [SMALL_STATE(4258)] = 190694, - [SMALL_STATE(4259)] = 190716, - [SMALL_STATE(4260)] = 190742, - [SMALL_STATE(4261)] = 190768, - [SMALL_STATE(4262)] = 190794, - [SMALL_STATE(4263)] = 190820, - [SMALL_STATE(4264)] = 190846, - [SMALL_STATE(4265)] = 190872, - [SMALL_STATE(4266)] = 190892, - [SMALL_STATE(4267)] = 190918, - [SMALL_STATE(4268)] = 190944, - [SMALL_STATE(4269)] = 190964, - [SMALL_STATE(4270)] = 190990, - [SMALL_STATE(4271)] = 191016, - [SMALL_STATE(4272)] = 191040, - [SMALL_STATE(4273)] = 191060, - [SMALL_STATE(4274)] = 191084, - [SMALL_STATE(4275)] = 191108, - [SMALL_STATE(4276)] = 191132, - [SMALL_STATE(4277)] = 191158, - [SMALL_STATE(4278)] = 191184, - [SMALL_STATE(4279)] = 191212, - [SMALL_STATE(4280)] = 191234, - [SMALL_STATE(4281)] = 191260, - [SMALL_STATE(4282)] = 191286, - [SMALL_STATE(4283)] = 191308, - [SMALL_STATE(4284)] = 191334, - [SMALL_STATE(4285)] = 191351, - [SMALL_STATE(4286)] = 191374, - [SMALL_STATE(4287)] = 191399, - [SMALL_STATE(4288)] = 191424, - [SMALL_STATE(4289)] = 191445, - [SMALL_STATE(4290)] = 191470, - [SMALL_STATE(4291)] = 191495, - [SMALL_STATE(4292)] = 191518, - [SMALL_STATE(4293)] = 191543, - [SMALL_STATE(4294)] = 191562, - [SMALL_STATE(4295)] = 191581, - [SMALL_STATE(4296)] = 191604, - [SMALL_STATE(4297)] = 191627, - [SMALL_STATE(4298)] = 191644, - [SMALL_STATE(4299)] = 191665, - [SMALL_STATE(4300)] = 191684, - [SMALL_STATE(4301)] = 191705, - [SMALL_STATE(4302)] = 191722, - [SMALL_STATE(4303)] = 191743, - [SMALL_STATE(4304)] = 191764, - [SMALL_STATE(4305)] = 191781, - [SMALL_STATE(4306)] = 191800, - [SMALL_STATE(4307)] = 191825, - [SMALL_STATE(4308)] = 191844, - [SMALL_STATE(4309)] = 191867, - [SMALL_STATE(4310)] = 191892, - [SMALL_STATE(4311)] = 191917, - [SMALL_STATE(4312)] = 191942, - [SMALL_STATE(4313)] = 191965, - [SMALL_STATE(4314)] = 191982, - [SMALL_STATE(4315)] = 192005, - [SMALL_STATE(4316)] = 192022, - [SMALL_STATE(4317)] = 192047, - [SMALL_STATE(4318)] = 192066, - [SMALL_STATE(4319)] = 192089, - [SMALL_STATE(4320)] = 192106, - [SMALL_STATE(4321)] = 192123, - [SMALL_STATE(4322)] = 192140, - [SMALL_STATE(4323)] = 192157, - [SMALL_STATE(4324)] = 192174, - [SMALL_STATE(4325)] = 192191, - [SMALL_STATE(4326)] = 192208, - [SMALL_STATE(4327)] = 192225, - [SMALL_STATE(4328)] = 192242, - [SMALL_STATE(4329)] = 192267, - [SMALL_STATE(4330)] = 192284, - [SMALL_STATE(4331)] = 192301, - [SMALL_STATE(4332)] = 192318, - [SMALL_STATE(4333)] = 192335, - [SMALL_STATE(4334)] = 192358, - [SMALL_STATE(4335)] = 192375, - [SMALL_STATE(4336)] = 192392, - [SMALL_STATE(4337)] = 192415, - [SMALL_STATE(4338)] = 192438, - [SMALL_STATE(4339)] = 192461, - [SMALL_STATE(4340)] = 192478, - [SMALL_STATE(4341)] = 192501, - [SMALL_STATE(4342)] = 192524, - [SMALL_STATE(4343)] = 192541, - [SMALL_STATE(4344)] = 192558, - [SMALL_STATE(4345)] = 192575, - [SMALL_STATE(4346)] = 192600, - [SMALL_STATE(4347)] = 192617, - [SMALL_STATE(4348)] = 192634, - [SMALL_STATE(4349)] = 192657, - [SMALL_STATE(4350)] = 192680, - [SMALL_STATE(4351)] = 192699, - [SMALL_STATE(4352)] = 192722, - [SMALL_STATE(4353)] = 192745, - [SMALL_STATE(4354)] = 192768, - [SMALL_STATE(4355)] = 192791, - [SMALL_STATE(4356)] = 192814, - [SMALL_STATE(4357)] = 192837, - [SMALL_STATE(4358)] = 192860, - [SMALL_STATE(4359)] = 192885, - [SMALL_STATE(4360)] = 192902, - [SMALL_STATE(4361)] = 192919, - [SMALL_STATE(4362)] = 192942, - [SMALL_STATE(4363)] = 192959, - [SMALL_STATE(4364)] = 192976, - [SMALL_STATE(4365)] = 192995, - [SMALL_STATE(4366)] = 193012, - [SMALL_STATE(4367)] = 193035, - [SMALL_STATE(4368)] = 193052, - [SMALL_STATE(4369)] = 193077, - [SMALL_STATE(4370)] = 193094, - [SMALL_STATE(4371)] = 193111, - [SMALL_STATE(4372)] = 193128, - [SMALL_STATE(4373)] = 193151, - [SMALL_STATE(4374)] = 193168, - [SMALL_STATE(4375)] = 193185, - [SMALL_STATE(4376)] = 193202, - [SMALL_STATE(4377)] = 193219, - [SMALL_STATE(4378)] = 193236, - [SMALL_STATE(4379)] = 193259, - [SMALL_STATE(4380)] = 193276, - [SMALL_STATE(4381)] = 193301, - [SMALL_STATE(4382)] = 193318, - [SMALL_STATE(4383)] = 193335, - [SMALL_STATE(4384)] = 193352, - [SMALL_STATE(4385)] = 193375, - [SMALL_STATE(4386)] = 193392, - [SMALL_STATE(4387)] = 193409, - [SMALL_STATE(4388)] = 193432, - [SMALL_STATE(4389)] = 193449, - [SMALL_STATE(4390)] = 193466, - [SMALL_STATE(4391)] = 193483, - [SMALL_STATE(4392)] = 193500, - [SMALL_STATE(4393)] = 193523, - [SMALL_STATE(4394)] = 193540, - [SMALL_STATE(4395)] = 193563, - [SMALL_STATE(4396)] = 193580, - [SMALL_STATE(4397)] = 193603, - [SMALL_STATE(4398)] = 193618, - [SMALL_STATE(4399)] = 193643, - [SMALL_STATE(4400)] = 193658, - [SMALL_STATE(4401)] = 193675, - [SMALL_STATE(4402)] = 193698, - [SMALL_STATE(4403)] = 193715, - [SMALL_STATE(4404)] = 193732, - [SMALL_STATE(4405)] = 193749, - [SMALL_STATE(4406)] = 193772, - [SMALL_STATE(4407)] = 193795, - [SMALL_STATE(4408)] = 193814, - [SMALL_STATE(4409)] = 193831, - [SMALL_STATE(4410)] = 193846, - [SMALL_STATE(4411)] = 193869, - [SMALL_STATE(4412)] = 193892, - [SMALL_STATE(4413)] = 193911, - [SMALL_STATE(4414)] = 193926, - [SMALL_STATE(4415)] = 193951, - [SMALL_STATE(4416)] = 193968, - [SMALL_STATE(4417)] = 193991, - [SMALL_STATE(4418)] = 194006, - [SMALL_STATE(4419)] = 194025, - [SMALL_STATE(4420)] = 194046, - [SMALL_STATE(4421)] = 194069, - [SMALL_STATE(4422)] = 194092, - [SMALL_STATE(4423)] = 194113, - [SMALL_STATE(4424)] = 194136, - [SMALL_STATE(4425)] = 194159, - [SMALL_STATE(4426)] = 194174, - [SMALL_STATE(4427)] = 194199, - [SMALL_STATE(4428)] = 194222, - [SMALL_STATE(4429)] = 194245, - [SMALL_STATE(4430)] = 194268, - [SMALL_STATE(4431)] = 194291, - [SMALL_STATE(4432)] = 194314, - [SMALL_STATE(4433)] = 194339, - [SMALL_STATE(4434)] = 194358, - [SMALL_STATE(4435)] = 194381, - [SMALL_STATE(4436)] = 194400, - [SMALL_STATE(4437)] = 194421, - [SMALL_STATE(4438)] = 194442, - [SMALL_STATE(4439)] = 194461, - [SMALL_STATE(4440)] = 194476, - [SMALL_STATE(4441)] = 194493, - [SMALL_STATE(4442)] = 194514, - [SMALL_STATE(4443)] = 194533, - [SMALL_STATE(4444)] = 194554, - [SMALL_STATE(4445)] = 194575, - [SMALL_STATE(4446)] = 194594, - [SMALL_STATE(4447)] = 194609, - [SMALL_STATE(4448)] = 194628, - [SMALL_STATE(4449)] = 194651, - [SMALL_STATE(4450)] = 194672, - [SMALL_STATE(4451)] = 194695, - [SMALL_STATE(4452)] = 194718, - [SMALL_STATE(4453)] = 194737, - [SMALL_STATE(4454)] = 194756, - [SMALL_STATE(4455)] = 194779, - [SMALL_STATE(4456)] = 194798, - [SMALL_STATE(4457)] = 194818, - [SMALL_STATE(4458)] = 194840, - [SMALL_STATE(4459)] = 194860, - [SMALL_STATE(4460)] = 194878, - [SMALL_STATE(4461)] = 194894, - [SMALL_STATE(4462)] = 194914, - [SMALL_STATE(4463)] = 194934, - [SMALL_STATE(4464)] = 194954, - [SMALL_STATE(4465)] = 194976, - [SMALL_STATE(4466)] = 194990, - [SMALL_STATE(4467)] = 195010, - [SMALL_STATE(4468)] = 195026, - [SMALL_STATE(4469)] = 195046, - [SMALL_STATE(4470)] = 195062, - [SMALL_STATE(4471)] = 195084, - [SMALL_STATE(4472)] = 195106, - [SMALL_STATE(4473)] = 195124, - [SMALL_STATE(4474)] = 195142, - [SMALL_STATE(4475)] = 195162, - [SMALL_STATE(4476)] = 195178, - [SMALL_STATE(4477)] = 195194, - [SMALL_STATE(4478)] = 195214, - [SMALL_STATE(4479)] = 195230, - [SMALL_STATE(4480)] = 195250, - [SMALL_STATE(4481)] = 195272, - [SMALL_STATE(4482)] = 195294, - [SMALL_STATE(4483)] = 195314, - [SMALL_STATE(4484)] = 195330, - [SMALL_STATE(4485)] = 195344, - [SMALL_STATE(4486)] = 195358, - [SMALL_STATE(4487)] = 195372, - [SMALL_STATE(4488)] = 195388, - [SMALL_STATE(4489)] = 195402, - [SMALL_STATE(4490)] = 195422, - [SMALL_STATE(4491)] = 195438, - [SMALL_STATE(4492)] = 195454, - [SMALL_STATE(4493)] = 195470, - [SMALL_STATE(4494)] = 195484, - [SMALL_STATE(4495)] = 195498, - [SMALL_STATE(4496)] = 195514, - [SMALL_STATE(4497)] = 195536, - [SMALL_STATE(4498)] = 195552, - [SMALL_STATE(4499)] = 195570, - [SMALL_STATE(4500)] = 195592, - [SMALL_STATE(4501)] = 195606, - [SMALL_STATE(4502)] = 195620, - [SMALL_STATE(4503)] = 195634, - [SMALL_STATE(4504)] = 195648, - [SMALL_STATE(4505)] = 195662, - [SMALL_STATE(4506)] = 195682, - [SMALL_STATE(4507)] = 195700, - [SMALL_STATE(4508)] = 195714, - [SMALL_STATE(4509)] = 195736, - [SMALL_STATE(4510)] = 195758, - [SMALL_STATE(4511)] = 195780, - [SMALL_STATE(4512)] = 195794, - [SMALL_STATE(4513)] = 195816, - [SMALL_STATE(4514)] = 195830, - [SMALL_STATE(4515)] = 195844, - [SMALL_STATE(4516)] = 195864, - [SMALL_STATE(4517)] = 195882, - [SMALL_STATE(4518)] = 195898, - [SMALL_STATE(4519)] = 195912, - [SMALL_STATE(4520)] = 195928, - [SMALL_STATE(4521)] = 195950, - [SMALL_STATE(4522)] = 195966, - [SMALL_STATE(4523)] = 195988, - [SMALL_STATE(4524)] = 196004, - [SMALL_STATE(4525)] = 196018, - [SMALL_STATE(4526)] = 196034, - [SMALL_STATE(4527)] = 196056, - [SMALL_STATE(4528)] = 196076, - [SMALL_STATE(4529)] = 196092, - [SMALL_STATE(4530)] = 196110, - [SMALL_STATE(4531)] = 196126, - [SMALL_STATE(4532)] = 196146, - [SMALL_STATE(4533)] = 196166, - [SMALL_STATE(4534)] = 196182, - [SMALL_STATE(4535)] = 196196, - [SMALL_STATE(4536)] = 196218, - [SMALL_STATE(4537)] = 196238, - [SMALL_STATE(4538)] = 196252, - [SMALL_STATE(4539)] = 196270, - [SMALL_STATE(4540)] = 196292, - [SMALL_STATE(4541)] = 196310, - [SMALL_STATE(4542)] = 196326, - [SMALL_STATE(4543)] = 196348, - [SMALL_STATE(4544)] = 196364, - [SMALL_STATE(4545)] = 196382, - [SMALL_STATE(4546)] = 196400, - [SMALL_STATE(4547)] = 196418, - [SMALL_STATE(4548)] = 196434, - [SMALL_STATE(4549)] = 196454, - [SMALL_STATE(4550)] = 196474, - [SMALL_STATE(4551)] = 196494, - [SMALL_STATE(4552)] = 196510, - [SMALL_STATE(4553)] = 196524, - [SMALL_STATE(4554)] = 196540, - [SMALL_STATE(4555)] = 196554, - [SMALL_STATE(4556)] = 196574, - [SMALL_STATE(4557)] = 196590, - [SMALL_STATE(4558)] = 196608, - [SMALL_STATE(4559)] = 196624, - [SMALL_STATE(4560)] = 196638, - [SMALL_STATE(4561)] = 196660, - [SMALL_STATE(4562)] = 196676, - [SMALL_STATE(4563)] = 196692, - [SMALL_STATE(4564)] = 196708, - [SMALL_STATE(4565)] = 196728, - [SMALL_STATE(4566)] = 196744, - [SMALL_STATE(4567)] = 196760, - [SMALL_STATE(4568)] = 196776, - [SMALL_STATE(4569)] = 196792, - [SMALL_STATE(4570)] = 196814, - [SMALL_STATE(4571)] = 196836, - [SMALL_STATE(4572)] = 196850, - [SMALL_STATE(4573)] = 196870, - [SMALL_STATE(4574)] = 196886, - [SMALL_STATE(4575)] = 196902, - [SMALL_STATE(4576)] = 196918, - [SMALL_STATE(4577)] = 196932, - [SMALL_STATE(4578)] = 196948, - [SMALL_STATE(4579)] = 196964, - [SMALL_STATE(4580)] = 196978, - [SMALL_STATE(4581)] = 196994, - [SMALL_STATE(4582)] = 197010, - [SMALL_STATE(4583)] = 197026, - [SMALL_STATE(4584)] = 197042, - [SMALL_STATE(4585)] = 197062, - [SMALL_STATE(4586)] = 197082, - [SMALL_STATE(4587)] = 197096, - [SMALL_STATE(4588)] = 197112, - [SMALL_STATE(4589)] = 197128, - [SMALL_STATE(4590)] = 197144, - [SMALL_STATE(4591)] = 197160, - [SMALL_STATE(4592)] = 197176, - [SMALL_STATE(4593)] = 197192, - [SMALL_STATE(4594)] = 197208, - [SMALL_STATE(4595)] = 197228, - [SMALL_STATE(4596)] = 197244, - [SMALL_STATE(4597)] = 197262, - [SMALL_STATE(4598)] = 197278, - [SMALL_STATE(4599)] = 197294, - [SMALL_STATE(4600)] = 197308, - [SMALL_STATE(4601)] = 197322, - [SMALL_STATE(4602)] = 197338, - [SMALL_STATE(4603)] = 197354, - [SMALL_STATE(4604)] = 197374, - [SMALL_STATE(4605)] = 197390, - [SMALL_STATE(4606)] = 197406, - [SMALL_STATE(4607)] = 197420, - [SMALL_STATE(4608)] = 197434, - [SMALL_STATE(4609)] = 197450, - [SMALL_STATE(4610)] = 197470, - [SMALL_STATE(4611)] = 197486, - [SMALL_STATE(4612)] = 197506, - [SMALL_STATE(4613)] = 197526, - [SMALL_STATE(4614)] = 197542, - [SMALL_STATE(4615)] = 197564, - [SMALL_STATE(4616)] = 197580, - [SMALL_STATE(4617)] = 197596, - [SMALL_STATE(4618)] = 197612, - [SMALL_STATE(4619)] = 197628, - [SMALL_STATE(4620)] = 197644, - [SMALL_STATE(4621)] = 197660, - [SMALL_STATE(4622)] = 197680, - [SMALL_STATE(4623)] = 197696, - [SMALL_STATE(4624)] = 197712, - [SMALL_STATE(4625)] = 197730, - [SMALL_STATE(4626)] = 197746, - [SMALL_STATE(4627)] = 197762, - [SMALL_STATE(4628)] = 197784, - [SMALL_STATE(4629)] = 197798, - [SMALL_STATE(4630)] = 197818, - [SMALL_STATE(4631)] = 197836, - [SMALL_STATE(4632)] = 197858, - [SMALL_STATE(4633)] = 197874, - [SMALL_STATE(4634)] = 197894, - [SMALL_STATE(4635)] = 197910, - [SMALL_STATE(4636)] = 197932, - [SMALL_STATE(4637)] = 197946, - [SMALL_STATE(4638)] = 197968, - [SMALL_STATE(4639)] = 197984, - [SMALL_STATE(4640)] = 198004, - [SMALL_STATE(4641)] = 198020, - [SMALL_STATE(4642)] = 198034, - [SMALL_STATE(4643)] = 198050, - [SMALL_STATE(4644)] = 198072, - [SMALL_STATE(4645)] = 198088, - [SMALL_STATE(4646)] = 198104, - [SMALL_STATE(4647)] = 198122, - [SMALL_STATE(4648)] = 198138, - [SMALL_STATE(4649)] = 198154, - [SMALL_STATE(4650)] = 198170, - [SMALL_STATE(4651)] = 198192, - [SMALL_STATE(4652)] = 198212, - [SMALL_STATE(4653)] = 198232, - [SMALL_STATE(4654)] = 198254, - [SMALL_STATE(4655)] = 198270, - [SMALL_STATE(4656)] = 198286, - [SMALL_STATE(4657)] = 198300, - [SMALL_STATE(4658)] = 198320, - [SMALL_STATE(4659)] = 198340, - [SMALL_STATE(4660)] = 198360, - [SMALL_STATE(4661)] = 198382, - [SMALL_STATE(4662)] = 198398, - [SMALL_STATE(4663)] = 198412, - [SMALL_STATE(4664)] = 198428, - [SMALL_STATE(4665)] = 198448, - [SMALL_STATE(4666)] = 198468, - [SMALL_STATE(4667)] = 198488, - [SMALL_STATE(4668)] = 198504, - [SMALL_STATE(4669)] = 198524, - [SMALL_STATE(4670)] = 198538, - [SMALL_STATE(4671)] = 198554, - [SMALL_STATE(4672)] = 198572, - [SMALL_STATE(4673)] = 198588, - [SMALL_STATE(4674)] = 198604, - [SMALL_STATE(4675)] = 198626, - [SMALL_STATE(4676)] = 198642, - [SMALL_STATE(4677)] = 198658, - [SMALL_STATE(4678)] = 198674, - [SMALL_STATE(4679)] = 198690, - [SMALL_STATE(4680)] = 198712, - [SMALL_STATE(4681)] = 198726, - [SMALL_STATE(4682)] = 198742, - [SMALL_STATE(4683)] = 198756, - [SMALL_STATE(4684)] = 198772, - [SMALL_STATE(4685)] = 198788, - [SMALL_STATE(4686)] = 198804, - [SMALL_STATE(4687)] = 198820, - [SMALL_STATE(4688)] = 198836, - [SMALL_STATE(4689)] = 198852, - [SMALL_STATE(4690)] = 198868, - [SMALL_STATE(4691)] = 198884, - [SMALL_STATE(4692)] = 198898, - [SMALL_STATE(4693)] = 198912, - [SMALL_STATE(4694)] = 198926, - [SMALL_STATE(4695)] = 198940, - [SMALL_STATE(4696)] = 198954, - [SMALL_STATE(4697)] = 198968, - [SMALL_STATE(4698)] = 198990, - [SMALL_STATE(4699)] = 199004, - [SMALL_STATE(4700)] = 199024, - [SMALL_STATE(4701)] = 199040, - [SMALL_STATE(4702)] = 199054, - [SMALL_STATE(4703)] = 199068, - [SMALL_STATE(4704)] = 199084, - [SMALL_STATE(4705)] = 199098, - [SMALL_STATE(4706)] = 199112, - [SMALL_STATE(4707)] = 199132, - [SMALL_STATE(4708)] = 199152, - [SMALL_STATE(4709)] = 199166, - [SMALL_STATE(4710)] = 199180, - [SMALL_STATE(4711)] = 199194, - [SMALL_STATE(4712)] = 199210, - [SMALL_STATE(4713)] = 199226, - [SMALL_STATE(4714)] = 199246, - [SMALL_STATE(4715)] = 199268, - [SMALL_STATE(4716)] = 199282, - [SMALL_STATE(4717)] = 199298, - [SMALL_STATE(4718)] = 199318, - [SMALL_STATE(4719)] = 199340, - [SMALL_STATE(4720)] = 199360, - [SMALL_STATE(4721)] = 199374, - [SMALL_STATE(4722)] = 199396, - [SMALL_STATE(4723)] = 199416, - [SMALL_STATE(4724)] = 199438, - [SMALL_STATE(4725)] = 199454, - [SMALL_STATE(4726)] = 199470, - [SMALL_STATE(4727)] = 199486, - [SMALL_STATE(4728)] = 199502, - [SMALL_STATE(4729)] = 199518, - [SMALL_STATE(4730)] = 199534, - [SMALL_STATE(4731)] = 199550, - [SMALL_STATE(4732)] = 199566, - [SMALL_STATE(4733)] = 199582, - [SMALL_STATE(4734)] = 199598, - [SMALL_STATE(4735)] = 199614, - [SMALL_STATE(4736)] = 199630, - [SMALL_STATE(4737)] = 199646, - [SMALL_STATE(4738)] = 199662, - [SMALL_STATE(4739)] = 199678, - [SMALL_STATE(4740)] = 199694, - [SMALL_STATE(4741)] = 199710, - [SMALL_STATE(4742)] = 199732, - [SMALL_STATE(4743)] = 199748, - [SMALL_STATE(4744)] = 199764, - [SMALL_STATE(4745)] = 199780, - [SMALL_STATE(4746)] = 199796, - [SMALL_STATE(4747)] = 199812, - [SMALL_STATE(4748)] = 199830, - [SMALL_STATE(4749)] = 199850, - [SMALL_STATE(4750)] = 199868, - [SMALL_STATE(4751)] = 199884, - [SMALL_STATE(4752)] = 199900, - [SMALL_STATE(4753)] = 199916, - [SMALL_STATE(4754)] = 199932, - [SMALL_STATE(4755)] = 199948, - [SMALL_STATE(4756)] = 199964, - [SMALL_STATE(4757)] = 199980, - [SMALL_STATE(4758)] = 199996, - [SMALL_STATE(4759)] = 200012, - [SMALL_STATE(4760)] = 200028, - [SMALL_STATE(4761)] = 200044, - [SMALL_STATE(4762)] = 200060, - [SMALL_STATE(4763)] = 200076, - [SMALL_STATE(4764)] = 200092, - [SMALL_STATE(4765)] = 200108, - [SMALL_STATE(4766)] = 200124, - [SMALL_STATE(4767)] = 200140, - [SMALL_STATE(4768)] = 200160, - [SMALL_STATE(4769)] = 200176, - [SMALL_STATE(4770)] = 200192, - [SMALL_STATE(4771)] = 200208, - [SMALL_STATE(4772)] = 200224, - [SMALL_STATE(4773)] = 200240, - [SMALL_STATE(4774)] = 200256, - [SMALL_STATE(4775)] = 200272, - [SMALL_STATE(4776)] = 200288, - [SMALL_STATE(4777)] = 200304, - [SMALL_STATE(4778)] = 200320, - [SMALL_STATE(4779)] = 200336, - [SMALL_STATE(4780)] = 200352, - [SMALL_STATE(4781)] = 200368, - [SMALL_STATE(4782)] = 200384, - [SMALL_STATE(4783)] = 200400, - [SMALL_STATE(4784)] = 200416, - [SMALL_STATE(4785)] = 200432, - [SMALL_STATE(4786)] = 200448, - [SMALL_STATE(4787)] = 200464, - [SMALL_STATE(4788)] = 200480, - [SMALL_STATE(4789)] = 200496, - [SMALL_STATE(4790)] = 200516, - [SMALL_STATE(4791)] = 200532, - [SMALL_STATE(4792)] = 200552, - [SMALL_STATE(4793)] = 200568, - [SMALL_STATE(4794)] = 200584, - [SMALL_STATE(4795)] = 200600, - [SMALL_STATE(4796)] = 200616, - [SMALL_STATE(4797)] = 200632, - [SMALL_STATE(4798)] = 200652, - [SMALL_STATE(4799)] = 200674, - [SMALL_STATE(4800)] = 200690, - [SMALL_STATE(4801)] = 200706, - [SMALL_STATE(4802)] = 200726, - [SMALL_STATE(4803)] = 200742, - [SMALL_STATE(4804)] = 200764, - [SMALL_STATE(4805)] = 200780, - [SMALL_STATE(4806)] = 200796, - [SMALL_STATE(4807)] = 200812, - [SMALL_STATE(4808)] = 200828, - [SMALL_STATE(4809)] = 200850, - [SMALL_STATE(4810)] = 200866, - [SMALL_STATE(4811)] = 200882, - [SMALL_STATE(4812)] = 200898, - [SMALL_STATE(4813)] = 200914, - [SMALL_STATE(4814)] = 200930, - [SMALL_STATE(4815)] = 200946, - [SMALL_STATE(4816)] = 200966, - [SMALL_STATE(4817)] = 200982, - [SMALL_STATE(4818)] = 200998, - [SMALL_STATE(4819)] = 201020, - [SMALL_STATE(4820)] = 201036, - [SMALL_STATE(4821)] = 201052, - [SMALL_STATE(4822)] = 201072, - [SMALL_STATE(4823)] = 201092, - [SMALL_STATE(4824)] = 201108, - [SMALL_STATE(4825)] = 201124, - [SMALL_STATE(4826)] = 201140, - [SMALL_STATE(4827)] = 201156, - [SMALL_STATE(4828)] = 201176, - [SMALL_STATE(4829)] = 201192, - [SMALL_STATE(4830)] = 201210, - [SMALL_STATE(4831)] = 201230, - [SMALL_STATE(4832)] = 201246, - [SMALL_STATE(4833)] = 201262, - [SMALL_STATE(4834)] = 201278, - [SMALL_STATE(4835)] = 201294, - [SMALL_STATE(4836)] = 201310, - [SMALL_STATE(4837)] = 201326, - [SMALL_STATE(4838)] = 201342, - [SMALL_STATE(4839)] = 201362, - [SMALL_STATE(4840)] = 201378, - [SMALL_STATE(4841)] = 201394, - [SMALL_STATE(4842)] = 201414, - [SMALL_STATE(4843)] = 201430, - [SMALL_STATE(4844)] = 201446, - [SMALL_STATE(4845)] = 201462, - [SMALL_STATE(4846)] = 201478, - [SMALL_STATE(4847)] = 201494, - [SMALL_STATE(4848)] = 201510, - [SMALL_STATE(4849)] = 201526, - [SMALL_STATE(4850)] = 201542, - [SMALL_STATE(4851)] = 201558, - [SMALL_STATE(4852)] = 201574, - [SMALL_STATE(4853)] = 201596, - [SMALL_STATE(4854)] = 201612, - [SMALL_STATE(4855)] = 201634, - [SMALL_STATE(4856)] = 201654, - [SMALL_STATE(4857)] = 201674, - [SMALL_STATE(4858)] = 201690, - [SMALL_STATE(4859)] = 201712, - [SMALL_STATE(4860)] = 201728, - [SMALL_STATE(4861)] = 201744, - [SMALL_STATE(4862)] = 201760, - [SMALL_STATE(4863)] = 201776, - [SMALL_STATE(4864)] = 201792, - [SMALL_STATE(4865)] = 201808, - [SMALL_STATE(4866)] = 201824, - [SMALL_STATE(4867)] = 201840, - [SMALL_STATE(4868)] = 201856, - [SMALL_STATE(4869)] = 201872, - [SMALL_STATE(4870)] = 201888, - [SMALL_STATE(4871)] = 201904, - [SMALL_STATE(4872)] = 201921, - [SMALL_STATE(4873)] = 201940, - [SMALL_STATE(4874)] = 201959, - [SMALL_STATE(4875)] = 201978, - [SMALL_STATE(4876)] = 201993, - [SMALL_STATE(4877)] = 202008, - [SMALL_STATE(4878)] = 202023, - [SMALL_STATE(4879)] = 202042, - [SMALL_STATE(4880)] = 202057, - [SMALL_STATE(4881)] = 202070, - [SMALL_STATE(4882)] = 202085, - [SMALL_STATE(4883)] = 202104, - [SMALL_STATE(4884)] = 202123, - [SMALL_STATE(4885)] = 202142, - [SMALL_STATE(4886)] = 202161, - [SMALL_STATE(4887)] = 202178, - [SMALL_STATE(4888)] = 202193, - [SMALL_STATE(4889)] = 202208, - [SMALL_STATE(4890)] = 202225, - [SMALL_STATE(4891)] = 202240, - [SMALL_STATE(4892)] = 202259, - [SMALL_STATE(4893)] = 202276, - [SMALL_STATE(4894)] = 202293, - [SMALL_STATE(4895)] = 202312, - [SMALL_STATE(4896)] = 202331, - [SMALL_STATE(4897)] = 202344, - [SMALL_STATE(4898)] = 202363, - [SMALL_STATE(4899)] = 202378, - [SMALL_STATE(4900)] = 202393, - [SMALL_STATE(4901)] = 202406, - [SMALL_STATE(4902)] = 202421, - [SMALL_STATE(4903)] = 202436, - [SMALL_STATE(4904)] = 202451, - [SMALL_STATE(4905)] = 202468, - [SMALL_STATE(4906)] = 202483, - [SMALL_STATE(4907)] = 202498, - [SMALL_STATE(4908)] = 202511, - [SMALL_STATE(4909)] = 202526, - [SMALL_STATE(4910)] = 202541, - [SMALL_STATE(4911)] = 202556, - [SMALL_STATE(4912)] = 202575, - [SMALL_STATE(4913)] = 202594, - [SMALL_STATE(4914)] = 202613, - [SMALL_STATE(4915)] = 202628, - [SMALL_STATE(4916)] = 202647, - [SMALL_STATE(4917)] = 202662, - [SMALL_STATE(4918)] = 202677, - [SMALL_STATE(4919)] = 202692, - [SMALL_STATE(4920)] = 202707, - [SMALL_STATE(4921)] = 202722, - [SMALL_STATE(4922)] = 202737, - [SMALL_STATE(4923)] = 202752, - [SMALL_STATE(4924)] = 202767, - [SMALL_STATE(4925)] = 202780, - [SMALL_STATE(4926)] = 202799, - [SMALL_STATE(4927)] = 202814, - [SMALL_STATE(4928)] = 202833, - [SMALL_STATE(4929)] = 202848, - [SMALL_STATE(4930)] = 202863, - [SMALL_STATE(4931)] = 202878, - [SMALL_STATE(4932)] = 202893, - [SMALL_STATE(4933)] = 202906, - [SMALL_STATE(4934)] = 202925, - [SMALL_STATE(4935)] = 202942, - [SMALL_STATE(4936)] = 202957, - [SMALL_STATE(4937)] = 202974, - [SMALL_STATE(4938)] = 202991, - [SMALL_STATE(4939)] = 203008, - [SMALL_STATE(4940)] = 203023, - [SMALL_STATE(4941)] = 203038, - [SMALL_STATE(4942)] = 203053, - [SMALL_STATE(4943)] = 203068, - [SMALL_STATE(4944)] = 203083, - [SMALL_STATE(4945)] = 203098, - [SMALL_STATE(4946)] = 203115, - [SMALL_STATE(4947)] = 203134, - [SMALL_STATE(4948)] = 203153, - [SMALL_STATE(4949)] = 203166, - [SMALL_STATE(4950)] = 203183, - [SMALL_STATE(4951)] = 203198, - [SMALL_STATE(4952)] = 203213, - [SMALL_STATE(4953)] = 203230, - [SMALL_STATE(4954)] = 203245, - [SMALL_STATE(4955)] = 203260, - [SMALL_STATE(4956)] = 203279, - [SMALL_STATE(4957)] = 203298, - [SMALL_STATE(4958)] = 203317, - [SMALL_STATE(4959)] = 203332, - [SMALL_STATE(4960)] = 203351, - [SMALL_STATE(4961)] = 203370, - [SMALL_STATE(4962)] = 203389, - [SMALL_STATE(4963)] = 203404, - [SMALL_STATE(4964)] = 203417, - [SMALL_STATE(4965)] = 203436, - [SMALL_STATE(4966)] = 203455, - [SMALL_STATE(4967)] = 203474, - [SMALL_STATE(4968)] = 203493, - [SMALL_STATE(4969)] = 203512, - [SMALL_STATE(4970)] = 203531, - [SMALL_STATE(4971)] = 203550, - [SMALL_STATE(4972)] = 203567, - [SMALL_STATE(4973)] = 203586, - [SMALL_STATE(4974)] = 203603, - [SMALL_STATE(4975)] = 203618, - [SMALL_STATE(4976)] = 203633, - [SMALL_STATE(4977)] = 203652, - [SMALL_STATE(4978)] = 203671, - [SMALL_STATE(4979)] = 203684, - [SMALL_STATE(4980)] = 203703, - [SMALL_STATE(4981)] = 203722, - [SMALL_STATE(4982)] = 203737, - [SMALL_STATE(4983)] = 203756, - [SMALL_STATE(4984)] = 203771, - [SMALL_STATE(4985)] = 203786, - [SMALL_STATE(4986)] = 203803, - [SMALL_STATE(4987)] = 203822, - [SMALL_STATE(4988)] = 203841, - [SMALL_STATE(4989)] = 203860, - [SMALL_STATE(4990)] = 203879, - [SMALL_STATE(4991)] = 203896, - [SMALL_STATE(4992)] = 203915, - [SMALL_STATE(4993)] = 203932, - [SMALL_STATE(4994)] = 203947, - [SMALL_STATE(4995)] = 203964, - [SMALL_STATE(4996)] = 203979, - [SMALL_STATE(4997)] = 203998, - [SMALL_STATE(4998)] = 204015, - [SMALL_STATE(4999)] = 204030, - [SMALL_STATE(5000)] = 204047, - [SMALL_STATE(5001)] = 204066, - [SMALL_STATE(5002)] = 204079, - [SMALL_STATE(5003)] = 204094, - [SMALL_STATE(5004)] = 204109, - [SMALL_STATE(5005)] = 204124, - [SMALL_STATE(5006)] = 204143, - [SMALL_STATE(5007)] = 204162, - [SMALL_STATE(5008)] = 204177, - [SMALL_STATE(5009)] = 204192, - [SMALL_STATE(5010)] = 204207, - [SMALL_STATE(5011)] = 204224, - [SMALL_STATE(5012)] = 204243, - [SMALL_STATE(5013)] = 204262, - [SMALL_STATE(5014)] = 204275, - [SMALL_STATE(5015)] = 204288, - [SMALL_STATE(5016)] = 204307, - [SMALL_STATE(5017)] = 204326, - [SMALL_STATE(5018)] = 204343, - [SMALL_STATE(5019)] = 204360, - [SMALL_STATE(5020)] = 204375, - [SMALL_STATE(5021)] = 204392, - [SMALL_STATE(5022)] = 204407, - [SMALL_STATE(5023)] = 204426, - [SMALL_STATE(5024)] = 204439, - [SMALL_STATE(5025)] = 204456, - [SMALL_STATE(5026)] = 204475, - [SMALL_STATE(5027)] = 204494, - [SMALL_STATE(5028)] = 204509, - [SMALL_STATE(5029)] = 204522, - [SMALL_STATE(5030)] = 204539, - [SMALL_STATE(5031)] = 204558, - [SMALL_STATE(5032)] = 204575, - [SMALL_STATE(5033)] = 204592, - [SMALL_STATE(5034)] = 204611, - [SMALL_STATE(5035)] = 204624, - [SMALL_STATE(5036)] = 204643, - [SMALL_STATE(5037)] = 204658, - [SMALL_STATE(5038)] = 204673, - [SMALL_STATE(5039)] = 204688, - [SMALL_STATE(5040)] = 204707, - [SMALL_STATE(5041)] = 204722, - [SMALL_STATE(5042)] = 204741, - [SMALL_STATE(5043)] = 204760, - [SMALL_STATE(5044)] = 204775, - [SMALL_STATE(5045)] = 204794, - [SMALL_STATE(5046)] = 204807, - [SMALL_STATE(5047)] = 204822, - [SMALL_STATE(5048)] = 204837, - [SMALL_STATE(5049)] = 204852, - [SMALL_STATE(5050)] = 204871, - [SMALL_STATE(5051)] = 204886, - [SMALL_STATE(5052)] = 204903, - [SMALL_STATE(5053)] = 204918, - [SMALL_STATE(5054)] = 204931, - [SMALL_STATE(5055)] = 204946, - [SMALL_STATE(5056)] = 204961, - [SMALL_STATE(5057)] = 204980, - [SMALL_STATE(5058)] = 204995, - [SMALL_STATE(5059)] = 205010, - [SMALL_STATE(5060)] = 205027, - [SMALL_STATE(5061)] = 205042, - [SMALL_STATE(5062)] = 205059, - [SMALL_STATE(5063)] = 205074, - [SMALL_STATE(5064)] = 205089, - [SMALL_STATE(5065)] = 205104, - [SMALL_STATE(5066)] = 205121, - [SMALL_STATE(5067)] = 205140, - [SMALL_STATE(5068)] = 205155, - [SMALL_STATE(5069)] = 205170, - [SMALL_STATE(5070)] = 205185, - [SMALL_STATE(5071)] = 205200, - [SMALL_STATE(5072)] = 205213, - [SMALL_STATE(5073)] = 205232, - [SMALL_STATE(5074)] = 205247, - [SMALL_STATE(5075)] = 205262, - [SMALL_STATE(5076)] = 205277, - [SMALL_STATE(5077)] = 205292, - [SMALL_STATE(5078)] = 205307, - [SMALL_STATE(5079)] = 205322, - [SMALL_STATE(5080)] = 205335, - [SMALL_STATE(5081)] = 205354, - [SMALL_STATE(5082)] = 205369, - [SMALL_STATE(5083)] = 205384, - [SMALL_STATE(5084)] = 205401, - [SMALL_STATE(5085)] = 205416, - [SMALL_STATE(5086)] = 205433, - [SMALL_STATE(5087)] = 205448, - [SMALL_STATE(5088)] = 205463, - [SMALL_STATE(5089)] = 205478, - [SMALL_STATE(5090)] = 205493, - [SMALL_STATE(5091)] = 205508, - [SMALL_STATE(5092)] = 205523, - [SMALL_STATE(5093)] = 205538, - [SMALL_STATE(5094)] = 205553, - [SMALL_STATE(5095)] = 205568, - [SMALL_STATE(5096)] = 205583, - [SMALL_STATE(5097)] = 205598, - [SMALL_STATE(5098)] = 205615, - [SMALL_STATE(5099)] = 205630, - [SMALL_STATE(5100)] = 205645, - [SMALL_STATE(5101)] = 205660, - [SMALL_STATE(5102)] = 205675, - [SMALL_STATE(5103)] = 205690, - [SMALL_STATE(5104)] = 205705, - [SMALL_STATE(5105)] = 205724, - [SMALL_STATE(5106)] = 205739, - [SMALL_STATE(5107)] = 205754, - [SMALL_STATE(5108)] = 205769, - [SMALL_STATE(5109)] = 205786, - [SMALL_STATE(5110)] = 205801, - [SMALL_STATE(5111)] = 205816, - [SMALL_STATE(5112)] = 205831, - [SMALL_STATE(5113)] = 205844, - [SMALL_STATE(5114)] = 205859, - [SMALL_STATE(5115)] = 205878, - [SMALL_STATE(5116)] = 205893, - [SMALL_STATE(5117)] = 205908, - [SMALL_STATE(5118)] = 205923, - [SMALL_STATE(5119)] = 205942, - [SMALL_STATE(5120)] = 205959, - [SMALL_STATE(5121)] = 205974, - [SMALL_STATE(5122)] = 205989, - [SMALL_STATE(5123)] = 206006, - [SMALL_STATE(5124)] = 206021, - [SMALL_STATE(5125)] = 206036, - [SMALL_STATE(5126)] = 206051, - [SMALL_STATE(5127)] = 206066, - [SMALL_STATE(5128)] = 206081, - [SMALL_STATE(5129)] = 206096, - [SMALL_STATE(5130)] = 206115, - [SMALL_STATE(5131)] = 206134, - [SMALL_STATE(5132)] = 206149, - [SMALL_STATE(5133)] = 206166, - [SMALL_STATE(5134)] = 206181, - [SMALL_STATE(5135)] = 206196, - [SMALL_STATE(5136)] = 206211, - [SMALL_STATE(5137)] = 206226, - [SMALL_STATE(5138)] = 206241, - [SMALL_STATE(5139)] = 206256, - [SMALL_STATE(5140)] = 206271, - [SMALL_STATE(5141)] = 206286, - [SMALL_STATE(5142)] = 206301, - [SMALL_STATE(5143)] = 206316, - [SMALL_STATE(5144)] = 206331, - [SMALL_STATE(5145)] = 206344, - [SMALL_STATE(5146)] = 206363, - [SMALL_STATE(5147)] = 206378, - [SMALL_STATE(5148)] = 206395, - [SMALL_STATE(5149)] = 206410, - [SMALL_STATE(5150)] = 206425, - [SMALL_STATE(5151)] = 206442, - [SMALL_STATE(5152)] = 206457, - [SMALL_STATE(5153)] = 206472, - [SMALL_STATE(5154)] = 206487, - [SMALL_STATE(5155)] = 206502, - [SMALL_STATE(5156)] = 206517, - [SMALL_STATE(5157)] = 206536, - [SMALL_STATE(5158)] = 206555, - [SMALL_STATE(5159)] = 206570, - [SMALL_STATE(5160)] = 206585, - [SMALL_STATE(5161)] = 206600, - [SMALL_STATE(5162)] = 206615, - [SMALL_STATE(5163)] = 206632, - [SMALL_STATE(5164)] = 206647, - [SMALL_STATE(5165)] = 206662, - [SMALL_STATE(5166)] = 206677, - [SMALL_STATE(5167)] = 206692, - [SMALL_STATE(5168)] = 206707, - [SMALL_STATE(5169)] = 206722, - [SMALL_STATE(5170)] = 206741, - [SMALL_STATE(5171)] = 206756, - [SMALL_STATE(5172)] = 206773, - [SMALL_STATE(5173)] = 206786, - [SMALL_STATE(5174)] = 206801, - [SMALL_STATE(5175)] = 206818, - [SMALL_STATE(5176)] = 206835, - [SMALL_STATE(5177)] = 206850, - [SMALL_STATE(5178)] = 206865, - [SMALL_STATE(5179)] = 206880, - [SMALL_STATE(5180)] = 206899, - [SMALL_STATE(5181)] = 206914, - [SMALL_STATE(5182)] = 206929, - [SMALL_STATE(5183)] = 206948, - [SMALL_STATE(5184)] = 206967, - [SMALL_STATE(5185)] = 206982, - [SMALL_STATE(5186)] = 206999, - [SMALL_STATE(5187)] = 207018, - [SMALL_STATE(5188)] = 207033, - [SMALL_STATE(5189)] = 207052, - [SMALL_STATE(5190)] = 207071, - [SMALL_STATE(5191)] = 207084, - [SMALL_STATE(5192)] = 207099, - [SMALL_STATE(5193)] = 207114, - [SMALL_STATE(5194)] = 207129, - [SMALL_STATE(5195)] = 207146, - [SMALL_STATE(5196)] = 207165, - [SMALL_STATE(5197)] = 207180, - [SMALL_STATE(5198)] = 207199, - [SMALL_STATE(5199)] = 207216, - [SMALL_STATE(5200)] = 207233, - [SMALL_STATE(5201)] = 207248, - [SMALL_STATE(5202)] = 207263, - [SMALL_STATE(5203)] = 207280, - [SMALL_STATE(5204)] = 207297, - [SMALL_STATE(5205)] = 207312, - [SMALL_STATE(5206)] = 207331, - [SMALL_STATE(5207)] = 207350, - [SMALL_STATE(5208)] = 207365, - [SMALL_STATE(5209)] = 207384, - [SMALL_STATE(5210)] = 207397, - [SMALL_STATE(5211)] = 207416, - [SMALL_STATE(5212)] = 207431, - [SMALL_STATE(5213)] = 207446, - [SMALL_STATE(5214)] = 207461, - [SMALL_STATE(5215)] = 207480, - [SMALL_STATE(5216)] = 207497, - [SMALL_STATE(5217)] = 207510, - [SMALL_STATE(5218)] = 207525, - [SMALL_STATE(5219)] = 207540, - [SMALL_STATE(5220)] = 207555, - [SMALL_STATE(5221)] = 207572, - [SMALL_STATE(5222)] = 207589, - [SMALL_STATE(5223)] = 207606, - [SMALL_STATE(5224)] = 207625, - [SMALL_STATE(5225)] = 207642, - [SMALL_STATE(5226)] = 207657, - [SMALL_STATE(5227)] = 207674, - [SMALL_STATE(5228)] = 207691, - [SMALL_STATE(5229)] = 207706, - [SMALL_STATE(5230)] = 207721, - [SMALL_STATE(5231)] = 207736, - [SMALL_STATE(5232)] = 207751, - [SMALL_STATE(5233)] = 207766, - [SMALL_STATE(5234)] = 207781, - [SMALL_STATE(5235)] = 207800, - [SMALL_STATE(5236)] = 207817, - [SMALL_STATE(5237)] = 207836, - [SMALL_STATE(5238)] = 207853, - [SMALL_STATE(5239)] = 207868, - [SMALL_STATE(5240)] = 207883, - [SMALL_STATE(5241)] = 207898, - [SMALL_STATE(5242)] = 207915, - [SMALL_STATE(5243)] = 207932, - [SMALL_STATE(5244)] = 207949, - [SMALL_STATE(5245)] = 207968, - [SMALL_STATE(5246)] = 207983, - [SMALL_STATE(5247)] = 207998, - [SMALL_STATE(5248)] = 208013, - [SMALL_STATE(5249)] = 208028, - [SMALL_STATE(5250)] = 208043, - [SMALL_STATE(5251)] = 208060, - [SMALL_STATE(5252)] = 208077, - [SMALL_STATE(5253)] = 208094, - [SMALL_STATE(5254)] = 208111, - [SMALL_STATE(5255)] = 208128, - [SMALL_STATE(5256)] = 208143, - [SMALL_STATE(5257)] = 208162, - [SMALL_STATE(5258)] = 208179, - [SMALL_STATE(5259)] = 208194, - [SMALL_STATE(5260)] = 208209, - [SMALL_STATE(5261)] = 208226, - [SMALL_STATE(5262)] = 208241, - [SMALL_STATE(5263)] = 208260, - [SMALL_STATE(5264)] = 208275, - [SMALL_STATE(5265)] = 208292, - [SMALL_STATE(5266)] = 208307, - [SMALL_STATE(5267)] = 208322, - [SMALL_STATE(5268)] = 208337, - [SMALL_STATE(5269)] = 208352, - [SMALL_STATE(5270)] = 208367, - [SMALL_STATE(5271)] = 208382, - [SMALL_STATE(5272)] = 208397, - [SMALL_STATE(5273)] = 208416, - [SMALL_STATE(5274)] = 208435, - [SMALL_STATE(5275)] = 208448, - [SMALL_STATE(5276)] = 208467, - [SMALL_STATE(5277)] = 208486, - [SMALL_STATE(5278)] = 208501, - [SMALL_STATE(5279)] = 208518, - [SMALL_STATE(5280)] = 208533, - [SMALL_STATE(5281)] = 208550, - [SMALL_STATE(5282)] = 208565, - [SMALL_STATE(5283)] = 208580, - [SMALL_STATE(5284)] = 208595, - [SMALL_STATE(5285)] = 208610, - [SMALL_STATE(5286)] = 208627, - [SMALL_STATE(5287)] = 208644, - [SMALL_STATE(5288)] = 208659, - [SMALL_STATE(5289)] = 208671, - [SMALL_STATE(5290)] = 208685, - [SMALL_STATE(5291)] = 208701, - [SMALL_STATE(5292)] = 208717, - [SMALL_STATE(5293)] = 208733, - [SMALL_STATE(5294)] = 208749, - [SMALL_STATE(5295)] = 208765, - [SMALL_STATE(5296)] = 208779, - [SMALL_STATE(5297)] = 208791, - [SMALL_STATE(5298)] = 208803, - [SMALL_STATE(5299)] = 208819, - [SMALL_STATE(5300)] = 208833, - [SMALL_STATE(5301)] = 208849, - [SMALL_STATE(5302)] = 208865, - [SMALL_STATE(5303)] = 208881, - [SMALL_STATE(5304)] = 208897, - [SMALL_STATE(5305)] = 208913, - [SMALL_STATE(5306)] = 208927, - [SMALL_STATE(5307)] = 208943, - [SMALL_STATE(5308)] = 208959, - [SMALL_STATE(5309)] = 208975, - [SMALL_STATE(5310)] = 208989, - [SMALL_STATE(5311)] = 209005, - [SMALL_STATE(5312)] = 209021, - [SMALL_STATE(5313)] = 209037, - [SMALL_STATE(5314)] = 209053, - [SMALL_STATE(5315)] = 209065, - [SMALL_STATE(5316)] = 209081, - [SMALL_STATE(5317)] = 209097, - [SMALL_STATE(5318)] = 209113, - [SMALL_STATE(5319)] = 209129, - [SMALL_STATE(5320)] = 209145, - [SMALL_STATE(5321)] = 209161, - [SMALL_STATE(5322)] = 209177, - [SMALL_STATE(5323)] = 209193, - [SMALL_STATE(5324)] = 209209, - [SMALL_STATE(5325)] = 209223, - [SMALL_STATE(5326)] = 209239, - [SMALL_STATE(5327)] = 209255, - [SMALL_STATE(5328)] = 209271, - [SMALL_STATE(5329)] = 209285, - [SMALL_STATE(5330)] = 209299, - [SMALL_STATE(5331)] = 209313, - [SMALL_STATE(5332)] = 209329, - [SMALL_STATE(5333)] = 209345, - [SMALL_STATE(5334)] = 209361, - [SMALL_STATE(5335)] = 209375, - [SMALL_STATE(5336)] = 209391, - [SMALL_STATE(5337)] = 209405, - [SMALL_STATE(5338)] = 209421, - [SMALL_STATE(5339)] = 209437, - [SMALL_STATE(5340)] = 209453, - [SMALL_STATE(5341)] = 209469, - [SMALL_STATE(5342)] = 209485, - [SMALL_STATE(5343)] = 209501, - [SMALL_STATE(5344)] = 209517, - [SMALL_STATE(5345)] = 209531, - [SMALL_STATE(5346)] = 209545, - [SMALL_STATE(5347)] = 209561, - [SMALL_STATE(5348)] = 209575, - [SMALL_STATE(5349)] = 209591, - [SMALL_STATE(5350)] = 209607, - [SMALL_STATE(5351)] = 209623, - [SMALL_STATE(5352)] = 209637, - [SMALL_STATE(5353)] = 209653, - [SMALL_STATE(5354)] = 209669, - [SMALL_STATE(5355)] = 209685, - [SMALL_STATE(5356)] = 209701, - [SMALL_STATE(5357)] = 209715, - [SMALL_STATE(5358)] = 209729, - [SMALL_STATE(5359)] = 209743, - [SMALL_STATE(5360)] = 209759, - [SMALL_STATE(5361)] = 209775, - [SMALL_STATE(5362)] = 209791, - [SMALL_STATE(5363)] = 209807, - [SMALL_STATE(5364)] = 209823, - [SMALL_STATE(5365)] = 209839, - [SMALL_STATE(5366)] = 209855, - [SMALL_STATE(5367)] = 209869, - [SMALL_STATE(5368)] = 209883, - [SMALL_STATE(5369)] = 209899, - [SMALL_STATE(5370)] = 209913, - [SMALL_STATE(5371)] = 209929, - [SMALL_STATE(5372)] = 209945, - [SMALL_STATE(5373)] = 209959, - [SMALL_STATE(5374)] = 209973, - [SMALL_STATE(5375)] = 209989, - [SMALL_STATE(5376)] = 210005, - [SMALL_STATE(5377)] = 210021, - [SMALL_STATE(5378)] = 210037, - [SMALL_STATE(5379)] = 210053, - [SMALL_STATE(5380)] = 210067, - [SMALL_STATE(5381)] = 210083, - [SMALL_STATE(5382)] = 210097, - [SMALL_STATE(5383)] = 210113, - [SMALL_STATE(5384)] = 210129, - [SMALL_STATE(5385)] = 210145, - [SMALL_STATE(5386)] = 210161, - [SMALL_STATE(5387)] = 210177, - [SMALL_STATE(5388)] = 210193, - [SMALL_STATE(5389)] = 210207, - [SMALL_STATE(5390)] = 210219, - [SMALL_STATE(5391)] = 210233, - [SMALL_STATE(5392)] = 210247, - [SMALL_STATE(5393)] = 210261, - [SMALL_STATE(5394)] = 210275, - [SMALL_STATE(5395)] = 210287, - [SMALL_STATE(5396)] = 210301, - [SMALL_STATE(5397)] = 210317, - [SMALL_STATE(5398)] = 210331, - [SMALL_STATE(5399)] = 210347, - [SMALL_STATE(5400)] = 210359, - [SMALL_STATE(5401)] = 210375, - [SMALL_STATE(5402)] = 210389, - [SMALL_STATE(5403)] = 210405, - [SMALL_STATE(5404)] = 210419, - [SMALL_STATE(5405)] = 210433, - [SMALL_STATE(5406)] = 210449, - [SMALL_STATE(5407)] = 210465, - [SMALL_STATE(5408)] = 210481, - [SMALL_STATE(5409)] = 210495, - [SMALL_STATE(5410)] = 210511, - [SMALL_STATE(5411)] = 210527, - [SMALL_STATE(5412)] = 210543, - [SMALL_STATE(5413)] = 210557, - [SMALL_STATE(5414)] = 210573, - [SMALL_STATE(5415)] = 210589, - [SMALL_STATE(5416)] = 210603, - [SMALL_STATE(5417)] = 210617, - [SMALL_STATE(5418)] = 210633, - [SMALL_STATE(5419)] = 210649, - [SMALL_STATE(5420)] = 210665, - [SMALL_STATE(5421)] = 210681, - [SMALL_STATE(5422)] = 210697, - [SMALL_STATE(5423)] = 210711, - [SMALL_STATE(5424)] = 210727, - [SMALL_STATE(5425)] = 210743, - [SMALL_STATE(5426)] = 210755, - [SMALL_STATE(5427)] = 210771, - [SMALL_STATE(5428)] = 210787, - [SMALL_STATE(5429)] = 210803, - [SMALL_STATE(5430)] = 210817, - [SMALL_STATE(5431)] = 210829, - [SMALL_STATE(5432)] = 210845, - [SMALL_STATE(5433)] = 210861, - [SMALL_STATE(5434)] = 210877, - [SMALL_STATE(5435)] = 210893, - [SMALL_STATE(5436)] = 210909, - [SMALL_STATE(5437)] = 210925, - [SMALL_STATE(5438)] = 210939, - [SMALL_STATE(5439)] = 210953, - [SMALL_STATE(5440)] = 210969, - [SMALL_STATE(5441)] = 210985, - [SMALL_STATE(5442)] = 211001, - [SMALL_STATE(5443)] = 211017, - [SMALL_STATE(5444)] = 211033, - [SMALL_STATE(5445)] = 211049, - [SMALL_STATE(5446)] = 211065, - [SMALL_STATE(5447)] = 211081, - [SMALL_STATE(5448)] = 211097, - [SMALL_STATE(5449)] = 211113, - [SMALL_STATE(5450)] = 211125, - [SMALL_STATE(5451)] = 211141, - [SMALL_STATE(5452)] = 211157, - [SMALL_STATE(5453)] = 211173, - [SMALL_STATE(5454)] = 211189, - [SMALL_STATE(5455)] = 211205, - [SMALL_STATE(5456)] = 211221, - [SMALL_STATE(5457)] = 211235, - [SMALL_STATE(5458)] = 211249, - [SMALL_STATE(5459)] = 211265, - [SMALL_STATE(5460)] = 211279, - [SMALL_STATE(5461)] = 211293, - [SMALL_STATE(5462)] = 211309, - [SMALL_STATE(5463)] = 211325, - [SMALL_STATE(5464)] = 211341, - [SMALL_STATE(5465)] = 211357, - [SMALL_STATE(5466)] = 211370, - [SMALL_STATE(5467)] = 211383, - [SMALL_STATE(5468)] = 211396, - [SMALL_STATE(5469)] = 211409, - [SMALL_STATE(5470)] = 211422, - [SMALL_STATE(5471)] = 211435, - [SMALL_STATE(5472)] = 211448, - [SMALL_STATE(5473)] = 211461, - [SMALL_STATE(5474)] = 211474, - [SMALL_STATE(5475)] = 211487, - [SMALL_STATE(5476)] = 211500, - [SMALL_STATE(5477)] = 211513, - [SMALL_STATE(5478)] = 211526, - [SMALL_STATE(5479)] = 211539, - [SMALL_STATE(5480)] = 211552, - [SMALL_STATE(5481)] = 211565, - [SMALL_STATE(5482)] = 211578, - [SMALL_STATE(5483)] = 211591, - [SMALL_STATE(5484)] = 211604, - [SMALL_STATE(5485)] = 211617, - [SMALL_STATE(5486)] = 211630, - [SMALL_STATE(5487)] = 211643, - [SMALL_STATE(5488)] = 211656, - [SMALL_STATE(5489)] = 211669, - [SMALL_STATE(5490)] = 211682, - [SMALL_STATE(5491)] = 211695, - [SMALL_STATE(5492)] = 211708, - [SMALL_STATE(5493)] = 211721, - [SMALL_STATE(5494)] = 211734, - [SMALL_STATE(5495)] = 211745, - [SMALL_STATE(5496)] = 211758, - [SMALL_STATE(5497)] = 211771, - [SMALL_STATE(5498)] = 211784, - [SMALL_STATE(5499)] = 211797, - [SMALL_STATE(5500)] = 211810, - [SMALL_STATE(5501)] = 211823, - [SMALL_STATE(5502)] = 211836, - [SMALL_STATE(5503)] = 211849, - [SMALL_STATE(5504)] = 211862, - [SMALL_STATE(5505)] = 211875, - [SMALL_STATE(5506)] = 211888, - [SMALL_STATE(5507)] = 211901, - [SMALL_STATE(5508)] = 211914, - [SMALL_STATE(5509)] = 211927, - [SMALL_STATE(5510)] = 211940, - [SMALL_STATE(5511)] = 211953, - [SMALL_STATE(5512)] = 211966, - [SMALL_STATE(5513)] = 211979, - [SMALL_STATE(5514)] = 211992, - [SMALL_STATE(5515)] = 212005, - [SMALL_STATE(5516)] = 212018, - [SMALL_STATE(5517)] = 212029, - [SMALL_STATE(5518)] = 212042, - [SMALL_STATE(5519)] = 212055, - [SMALL_STATE(5520)] = 212068, - [SMALL_STATE(5521)] = 212079, - [SMALL_STATE(5522)] = 212092, - [SMALL_STATE(5523)] = 212105, - [SMALL_STATE(5524)] = 212118, - [SMALL_STATE(5525)] = 212131, - [SMALL_STATE(5526)] = 212144, - [SMALL_STATE(5527)] = 212157, - [SMALL_STATE(5528)] = 212170, - [SMALL_STATE(5529)] = 212183, - [SMALL_STATE(5530)] = 212194, - [SMALL_STATE(5531)] = 212207, - [SMALL_STATE(5532)] = 212220, - [SMALL_STATE(5533)] = 212233, - [SMALL_STATE(5534)] = 212246, - [SMALL_STATE(5535)] = 212257, - [SMALL_STATE(5536)] = 212270, - [SMALL_STATE(5537)] = 212283, - [SMALL_STATE(5538)] = 212294, - [SMALL_STATE(5539)] = 212307, - [SMALL_STATE(5540)] = 212320, - [SMALL_STATE(5541)] = 212333, - [SMALL_STATE(5542)] = 212346, - [SMALL_STATE(5543)] = 212357, - [SMALL_STATE(5544)] = 212370, - [SMALL_STATE(5545)] = 212383, - [SMALL_STATE(5546)] = 212396, - [SMALL_STATE(5547)] = 212409, - [SMALL_STATE(5548)] = 212422, - [SMALL_STATE(5549)] = 212435, - [SMALL_STATE(5550)] = 212448, - [SMALL_STATE(5551)] = 212461, - [SMALL_STATE(5552)] = 212474, - [SMALL_STATE(5553)] = 212487, - [SMALL_STATE(5554)] = 212500, - [SMALL_STATE(5555)] = 212513, - [SMALL_STATE(5556)] = 212526, - [SMALL_STATE(5557)] = 212539, - [SMALL_STATE(5558)] = 212552, - [SMALL_STATE(5559)] = 212563, - [SMALL_STATE(5560)] = 212576, - [SMALL_STATE(5561)] = 212589, - [SMALL_STATE(5562)] = 212602, - [SMALL_STATE(5563)] = 212612, - [SMALL_STATE(5564)] = 212622, - [SMALL_STATE(5565)] = 212632, - [SMALL_STATE(5566)] = 212642, - [SMALL_STATE(5567)] = 212652, - [SMALL_STATE(5568)] = 212662, - [SMALL_STATE(5569)] = 212672, - [SMALL_STATE(5570)] = 212682, - [SMALL_STATE(5571)] = 212692, - [SMALL_STATE(5572)] = 212702, - [SMALL_STATE(5573)] = 212712, - [SMALL_STATE(5574)] = 212722, - [SMALL_STATE(5575)] = 212732, - [SMALL_STATE(5576)] = 212742, - [SMALL_STATE(5577)] = 212752, - [SMALL_STATE(5578)] = 212762, - [SMALL_STATE(5579)] = 212772, - [SMALL_STATE(5580)] = 212782, - [SMALL_STATE(5581)] = 212792, - [SMALL_STATE(5582)] = 212802, - [SMALL_STATE(5583)] = 212812, - [SMALL_STATE(5584)] = 212822, - [SMALL_STATE(5585)] = 212832, - [SMALL_STATE(5586)] = 212842, - [SMALL_STATE(5587)] = 212852, - [SMALL_STATE(5588)] = 212862, - [SMALL_STATE(5589)] = 212872, - [SMALL_STATE(5590)] = 212882, - [SMALL_STATE(5591)] = 212892, - [SMALL_STATE(5592)] = 212902, - [SMALL_STATE(5593)] = 212912, - [SMALL_STATE(5594)] = 212922, - [SMALL_STATE(5595)] = 212932, - [SMALL_STATE(5596)] = 212942, - [SMALL_STATE(5597)] = 212952, - [SMALL_STATE(5598)] = 212962, - [SMALL_STATE(5599)] = 212972, - [SMALL_STATE(5600)] = 212982, - [SMALL_STATE(5601)] = 212992, - [SMALL_STATE(5602)] = 213002, - [SMALL_STATE(5603)] = 213012, - [SMALL_STATE(5604)] = 213022, - [SMALL_STATE(5605)] = 213032, - [SMALL_STATE(5606)] = 213042, - [SMALL_STATE(5607)] = 213052, - [SMALL_STATE(5608)] = 213062, - [SMALL_STATE(5609)] = 213072, - [SMALL_STATE(5610)] = 213082, - [SMALL_STATE(5611)] = 213092, - [SMALL_STATE(5612)] = 213102, - [SMALL_STATE(5613)] = 213112, - [SMALL_STATE(5614)] = 213122, - [SMALL_STATE(5615)] = 213132, - [SMALL_STATE(5616)] = 213142, - [SMALL_STATE(5617)] = 213152, - [SMALL_STATE(5618)] = 213162, - [SMALL_STATE(5619)] = 213172, - [SMALL_STATE(5620)] = 213182, - [SMALL_STATE(5621)] = 213192, - [SMALL_STATE(5622)] = 213202, - [SMALL_STATE(5623)] = 213212, - [SMALL_STATE(5624)] = 213222, - [SMALL_STATE(5625)] = 213232, - [SMALL_STATE(5626)] = 213242, - [SMALL_STATE(5627)] = 213252, - [SMALL_STATE(5628)] = 213262, - [SMALL_STATE(5629)] = 213272, - [SMALL_STATE(5630)] = 213282, - [SMALL_STATE(5631)] = 213292, - [SMALL_STATE(5632)] = 213302, - [SMALL_STATE(5633)] = 213312, - [SMALL_STATE(5634)] = 213322, - [SMALL_STATE(5635)] = 213332, - [SMALL_STATE(5636)] = 213342, - [SMALL_STATE(5637)] = 213352, - [SMALL_STATE(5638)] = 213362, - [SMALL_STATE(5639)] = 213372, - [SMALL_STATE(5640)] = 213382, - [SMALL_STATE(5641)] = 213392, - [SMALL_STATE(5642)] = 213402, - [SMALL_STATE(5643)] = 213412, - [SMALL_STATE(5644)] = 213422, - [SMALL_STATE(5645)] = 213432, - [SMALL_STATE(5646)] = 213442, - [SMALL_STATE(5647)] = 213452, - [SMALL_STATE(5648)] = 213462, - [SMALL_STATE(5649)] = 213472, - [SMALL_STATE(5650)] = 213482, - [SMALL_STATE(5651)] = 213492, - [SMALL_STATE(5652)] = 213502, - [SMALL_STATE(5653)] = 213512, - [SMALL_STATE(5654)] = 213522, - [SMALL_STATE(5655)] = 213532, - [SMALL_STATE(5656)] = 213542, - [SMALL_STATE(5657)] = 213552, - [SMALL_STATE(5658)] = 213562, - [SMALL_STATE(5659)] = 213572, - [SMALL_STATE(5660)] = 213582, - [SMALL_STATE(5661)] = 213592, - [SMALL_STATE(5662)] = 213602, - [SMALL_STATE(5663)] = 213612, - [SMALL_STATE(5664)] = 213622, - [SMALL_STATE(5665)] = 213632, - [SMALL_STATE(5666)] = 213642, - [SMALL_STATE(5667)] = 213652, - [SMALL_STATE(5668)] = 213662, - [SMALL_STATE(5669)] = 213672, - [SMALL_STATE(5670)] = 213682, - [SMALL_STATE(5671)] = 213692, - [SMALL_STATE(5672)] = 213702, - [SMALL_STATE(5673)] = 213712, - [SMALL_STATE(5674)] = 213722, - [SMALL_STATE(5675)] = 213732, - [SMALL_STATE(5676)] = 213742, - [SMALL_STATE(5677)] = 213752, - [SMALL_STATE(5678)] = 213762, - [SMALL_STATE(5679)] = 213772, - [SMALL_STATE(5680)] = 213782, - [SMALL_STATE(5681)] = 213792, - [SMALL_STATE(5682)] = 213802, - [SMALL_STATE(5683)] = 213812, - [SMALL_STATE(5684)] = 213822, - [SMALL_STATE(5685)] = 213832, - [SMALL_STATE(5686)] = 213842, - [SMALL_STATE(5687)] = 213852, - [SMALL_STATE(5688)] = 213862, - [SMALL_STATE(5689)] = 213872, - [SMALL_STATE(5690)] = 213882, - [SMALL_STATE(5691)] = 213892, - [SMALL_STATE(5692)] = 213902, - [SMALL_STATE(5693)] = 213912, - [SMALL_STATE(5694)] = 213922, - [SMALL_STATE(5695)] = 213932, - [SMALL_STATE(5696)] = 213942, - [SMALL_STATE(5697)] = 213952, - [SMALL_STATE(5698)] = 213962, - [SMALL_STATE(5699)] = 213972, - [SMALL_STATE(5700)] = 213982, - [SMALL_STATE(5701)] = 213992, - [SMALL_STATE(5702)] = 214002, - [SMALL_STATE(5703)] = 214012, - [SMALL_STATE(5704)] = 214022, - [SMALL_STATE(5705)] = 214032, - [SMALL_STATE(5706)] = 214042, - [SMALL_STATE(5707)] = 214052, - [SMALL_STATE(5708)] = 214062, - [SMALL_STATE(5709)] = 214072, - [SMALL_STATE(5710)] = 214082, - [SMALL_STATE(5711)] = 214092, - [SMALL_STATE(5712)] = 214102, - [SMALL_STATE(5713)] = 214112, - [SMALL_STATE(5714)] = 214122, - [SMALL_STATE(5715)] = 214132, - [SMALL_STATE(5716)] = 214142, - [SMALL_STATE(5717)] = 214152, - [SMALL_STATE(5718)] = 214162, - [SMALL_STATE(5719)] = 214172, - [SMALL_STATE(5720)] = 214182, - [SMALL_STATE(5721)] = 214192, - [SMALL_STATE(5722)] = 214202, - [SMALL_STATE(5723)] = 214212, - [SMALL_STATE(5724)] = 214222, - [SMALL_STATE(5725)] = 214232, - [SMALL_STATE(5726)] = 214242, - [SMALL_STATE(5727)] = 214252, - [SMALL_STATE(5728)] = 214262, - [SMALL_STATE(5729)] = 214272, - [SMALL_STATE(5730)] = 214282, - [SMALL_STATE(5731)] = 214292, - [SMALL_STATE(5732)] = 214302, - [SMALL_STATE(5733)] = 214312, - [SMALL_STATE(5734)] = 214322, - [SMALL_STATE(5735)] = 214332, - [SMALL_STATE(5736)] = 214342, - [SMALL_STATE(5737)] = 214352, - [SMALL_STATE(5738)] = 214362, - [SMALL_STATE(5739)] = 214372, - [SMALL_STATE(5740)] = 214382, - [SMALL_STATE(5741)] = 214392, - [SMALL_STATE(5742)] = 214402, - [SMALL_STATE(5743)] = 214412, - [SMALL_STATE(5744)] = 214422, - [SMALL_STATE(5745)] = 214432, - [SMALL_STATE(5746)] = 214442, - [SMALL_STATE(5747)] = 214452, - [SMALL_STATE(5748)] = 214462, - [SMALL_STATE(5749)] = 214472, - [SMALL_STATE(5750)] = 214482, - [SMALL_STATE(5751)] = 214492, - [SMALL_STATE(5752)] = 214502, - [SMALL_STATE(5753)] = 214512, - [SMALL_STATE(5754)] = 214522, - [SMALL_STATE(5755)] = 214532, - [SMALL_STATE(5756)] = 214542, - [SMALL_STATE(5757)] = 214552, - [SMALL_STATE(5758)] = 214562, - [SMALL_STATE(5759)] = 214572, - [SMALL_STATE(5760)] = 214582, - [SMALL_STATE(5761)] = 214592, - [SMALL_STATE(5762)] = 214602, - [SMALL_STATE(5763)] = 214612, - [SMALL_STATE(5764)] = 214622, - [SMALL_STATE(5765)] = 214632, - [SMALL_STATE(5766)] = 214642, - [SMALL_STATE(5767)] = 214652, - [SMALL_STATE(5768)] = 214662, - [SMALL_STATE(5769)] = 214672, - [SMALL_STATE(5770)] = 214682, - [SMALL_STATE(5771)] = 214692, - [SMALL_STATE(5772)] = 214702, - [SMALL_STATE(5773)] = 214712, - [SMALL_STATE(5774)] = 214722, - [SMALL_STATE(5775)] = 214732, - [SMALL_STATE(5776)] = 214742, - [SMALL_STATE(5777)] = 214752, - [SMALL_STATE(5778)] = 214762, - [SMALL_STATE(5779)] = 214772, - [SMALL_STATE(5780)] = 214782, - [SMALL_STATE(5781)] = 214792, - [SMALL_STATE(5782)] = 214802, - [SMALL_STATE(5783)] = 214812, - [SMALL_STATE(5784)] = 214822, - [SMALL_STATE(5785)] = 214832, - [SMALL_STATE(5786)] = 214842, - [SMALL_STATE(5787)] = 214852, - [SMALL_STATE(5788)] = 214862, - [SMALL_STATE(5789)] = 214872, - [SMALL_STATE(5790)] = 214882, - [SMALL_STATE(5791)] = 214892, - [SMALL_STATE(5792)] = 214902, - [SMALL_STATE(5793)] = 214912, - [SMALL_STATE(5794)] = 214922, - [SMALL_STATE(5795)] = 214932, - [SMALL_STATE(5796)] = 214942, - [SMALL_STATE(5797)] = 214952, - [SMALL_STATE(5798)] = 214962, - [SMALL_STATE(5799)] = 214972, - [SMALL_STATE(5800)] = 214982, - [SMALL_STATE(5801)] = 214992, - [SMALL_STATE(5802)] = 215002, - [SMALL_STATE(5803)] = 215012, - [SMALL_STATE(5804)] = 215022, - [SMALL_STATE(5805)] = 215032, - [SMALL_STATE(5806)] = 215042, - [SMALL_STATE(5807)] = 215052, - [SMALL_STATE(5808)] = 215062, - [SMALL_STATE(5809)] = 215072, - [SMALL_STATE(5810)] = 215082, - [SMALL_STATE(5811)] = 215092, - [SMALL_STATE(5812)] = 215102, - [SMALL_STATE(5813)] = 215112, - [SMALL_STATE(5814)] = 215122, - [SMALL_STATE(5815)] = 215132, - [SMALL_STATE(5816)] = 215142, - [SMALL_STATE(5817)] = 215152, - [SMALL_STATE(5818)] = 215162, - [SMALL_STATE(5819)] = 215172, - [SMALL_STATE(5820)] = 215182, - [SMALL_STATE(5821)] = 215192, - [SMALL_STATE(5822)] = 215202, - [SMALL_STATE(5823)] = 215212, - [SMALL_STATE(5824)] = 215222, - [SMALL_STATE(5825)] = 215232, - [SMALL_STATE(5826)] = 215242, - [SMALL_STATE(5827)] = 215252, - [SMALL_STATE(5828)] = 215262, - [SMALL_STATE(5829)] = 215272, - [SMALL_STATE(5830)] = 215282, - [SMALL_STATE(5831)] = 215292, - [SMALL_STATE(5832)] = 215302, - [SMALL_STATE(5833)] = 215312, - [SMALL_STATE(5834)] = 215322, - [SMALL_STATE(5835)] = 215332, - [SMALL_STATE(5836)] = 215342, - [SMALL_STATE(5837)] = 215352, - [SMALL_STATE(5838)] = 215362, - [SMALL_STATE(5839)] = 215372, - [SMALL_STATE(5840)] = 215382, - [SMALL_STATE(5841)] = 215392, - [SMALL_STATE(5842)] = 215402, - [SMALL_STATE(5843)] = 215412, - [SMALL_STATE(5844)] = 215422, - [SMALL_STATE(5845)] = 215432, - [SMALL_STATE(5846)] = 215442, - [SMALL_STATE(5847)] = 215452, - [SMALL_STATE(5848)] = 215462, - [SMALL_STATE(5849)] = 215472, - [SMALL_STATE(5850)] = 215482, - [SMALL_STATE(5851)] = 215492, - [SMALL_STATE(5852)] = 215502, - [SMALL_STATE(5853)] = 215512, - [SMALL_STATE(5854)] = 215522, - [SMALL_STATE(5855)] = 215532, - [SMALL_STATE(5856)] = 215542, - [SMALL_STATE(5857)] = 215552, - [SMALL_STATE(5858)] = 215562, - [SMALL_STATE(5859)] = 215572, - [SMALL_STATE(5860)] = 215582, - [SMALL_STATE(5861)] = 215592, - [SMALL_STATE(5862)] = 215602, - [SMALL_STATE(5863)] = 215612, - [SMALL_STATE(5864)] = 215622, - [SMALL_STATE(5865)] = 215632, - [SMALL_STATE(5866)] = 215642, - [SMALL_STATE(5867)] = 215652, - [SMALL_STATE(5868)] = 215662, - [SMALL_STATE(5869)] = 215672, - [SMALL_STATE(5870)] = 215682, - [SMALL_STATE(5871)] = 215692, - [SMALL_STATE(5872)] = 215702, - [SMALL_STATE(5873)] = 215712, - [SMALL_STATE(5874)] = 215722, - [SMALL_STATE(5875)] = 215732, - [SMALL_STATE(5876)] = 215742, - [SMALL_STATE(5877)] = 215752, - [SMALL_STATE(5878)] = 215762, - [SMALL_STATE(5879)] = 215772, - [SMALL_STATE(5880)] = 215782, - [SMALL_STATE(5881)] = 215792, - [SMALL_STATE(5882)] = 215802, - [SMALL_STATE(5883)] = 215812, - [SMALL_STATE(5884)] = 215822, - [SMALL_STATE(5885)] = 215832, - [SMALL_STATE(5886)] = 215842, - [SMALL_STATE(5887)] = 215852, - [SMALL_STATE(5888)] = 215862, - [SMALL_STATE(5889)] = 215872, - [SMALL_STATE(5890)] = 215882, - [SMALL_STATE(5891)] = 215892, - [SMALL_STATE(5892)] = 215902, - [SMALL_STATE(5893)] = 215912, - [SMALL_STATE(5894)] = 215922, - [SMALL_STATE(5895)] = 215932, - [SMALL_STATE(5896)] = 215942, - [SMALL_STATE(5897)] = 215952, - [SMALL_STATE(5898)] = 215962, - [SMALL_STATE(5899)] = 215972, - [SMALL_STATE(5900)] = 215982, - [SMALL_STATE(5901)] = 215992, - [SMALL_STATE(5902)] = 216002, - [SMALL_STATE(5903)] = 216012, - [SMALL_STATE(5904)] = 216022, - [SMALL_STATE(5905)] = 216032, - [SMALL_STATE(5906)] = 216042, - [SMALL_STATE(5907)] = 216052, - [SMALL_STATE(5908)] = 216062, - [SMALL_STATE(5909)] = 216072, - [SMALL_STATE(5910)] = 216082, - [SMALL_STATE(5911)] = 216092, - [SMALL_STATE(5912)] = 216102, - [SMALL_STATE(5913)] = 216112, - [SMALL_STATE(5914)] = 216122, - [SMALL_STATE(5915)] = 216132, - [SMALL_STATE(5916)] = 216142, - [SMALL_STATE(5917)] = 216152, - [SMALL_STATE(5918)] = 216162, - [SMALL_STATE(5919)] = 216172, - [SMALL_STATE(5920)] = 216182, - [SMALL_STATE(5921)] = 216192, - [SMALL_STATE(5922)] = 216202, - [SMALL_STATE(5923)] = 216212, - [SMALL_STATE(5924)] = 216222, - [SMALL_STATE(5925)] = 216232, - [SMALL_STATE(5926)] = 216242, - [SMALL_STATE(5927)] = 216252, - [SMALL_STATE(5928)] = 216262, - [SMALL_STATE(5929)] = 216272, - [SMALL_STATE(5930)] = 216282, - [SMALL_STATE(5931)] = 216292, - [SMALL_STATE(5932)] = 216302, - [SMALL_STATE(5933)] = 216312, - [SMALL_STATE(5934)] = 216322, - [SMALL_STATE(5935)] = 216332, - [SMALL_STATE(5936)] = 216342, - [SMALL_STATE(5937)] = 216352, - [SMALL_STATE(5938)] = 216362, - [SMALL_STATE(5939)] = 216372, - [SMALL_STATE(5940)] = 216382, - [SMALL_STATE(5941)] = 216392, - [SMALL_STATE(5942)] = 216402, - [SMALL_STATE(5943)] = 216412, - [SMALL_STATE(5944)] = 216422, - [SMALL_STATE(5945)] = 216432, - [SMALL_STATE(5946)] = 216442, - [SMALL_STATE(5947)] = 216452, - [SMALL_STATE(5948)] = 216462, - [SMALL_STATE(5949)] = 216472, - [SMALL_STATE(5950)] = 216482, - [SMALL_STATE(5951)] = 216492, - [SMALL_STATE(5952)] = 216502, - [SMALL_STATE(5953)] = 216512, - [SMALL_STATE(5954)] = 216522, - [SMALL_STATE(5955)] = 216532, - [SMALL_STATE(5956)] = 216542, - [SMALL_STATE(5957)] = 216552, - [SMALL_STATE(5958)] = 216562, - [SMALL_STATE(5959)] = 216572, - [SMALL_STATE(5960)] = 216582, - [SMALL_STATE(5961)] = 216592, - [SMALL_STATE(5962)] = 216602, - [SMALL_STATE(5963)] = 216612, - [SMALL_STATE(5964)] = 216622, - [SMALL_STATE(5965)] = 216632, - [SMALL_STATE(5966)] = 216642, - [SMALL_STATE(5967)] = 216652, - [SMALL_STATE(5968)] = 216662, - [SMALL_STATE(5969)] = 216672, - [SMALL_STATE(5970)] = 216682, - [SMALL_STATE(5971)] = 216692, - [SMALL_STATE(5972)] = 216702, - [SMALL_STATE(5973)] = 216712, - [SMALL_STATE(5974)] = 216722, - [SMALL_STATE(5975)] = 216732, - [SMALL_STATE(5976)] = 216742, - [SMALL_STATE(5977)] = 216752, - [SMALL_STATE(5978)] = 216762, - [SMALL_STATE(5979)] = 216772, - [SMALL_STATE(5980)] = 216782, - [SMALL_STATE(5981)] = 216792, - [SMALL_STATE(5982)] = 216802, - [SMALL_STATE(5983)] = 216812, - [SMALL_STATE(5984)] = 216822, - [SMALL_STATE(5985)] = 216832, - [SMALL_STATE(5986)] = 216842, - [SMALL_STATE(5987)] = 216852, - [SMALL_STATE(5988)] = 216862, - [SMALL_STATE(5989)] = 216872, - [SMALL_STATE(5990)] = 216882, - [SMALL_STATE(5991)] = 216892, - [SMALL_STATE(5992)] = 216902, - [SMALL_STATE(5993)] = 216912, - [SMALL_STATE(5994)] = 216922, - [SMALL_STATE(5995)] = 216932, - [SMALL_STATE(5996)] = 216942, - [SMALL_STATE(5997)] = 216952, - [SMALL_STATE(5998)] = 216962, - [SMALL_STATE(5999)] = 216972, - [SMALL_STATE(6000)] = 216982, - [SMALL_STATE(6001)] = 216992, - [SMALL_STATE(6002)] = 217002, - [SMALL_STATE(6003)] = 217012, - [SMALL_STATE(6004)] = 217022, - [SMALL_STATE(6005)] = 217032, - [SMALL_STATE(6006)] = 217042, - [SMALL_STATE(6007)] = 217052, - [SMALL_STATE(6008)] = 217062, - [SMALL_STATE(6009)] = 217072, - [SMALL_STATE(6010)] = 217082, - [SMALL_STATE(6011)] = 217092, - [SMALL_STATE(6012)] = 217102, - [SMALL_STATE(6013)] = 217112, - [SMALL_STATE(6014)] = 217122, - [SMALL_STATE(6015)] = 217132, - [SMALL_STATE(6016)] = 217142, - [SMALL_STATE(6017)] = 217152, - [SMALL_STATE(6018)] = 217162, - [SMALL_STATE(6019)] = 217172, - [SMALL_STATE(6020)] = 217182, - [SMALL_STATE(6021)] = 217192, - [SMALL_STATE(6022)] = 217202, - [SMALL_STATE(6023)] = 217212, - [SMALL_STATE(6024)] = 217222, - [SMALL_STATE(6025)] = 217232, - [SMALL_STATE(6026)] = 217242, - [SMALL_STATE(6027)] = 217252, - [SMALL_STATE(6028)] = 217262, - [SMALL_STATE(6029)] = 217272, - [SMALL_STATE(6030)] = 217282, - [SMALL_STATE(6031)] = 217292, - [SMALL_STATE(6032)] = 217302, - [SMALL_STATE(6033)] = 217312, - [SMALL_STATE(6034)] = 217322, - [SMALL_STATE(6035)] = 217332, - [SMALL_STATE(6036)] = 217342, - [SMALL_STATE(6037)] = 217352, - [SMALL_STATE(6038)] = 217362, - [SMALL_STATE(6039)] = 217372, - [SMALL_STATE(6040)] = 217382, - [SMALL_STATE(6041)] = 217392, - [SMALL_STATE(6042)] = 217402, - [SMALL_STATE(6043)] = 217412, - [SMALL_STATE(6044)] = 217422, - [SMALL_STATE(6045)] = 217432, - [SMALL_STATE(6046)] = 217442, - [SMALL_STATE(6047)] = 217452, - [SMALL_STATE(6048)] = 217462, - [SMALL_STATE(6049)] = 217472, - [SMALL_STATE(6050)] = 217482, - [SMALL_STATE(6051)] = 217492, - [SMALL_STATE(6052)] = 217502, - [SMALL_STATE(6053)] = 217512, - [SMALL_STATE(6054)] = 217522, - [SMALL_STATE(6055)] = 217532, - [SMALL_STATE(6056)] = 217542, - [SMALL_STATE(6057)] = 217552, - [SMALL_STATE(6058)] = 217562, - [SMALL_STATE(6059)] = 217572, - [SMALL_STATE(6060)] = 217582, - [SMALL_STATE(6061)] = 217592, - [SMALL_STATE(6062)] = 217602, - [SMALL_STATE(6063)] = 217612, - [SMALL_STATE(6064)] = 217622, - [SMALL_STATE(6065)] = 217632, - [SMALL_STATE(6066)] = 217642, - [SMALL_STATE(6067)] = 217652, - [SMALL_STATE(6068)] = 217662, - [SMALL_STATE(6069)] = 217672, - [SMALL_STATE(6070)] = 217682, - [SMALL_STATE(6071)] = 217692, - [SMALL_STATE(6072)] = 217702, - [SMALL_STATE(6073)] = 217712, - [SMALL_STATE(6074)] = 217722, - [SMALL_STATE(6075)] = 217732, - [SMALL_STATE(6076)] = 217742, - [SMALL_STATE(6077)] = 217752, - [SMALL_STATE(6078)] = 217762, - [SMALL_STATE(6079)] = 217772, - [SMALL_STATE(6080)] = 217782, - [SMALL_STATE(6081)] = 217792, - [SMALL_STATE(6082)] = 217802, - [SMALL_STATE(6083)] = 217812, - [SMALL_STATE(6084)] = 217822, - [SMALL_STATE(6085)] = 217832, - [SMALL_STATE(6086)] = 217842, - [SMALL_STATE(6087)] = 217852, - [SMALL_STATE(6088)] = 217862, - [SMALL_STATE(6089)] = 217872, - [SMALL_STATE(6090)] = 217882, - [SMALL_STATE(6091)] = 217892, - [SMALL_STATE(6092)] = 217902, - [SMALL_STATE(6093)] = 217912, - [SMALL_STATE(6094)] = 217922, - [SMALL_STATE(6095)] = 217932, - [SMALL_STATE(6096)] = 217942, - [SMALL_STATE(6097)] = 217952, - [SMALL_STATE(6098)] = 217962, - [SMALL_STATE(6099)] = 217972, - [SMALL_STATE(6100)] = 217982, - [SMALL_STATE(6101)] = 217992, - [SMALL_STATE(6102)] = 218002, - [SMALL_STATE(6103)] = 218012, - [SMALL_STATE(6104)] = 218022, - [SMALL_STATE(6105)] = 218032, - [SMALL_STATE(6106)] = 218042, - [SMALL_STATE(6107)] = 218052, - [SMALL_STATE(6108)] = 218062, - [SMALL_STATE(6109)] = 218072, - [SMALL_STATE(6110)] = 218082, - [SMALL_STATE(6111)] = 218092, - [SMALL_STATE(6112)] = 218102, - [SMALL_STATE(6113)] = 218112, - [SMALL_STATE(6114)] = 218122, - [SMALL_STATE(6115)] = 218132, - [SMALL_STATE(6116)] = 218142, - [SMALL_STATE(6117)] = 218152, - [SMALL_STATE(6118)] = 218162, - [SMALL_STATE(6119)] = 218172, - [SMALL_STATE(6120)] = 218182, - [SMALL_STATE(6121)] = 218192, - [SMALL_STATE(6122)] = 218202, - [SMALL_STATE(6123)] = 218212, - [SMALL_STATE(6124)] = 218222, - [SMALL_STATE(6125)] = 218232, - [SMALL_STATE(6126)] = 218242, - [SMALL_STATE(6127)] = 218252, - [SMALL_STATE(6128)] = 218262, - [SMALL_STATE(6129)] = 218272, - [SMALL_STATE(6130)] = 218282, - [SMALL_STATE(6131)] = 218292, - [SMALL_STATE(6132)] = 218302, - [SMALL_STATE(6133)] = 218312, - [SMALL_STATE(6134)] = 218322, - [SMALL_STATE(6135)] = 218332, - [SMALL_STATE(6136)] = 218342, - [SMALL_STATE(6137)] = 218352, + [SMALL_STATE(1268)] = 0, + [SMALL_STATE(1269)] = 73, + [SMALL_STATE(1270)] = 146, + [SMALL_STATE(1271)] = 219, + [SMALL_STATE(1272)] = 292, + [SMALL_STATE(1273)] = 365, + [SMALL_STATE(1274)] = 442, + [SMALL_STATE(1275)] = 515, + [SMALL_STATE(1276)] = 588, + [SMALL_STATE(1277)] = 665, + [SMALL_STATE(1278)] = 738, + [SMALL_STATE(1279)] = 811, + [SMALL_STATE(1280)] = 884, + [SMALL_STATE(1281)] = 957, + [SMALL_STATE(1282)] = 1030, + [SMALL_STATE(1283)] = 1109, + [SMALL_STATE(1284)] = 1182, + [SMALL_STATE(1285)] = 1255, + [SMALL_STATE(1286)] = 1332, + [SMALL_STATE(1287)] = 1405, + [SMALL_STATE(1288)] = 1478, + [SMALL_STATE(1289)] = 1551, + [SMALL_STATE(1290)] = 1624, + [SMALL_STATE(1291)] = 1697, + [SMALL_STATE(1292)] = 1770, + [SMALL_STATE(1293)] = 1845, + [SMALL_STATE(1294)] = 1920, + [SMALL_STATE(1295)] = 1993, + [SMALL_STATE(1296)] = 2066, + [SMALL_STATE(1297)] = 2139, + [SMALL_STATE(1298)] = 2212, + [SMALL_STATE(1299)] = 2285, + [SMALL_STATE(1300)] = 2358, + [SMALL_STATE(1301)] = 2431, + [SMALL_STATE(1302)] = 2506, + [SMALL_STATE(1303)] = 2579, + [SMALL_STATE(1304)] = 2652, + [SMALL_STATE(1305)] = 2725, + [SMALL_STATE(1306)] = 2798, + [SMALL_STATE(1307)] = 2871, + [SMALL_STATE(1308)] = 2944, + [SMALL_STATE(1309)] = 3017, + [SMALL_STATE(1310)] = 3090, + [SMALL_STATE(1311)] = 3163, + [SMALL_STATE(1312)] = 3236, + [SMALL_STATE(1313)] = 3311, + [SMALL_STATE(1314)] = 3384, + [SMALL_STATE(1315)] = 3459, + [SMALL_STATE(1316)] = 3602, + [SMALL_STATE(1317)] = 3675, + [SMALL_STATE(1318)] = 3748, + [SMALL_STATE(1319)] = 3891, + [SMALL_STATE(1320)] = 4034, + [SMALL_STATE(1321)] = 4107, + [SMALL_STATE(1322)] = 4180, + [SMALL_STATE(1323)] = 4253, + [SMALL_STATE(1324)] = 4326, + [SMALL_STATE(1325)] = 4399, + [SMALL_STATE(1326)] = 4472, + [SMALL_STATE(1327)] = 4545, + [SMALL_STATE(1328)] = 4618, + [SMALL_STATE(1329)] = 4691, + [SMALL_STATE(1330)] = 4834, + [SMALL_STATE(1331)] = 4977, + [SMALL_STATE(1332)] = 5120, + [SMALL_STATE(1333)] = 5193, + [SMALL_STATE(1334)] = 5266, + [SMALL_STATE(1335)] = 5409, + [SMALL_STATE(1336)] = 5482, + [SMALL_STATE(1337)] = 5625, + [SMALL_STATE(1338)] = 5698, + [SMALL_STATE(1339)] = 5771, + [SMALL_STATE(1340)] = 5844, + [SMALL_STATE(1341)] = 5917, + [SMALL_STATE(1342)] = 5990, + [SMALL_STATE(1343)] = 6063, + [SMALL_STATE(1344)] = 6136, + [SMALL_STATE(1345)] = 6209, + [SMALL_STATE(1346)] = 6352, + [SMALL_STATE(1347)] = 6425, + [SMALL_STATE(1348)] = 6502, + [SMALL_STATE(1349)] = 6579, + [SMALL_STATE(1350)] = 6652, + [SMALL_STATE(1351)] = 6725, + [SMALL_STATE(1352)] = 6798, + [SMALL_STATE(1353)] = 6871, + [SMALL_STATE(1354)] = 6944, + [SMALL_STATE(1355)] = 7017, + [SMALL_STATE(1356)] = 7090, + [SMALL_STATE(1357)] = 7181, + [SMALL_STATE(1358)] = 7254, + [SMALL_STATE(1359)] = 7345, + [SMALL_STATE(1360)] = 7436, + [SMALL_STATE(1361)] = 7509, + [SMALL_STATE(1362)] = 7582, + [SMALL_STATE(1363)] = 7655, + [SMALL_STATE(1364)] = 7728, + [SMALL_STATE(1365)] = 7801, + [SMALL_STATE(1366)] = 7944, + [SMALL_STATE(1367)] = 8017, + [SMALL_STATE(1368)] = 8094, + [SMALL_STATE(1369)] = 8185, + [SMALL_STATE(1370)] = 8258, + [SMALL_STATE(1371)] = 8331, + [SMALL_STATE(1372)] = 8404, + [SMALL_STATE(1373)] = 8479, + [SMALL_STATE(1374)] = 8554, + [SMALL_STATE(1375)] = 8627, + [SMALL_STATE(1376)] = 8770, + [SMALL_STATE(1377)] = 8843, + [SMALL_STATE(1378)] = 8934, + [SMALL_STATE(1379)] = 9007, + [SMALL_STATE(1380)] = 9080, + [SMALL_STATE(1381)] = 9223, + [SMALL_STATE(1382)] = 9366, + [SMALL_STATE(1383)] = 9439, + [SMALL_STATE(1384)] = 9530, + [SMALL_STATE(1385)] = 9603, + [SMALL_STATE(1386)] = 9680, + [SMALL_STATE(1387)] = 9753, + [SMALL_STATE(1388)] = 9826, + [SMALL_STATE(1389)] = 9917, + [SMALL_STATE(1390)] = 9992, + [SMALL_STATE(1391)] = 10065, + [SMALL_STATE(1392)] = 10140, + [SMALL_STATE(1393)] = 10213, + [SMALL_STATE(1394)] = 10356, + [SMALL_STATE(1395)] = 10431, + [SMALL_STATE(1396)] = 10504, + [SMALL_STATE(1397)] = 10577, + [SMALL_STATE(1398)] = 10652, + [SMALL_STATE(1399)] = 10725, + [SMALL_STATE(1400)] = 10798, + [SMALL_STATE(1401)] = 10871, + [SMALL_STATE(1402)] = 10950, + [SMALL_STATE(1403)] = 11023, + [SMALL_STATE(1404)] = 11114, + [SMALL_STATE(1405)] = 11187, + [SMALL_STATE(1406)] = 11260, + [SMALL_STATE(1407)] = 11403, + [SMALL_STATE(1408)] = 11546, + [SMALL_STATE(1409)] = 11689, + [SMALL_STATE(1410)] = 11762, + [SMALL_STATE(1411)] = 11835, + [SMALL_STATE(1412)] = 11908, + [SMALL_STATE(1413)] = 11981, + [SMALL_STATE(1414)] = 12054, + [SMALL_STATE(1415)] = 12129, + [SMALL_STATE(1416)] = 12220, + [SMALL_STATE(1417)] = 12293, + [SMALL_STATE(1418)] = 12366, + [SMALL_STATE(1419)] = 12439, + [SMALL_STATE(1420)] = 12530, + [SMALL_STATE(1421)] = 12603, + [SMALL_STATE(1422)] = 12676, + [SMALL_STATE(1423)] = 12753, + [SMALL_STATE(1424)] = 12826, + [SMALL_STATE(1425)] = 12899, + [SMALL_STATE(1426)] = 12972, + [SMALL_STATE(1427)] = 13045, + [SMALL_STATE(1428)] = 13118, + [SMALL_STATE(1429)] = 13191, + [SMALL_STATE(1430)] = 13264, + [SMALL_STATE(1431)] = 13337, + [SMALL_STATE(1432)] = 13428, + [SMALL_STATE(1433)] = 13501, + [SMALL_STATE(1434)] = 13592, + [SMALL_STATE(1435)] = 13669, + [SMALL_STATE(1436)] = 13742, + [SMALL_STATE(1437)] = 13815, + [SMALL_STATE(1438)] = 13888, + [SMALL_STATE(1439)] = 13967, + [SMALL_STATE(1440)] = 14040, + [SMALL_STATE(1441)] = 14113, + [SMALL_STATE(1442)] = 14256, + [SMALL_STATE(1443)] = 14399, + [SMALL_STATE(1444)] = 14542, + [SMALL_STATE(1445)] = 14615, + [SMALL_STATE(1446)] = 14688, + [SMALL_STATE(1447)] = 14761, + [SMALL_STATE(1448)] = 14834, + [SMALL_STATE(1449)] = 14907, + [SMALL_STATE(1450)] = 14980, + [SMALL_STATE(1451)] = 15053, + [SMALL_STATE(1452)] = 15126, + [SMALL_STATE(1453)] = 15201, + [SMALL_STATE(1454)] = 15274, + [SMALL_STATE(1455)] = 15347, + [SMALL_STATE(1456)] = 15420, + [SMALL_STATE(1457)] = 15493, + [SMALL_STATE(1458)] = 15566, + [SMALL_STATE(1459)] = 15645, + [SMALL_STATE(1460)] = 15788, + [SMALL_STATE(1461)] = 15861, + [SMALL_STATE(1462)] = 15934, + [SMALL_STATE(1463)] = 16007, + [SMALL_STATE(1464)] = 16084, + [SMALL_STATE(1465)] = 16157, + [SMALL_STATE(1466)] = 16230, + [SMALL_STATE(1467)] = 16303, + [SMALL_STATE(1468)] = 16376, + [SMALL_STATE(1469)] = 16449, + [SMALL_STATE(1470)] = 16522, + [SMALL_STATE(1471)] = 16595, + [SMALL_STATE(1472)] = 16668, + [SMALL_STATE(1473)] = 16741, + [SMALL_STATE(1474)] = 16814, + [SMALL_STATE(1475)] = 16887, + [SMALL_STATE(1476)] = 16960, + [SMALL_STATE(1477)] = 17033, + [SMALL_STATE(1478)] = 17106, + [SMALL_STATE(1479)] = 17179, + [SMALL_STATE(1480)] = 17252, + [SMALL_STATE(1481)] = 17395, + [SMALL_STATE(1482)] = 17468, + [SMALL_STATE(1483)] = 17541, + [SMALL_STATE(1484)] = 17684, + [SMALL_STATE(1485)] = 17757, + [SMALL_STATE(1486)] = 17830, + [SMALL_STATE(1487)] = 17903, + [SMALL_STATE(1488)] = 17976, + [SMALL_STATE(1489)] = 18119, + [SMALL_STATE(1490)] = 18262, + [SMALL_STATE(1491)] = 18334, + [SMALL_STATE(1492)] = 18406, + [SMALL_STATE(1493)] = 18478, + [SMALL_STATE(1494)] = 18550, + [SMALL_STATE(1495)] = 18622, + [SMALL_STATE(1496)] = 18694, + [SMALL_STATE(1497)] = 18766, + [SMALL_STATE(1498)] = 18838, + [SMALL_STATE(1499)] = 18910, + [SMALL_STATE(1500)] = 18982, + [SMALL_STATE(1501)] = 19054, + [SMALL_STATE(1502)] = 19126, + [SMALL_STATE(1503)] = 19198, + [SMALL_STATE(1504)] = 19270, + [SMALL_STATE(1505)] = 19342, + [SMALL_STATE(1506)] = 19418, + [SMALL_STATE(1507)] = 19490, + [SMALL_STATE(1508)] = 19562, + [SMALL_STATE(1509)] = 19634, + [SMALL_STATE(1510)] = 19776, + [SMALL_STATE(1511)] = 19918, + [SMALL_STATE(1512)] = 19990, + [SMALL_STATE(1513)] = 20132, + [SMALL_STATE(1514)] = 20274, + [SMALL_STATE(1515)] = 20346, + [SMALL_STATE(1516)] = 20418, + [SMALL_STATE(1517)] = 20490, + [SMALL_STATE(1518)] = 20562, + [SMALL_STATE(1519)] = 20634, + [SMALL_STATE(1520)] = 20776, + [SMALL_STATE(1521)] = 20848, + [SMALL_STATE(1522)] = 20990, + [SMALL_STATE(1523)] = 21062, + [SMALL_STATE(1524)] = 21134, + [SMALL_STATE(1525)] = 21206, + [SMALL_STATE(1526)] = 21278, + [SMALL_STATE(1527)] = 21350, + [SMALL_STATE(1528)] = 21422, + [SMALL_STATE(1529)] = 21564, + [SMALL_STATE(1530)] = 21636, + [SMALL_STATE(1531)] = 21778, + [SMALL_STATE(1532)] = 21920, + [SMALL_STATE(1533)] = 21992, + [SMALL_STATE(1534)] = 22068, + [SMALL_STATE(1535)] = 22140, + [SMALL_STATE(1536)] = 22216, + [SMALL_STATE(1537)] = 22292, + [SMALL_STATE(1538)] = 22364, + [SMALL_STATE(1539)] = 22506, + [SMALL_STATE(1540)] = 22648, + [SMALL_STATE(1541)] = 22790, + [SMALL_STATE(1542)] = 22862, + [SMALL_STATE(1543)] = 22934, + [SMALL_STATE(1544)] = 23006, + [SMALL_STATE(1545)] = 23078, + [SMALL_STATE(1546)] = 23150, + [SMALL_STATE(1547)] = 23222, + [SMALL_STATE(1548)] = 23294, + [SMALL_STATE(1549)] = 23366, + [SMALL_STATE(1550)] = 23438, + [SMALL_STATE(1551)] = 23510, + [SMALL_STATE(1552)] = 23586, + [SMALL_STATE(1553)] = 23658, + [SMALL_STATE(1554)] = 23730, + [SMALL_STATE(1555)] = 23802, + [SMALL_STATE(1556)] = 23874, + [SMALL_STATE(1557)] = 23946, + [SMALL_STATE(1558)] = 24018, + [SMALL_STATE(1559)] = 24090, + [SMALL_STATE(1560)] = 24162, + [SMALL_STATE(1561)] = 24234, + [SMALL_STATE(1562)] = 24306, + [SMALL_STATE(1563)] = 24378, + [SMALL_STATE(1564)] = 24450, + [SMALL_STATE(1565)] = 24522, + [SMALL_STATE(1566)] = 24594, + [SMALL_STATE(1567)] = 24666, + [SMALL_STATE(1568)] = 24738, + [SMALL_STATE(1569)] = 24880, + [SMALL_STATE(1570)] = 25022, + [SMALL_STATE(1571)] = 25164, + [SMALL_STATE(1572)] = 25236, + [SMALL_STATE(1573)] = 25378, + [SMALL_STATE(1574)] = 25520, + [SMALL_STATE(1575)] = 25592, + [SMALL_STATE(1576)] = 25664, + [SMALL_STATE(1577)] = 25736, + [SMALL_STATE(1578)] = 25808, + [SMALL_STATE(1579)] = 25880, + [SMALL_STATE(1580)] = 25952, + [SMALL_STATE(1581)] = 26024, + [SMALL_STATE(1582)] = 26096, + [SMALL_STATE(1583)] = 26168, + [SMALL_STATE(1584)] = 26240, + [SMALL_STATE(1585)] = 26312, + [SMALL_STATE(1586)] = 26384, + [SMALL_STATE(1587)] = 26456, + [SMALL_STATE(1588)] = 26528, + [SMALL_STATE(1589)] = 26600, + [SMALL_STATE(1590)] = 26676, + [SMALL_STATE(1591)] = 26748, + [SMALL_STATE(1592)] = 26820, + [SMALL_STATE(1593)] = 26892, + [SMALL_STATE(1594)] = 26964, + [SMALL_STATE(1595)] = 27036, + [SMALL_STATE(1596)] = 27108, + [SMALL_STATE(1597)] = 27180, + [SMALL_STATE(1598)] = 27252, + [SMALL_STATE(1599)] = 27324, + [SMALL_STATE(1600)] = 27396, + [SMALL_STATE(1601)] = 27468, + [SMALL_STATE(1602)] = 27610, + [SMALL_STATE(1603)] = 27752, + [SMALL_STATE(1604)] = 27824, + [SMALL_STATE(1605)] = 27966, + [SMALL_STATE(1606)] = 28038, + [SMALL_STATE(1607)] = 28110, + [SMALL_STATE(1608)] = 28182, + [SMALL_STATE(1609)] = 28254, + [SMALL_STATE(1610)] = 28326, + [SMALL_STATE(1611)] = 28398, + [SMALL_STATE(1612)] = 28470, + [SMALL_STATE(1613)] = 28542, + [SMALL_STATE(1614)] = 28614, + [SMALL_STATE(1615)] = 28686, + [SMALL_STATE(1616)] = 28758, + [SMALL_STATE(1617)] = 28830, + [SMALL_STATE(1618)] = 28902, + [SMALL_STATE(1619)] = 28974, + [SMALL_STATE(1620)] = 29046, + [SMALL_STATE(1621)] = 29118, + [SMALL_STATE(1622)] = 29190, + [SMALL_STATE(1623)] = 29266, + [SMALL_STATE(1624)] = 29338, + [SMALL_STATE(1625)] = 29414, + [SMALL_STATE(1626)] = 29486, + [SMALL_STATE(1627)] = 29558, + [SMALL_STATE(1628)] = 29630, + [SMALL_STATE(1629)] = 29702, + [SMALL_STATE(1630)] = 29774, + [SMALL_STATE(1631)] = 29846, + [SMALL_STATE(1632)] = 29918, + [SMALL_STATE(1633)] = 29990, + [SMALL_STATE(1634)] = 30062, + [SMALL_STATE(1635)] = 30134, + [SMALL_STATE(1636)] = 30206, + [SMALL_STATE(1637)] = 30278, + [SMALL_STATE(1638)] = 30350, + [SMALL_STATE(1639)] = 30422, + [SMALL_STATE(1640)] = 30494, + [SMALL_STATE(1641)] = 30636, + [SMALL_STATE(1642)] = 30708, + [SMALL_STATE(1643)] = 30780, + [SMALL_STATE(1644)] = 30852, + [SMALL_STATE(1645)] = 30924, + [SMALL_STATE(1646)] = 30996, + [SMALL_STATE(1647)] = 31068, + [SMALL_STATE(1648)] = 31140, + [SMALL_STATE(1649)] = 31212, + [SMALL_STATE(1650)] = 31284, + [SMALL_STATE(1651)] = 31356, + [SMALL_STATE(1652)] = 31498, + [SMALL_STATE(1653)] = 31640, + [SMALL_STATE(1654)] = 31782, + [SMALL_STATE(1655)] = 31924, + [SMALL_STATE(1656)] = 31995, + [SMALL_STATE(1657)] = 32066, + [SMALL_STATE(1658)] = 32137, + [SMALL_STATE(1659)] = 32208, + [SMALL_STATE(1660)] = 32279, + [SMALL_STATE(1661)] = 32350, + [SMALL_STATE(1662)] = 32421, + [SMALL_STATE(1663)] = 32492, + [SMALL_STATE(1664)] = 32563, + [SMALL_STATE(1665)] = 32634, + [SMALL_STATE(1666)] = 32705, + [SMALL_STATE(1667)] = 32776, + [SMALL_STATE(1668)] = 32847, + [SMALL_STATE(1669)] = 32918, + [SMALL_STATE(1670)] = 32989, + [SMALL_STATE(1671)] = 33060, + [SMALL_STATE(1672)] = 33131, + [SMALL_STATE(1673)] = 33202, + [SMALL_STATE(1674)] = 33273, + [SMALL_STATE(1675)] = 33344, + [SMALL_STATE(1676)] = 33415, + [SMALL_STATE(1677)] = 33486, + [SMALL_STATE(1678)] = 33557, + [SMALL_STATE(1679)] = 33628, + [SMALL_STATE(1680)] = 33699, + [SMALL_STATE(1681)] = 33770, + [SMALL_STATE(1682)] = 33840, + [SMALL_STATE(1683)] = 33918, + [SMALL_STATE(1684)] = 33993, + [SMALL_STATE(1685)] = 34068, + [SMALL_STATE(1686)] = 34143, + [SMALL_STATE(1687)] = 34212, + [SMALL_STATE(1688)] = 34285, + [SMALL_STATE(1689)] = 34354, + [SMALL_STATE(1690)] = 34426, + [SMALL_STATE(1691)] = 34560, + [SMALL_STATE(1692)] = 34634, + [SMALL_STATE(1693)] = 34768, + [SMALL_STATE(1694)] = 34842, + [SMALL_STATE(1695)] = 34978, + [SMALL_STATE(1696)] = 35052, + [SMALL_STATE(1697)] = 35186, + [SMALL_STATE(1698)] = 35258, + [SMALL_STATE(1699)] = 35392, + [SMALL_STATE(1700)] = 35528, + [SMALL_STATE(1701)] = 35662, + [SMALL_STATE(1702)] = 35796, + [SMALL_STATE(1703)] = 35930, + [SMALL_STATE(1704)] = 36066, + [SMALL_STATE(1705)] = 36200, + [SMALL_STATE(1706)] = 36334, + [SMALL_STATE(1707)] = 36402, + [SMALL_STATE(1708)] = 36476, + [SMALL_STATE(1709)] = 36550, + [SMALL_STATE(1710)] = 36686, + [SMALL_STATE(1711)] = 36820, + [SMALL_STATE(1712)] = 36894, + [SMALL_STATE(1713)] = 36968, + [SMALL_STATE(1714)] = 37040, + [SMALL_STATE(1715)] = 37176, + [SMALL_STATE(1716)] = 37312, + [SMALL_STATE(1717)] = 37446, + [SMALL_STATE(1718)] = 37520, + [SMALL_STATE(1719)] = 37654, + [SMALL_STATE(1720)] = 37728, + [SMALL_STATE(1721)] = 37800, + [SMALL_STATE(1722)] = 37874, + [SMALL_STATE(1723)] = 37948, + [SMALL_STATE(1724)] = 38084, + [SMALL_STATE(1725)] = 38158, + [SMALL_STATE(1726)] = 38294, + [SMALL_STATE(1727)] = 38428, + [SMALL_STATE(1728)] = 38564, + [SMALL_STATE(1729)] = 38638, + [SMALL_STATE(1730)] = 38712, + [SMALL_STATE(1731)] = 38846, + [SMALL_STATE(1732)] = 38984, + [SMALL_STATE(1733)] = 39058, + [SMALL_STATE(1734)] = 39132, + [SMALL_STATE(1735)] = 39202, + [SMALL_STATE(1736)] = 39336, + [SMALL_STATE(1737)] = 39406, + [SMALL_STATE(1738)] = 39540, + [SMALL_STATE(1739)] = 39614, + [SMALL_STATE(1740)] = 39686, + [SMALL_STATE(1741)] = 39820, + [SMALL_STATE(1742)] = 39954, + [SMALL_STATE(1743)] = 40090, + [SMALL_STATE(1744)] = 40226, + [SMALL_STATE(1745)] = 40360, + [SMALL_STATE(1746)] = 40494, + [SMALL_STATE(1747)] = 40562, + [SMALL_STATE(1748)] = 40698, + [SMALL_STATE(1749)] = 40832, + [SMALL_STATE(1750)] = 40910, + [SMALL_STATE(1751)] = 41044, + [SMALL_STATE(1752)] = 41118, + [SMALL_STATE(1753)] = 41254, + [SMALL_STATE(1754)] = 41386, + [SMALL_STATE(1755)] = 41520, + [SMALL_STATE(1756)] = 41655, + [SMALL_STATE(1757)] = 41790, + [SMALL_STATE(1758)] = 41925, + [SMALL_STATE(1759)] = 42060, + [SMALL_STATE(1760)] = 42195, + [SMALL_STATE(1761)] = 42330, + [SMALL_STATE(1762)] = 42465, + [SMALL_STATE(1763)] = 42600, + [SMALL_STATE(1764)] = 42735, + [SMALL_STATE(1765)] = 42870, + [SMALL_STATE(1766)] = 43005, + [SMALL_STATE(1767)] = 43140, + [SMALL_STATE(1768)] = 43275, + [SMALL_STATE(1769)] = 43410, + [SMALL_STATE(1770)] = 43545, + [SMALL_STATE(1771)] = 43680, + [SMALL_STATE(1772)] = 43815, + [SMALL_STATE(1773)] = 43950, + [SMALL_STATE(1774)] = 44085, + [SMALL_STATE(1775)] = 44220, + [SMALL_STATE(1776)] = 44355, + [SMALL_STATE(1777)] = 44490, + [SMALL_STATE(1778)] = 44625, + [SMALL_STATE(1779)] = 44760, + [SMALL_STATE(1780)] = 44895, + [SMALL_STATE(1781)] = 45030, + [SMALL_STATE(1782)] = 45165, + [SMALL_STATE(1783)] = 45300, + [SMALL_STATE(1784)] = 45435, + [SMALL_STATE(1785)] = 45570, + [SMALL_STATE(1786)] = 45705, + [SMALL_STATE(1787)] = 45840, + [SMALL_STATE(1788)] = 45975, + [SMALL_STATE(1789)] = 46110, + [SMALL_STATE(1790)] = 46245, + [SMALL_STATE(1791)] = 46380, + [SMALL_STATE(1792)] = 46515, + [SMALL_STATE(1793)] = 46650, + [SMALL_STATE(1794)] = 46785, + [SMALL_STATE(1795)] = 46920, + [SMALL_STATE(1796)] = 47055, + [SMALL_STATE(1797)] = 47190, + [SMALL_STATE(1798)] = 47325, + [SMALL_STATE(1799)] = 47460, + [SMALL_STATE(1800)] = 47595, + [SMALL_STATE(1801)] = 47730, + [SMALL_STATE(1802)] = 47865, + [SMALL_STATE(1803)] = 48000, + [SMALL_STATE(1804)] = 48135, + [SMALL_STATE(1805)] = 48270, + [SMALL_STATE(1806)] = 48405, + [SMALL_STATE(1807)] = 48540, + [SMALL_STATE(1808)] = 48675, + [SMALL_STATE(1809)] = 48810, + [SMALL_STATE(1810)] = 48945, + [SMALL_STATE(1811)] = 49080, + [SMALL_STATE(1812)] = 49215, + [SMALL_STATE(1813)] = 49350, + [SMALL_STATE(1814)] = 49485, + [SMALL_STATE(1815)] = 49620, + [SMALL_STATE(1816)] = 49755, + [SMALL_STATE(1817)] = 49890, + [SMALL_STATE(1818)] = 50025, + [SMALL_STATE(1819)] = 50160, + [SMALL_STATE(1820)] = 50295, + [SMALL_STATE(1821)] = 50430, + [SMALL_STATE(1822)] = 50565, + [SMALL_STATE(1823)] = 50700, + [SMALL_STATE(1824)] = 50835, + [SMALL_STATE(1825)] = 50970, + [SMALL_STATE(1826)] = 51105, + [SMALL_STATE(1827)] = 51240, + [SMALL_STATE(1828)] = 51375, + [SMALL_STATE(1829)] = 51510, + [SMALL_STATE(1830)] = 51645, + [SMALL_STATE(1831)] = 51780, + [SMALL_STATE(1832)] = 51915, + [SMALL_STATE(1833)] = 52050, + [SMALL_STATE(1834)] = 52185, + [SMALL_STATE(1835)] = 52320, + [SMALL_STATE(1836)] = 52455, + [SMALL_STATE(1837)] = 52590, + [SMALL_STATE(1838)] = 52657, + [SMALL_STATE(1839)] = 52792, + [SMALL_STATE(1840)] = 52927, + [SMALL_STATE(1841)] = 53062, + [SMALL_STATE(1842)] = 53197, + [SMALL_STATE(1843)] = 53332, + [SMALL_STATE(1844)] = 53467, + [SMALL_STATE(1845)] = 53602, + [SMALL_STATE(1846)] = 53737, + [SMALL_STATE(1847)] = 53872, + [SMALL_STATE(1848)] = 54007, + [SMALL_STATE(1849)] = 54142, + [SMALL_STATE(1850)] = 54277, + [SMALL_STATE(1851)] = 54412, + [SMALL_STATE(1852)] = 54547, + [SMALL_STATE(1853)] = 54614, + [SMALL_STATE(1854)] = 54749, + [SMALL_STATE(1855)] = 54884, + [SMALL_STATE(1856)] = 55019, + [SMALL_STATE(1857)] = 55154, + [SMALL_STATE(1858)] = 55289, + [SMALL_STATE(1859)] = 55424, + [SMALL_STATE(1860)] = 55559, + [SMALL_STATE(1861)] = 55694, + [SMALL_STATE(1862)] = 55829, + [SMALL_STATE(1863)] = 55964, + [SMALL_STATE(1864)] = 56099, + [SMALL_STATE(1865)] = 56234, + [SMALL_STATE(1866)] = 56369, + [SMALL_STATE(1867)] = 56504, + [SMALL_STATE(1868)] = 56639, + [SMALL_STATE(1869)] = 56774, + [SMALL_STATE(1870)] = 56909, + [SMALL_STATE(1871)] = 57044, + [SMALL_STATE(1872)] = 57179, + [SMALL_STATE(1873)] = 57314, + [SMALL_STATE(1874)] = 57449, + [SMALL_STATE(1875)] = 57584, + [SMALL_STATE(1876)] = 57719, + [SMALL_STATE(1877)] = 57854, + [SMALL_STATE(1878)] = 57989, + [SMALL_STATE(1879)] = 58124, + [SMALL_STATE(1880)] = 58259, + [SMALL_STATE(1881)] = 58394, + [SMALL_STATE(1882)] = 58529, + [SMALL_STATE(1883)] = 58664, + [SMALL_STATE(1884)] = 58799, + [SMALL_STATE(1885)] = 58868, + [SMALL_STATE(1886)] = 59001, + [SMALL_STATE(1887)] = 59134, + [SMALL_STATE(1888)] = 59269, + [SMALL_STATE(1889)] = 59404, + [SMALL_STATE(1890)] = 59539, + [SMALL_STATE(1891)] = 59674, + [SMALL_STATE(1892)] = 59809, + [SMALL_STATE(1893)] = 59944, + [SMALL_STATE(1894)] = 60079, + [SMALL_STATE(1895)] = 60214, + [SMALL_STATE(1896)] = 60349, + [SMALL_STATE(1897)] = 60484, + [SMALL_STATE(1898)] = 60553, + [SMALL_STATE(1899)] = 60688, + [SMALL_STATE(1900)] = 60823, + [SMALL_STATE(1901)] = 60958, + [SMALL_STATE(1902)] = 61093, + [SMALL_STATE(1903)] = 61228, + [SMALL_STATE(1904)] = 61363, + [SMALL_STATE(1905)] = 61498, + [SMALL_STATE(1906)] = 61633, + [SMALL_STATE(1907)] = 61768, + [SMALL_STATE(1908)] = 61903, + [SMALL_STATE(1909)] = 62038, + [SMALL_STATE(1910)] = 62173, + [SMALL_STATE(1911)] = 62308, + [SMALL_STATE(1912)] = 62443, + [SMALL_STATE(1913)] = 62578, + [SMALL_STATE(1914)] = 62713, + [SMALL_STATE(1915)] = 62848, + [SMALL_STATE(1916)] = 62983, + [SMALL_STATE(1917)] = 63118, + [SMALL_STATE(1918)] = 63253, + [SMALL_STATE(1919)] = 63324, + [SMALL_STATE(1920)] = 63393, + [SMALL_STATE(1921)] = 63462, + [SMALL_STATE(1922)] = 63531, + [SMALL_STATE(1923)] = 63602, + [SMALL_STATE(1924)] = 63737, + [SMALL_STATE(1925)] = 63808, + [SMALL_STATE(1926)] = 63879, + [SMALL_STATE(1927)] = 64014, + [SMALL_STATE(1928)] = 64081, + [SMALL_STATE(1929)] = 64148, + [SMALL_STATE(1930)] = 64215, + [SMALL_STATE(1931)] = 64286, + [SMALL_STATE(1932)] = 64357, + [SMALL_STATE(1933)] = 64423, + [SMALL_STATE(1934)] = 64491, + [SMALL_STATE(1935)] = 64557, + [SMALL_STATE(1936)] = 64623, + [SMALL_STATE(1937)] = 64689, + [SMALL_STATE(1938)] = 64757, + [SMALL_STATE(1939)] = 64825, + [SMALL_STATE(1940)] = 64893, + [SMALL_STATE(1941)] = 64959, + [SMALL_STATE(1942)] = 65025, + [SMALL_STATE(1943)] = 65091, + [SMALL_STATE(1944)] = 65159, + [SMALL_STATE(1945)] = 65225, + [SMALL_STATE(1946)] = 65291, + [SMALL_STATE(1947)] = 65361, + [SMALL_STATE(1948)] = 65427, + [SMALL_STATE(1949)] = 65501, + [SMALL_STATE(1950)] = 65569, + [SMALL_STATE(1951)] = 65635, + [SMALL_STATE(1952)] = 65701, + [SMALL_STATE(1953)] = 65769, + [SMALL_STATE(1954)] = 65837, + [SMALL_STATE(1955)] = 65905, + [SMALL_STATE(1956)] = 65973, + [SMALL_STATE(1957)] = 66041, + [SMALL_STATE(1958)] = 66109, + [SMALL_STATE(1959)] = 66241, + [SMALL_STATE(1960)] = 66373, + [SMALL_STATE(1961)] = 66503, + [SMALL_STATE(1962)] = 66635, + [SMALL_STATE(1963)] = 66767, + [SMALL_STATE(1964)] = 66899, + [SMALL_STATE(1965)] = 67026, + [SMALL_STATE(1966)] = 67151, + [SMALL_STATE(1967)] = 67240, + [SMALL_STATE(1968)] = 67327, + [SMALL_STATE(1969)] = 67412, + [SMALL_STATE(1970)] = 67487, + [SMALL_STATE(1971)] = 67554, + [SMALL_STATE(1972)] = 67625, + [SMALL_STATE(1973)] = 67708, + [SMALL_STATE(1974)] = 67781, + [SMALL_STATE(1975)] = 67846, + [SMALL_STATE(1976)] = 67925, + [SMALL_STATE(1977)] = 67992, + [SMALL_STATE(1978)] = 68059, + [SMALL_STATE(1979)] = 68186, + [SMALL_STATE(1980)] = 68313, + [SMALL_STATE(1981)] = 68380, + [SMALL_STATE(1982)] = 68507, + [SMALL_STATE(1983)] = 68572, + [SMALL_STATE(1984)] = 68703, + [SMALL_STATE(1985)] = 68768, + [SMALL_STATE(1986)] = 68899, + [SMALL_STATE(1987)] = 69024, + [SMALL_STATE(1988)] = 69149, + [SMALL_STATE(1989)] = 69214, + [SMALL_STATE(1990)] = 69341, + [SMALL_STATE(1991)] = 69466, + [SMALL_STATE(1992)] = 69591, + [SMALL_STATE(1993)] = 69656, + [SMALL_STATE(1994)] = 69781, + [SMALL_STATE(1995)] = 69906, + [SMALL_STATE(1996)] = 70031, + [SMALL_STATE(1997)] = 70156, + [SMALL_STATE(1998)] = 70281, + [SMALL_STATE(1999)] = 70406, + [SMALL_STATE(2000)] = 70531, + [SMALL_STATE(2001)] = 70658, + [SMALL_STATE(2002)] = 70725, + [SMALL_STATE(2003)] = 70850, + [SMALL_STATE(2004)] = 70975, + [SMALL_STATE(2005)] = 71102, + [SMALL_STATE(2006)] = 71227, + [SMALL_STATE(2007)] = 71292, + [SMALL_STATE(2008)] = 71357, + [SMALL_STATE(2009)] = 71422, + [SMALL_STATE(2010)] = 71493, + [SMALL_STATE(2011)] = 71558, + [SMALL_STATE(2012)] = 71685, + [SMALL_STATE(2013)] = 71810, + [SMALL_STATE(2014)] = 71935, + [SMALL_STATE(2015)] = 72060, + [SMALL_STATE(2016)] = 72185, + [SMALL_STATE(2017)] = 72310, + [SMALL_STATE(2018)] = 72435, + [SMALL_STATE(2019)] = 72560, + [SMALL_STATE(2020)] = 72685, + [SMALL_STATE(2021)] = 72810, + [SMALL_STATE(2022)] = 72935, + [SMALL_STATE(2023)] = 73060, + [SMALL_STATE(2024)] = 73185, + [SMALL_STATE(2025)] = 73310, + [SMALL_STATE(2026)] = 73437, + [SMALL_STATE(2027)] = 73564, + [SMALL_STATE(2028)] = 73689, + [SMALL_STATE(2029)] = 73754, + [SMALL_STATE(2030)] = 73879, + [SMALL_STATE(2031)] = 74006, + [SMALL_STATE(2032)] = 74131, + [SMALL_STATE(2033)] = 74258, + [SMALL_STATE(2034)] = 74385, + [SMALL_STATE(2035)] = 74510, + [SMALL_STATE(2036)] = 74635, + [SMALL_STATE(2037)] = 74760, + [SMALL_STATE(2038)] = 74825, + [SMALL_STATE(2039)] = 74950, + [SMALL_STATE(2040)] = 75075, + [SMALL_STATE(2041)] = 75200, + [SMALL_STATE(2042)] = 75325, + [SMALL_STATE(2043)] = 75390, + [SMALL_STATE(2044)] = 75515, + [SMALL_STATE(2045)] = 75580, + [SMALL_STATE(2046)] = 75705, + [SMALL_STATE(2047)] = 75830, + [SMALL_STATE(2048)] = 75955, + [SMALL_STATE(2049)] = 76080, + [SMALL_STATE(2050)] = 76205, + [SMALL_STATE(2051)] = 76330, + [SMALL_STATE(2052)] = 76455, + [SMALL_STATE(2053)] = 76524, + [SMALL_STATE(2054)] = 76589, + [SMALL_STATE(2055)] = 76714, + [SMALL_STATE(2056)] = 76839, + [SMALL_STATE(2057)] = 76964, + [SMALL_STATE(2058)] = 77089, + [SMALL_STATE(2059)] = 77154, + [SMALL_STATE(2060)] = 77279, + [SMALL_STATE(2061)] = 77404, + [SMALL_STATE(2062)] = 77529, + [SMALL_STATE(2063)] = 77654, + [SMALL_STATE(2064)] = 77779, + [SMALL_STATE(2065)] = 77872, + [SMALL_STATE(2066)] = 77937, + [SMALL_STATE(2067)] = 78032, + [SMALL_STATE(2068)] = 78097, + [SMALL_STATE(2069)] = 78222, + [SMALL_STATE(2070)] = 78347, + [SMALL_STATE(2071)] = 78472, + [SMALL_STATE(2072)] = 78597, + [SMALL_STATE(2073)] = 78722, + [SMALL_STATE(2074)] = 78847, + [SMALL_STATE(2075)] = 78912, + [SMALL_STATE(2076)] = 79009, + [SMALL_STATE(2077)] = 79134, + [SMALL_STATE(2078)] = 79261, + [SMALL_STATE(2079)] = 79386, + [SMALL_STATE(2080)] = 79513, + [SMALL_STATE(2081)] = 79578, + [SMALL_STATE(2082)] = 79703, + [SMALL_STATE(2083)] = 79828, + [SMALL_STATE(2084)] = 79893, + [SMALL_STATE(2085)] = 79958, + [SMALL_STATE(2086)] = 80083, + [SMALL_STATE(2087)] = 80148, + [SMALL_STATE(2088)] = 80273, + [SMALL_STATE(2089)] = 80398, + [SMALL_STATE(2090)] = 80523, + [SMALL_STATE(2091)] = 80588, + [SMALL_STATE(2092)] = 80653, + [SMALL_STATE(2093)] = 80718, + [SMALL_STATE(2094)] = 80783, + [SMALL_STATE(2095)] = 80848, + [SMALL_STATE(2096)] = 80913, + [SMALL_STATE(2097)] = 80978, + [SMALL_STATE(2098)] = 81043, + [SMALL_STATE(2099)] = 81108, + [SMALL_STATE(2100)] = 81233, + [SMALL_STATE(2101)] = 81298, + [SMALL_STATE(2102)] = 81363, + [SMALL_STATE(2103)] = 81488, + [SMALL_STATE(2104)] = 81613, + [SMALL_STATE(2105)] = 81738, + [SMALL_STATE(2106)] = 81863, + [SMALL_STATE(2107)] = 81988, + [SMALL_STATE(2108)] = 82113, + [SMALL_STATE(2109)] = 82238, + [SMALL_STATE(2110)] = 82363, + [SMALL_STATE(2111)] = 82488, + [SMALL_STATE(2112)] = 82613, + [SMALL_STATE(2113)] = 82738, + [SMALL_STATE(2114)] = 82863, + [SMALL_STATE(2115)] = 82988, + [SMALL_STATE(2116)] = 83113, + [SMALL_STATE(2117)] = 83238, + [SMALL_STATE(2118)] = 83303, + [SMALL_STATE(2119)] = 83368, + [SMALL_STATE(2120)] = 83493, + [SMALL_STATE(2121)] = 83558, + [SMALL_STATE(2122)] = 83683, + [SMALL_STATE(2123)] = 83808, + [SMALL_STATE(2124)] = 83933, + [SMALL_STATE(2125)] = 84058, + [SMALL_STATE(2126)] = 84185, + [SMALL_STATE(2127)] = 84310, + [SMALL_STATE(2128)] = 84435, + [SMALL_STATE(2129)] = 84560, + [SMALL_STATE(2130)] = 84685, + [SMALL_STATE(2131)] = 84750, + [SMALL_STATE(2132)] = 84815, + [SMALL_STATE(2133)] = 84940, + [SMALL_STATE(2134)] = 85005, + [SMALL_STATE(2135)] = 85130, + [SMALL_STATE(2136)] = 85255, + [SMALL_STATE(2137)] = 85380, + [SMALL_STATE(2138)] = 85505, + [SMALL_STATE(2139)] = 85630, + [SMALL_STATE(2140)] = 85755, + [SMALL_STATE(2141)] = 85820, + [SMALL_STATE(2142)] = 85885, + [SMALL_STATE(2143)] = 86010, + [SMALL_STATE(2144)] = 86075, + [SMALL_STATE(2145)] = 86200, + [SMALL_STATE(2146)] = 86265, + [SMALL_STATE(2147)] = 86390, + [SMALL_STATE(2148)] = 86455, + [SMALL_STATE(2149)] = 86580, + [SMALL_STATE(2150)] = 86705, + [SMALL_STATE(2151)] = 86830, + [SMALL_STATE(2152)] = 86895, + [SMALL_STATE(2153)] = 87020, + [SMALL_STATE(2154)] = 87145, + [SMALL_STATE(2155)] = 87270, + [SMALL_STATE(2156)] = 87335, + [SMALL_STATE(2157)] = 87460, + [SMALL_STATE(2158)] = 87525, + [SMALL_STATE(2159)] = 87650, + [SMALL_STATE(2160)] = 87715, + [SMALL_STATE(2161)] = 87780, + [SMALL_STATE(2162)] = 87845, + [SMALL_STATE(2163)] = 87970, + [SMALL_STATE(2164)] = 88095, + [SMALL_STATE(2165)] = 88160, + [SMALL_STATE(2166)] = 88285, + [SMALL_STATE(2167)] = 88410, + [SMALL_STATE(2168)] = 88475, + [SMALL_STATE(2169)] = 88600, + [SMALL_STATE(2170)] = 88665, + [SMALL_STATE(2171)] = 88730, + [SMALL_STATE(2172)] = 88855, + [SMALL_STATE(2173)] = 88980, + [SMALL_STATE(2174)] = 89105, + [SMALL_STATE(2175)] = 89230, + [SMALL_STATE(2176)] = 89355, + [SMALL_STATE(2177)] = 89480, + [SMALL_STATE(2178)] = 89605, + [SMALL_STATE(2179)] = 89730, + [SMALL_STATE(2180)] = 89855, + [SMALL_STATE(2181)] = 89980, + [SMALL_STATE(2182)] = 90045, + [SMALL_STATE(2183)] = 90170, + [SMALL_STATE(2184)] = 90295, + [SMALL_STATE(2185)] = 90420, + [SMALL_STATE(2186)] = 90545, + [SMALL_STATE(2187)] = 90670, + [SMALL_STATE(2188)] = 90795, + [SMALL_STATE(2189)] = 90920, + [SMALL_STATE(2190)] = 91045, + [SMALL_STATE(2191)] = 91170, + [SMALL_STATE(2192)] = 91295, + [SMALL_STATE(2193)] = 91420, + [SMALL_STATE(2194)] = 91545, + [SMALL_STATE(2195)] = 91670, + [SMALL_STATE(2196)] = 91795, + [SMALL_STATE(2197)] = 91920, + [SMALL_STATE(2198)] = 92045, + [SMALL_STATE(2199)] = 92170, + [SMALL_STATE(2200)] = 92295, + [SMALL_STATE(2201)] = 92420, + [SMALL_STATE(2202)] = 92545, + [SMALL_STATE(2203)] = 92670, + [SMALL_STATE(2204)] = 92795, + [SMALL_STATE(2205)] = 92920, + [SMALL_STATE(2206)] = 93045, + [SMALL_STATE(2207)] = 93170, + [SMALL_STATE(2208)] = 93295, + [SMALL_STATE(2209)] = 93420, + [SMALL_STATE(2210)] = 93545, + [SMALL_STATE(2211)] = 93670, + [SMALL_STATE(2212)] = 93795, + [SMALL_STATE(2213)] = 93860, + [SMALL_STATE(2214)] = 93985, + [SMALL_STATE(2215)] = 94110, + [SMALL_STATE(2216)] = 94235, + [SMALL_STATE(2217)] = 94300, + [SMALL_STATE(2218)] = 94425, + [SMALL_STATE(2219)] = 94490, + [SMALL_STATE(2220)] = 94555, + [SMALL_STATE(2221)] = 94680, + [SMALL_STATE(2222)] = 94805, + [SMALL_STATE(2223)] = 94930, + [SMALL_STATE(2224)] = 94995, + [SMALL_STATE(2225)] = 95060, + [SMALL_STATE(2226)] = 95125, + [SMALL_STATE(2227)] = 95250, + [SMALL_STATE(2228)] = 95375, + [SMALL_STATE(2229)] = 95440, + [SMALL_STATE(2230)] = 95565, + [SMALL_STATE(2231)] = 95690, + [SMALL_STATE(2232)] = 95815, + [SMALL_STATE(2233)] = 95906, + [SMALL_STATE(2234)] = 96031, + [SMALL_STATE(2235)] = 96156, + [SMALL_STATE(2236)] = 96281, + [SMALL_STATE(2237)] = 96406, + [SMALL_STATE(2238)] = 96531, + [SMALL_STATE(2239)] = 96596, + [SMALL_STATE(2240)] = 96721, + [SMALL_STATE(2241)] = 96846, + [SMALL_STATE(2242)] = 96971, + [SMALL_STATE(2243)] = 97036, + [SMALL_STATE(2244)] = 97101, + [SMALL_STATE(2245)] = 97166, + [SMALL_STATE(2246)] = 97231, + [SMALL_STATE(2247)] = 97356, + [SMALL_STATE(2248)] = 97481, + [SMALL_STATE(2249)] = 97546, + [SMALL_STATE(2250)] = 97671, + [SMALL_STATE(2251)] = 97796, + [SMALL_STATE(2252)] = 97921, + [SMALL_STATE(2253)] = 97986, + [SMALL_STATE(2254)] = 98051, + [SMALL_STATE(2255)] = 98116, + [SMALL_STATE(2256)] = 98241, + [SMALL_STATE(2257)] = 98366, + [SMALL_STATE(2258)] = 98491, + [SMALL_STATE(2259)] = 98616, + [SMALL_STATE(2260)] = 98741, + [SMALL_STATE(2261)] = 98866, + [SMALL_STATE(2262)] = 98991, + [SMALL_STATE(2263)] = 99116, + [SMALL_STATE(2264)] = 99181, + [SMALL_STATE(2265)] = 99246, + [SMALL_STATE(2266)] = 99311, + [SMALL_STATE(2267)] = 99376, + [SMALL_STATE(2268)] = 99441, + [SMALL_STATE(2269)] = 99506, + [SMALL_STATE(2270)] = 99571, + [SMALL_STATE(2271)] = 99636, + [SMALL_STATE(2272)] = 99701, + [SMALL_STATE(2273)] = 99766, + [SMALL_STATE(2274)] = 99831, + [SMALL_STATE(2275)] = 99896, + [SMALL_STATE(2276)] = 99961, + [SMALL_STATE(2277)] = 100026, + [SMALL_STATE(2278)] = 100091, + [SMALL_STATE(2279)] = 100156, + [SMALL_STATE(2280)] = 100221, + [SMALL_STATE(2281)] = 100286, + [SMALL_STATE(2282)] = 100411, + [SMALL_STATE(2283)] = 100536, + [SMALL_STATE(2284)] = 100601, + [SMALL_STATE(2285)] = 100666, + [SMALL_STATE(2286)] = 100731, + [SMALL_STATE(2287)] = 100796, + [SMALL_STATE(2288)] = 100861, + [SMALL_STATE(2289)] = 100986, + [SMALL_STATE(2290)] = 101111, + [SMALL_STATE(2291)] = 101176, + [SMALL_STATE(2292)] = 101241, + [SMALL_STATE(2293)] = 101366, + [SMALL_STATE(2294)] = 101431, + [SMALL_STATE(2295)] = 101496, + [SMALL_STATE(2296)] = 101561, + [SMALL_STATE(2297)] = 101626, + [SMALL_STATE(2298)] = 101753, + [SMALL_STATE(2299)] = 101818, + [SMALL_STATE(2300)] = 101883, + [SMALL_STATE(2301)] = 102019, + [SMALL_STATE(2302)] = 102083, + [SMALL_STATE(2303)] = 102147, + [SMALL_STATE(2304)] = 102277, + [SMALL_STATE(2305)] = 102407, + [SMALL_STATE(2306)] = 102543, + [SMALL_STATE(2307)] = 102679, + [SMALL_STATE(2308)] = 102815, + [SMALL_STATE(2309)] = 102879, + [SMALL_STATE(2310)] = 103015, + [SMALL_STATE(2311)] = 103151, + [SMALL_STATE(2312)] = 103215, + [SMALL_STATE(2313)] = 103279, + [SMALL_STATE(2314)] = 103343, + [SMALL_STATE(2315)] = 103479, + [SMALL_STATE(2316)] = 103615, + [SMALL_STATE(2317)] = 103679, + [SMALL_STATE(2318)] = 103743, + [SMALL_STATE(2319)] = 103832, + [SMALL_STATE(2320)] = 103963, + [SMALL_STATE(2321)] = 104051, + [SMALL_STATE(2322)] = 104173, + [SMALL_STATE(2323)] = 104256, + [SMALL_STATE(2324)] = 104339, + [SMALL_STATE(2325)] = 104422, + [SMALL_STATE(2326)] = 104505, + [SMALL_STATE(2327)] = 104588, + [SMALL_STATE(2328)] = 104671, + [SMALL_STATE(2329)] = 104751, + [SMALL_STATE(2330)] = 104833, + [SMALL_STATE(2331)] = 104915, + [SMALL_STATE(2332)] = 104995, + [SMALL_STATE(2333)] = 105077, + [SMALL_STATE(2334)] = 105159, + [SMALL_STATE(2335)] = 105241, + [SMALL_STATE(2336)] = 105323, + [SMALL_STATE(2337)] = 105402, + [SMALL_STATE(2338)] = 105479, + [SMALL_STATE(2339)] = 105556, + [SMALL_STATE(2340)] = 105633, + [SMALL_STATE(2341)] = 105710, + [SMALL_STATE(2342)] = 105787, + [SMALL_STATE(2343)] = 105866, + [SMALL_STATE(2344)] = 105943, + [SMALL_STATE(2345)] = 106020, + [SMALL_STATE(2346)] = 106097, + [SMALL_STATE(2347)] = 106174, + [SMALL_STATE(2348)] = 106251, + [SMALL_STATE(2349)] = 106328, + [SMALL_STATE(2350)] = 106405, + [SMALL_STATE(2351)] = 106481, + [SMALL_STATE(2352)] = 106557, + [SMALL_STATE(2353)] = 106633, + [SMALL_STATE(2354)] = 106709, + [SMALL_STATE(2355)] = 106785, + [SMALL_STATE(2356)] = 106861, + [SMALL_STATE(2357)] = 106937, + [SMALL_STATE(2358)] = 107013, + [SMALL_STATE(2359)] = 107131, + [SMALL_STATE(2360)] = 107207, + [SMALL_STATE(2361)] = 107283, + [SMALL_STATE(2362)] = 107359, + [SMALL_STATE(2363)] = 107435, + [SMALL_STATE(2364)] = 107495, + [SMALL_STATE(2365)] = 107555, + [SMALL_STATE(2366)] = 107615, + [SMALL_STATE(2367)] = 107675, + [SMALL_STATE(2368)] = 107735, + [SMALL_STATE(2369)] = 107795, + [SMALL_STATE(2370)] = 107855, + [SMALL_STATE(2371)] = 107915, + [SMALL_STATE(2372)] = 107975, + [SMALL_STATE(2373)] = 108035, + [SMALL_STATE(2374)] = 108095, + [SMALL_STATE(2375)] = 108155, + [SMALL_STATE(2376)] = 108215, + [SMALL_STATE(2377)] = 108273, + [SMALL_STATE(2378)] = 108333, + [SMALL_STATE(2379)] = 108391, + [SMALL_STATE(2380)] = 108449, + [SMALL_STATE(2381)] = 108507, + [SMALL_STATE(2382)] = 108565, + [SMALL_STATE(2383)] = 108625, + [SMALL_STATE(2384)] = 108683, + [SMALL_STATE(2385)] = 108743, + [SMALL_STATE(2386)] = 108803, + [SMALL_STATE(2387)] = 108862, + [SMALL_STATE(2388)] = 108921, + [SMALL_STATE(2389)] = 108980, + [SMALL_STATE(2390)] = 109033, + [SMALL_STATE(2391)] = 109086, + [SMALL_STATE(2392)] = 109145, + [SMALL_STATE(2393)] = 109202, + [SMALL_STATE(2394)] = 109259, + [SMALL_STATE(2395)] = 109316, + [SMALL_STATE(2396)] = 109375, + [SMALL_STATE(2397)] = 109434, + [SMALL_STATE(2398)] = 109493, + [SMALL_STATE(2399)] = 109576, + [SMALL_STATE(2400)] = 109635, + [SMALL_STATE(2401)] = 109694, + [SMALL_STATE(2402)] = 109753, + [SMALL_STATE(2403)] = 109806, + [SMALL_STATE(2404)] = 109863, + [SMALL_STATE(2405)] = 109918, + [SMALL_STATE(2406)] = 109973, + [SMALL_STATE(2407)] = 110030, + [SMALL_STATE(2408)] = 110085, + [SMALL_STATE(2409)] = 110140, + [SMALL_STATE(2410)] = 110195, + [SMALL_STATE(2411)] = 110254, + [SMALL_STATE(2412)] = 110313, + [SMALL_STATE(2413)] = 110372, + [SMALL_STATE(2414)] = 110431, + [SMALL_STATE(2415)] = 110486, + [SMALL_STATE(2416)] = 110541, + [SMALL_STATE(2417)] = 110594, + [SMALL_STATE(2418)] = 110651, + [SMALL_STATE(2419)] = 110708, + [SMALL_STATE(2420)] = 110765, + [SMALL_STATE(2421)] = 110824, + [SMALL_STATE(2422)] = 110881, + [SMALL_STATE(2423)] = 110938, + [SMALL_STATE(2424)] = 110995, + [SMALL_STATE(2425)] = 111052, + [SMALL_STATE(2426)] = 111111, + [SMALL_STATE(2427)] = 111170, + [SMALL_STATE(2428)] = 111223, + [SMALL_STATE(2429)] = 111276, + [SMALL_STATE(2430)] = 111328, + [SMALL_STATE(2431)] = 111380, + [SMALL_STATE(2432)] = 111436, + [SMALL_STATE(2433)] = 111490, + [SMALL_STATE(2434)] = 111546, + [SMALL_STATE(2435)] = 111600, + [SMALL_STATE(2436)] = 111652, + [SMALL_STATE(2437)] = 111706, + [SMALL_STATE(2438)] = 111760, + [SMALL_STATE(2439)] = 111814, + [SMALL_STATE(2440)] = 111868, + [SMALL_STATE(2441)] = 111922, + [SMALL_STATE(2442)] = 111978, + [SMALL_STATE(2443)] = 112030, + [SMALL_STATE(2444)] = 112084, + [SMALL_STATE(2445)] = 112136, + [SMALL_STATE(2446)] = 112188, + [SMALL_STATE(2447)] = 112240, + [SMALL_STATE(2448)] = 112296, + [SMALL_STATE(2449)] = 112350, + [SMALL_STATE(2450)] = 112404, + [SMALL_STATE(2451)] = 112456, + [SMALL_STATE(2452)] = 112508, + [SMALL_STATE(2453)] = 112562, + [SMALL_STATE(2454)] = 112618, + [SMALL_STATE(2455)] = 112670, + [SMALL_STATE(2456)] = 112732, + [SMALL_STATE(2457)] = 112790, + [SMALL_STATE(2458)] = 112854, + [SMALL_STATE(2459)] = 112906, + [SMALL_STATE(2460)] = 112984, + [SMALL_STATE(2461)] = 113038, + [SMALL_STATE(2462)] = 113096, + [SMALL_STATE(2463)] = 113152, + [SMALL_STATE(2464)] = 113206, + [SMALL_STATE(2465)] = 113258, + [SMALL_STATE(2466)] = 113310, + [SMALL_STATE(2467)] = 113368, + [SMALL_STATE(2468)] = 113424, + [SMALL_STATE(2469)] = 113478, + [SMALL_STATE(2470)] = 113532, + [SMALL_STATE(2471)] = 113588, + [SMALL_STATE(2472)] = 113644, + [SMALL_STATE(2473)] = 113696, + [SMALL_STATE(2474)] = 113760, + [SMALL_STATE(2475)] = 113814, + [SMALL_STATE(2476)] = 113868, + [SMALL_STATE(2477)] = 113932, + [SMALL_STATE(2478)] = 113986, + [SMALL_STATE(2479)] = 114038, + [SMALL_STATE(2480)] = 114092, + [SMALL_STATE(2481)] = 114146, + [SMALL_STATE(2482)] = 114200, + [SMALL_STATE(2483)] = 114251, + [SMALL_STATE(2484)] = 114302, + [SMALL_STATE(2485)] = 114353, + [SMALL_STATE(2486)] = 114406, + [SMALL_STATE(2487)] = 114459, + [SMALL_STATE(2488)] = 114510, + [SMALL_STATE(2489)] = 114561, + [SMALL_STATE(2490)] = 114612, + [SMALL_STATE(2491)] = 114663, + [SMALL_STATE(2492)] = 114714, + [SMALL_STATE(2493)] = 114765, + [SMALL_STATE(2494)] = 114816, + [SMALL_STATE(2495)] = 114869, + [SMALL_STATE(2496)] = 114922, + [SMALL_STATE(2497)] = 114973, + [SMALL_STATE(2498)] = 115024, + [SMALL_STATE(2499)] = 115075, + [SMALL_STATE(2500)] = 115126, + [SMALL_STATE(2501)] = 115177, + [SMALL_STATE(2502)] = 115234, + [SMALL_STATE(2503)] = 115285, + [SMALL_STATE(2504)] = 115342, + [SMALL_STATE(2505)] = 115393, + [SMALL_STATE(2506)] = 115444, + [SMALL_STATE(2507)] = 115501, + [SMALL_STATE(2508)] = 115552, + [SMALL_STATE(2509)] = 115605, + [SMALL_STATE(2510)] = 115658, + [SMALL_STATE(2511)] = 115711, + [SMALL_STATE(2512)] = 115762, + [SMALL_STATE(2513)] = 115813, + [SMALL_STATE(2514)] = 115866, + [SMALL_STATE(2515)] = 115917, + [SMALL_STATE(2516)] = 115968, + [SMALL_STATE(2517)] = 116025, + [SMALL_STATE(2518)] = 116076, + [SMALL_STATE(2519)] = 116127, + [SMALL_STATE(2520)] = 116178, + [SMALL_STATE(2521)] = 116235, + [SMALL_STATE(2522)] = 116286, + [SMALL_STATE(2523)] = 116337, + [SMALL_STATE(2524)] = 116388, + [SMALL_STATE(2525)] = 116439, + [SMALL_STATE(2526)] = 116490, + [SMALL_STATE(2527)] = 116541, + [SMALL_STATE(2528)] = 116592, + [SMALL_STATE(2529)] = 116643, + [SMALL_STATE(2530)] = 116694, + [SMALL_STATE(2531)] = 116749, + [SMALL_STATE(2532)] = 116800, + [SMALL_STATE(2533)] = 116855, + [SMALL_STATE(2534)] = 116906, + [SMALL_STATE(2535)] = 116961, + [SMALL_STATE(2536)] = 117012, + [SMALL_STATE(2537)] = 117063, + [SMALL_STATE(2538)] = 117114, + [SMALL_STATE(2539)] = 117167, + [SMALL_STATE(2540)] = 117220, + [SMALL_STATE(2541)] = 117271, + [SMALL_STATE(2542)] = 117322, + [SMALL_STATE(2543)] = 117373, + [SMALL_STATE(2544)] = 117426, + [SMALL_STATE(2545)] = 117477, + [SMALL_STATE(2546)] = 117534, + [SMALL_STATE(2547)] = 117585, + [SMALL_STATE(2548)] = 117640, + [SMALL_STATE(2549)] = 117691, + [SMALL_STATE(2550)] = 117742, + [SMALL_STATE(2551)] = 117797, + [SMALL_STATE(2552)] = 117852, + [SMALL_STATE(2553)] = 117907, + [SMALL_STATE(2554)] = 117958, + [SMALL_STATE(2555)] = 118009, + [SMALL_STATE(2556)] = 118060, + [SMALL_STATE(2557)] = 118111, + [SMALL_STATE(2558)] = 118168, + [SMALL_STATE(2559)] = 118225, + [SMALL_STATE(2560)] = 118282, + [SMALL_STATE(2561)] = 118335, + [SMALL_STATE(2562)] = 118416, + [SMALL_STATE(2563)] = 118467, + [SMALL_STATE(2564)] = 118518, + [SMALL_STATE(2565)] = 118569, + [SMALL_STATE(2566)] = 118620, + [SMALL_STATE(2567)] = 118671, + [SMALL_STATE(2568)] = 118722, + [SMALL_STATE(2569)] = 118773, + [SMALL_STATE(2570)] = 118824, + [SMALL_STATE(2571)] = 118875, + [SMALL_STATE(2572)] = 118932, + [SMALL_STATE(2573)] = 118983, + [SMALL_STATE(2574)] = 119034, + [SMALL_STATE(2575)] = 119085, + [SMALL_STATE(2576)] = 119136, + [SMALL_STATE(2577)] = 119193, + [SMALL_STATE(2578)] = 119244, + [SMALL_STATE(2579)] = 119295, + [SMALL_STATE(2580)] = 119346, + [SMALL_STATE(2581)] = 119397, + [SMALL_STATE(2582)] = 119454, + [SMALL_STATE(2583)] = 119505, + [SMALL_STATE(2584)] = 119558, + [SMALL_STATE(2585)] = 119609, + [SMALL_STATE(2586)] = 119660, + [SMALL_STATE(2587)] = 119711, + [SMALL_STATE(2588)] = 119762, + [SMALL_STATE(2589)] = 119815, + [SMALL_STATE(2590)] = 119866, + [SMALL_STATE(2591)] = 119917, + [SMALL_STATE(2592)] = 119968, + [SMALL_STATE(2593)] = 120019, + [SMALL_STATE(2594)] = 120070, + [SMALL_STATE(2595)] = 120121, + [SMALL_STATE(2596)] = 120172, + [SMALL_STATE(2597)] = 120223, + [SMALL_STATE(2598)] = 120274, + [SMALL_STATE(2599)] = 120331, + [SMALL_STATE(2600)] = 120382, + [SMALL_STATE(2601)] = 120433, + [SMALL_STATE(2602)] = 120484, + [SMALL_STATE(2603)] = 120535, + [SMALL_STATE(2604)] = 120586, + [SMALL_STATE(2605)] = 120637, + [SMALL_STATE(2606)] = 120686, + [SMALL_STATE(2607)] = 120737, + [SMALL_STATE(2608)] = 120788, + [SMALL_STATE(2609)] = 120839, + [SMALL_STATE(2610)] = 120890, + [SMALL_STATE(2611)] = 120941, + [SMALL_STATE(2612)] = 120992, + [SMALL_STATE(2613)] = 121043, + [SMALL_STATE(2614)] = 121094, + [SMALL_STATE(2615)] = 121145, + [SMALL_STATE(2616)] = 121202, + [SMALL_STATE(2617)] = 121253, + [SMALL_STATE(2618)] = 121304, + [SMALL_STATE(2619)] = 121355, + [SMALL_STATE(2620)] = 121406, + [SMALL_STATE(2621)] = 121463, + [SMALL_STATE(2622)] = 121514, + [SMALL_STATE(2623)] = 121565, + [SMALL_STATE(2624)] = 121620, + [SMALL_STATE(2625)] = 121673, + [SMALL_STATE(2626)] = 121724, + [SMALL_STATE(2627)] = 121775, + [SMALL_STATE(2628)] = 121826, + [SMALL_STATE(2629)] = 121877, + [SMALL_STATE(2630)] = 121934, + [SMALL_STATE(2631)] = 121985, + [SMALL_STATE(2632)] = 122038, + [SMALL_STATE(2633)] = 122091, + [SMALL_STATE(2634)] = 122163, + [SMALL_STATE(2635)] = 122235, + [SMALL_STATE(2636)] = 122289, + [SMALL_STATE(2637)] = 122339, + [SMALL_STATE(2638)] = 122389, + [SMALL_STATE(2639)] = 122445, + [SMALL_STATE(2640)] = 122495, + [SMALL_STATE(2641)] = 122545, + [SMALL_STATE(2642)] = 122595, + [SMALL_STATE(2643)] = 122645, + [SMALL_STATE(2644)] = 122695, + [SMALL_STATE(2645)] = 122745, + [SMALL_STATE(2646)] = 122795, + [SMALL_STATE(2647)] = 122845, + [SMALL_STATE(2648)] = 122895, + [SMALL_STATE(2649)] = 122945, + [SMALL_STATE(2650)] = 122995, + [SMALL_STATE(2651)] = 123045, + [SMALL_STATE(2652)] = 123095, + [SMALL_STATE(2653)] = 123145, + [SMALL_STATE(2654)] = 123195, + [SMALL_STATE(2655)] = 123245, + [SMALL_STATE(2656)] = 123295, + [SMALL_STATE(2657)] = 123345, + [SMALL_STATE(2658)] = 123395, + [SMALL_STATE(2659)] = 123445, + [SMALL_STATE(2660)] = 123495, + [SMALL_STATE(2661)] = 123545, + [SMALL_STATE(2662)] = 123595, + [SMALL_STATE(2663)] = 123645, + [SMALL_STATE(2664)] = 123695, + [SMALL_STATE(2665)] = 123745, + [SMALL_STATE(2666)] = 123795, + [SMALL_STATE(2667)] = 123845, + [SMALL_STATE(2668)] = 123895, + [SMALL_STATE(2669)] = 123945, + [SMALL_STATE(2670)] = 124017, + [SMALL_STATE(2671)] = 124067, + [SMALL_STATE(2672)] = 124117, + [SMALL_STATE(2673)] = 124173, + [SMALL_STATE(2674)] = 124223, + [SMALL_STATE(2675)] = 124273, + [SMALL_STATE(2676)] = 124323, + [SMALL_STATE(2677)] = 124373, + [SMALL_STATE(2678)] = 124423, + [SMALL_STATE(2679)] = 124473, + [SMALL_STATE(2680)] = 124523, + [SMALL_STATE(2681)] = 124573, + [SMALL_STATE(2682)] = 124623, + [SMALL_STATE(2683)] = 124673, + [SMALL_STATE(2684)] = 124723, + [SMALL_STATE(2685)] = 124773, + [SMALL_STATE(2686)] = 124823, + [SMALL_STATE(2687)] = 124881, + [SMALL_STATE(2688)] = 124931, + [SMALL_STATE(2689)] = 124987, + [SMALL_STATE(2690)] = 125037, + [SMALL_STATE(2691)] = 125087, + [SMALL_STATE(2692)] = 125137, + [SMALL_STATE(2693)] = 125187, + [SMALL_STATE(2694)] = 125237, + [SMALL_STATE(2695)] = 125287, + [SMALL_STATE(2696)] = 125337, + [SMALL_STATE(2697)] = 125387, + [SMALL_STATE(2698)] = 125437, + [SMALL_STATE(2699)] = 125487, + [SMALL_STATE(2700)] = 125537, + [SMALL_STATE(2701)] = 125589, + [SMALL_STATE(2702)] = 125639, + [SMALL_STATE(2703)] = 125689, + [SMALL_STATE(2704)] = 125739, + [SMALL_STATE(2705)] = 125789, + [SMALL_STATE(2706)] = 125839, + [SMALL_STATE(2707)] = 125911, + [SMALL_STATE(2708)] = 125961, + [SMALL_STATE(2709)] = 126011, + [SMALL_STATE(2710)] = 126087, + [SMALL_STATE(2711)] = 126137, + [SMALL_STATE(2712)] = 126187, + [SMALL_STATE(2713)] = 126237, + [SMALL_STATE(2714)] = 126295, + [SMALL_STATE(2715)] = 126345, + [SMALL_STATE(2716)] = 126395, + [SMALL_STATE(2717)] = 126445, + [SMALL_STATE(2718)] = 126495, + [SMALL_STATE(2719)] = 126545, + [SMALL_STATE(2720)] = 126595, + [SMALL_STATE(2721)] = 126645, + [SMALL_STATE(2722)] = 126695, + [SMALL_STATE(2723)] = 126745, + [SMALL_STATE(2724)] = 126795, + [SMALL_STATE(2725)] = 126845, + [SMALL_STATE(2726)] = 126895, + [SMALL_STATE(2727)] = 126945, + [SMALL_STATE(2728)] = 126995, + [SMALL_STATE(2729)] = 127045, + [SMALL_STATE(2730)] = 127095, + [SMALL_STATE(2731)] = 127145, + [SMALL_STATE(2732)] = 127195, + [SMALL_STATE(2733)] = 127245, + [SMALL_STATE(2734)] = 127295, + [SMALL_STATE(2735)] = 127345, + [SMALL_STATE(2736)] = 127395, + [SMALL_STATE(2737)] = 127445, + [SMALL_STATE(2738)] = 127495, + [SMALL_STATE(2739)] = 127545, + [SMALL_STATE(2740)] = 127595, + [SMALL_STATE(2741)] = 127645, + [SMALL_STATE(2742)] = 127717, + [SMALL_STATE(2743)] = 127769, + [SMALL_STATE(2744)] = 127819, + [SMALL_STATE(2745)] = 127891, + [SMALL_STATE(2746)] = 127941, + [SMALL_STATE(2747)] = 127991, + [SMALL_STATE(2748)] = 128041, + [SMALL_STATE(2749)] = 128091, + [SMALL_STATE(2750)] = 128141, + [SMALL_STATE(2751)] = 128199, + [SMALL_STATE(2752)] = 128249, + [SMALL_STATE(2753)] = 128299, + [SMALL_STATE(2754)] = 128349, + [SMALL_STATE(2755)] = 128420, + [SMALL_STATE(2756)] = 128471, + [SMALL_STATE(2757)] = 128528, + [SMALL_STATE(2758)] = 128583, + [SMALL_STATE(2759)] = 128634, + [SMALL_STATE(2760)] = 128691, + [SMALL_STATE(2761)] = 128746, + [SMALL_STATE(2762)] = 128817, + [SMALL_STATE(2763)] = 128888, + [SMALL_STATE(2764)] = 128959, + [SMALL_STATE(2765)] = 129010, + [SMALL_STATE(2766)] = 129061, + [SMALL_STATE(2767)] = 129112, + [SMALL_STATE(2768)] = 129167, + [SMALL_STATE(2769)] = 129222, + [SMALL_STATE(2770)] = 129277, + [SMALL_STATE(2771)] = 129348, + [SMALL_STATE(2772)] = 129419, + [SMALL_STATE(2773)] = 129470, + [SMALL_STATE(2774)] = 129519, + [SMALL_STATE(2775)] = 129574, + [SMALL_STATE(2776)] = 129643, + [SMALL_STATE(2777)] = 129712, + [SMALL_STATE(2778)] = 129761, + [SMALL_STATE(2779)] = 129816, + [SMALL_STATE(2780)] = 129871, + [SMALL_STATE(2781)] = 129920, + [SMALL_STATE(2782)] = 129969, + [SMALL_STATE(2783)] = 130024, + [SMALL_STATE(2784)] = 130073, + [SMALL_STATE(2785)] = 130122, + [SMALL_STATE(2786)] = 130170, + [SMALL_STATE(2787)] = 130218, + [SMALL_STATE(2788)] = 130266, + [SMALL_STATE(2789)] = 130322, + [SMALL_STATE(2790)] = 130370, + [SMALL_STATE(2791)] = 130418, + [SMALL_STATE(2792)] = 130466, + [SMALL_STATE(2793)] = 130514, + [SMALL_STATE(2794)] = 130562, + [SMALL_STATE(2795)] = 130612, + [SMALL_STATE(2796)] = 130660, + [SMALL_STATE(2797)] = 130726, + [SMALL_STATE(2798)] = 130774, + [SMALL_STATE(2799)] = 130840, + [SMALL_STATE(2800)] = 130894, + [SMALL_STATE(2801)] = 130942, + [SMALL_STATE(2802)] = 130990, + [SMALL_STATE(2803)] = 131038, + [SMALL_STATE(2804)] = 131086, + [SMALL_STATE(2805)] = 131152, + [SMALL_STATE(2806)] = 131206, + [SMALL_STATE(2807)] = 131272, + [SMALL_STATE(2808)] = 131320, + [SMALL_STATE(2809)] = 131372, + [SMALL_STATE(2810)] = 131420, + [SMALL_STATE(2811)] = 131468, + [SMALL_STATE(2812)] = 131516, + [SMALL_STATE(2813)] = 131564, + [SMALL_STATE(2814)] = 131612, + [SMALL_STATE(2815)] = 131660, + [SMALL_STATE(2816)] = 131708, + [SMALL_STATE(2817)] = 131762, + [SMALL_STATE(2818)] = 131810, + [SMALL_STATE(2819)] = 131858, + [SMALL_STATE(2820)] = 131940, + [SMALL_STATE(2821)] = 131988, + [SMALL_STATE(2822)] = 132036, + [SMALL_STATE(2823)] = 132084, + [SMALL_STATE(2824)] = 132138, + [SMALL_STATE(2825)] = 132184, + [SMALL_STATE(2826)] = 132234, + [SMALL_STATE(2827)] = 132282, + [SMALL_STATE(2828)] = 132330, + [SMALL_STATE(2829)] = 132382, + [SMALL_STATE(2830)] = 132430, + [SMALL_STATE(2831)] = 132478, + [SMALL_STATE(2832)] = 132530, + [SMALL_STATE(2833)] = 132578, + [SMALL_STATE(2834)] = 132660, + [SMALL_STATE(2835)] = 132708, + [SMALL_STATE(2836)] = 132756, + [SMALL_STATE(2837)] = 132810, + [SMALL_STATE(2838)] = 132858, + [SMALL_STATE(2839)] = 132906, + [SMALL_STATE(2840)] = 132954, + [SMALL_STATE(2841)] = 133002, + [SMALL_STATE(2842)] = 133050, + [SMALL_STATE(2843)] = 133104, + [SMALL_STATE(2844)] = 133152, + [SMALL_STATE(2845)] = 133206, + [SMALL_STATE(2846)] = 133272, + [SMALL_STATE(2847)] = 133320, + [SMALL_STATE(2848)] = 133368, + [SMALL_STATE(2849)] = 133434, + [SMALL_STATE(2850)] = 133500, + [SMALL_STATE(2851)] = 133548, + [SMALL_STATE(2852)] = 133596, + [SMALL_STATE(2853)] = 133650, + [SMALL_STATE(2854)] = 133716, + [SMALL_STATE(2855)] = 133764, + [SMALL_STATE(2856)] = 133812, + [SMALL_STATE(2857)] = 133860, + [SMALL_STATE(2858)] = 133908, + [SMALL_STATE(2859)] = 133974, + [SMALL_STATE(2860)] = 134022, + [SMALL_STATE(2861)] = 134088, + [SMALL_STATE(2862)] = 134136, + [SMALL_STATE(2863)] = 134202, + [SMALL_STATE(2864)] = 134268, + [SMALL_STATE(2865)] = 134316, + [SMALL_STATE(2866)] = 134370, + [SMALL_STATE(2867)] = 134435, + [SMALL_STATE(2868)] = 134480, + [SMALL_STATE(2869)] = 134545, + [SMALL_STATE(2870)] = 134614, + [SMALL_STATE(2871)] = 134663, + [SMALL_STATE(2872)] = 134716, + [SMALL_STATE(2873)] = 134787, + [SMALL_STATE(2874)] = 134852, + [SMALL_STATE(2875)] = 134905, + [SMALL_STATE(2876)] = 134978, + [SMALL_STATE(2877)] = 135031, + [SMALL_STATE(2878)] = 135086, + [SMALL_STATE(2879)] = 135139, + [SMALL_STATE(2880)] = 135200, + [SMALL_STATE(2881)] = 135249, + [SMALL_STATE(2882)] = 135294, + [SMALL_STATE(2883)] = 135359, + [SMALL_STATE(2884)] = 135424, + [SMALL_STATE(2885)] = 135471, + [SMALL_STATE(2886)] = 135516, + [SMALL_STATE(2887)] = 135591, + [SMALL_STATE(2888)] = 135668, + [SMALL_STATE(2889)] = 135747, + [SMALL_STATE(2890)] = 135800, + [SMALL_STATE(2891)] = 135849, + [SMALL_STATE(2892)] = 135902, + [SMALL_STATE(2893)] = 135969, + [SMALL_STATE(2894)] = 136034, + [SMALL_STATE(2895)] = 136081, + [SMALL_STATE(2896)] = 136146, + [SMALL_STATE(2897)] = 136191, + [SMALL_STATE(2898)] = 136240, + [SMALL_STATE(2899)] = 136285, + [SMALL_STATE(2900)] = 136338, + [SMALL_STATE(2901)] = 136419, + [SMALL_STATE(2902)] = 136466, + [SMALL_STATE(2903)] = 136513, + [SMALL_STATE(2904)] = 136566, + [SMALL_STATE(2905)] = 136615, + [SMALL_STATE(2906)] = 136696, + [SMALL_STATE(2907)] = 136761, + [SMALL_STATE(2908)] = 136814, + [SMALL_STATE(2909)] = 136879, + [SMALL_STATE(2910)] = 136944, + [SMALL_STATE(2911)] = 136993, + [SMALL_STATE(2912)] = 137046, + [SMALL_STATE(2913)] = 137099, + [SMALL_STATE(2914)] = 137164, + [SMALL_STATE(2915)] = 137221, + [SMALL_STATE(2916)] = 137274, + [SMALL_STATE(2917)] = 137321, + [SMALL_STATE(2918)] = 137400, + [SMALL_STATE(2919)] = 137479, + [SMALL_STATE(2920)] = 137544, + [SMALL_STATE(2921)] = 137609, + [SMALL_STATE(2922)] = 137662, + [SMALL_STATE(2923)] = 137740, + [SMALL_STATE(2924)] = 137792, + [SMALL_STATE(2925)] = 137844, + [SMALL_STATE(2926)] = 137914, + [SMALL_STATE(2927)] = 137970, + [SMALL_STATE(2928)] = 138022, + [SMALL_STATE(2929)] = 138094, + [SMALL_STATE(2930)] = 138168, + [SMALL_STATE(2931)] = 138216, + [SMALL_STATE(2932)] = 138268, + [SMALL_STATE(2933)] = 138346, + [SMALL_STATE(2934)] = 138398, + [SMALL_STATE(2935)] = 138446, + [SMALL_STATE(2936)] = 138498, + [SMALL_STATE(2937)] = 138566, + [SMALL_STATE(2938)] = 138618, + [SMALL_STATE(2939)] = 138694, + [SMALL_STATE(2940)] = 138768, + [SMALL_STATE(2941)] = 138840, + [SMALL_STATE(2942)] = 138910, + [SMALL_STATE(2943)] = 138978, + [SMALL_STATE(2944)] = 139044, + [SMALL_STATE(2945)] = 139100, + [SMALL_STATE(2946)] = 139152, + [SMALL_STATE(2947)] = 139218, + [SMALL_STATE(2948)] = 139266, + [SMALL_STATE(2949)] = 139318, + [SMALL_STATE(2950)] = 139362, + [SMALL_STATE(2951)] = 139408, + [SMALL_STATE(2952)] = 139486, + [SMALL_STATE(2953)] = 139550, + [SMALL_STATE(2954)] = 139602, + [SMALL_STATE(2955)] = 139654, + [SMALL_STATE(2956)] = 139706, + [SMALL_STATE(2957)] = 139758, + [SMALL_STATE(2958)] = 139812, + [SMALL_STATE(2959)] = 139864, + [SMALL_STATE(2960)] = 139910, + [SMALL_STATE(2961)] = 139964, + [SMALL_STATE(2962)] = 140024, + [SMALL_STATE(2963)] = 140088, + [SMALL_STATE(2964)] = 140138, + [SMALL_STATE(2965)] = 140190, + [SMALL_STATE(2966)] = 140236, + [SMALL_STATE(2967)] = 140314, + [SMALL_STATE(2968)] = 140366, + [SMALL_STATE(2969)] = 140420, + [SMALL_STATE(2970)] = 140472, + [SMALL_STATE(2971)] = 140524, + [SMALL_STATE(2972)] = 140584, + [SMALL_STATE(2973)] = 140636, + [SMALL_STATE(2974)] = 140682, + [SMALL_STATE(2975)] = 140758, + [SMALL_STATE(2976)] = 140810, + [SMALL_STATE(2977)] = 140862, + [SMALL_STATE(2978)] = 140912, + [SMALL_STATE(2979)] = 140962, + [SMALL_STATE(2980)] = 141014, + [SMALL_STATE(2981)] = 141066, + [SMALL_STATE(2982)] = 141115, + [SMALL_STATE(2983)] = 141186, + [SMALL_STATE(2984)] = 141251, + [SMALL_STATE(2985)] = 141318, + [SMALL_STATE(2986)] = 141387, + [SMALL_STATE(2987)] = 141432, + [SMALL_STATE(2988)] = 141477, + [SMALL_STATE(2989)] = 141532, + [SMALL_STATE(2990)] = 141583, + [SMALL_STATE(2991)] = 141646, + [SMALL_STATE(2992)] = 141699, + [SMALL_STATE(2993)] = 141758, + [SMALL_STATE(2994)] = 141831, + [SMALL_STATE(2995)] = 141878, + [SMALL_STATE(2996)] = 141929, + [SMALL_STATE(2997)] = 141974, + [SMALL_STATE(2998)] = 142047, + [SMALL_STATE(2999)] = 142122, + [SMALL_STATE(3000)] = 142167, + [SMALL_STATE(3001)] = 142244, + [SMALL_STATE(3002)] = 142289, + [SMALL_STATE(3003)] = 142334, + [SMALL_STATE(3004)] = 142379, + [SMALL_STATE(3005)] = 142424, + [SMALL_STATE(3006)] = 142469, + [SMALL_STATE(3007)] = 142520, + [SMALL_STATE(3008)] = 142565, + [SMALL_STATE(3009)] = 142612, + [SMALL_STATE(3010)] = 142657, + [SMALL_STATE(3011)] = 142702, + [SMALL_STATE(3012)] = 142747, + [SMALL_STATE(3013)] = 142792, + [SMALL_STATE(3014)] = 142839, + [SMALL_STATE(3015)] = 142888, + [SMALL_STATE(3016)] = 142935, + [SMALL_STATE(3017)] = 142986, + [SMALL_STATE(3018)] = 143033, + [SMALL_STATE(3019)] = 143078, + [SMALL_STATE(3020)] = 143125, + [SMALL_STATE(3021)] = 143178, + [SMALL_STATE(3022)] = 143223, + [SMALL_STATE(3023)] = 143268, + [SMALL_STATE(3024)] = 143313, + [SMALL_STATE(3025)] = 143360, + [SMALL_STATE(3026)] = 143405, + [SMALL_STATE(3027)] = 143458, + [SMALL_STATE(3028)] = 143503, + [SMALL_STATE(3029)] = 143554, + [SMALL_STATE(3030)] = 143599, + [SMALL_STATE(3031)] = 143650, + [SMALL_STATE(3032)] = 143697, + [SMALL_STATE(3033)] = 143744, + [SMALL_STATE(3034)] = 143789, + [SMALL_STATE(3035)] = 143834, + [SMALL_STATE(3036)] = 143886, + [SMALL_STATE(3037)] = 143936, + [SMALL_STATE(3038)] = 143980, + [SMALL_STATE(3039)] = 144024, + [SMALL_STATE(3040)] = 144068, + [SMALL_STATE(3041)] = 144112, + [SMALL_STATE(3042)] = 144156, + [SMALL_STATE(3043)] = 144200, + [SMALL_STATE(3044)] = 144272, + [SMALL_STATE(3045)] = 144316, + [SMALL_STATE(3046)] = 144360, + [SMALL_STATE(3047)] = 144404, + [SMALL_STATE(3048)] = 144448, + [SMALL_STATE(3049)] = 144492, + [SMALL_STATE(3050)] = 144536, + [SMALL_STATE(3051)] = 144580, + [SMALL_STATE(3052)] = 144624, + [SMALL_STATE(3053)] = 144668, + [SMALL_STATE(3054)] = 144714, + [SMALL_STATE(3055)] = 144758, + [SMALL_STATE(3056)] = 144802, + [SMALL_STATE(3057)] = 144846, + [SMALL_STATE(3058)] = 144890, + [SMALL_STATE(3059)] = 144934, + [SMALL_STATE(3060)] = 144978, + [SMALL_STATE(3061)] = 145022, + [SMALL_STATE(3062)] = 145066, + [SMALL_STATE(3063)] = 145110, + [SMALL_STATE(3064)] = 145154, + [SMALL_STATE(3065)] = 145198, + [SMALL_STATE(3066)] = 145248, + [SMALL_STATE(3067)] = 145298, + [SMALL_STATE(3068)] = 145344, + [SMALL_STATE(3069)] = 145388, + [SMALL_STATE(3070)] = 145438, + [SMALL_STATE(3071)] = 145484, + [SMALL_STATE(3072)] = 145528, + [SMALL_STATE(3073)] = 145574, + [SMALL_STATE(3074)] = 145622, + [SMALL_STATE(3075)] = 145670, + [SMALL_STATE(3076)] = 145722, + [SMALL_STATE(3077)] = 145792, + [SMALL_STATE(3078)] = 145836, + [SMALL_STATE(3079)] = 145880, + [SMALL_STATE(3080)] = 145924, + [SMALL_STATE(3081)] = 145970, + [SMALL_STATE(3082)] = 146014, + [SMALL_STATE(3083)] = 146058, + [SMALL_STATE(3084)] = 146114, + [SMALL_STATE(3085)] = 146158, + [SMALL_STATE(3086)] = 146208, + [SMALL_STATE(3087)] = 146256, + [SMALL_STATE(3088)] = 146300, + [SMALL_STATE(3089)] = 146344, + [SMALL_STATE(3090)] = 146388, + [SMALL_STATE(3091)] = 146432, + [SMALL_STATE(3092)] = 146478, + [SMALL_STATE(3093)] = 146522, + [SMALL_STATE(3094)] = 146566, + [SMALL_STATE(3095)] = 146614, + [SMALL_STATE(3096)] = 146672, + [SMALL_STATE(3097)] = 146724, + [SMALL_STATE(3098)] = 146768, + [SMALL_STATE(3099)] = 146828, + [SMALL_STATE(3100)] = 146872, + [SMALL_STATE(3101)] = 146922, + [SMALL_STATE(3102)] = 146968, + [SMALL_STATE(3103)] = 147012, + [SMALL_STATE(3104)] = 147074, + [SMALL_STATE(3105)] = 147118, + [SMALL_STATE(3106)] = 147162, + [SMALL_STATE(3107)] = 147226, + [SMALL_STATE(3108)] = 147270, + [SMALL_STATE(3109)] = 147336, + [SMALL_STATE(3110)] = 147380, + [SMALL_STATE(3111)] = 147426, + [SMALL_STATE(3112)] = 147472, + [SMALL_STATE(3113)] = 147540, + [SMALL_STATE(3114)] = 147610, + [SMALL_STATE(3115)] = 147654, + [SMALL_STATE(3116)] = 147698, + [SMALL_STATE(3117)] = 147748, + [SMALL_STATE(3118)] = 147792, + [SMALL_STATE(3119)] = 147836, + [SMALL_STATE(3120)] = 147880, + [SMALL_STATE(3121)] = 147950, + [SMALL_STATE(3122)] = 147994, + [SMALL_STATE(3123)] = 148038, + [SMALL_STATE(3124)] = 148108, + [SMALL_STATE(3125)] = 148178, + [SMALL_STATE(3126)] = 148248, + [SMALL_STATE(3127)] = 148292, + [SMALL_STATE(3128)] = 148338, + [SMALL_STATE(3129)] = 148392, + [SMALL_STATE(3130)] = 148435, + [SMALL_STATE(3131)] = 148478, + [SMALL_STATE(3132)] = 148527, + [SMALL_STATE(3133)] = 148570, + [SMALL_STATE(3134)] = 148639, + [SMALL_STATE(3135)] = 148688, + [SMALL_STATE(3136)] = 148757, + [SMALL_STATE(3137)] = 148800, + [SMALL_STATE(3138)] = 148851, + [SMALL_STATE(3139)] = 148920, + [SMALL_STATE(3140)] = 148963, + [SMALL_STATE(3141)] = 149006, + [SMALL_STATE(3142)] = 149051, + [SMALL_STATE(3143)] = 149096, + [SMALL_STATE(3144)] = 149143, + [SMALL_STATE(3145)] = 149186, + [SMALL_STATE(3146)] = 149229, + [SMALL_STATE(3147)] = 149272, + [SMALL_STATE(3148)] = 149315, + [SMALL_STATE(3149)] = 149358, + [SMALL_STATE(3150)] = 149401, + [SMALL_STATE(3151)] = 149444, + [SMALL_STATE(3152)] = 149493, + [SMALL_STATE(3153)] = 149536, + [SMALL_STATE(3154)] = 149581, + [SMALL_STATE(3155)] = 149624, + [SMALL_STATE(3156)] = 149667, + [SMALL_STATE(3157)] = 149710, + [SMALL_STATE(3158)] = 149753, + [SMALL_STATE(3159)] = 149796, + [SMALL_STATE(3160)] = 149841, + [SMALL_STATE(3161)] = 149884, + [SMALL_STATE(3162)] = 149927, + [SMALL_STATE(3163)] = 149976, + [SMALL_STATE(3164)] = 150019, + [SMALL_STATE(3165)] = 150062, + [SMALL_STATE(3166)] = 150109, + [SMALL_STATE(3167)] = 150172, + [SMALL_STATE(3168)] = 150215, + [SMALL_STATE(3169)] = 150258, + [SMALL_STATE(3170)] = 150325, + [SMALL_STATE(3171)] = 150368, + [SMALL_STATE(3172)] = 150433, + [SMALL_STATE(3173)] = 150476, + [SMALL_STATE(3174)] = 150545, + [SMALL_STATE(3175)] = 150588, + [SMALL_STATE(3176)] = 150631, + [SMALL_STATE(3177)] = 150692, + [SMALL_STATE(3178)] = 150735, + [SMALL_STATE(3179)] = 150778, + [SMALL_STATE(3180)] = 150821, + [SMALL_STATE(3181)] = 150880, + [SMALL_STATE(3182)] = 150923, + [SMALL_STATE(3183)] = 150980, + [SMALL_STATE(3184)] = 151023, + [SMALL_STATE(3185)] = 151066, + [SMALL_STATE(3186)] = 151117, + [SMALL_STATE(3187)] = 151160, + [SMALL_STATE(3188)] = 151205, + [SMALL_STATE(3189)] = 151248, + [SMALL_STATE(3190)] = 151295, + [SMALL_STATE(3191)] = 151338, + [SMALL_STATE(3192)] = 151381, + [SMALL_STATE(3193)] = 151430, + [SMALL_STATE(3194)] = 151479, + [SMALL_STATE(3195)] = 151522, + [SMALL_STATE(3196)] = 151565, + [SMALL_STATE(3197)] = 151608, + [SMALL_STATE(3198)] = 151657, + [SMALL_STATE(3199)] = 151712, + [SMALL_STATE(3200)] = 151755, + [SMALL_STATE(3201)] = 151798, + [SMALL_STATE(3202)] = 151847, + [SMALL_STATE(3203)] = 151890, + [SMALL_STATE(3204)] = 151933, + [SMALL_STATE(3205)] = 151976, + [SMALL_STATE(3206)] = 152023, + [SMALL_STATE(3207)] = 152066, + [SMALL_STATE(3208)] = 152115, + [SMALL_STATE(3209)] = 152164, + [SMALL_STATE(3210)] = 152207, + [SMALL_STATE(3211)] = 152250, + [SMALL_STATE(3212)] = 152303, + [SMALL_STATE(3213)] = 152346, + [SMALL_STATE(3214)] = 152389, + [SMALL_STATE(3215)] = 152434, + [SMALL_STATE(3216)] = 152477, + [SMALL_STATE(3217)] = 152520, + [SMALL_STATE(3218)] = 152563, + [SMALL_STATE(3219)] = 152632, + [SMALL_STATE(3220)] = 152675, + [SMALL_STATE(3221)] = 152718, + [SMALL_STATE(3222)] = 152761, + [SMALL_STATE(3223)] = 152808, + [SMALL_STATE(3224)] = 152857, + [SMALL_STATE(3225)] = 152900, + [SMALL_STATE(3226)] = 152943, + [SMALL_STATE(3227)] = 152986, + [SMALL_STATE(3228)] = 153029, + [SMALL_STATE(3229)] = 153072, + [SMALL_STATE(3230)] = 153115, + [SMALL_STATE(3231)] = 153158, + [SMALL_STATE(3232)] = 153201, + [SMALL_STATE(3233)] = 153244, + [SMALL_STATE(3234)] = 153287, + [SMALL_STATE(3235)] = 153330, + [SMALL_STATE(3236)] = 153373, + [SMALL_STATE(3237)] = 153416, + [SMALL_STATE(3238)] = 153485, + [SMALL_STATE(3239)] = 153528, + [SMALL_STATE(3240)] = 153571, + [SMALL_STATE(3241)] = 153614, + [SMALL_STATE(3242)] = 153657, + [SMALL_STATE(3243)] = 153700, + [SMALL_STATE(3244)] = 153743, + [SMALL_STATE(3245)] = 153788, + [SMALL_STATE(3246)] = 153837, + [SMALL_STATE(3247)] = 153880, + [SMALL_STATE(3248)] = 153929, + [SMALL_STATE(3249)] = 153972, + [SMALL_STATE(3250)] = 154017, + [SMALL_STATE(3251)] = 154060, + [SMALL_STATE(3252)] = 154109, + [SMALL_STATE(3253)] = 154152, + [SMALL_STATE(3254)] = 154197, + [SMALL_STATE(3255)] = 154244, + [SMALL_STATE(3256)] = 154287, + [SMALL_STATE(3257)] = 154330, + [SMALL_STATE(3258)] = 154373, + [SMALL_STATE(3259)] = 154418, + [SMALL_STATE(3260)] = 154461, + [SMALL_STATE(3261)] = 154504, + [SMALL_STATE(3262)] = 154547, + [SMALL_STATE(3263)] = 154589, + [SMALL_STATE(3264)] = 154635, + [SMALL_STATE(3265)] = 154677, + [SMALL_STATE(3266)] = 154719, + [SMALL_STATE(3267)] = 154769, + [SMALL_STATE(3268)] = 154811, + [SMALL_STATE(3269)] = 154853, + [SMALL_STATE(3270)] = 154895, + [SMALL_STATE(3271)] = 154937, + [SMALL_STATE(3272)] = 154985, + [SMALL_STATE(3273)] = 155029, + [SMALL_STATE(3274)] = 155071, + [SMALL_STATE(3275)] = 155113, + [SMALL_STATE(3276)] = 155159, + [SMALL_STATE(3277)] = 155205, + [SMALL_STATE(3278)] = 155247, + [SMALL_STATE(3279)] = 155289, + [SMALL_STATE(3280)] = 155335, + [SMALL_STATE(3281)] = 155377, + [SMALL_STATE(3282)] = 155423, + [SMALL_STATE(3283)] = 155465, + [SMALL_STATE(3284)] = 155511, + [SMALL_STATE(3285)] = 155557, + [SMALL_STATE(3286)] = 155599, + [SMALL_STATE(3287)] = 155647, + [SMALL_STATE(3288)] = 155695, + [SMALL_STATE(3289)] = 155741, + [SMALL_STATE(3290)] = 155789, + [SMALL_STATE(3291)] = 155835, + [SMALL_STATE(3292)] = 155883, + [SMALL_STATE(3293)] = 155925, + [SMALL_STATE(3294)] = 155973, + [SMALL_STATE(3295)] = 156021, + [SMALL_STATE(3296)] = 156067, + [SMALL_STATE(3297)] = 156111, + [SMALL_STATE(3298)] = 156157, + [SMALL_STATE(3299)] = 156198, + [SMALL_STATE(3300)] = 156239, + [SMALL_STATE(3301)] = 156280, + [SMALL_STATE(3302)] = 156323, + [SMALL_STATE(3303)] = 156366, + [SMALL_STATE(3304)] = 156407, + [SMALL_STATE(3305)] = 156448, + [SMALL_STATE(3306)] = 156489, + [SMALL_STATE(3307)] = 156530, + [SMALL_STATE(3308)] = 156571, + [SMALL_STATE(3309)] = 156612, + [SMALL_STATE(3310)] = 156653, + [SMALL_STATE(3311)] = 156696, + [SMALL_STATE(3312)] = 156737, + [SMALL_STATE(3313)] = 156778, + [SMALL_STATE(3314)] = 156819, + [SMALL_STATE(3315)] = 156860, + [SMALL_STATE(3316)] = 156901, + [SMALL_STATE(3317)] = 156942, + [SMALL_STATE(3318)] = 156983, + [SMALL_STATE(3319)] = 157026, + [SMALL_STATE(3320)] = 157067, + [SMALL_STATE(3321)] = 157110, + [SMALL_STATE(3322)] = 157151, + [SMALL_STATE(3323)] = 157194, + [SMALL_STATE(3324)] = 157235, + [SMALL_STATE(3325)] = 157276, + [SMALL_STATE(3326)] = 157317, + [SMALL_STATE(3327)] = 157358, + [SMALL_STATE(3328)] = 157399, + [SMALL_STATE(3329)] = 157440, + [SMALL_STATE(3330)] = 157481, + [SMALL_STATE(3331)] = 157522, + [SMALL_STATE(3332)] = 157563, + [SMALL_STATE(3333)] = 157604, + [SMALL_STATE(3334)] = 157647, + [SMALL_STATE(3335)] = 157688, + [SMALL_STATE(3336)] = 157733, + [SMALL_STATE(3337)] = 157774, + [SMALL_STATE(3338)] = 157817, + [SMALL_STATE(3339)] = 157858, + [SMALL_STATE(3340)] = 157903, + [SMALL_STATE(3341)] = 157946, + [SMALL_STATE(3342)] = 157987, + [SMALL_STATE(3343)] = 158028, + [SMALL_STATE(3344)] = 158071, + [SMALL_STATE(3345)] = 158114, + [SMALL_STATE(3346)] = 158185, + [SMALL_STATE(3347)] = 158254, + [SMALL_STATE(3348)] = 158321, + [SMALL_STATE(3349)] = 158364, + [SMALL_STATE(3350)] = 158429, + [SMALL_STATE(3351)] = 158492, + [SMALL_STATE(3352)] = 158533, + [SMALL_STATE(3353)] = 158594, + [SMALL_STATE(3354)] = 158653, + [SMALL_STATE(3355)] = 158706, + [SMALL_STATE(3356)] = 158749, + [SMALL_STATE(3357)] = 158796, + [SMALL_STATE(3358)] = 158853, + [SMALL_STATE(3359)] = 158896, + [SMALL_STATE(3360)] = 158947, + [SMALL_STATE(3361)] = 158990, + [SMALL_STATE(3362)] = 159045, + [SMALL_STATE(3363)] = 159086, + [SMALL_STATE(3364)] = 159127, + [SMALL_STATE(3365)] = 159168, + [SMALL_STATE(3366)] = 159211, + [SMALL_STATE(3367)] = 159254, + [SMALL_STATE(3368)] = 159297, + [SMALL_STATE(3369)] = 159340, + [SMALL_STATE(3370)] = 159383, + [SMALL_STATE(3371)] = 159426, + [SMALL_STATE(3372)] = 159469, + [SMALL_STATE(3373)] = 159516, + [SMALL_STATE(3374)] = 159559, + [SMALL_STATE(3375)] = 159604, + [SMALL_STATE(3376)] = 159645, + [SMALL_STATE(3377)] = 159686, + [SMALL_STATE(3378)] = 159727, + [SMALL_STATE(3379)] = 159768, + [SMALL_STATE(3380)] = 159811, + [SMALL_STATE(3381)] = 159854, + [SMALL_STATE(3382)] = 159901, + [SMALL_STATE(3383)] = 159942, + [SMALL_STATE(3384)] = 159983, + [SMALL_STATE(3385)] = 160024, + [SMALL_STATE(3386)] = 160067, + [SMALL_STATE(3387)] = 160112, + [SMALL_STATE(3388)] = 160153, + [SMALL_STATE(3389)] = 160194, + [SMALL_STATE(3390)] = 160237, + [SMALL_STATE(3391)] = 160280, + [SMALL_STATE(3392)] = 160325, + [SMALL_STATE(3393)] = 160368, + [SMALL_STATE(3394)] = 160415, + [SMALL_STATE(3395)] = 160458, + [SMALL_STATE(3396)] = 160503, + [SMALL_STATE(3397)] = 160546, + [SMALL_STATE(3398)] = 160589, + [SMALL_STATE(3399)] = 160632, + [SMALL_STATE(3400)] = 160677, + [SMALL_STATE(3401)] = 160724, + [SMALL_STATE(3402)] = 160767, + [SMALL_STATE(3403)] = 160808, + [SMALL_STATE(3404)] = 160849, + [SMALL_STATE(3405)] = 160890, + [SMALL_STATE(3406)] = 160931, + [SMALL_STATE(3407)] = 160972, + [SMALL_STATE(3408)] = 161015, + [SMALL_STATE(3409)] = 161058, + [SMALL_STATE(3410)] = 161099, + [SMALL_STATE(3411)] = 161146, + [SMALL_STATE(3412)] = 161189, + [SMALL_STATE(3413)] = 161230, + [SMALL_STATE(3414)] = 161275, + [SMALL_STATE(3415)] = 161316, + [SMALL_STATE(3416)] = 161359, + [SMALL_STATE(3417)] = 161404, + [SMALL_STATE(3418)] = 161447, + [SMALL_STATE(3419)] = 161509, + [SMALL_STATE(3420)] = 161549, + [SMALL_STATE(3421)] = 161591, + [SMALL_STATE(3422)] = 161631, + [SMALL_STATE(3423)] = 161673, + [SMALL_STATE(3424)] = 161729, + [SMALL_STATE(3425)] = 161769, + [SMALL_STATE(3426)] = 161809, + [SMALL_STATE(3427)] = 161849, + [SMALL_STATE(3428)] = 161899, + [SMALL_STATE(3429)] = 161941, + [SMALL_STATE(3430)] = 161981, + [SMALL_STATE(3431)] = 162035, + [SMALL_STATE(3432)] = 162081, + [SMALL_STATE(3433)] = 162123, + [SMALL_STATE(3434)] = 162165, + [SMALL_STATE(3435)] = 162205, + [SMALL_STATE(3436)] = 162247, + [SMALL_STATE(3437)] = 162287, + [SMALL_STATE(3438)] = 162327, + [SMALL_STATE(3439)] = 162369, + [SMALL_STATE(3440)] = 162409, + [SMALL_STATE(3441)] = 162461, + [SMALL_STATE(3442)] = 162519, + [SMALL_STATE(3443)] = 162559, + [SMALL_STATE(3444)] = 162619, + [SMALL_STATE(3445)] = 162659, + [SMALL_STATE(3446)] = 162699, + [SMALL_STATE(3447)] = 162739, + [SMALL_STATE(3448)] = 162781, + [SMALL_STATE(3449)] = 162821, + [SMALL_STATE(3450)] = 162885, + [SMALL_STATE(3451)] = 162951, + [SMALL_STATE(3452)] = 163019, + [SMALL_STATE(3453)] = 163059, + [SMALL_STATE(3454)] = 163099, + [SMALL_STATE(3455)] = 163139, + [SMALL_STATE(3456)] = 163179, + [SMALL_STATE(3457)] = 163219, + [SMALL_STATE(3458)] = 163259, + [SMALL_STATE(3459)] = 163299, + [SMALL_STATE(3460)] = 163343, + [SMALL_STATE(3461)] = 163383, + [SMALL_STATE(3462)] = 163423, + [SMALL_STATE(3463)] = 163465, + [SMALL_STATE(3464)] = 163505, + [SMALL_STATE(3465)] = 163545, + [SMALL_STATE(3466)] = 163587, + [SMALL_STATE(3467)] = 163629, + [SMALL_STATE(3468)] = 163699, + [SMALL_STATE(3469)] = 163741, + [SMALL_STATE(3470)] = 163781, + [SMALL_STATE(3471)] = 163821, + [SMALL_STATE(3472)] = 163861, + [SMALL_STATE(3473)] = 163901, + [SMALL_STATE(3474)] = 163945, + [SMALL_STATE(3475)] = 164015, + [SMALL_STATE(3476)] = 164055, + [SMALL_STATE(3477)] = 164095, + [SMALL_STATE(3478)] = 164135, + [SMALL_STATE(3479)] = 164203, + [SMALL_STATE(3480)] = 164243, + [SMALL_STATE(3481)] = 164309, + [SMALL_STATE(3482)] = 164349, + [SMALL_STATE(3483)] = 164413, + [SMALL_STATE(3484)] = 164455, + [SMALL_STATE(3485)] = 164517, + [SMALL_STATE(3486)] = 164557, + [SMALL_STATE(3487)] = 164599, + [SMALL_STATE(3488)] = 164659, + [SMALL_STATE(3489)] = 164701, + [SMALL_STATE(3490)] = 164759, + [SMALL_STATE(3491)] = 164799, + [SMALL_STATE(3492)] = 164851, + [SMALL_STATE(3493)] = 164891, + [SMALL_STATE(3494)] = 164933, + [SMALL_STATE(3495)] = 164973, + [SMALL_STATE(3496)] = 165019, + [SMALL_STATE(3497)] = 165059, + [SMALL_STATE(3498)] = 165115, + [SMALL_STATE(3499)] = 165155, + [SMALL_STATE(3500)] = 165205, + [SMALL_STATE(3501)] = 165245, + [SMALL_STATE(3502)] = 165299, + [SMALL_STATE(3503)] = 165339, + [SMALL_STATE(3504)] = 165381, + [SMALL_STATE(3505)] = 165421, + [SMALL_STATE(3506)] = 165461, + [SMALL_STATE(3507)] = 165501, + [SMALL_STATE(3508)] = 165541, + [SMALL_STATE(3509)] = 165581, + [SMALL_STATE(3510)] = 165621, + [SMALL_STATE(3511)] = 165660, + [SMALL_STATE(3512)] = 165727, + [SMALL_STATE(3513)] = 165766, + [SMALL_STATE(3514)] = 165833, + [SMALL_STATE(3515)] = 165872, + [SMALL_STATE(3516)] = 165939, + [SMALL_STATE(3517)] = 165978, + [SMALL_STATE(3518)] = 166019, + [SMALL_STATE(3519)] = 166086, + [SMALL_STATE(3520)] = 166125, + [SMALL_STATE(3521)] = 166164, + [SMALL_STATE(3522)] = 166203, + [SMALL_STATE(3523)] = 166242, + [SMALL_STATE(3524)] = 166281, + [SMALL_STATE(3525)] = 166320, + [SMALL_STATE(3526)] = 166359, + [SMALL_STATE(3527)] = 166398, + [SMALL_STATE(3528)] = 166437, + [SMALL_STATE(3529)] = 166476, + [SMALL_STATE(3530)] = 166515, + [SMALL_STATE(3531)] = 166554, + [SMALL_STATE(3532)] = 166621, + [SMALL_STATE(3533)] = 166660, + [SMALL_STATE(3534)] = 166699, + [SMALL_STATE(3535)] = 166738, + [SMALL_STATE(3536)] = 166777, + [SMALL_STATE(3537)] = 166816, + [SMALL_STATE(3538)] = 166883, + [SMALL_STATE(3539)] = 166922, + [SMALL_STATE(3540)] = 166963, + [SMALL_STATE(3541)] = 167030, + [SMALL_STATE(3542)] = 167069, + [SMALL_STATE(3543)] = 167108, + [SMALL_STATE(3544)] = 167147, + [SMALL_STATE(3545)] = 167186, + [SMALL_STATE(3546)] = 167225, + [SMALL_STATE(3547)] = 167264, + [SMALL_STATE(3548)] = 167303, + [SMALL_STATE(3549)] = 167342, + [SMALL_STATE(3550)] = 167381, + [SMALL_STATE(3551)] = 167448, + [SMALL_STATE(3552)] = 167487, + [SMALL_STATE(3553)] = 167526, + [SMALL_STATE(3554)] = 167593, + [SMALL_STATE(3555)] = 167632, + [SMALL_STATE(3556)] = 167671, + [SMALL_STATE(3557)] = 167738, + [SMALL_STATE(3558)] = 167805, + [SMALL_STATE(3559)] = 167844, + [SMALL_STATE(3560)] = 167883, + [SMALL_STATE(3561)] = 167922, + [SMALL_STATE(3562)] = 167961, + [SMALL_STATE(3563)] = 168002, + [SMALL_STATE(3564)] = 168041, + [SMALL_STATE(3565)] = 168080, + [SMALL_STATE(3566)] = 168119, + [SMALL_STATE(3567)] = 168158, + [SMALL_STATE(3568)] = 168225, + [SMALL_STATE(3569)] = 168264, + [SMALL_STATE(3570)] = 168303, + [SMALL_STATE(3571)] = 168342, + [SMALL_STATE(3572)] = 168381, + [SMALL_STATE(3573)] = 168420, + [SMALL_STATE(3574)] = 168461, + [SMALL_STATE(3575)] = 168502, + [SMALL_STATE(3576)] = 168541, + [SMALL_STATE(3577)] = 168580, + [SMALL_STATE(3578)] = 168647, + [SMALL_STATE(3579)] = 168686, + [SMALL_STATE(3580)] = 168725, + [SMALL_STATE(3581)] = 168764, + [SMALL_STATE(3582)] = 168803, + [SMALL_STATE(3583)] = 168842, + [SMALL_STATE(3584)] = 168881, + [SMALL_STATE(3585)] = 168920, + [SMALL_STATE(3586)] = 168959, + [SMALL_STATE(3587)] = 169000, + [SMALL_STATE(3588)] = 169067, + [SMALL_STATE(3589)] = 169106, + [SMALL_STATE(3590)] = 169173, + [SMALL_STATE(3591)] = 169211, + [SMALL_STATE(3592)] = 169249, + [SMALL_STATE(3593)] = 169287, + [SMALL_STATE(3594)] = 169325, + [SMALL_STATE(3595)] = 169363, + [SMALL_STATE(3596)] = 169401, + [SMALL_STATE(3597)] = 169439, + [SMALL_STATE(3598)] = 169477, + [SMALL_STATE(3599)] = 169515, + [SMALL_STATE(3600)] = 169555, + [SMALL_STATE(3601)] = 169595, + [SMALL_STATE(3602)] = 169633, + [SMALL_STATE(3603)] = 169671, + [SMALL_STATE(3604)] = 169709, + [SMALL_STATE(3605)] = 169747, + [SMALL_STATE(3606)] = 169785, + [SMALL_STATE(3607)] = 169823, + [SMALL_STATE(3608)] = 169861, + [SMALL_STATE(3609)] = 169899, + [SMALL_STATE(3610)] = 169936, + [SMALL_STATE(3611)] = 169973, + [SMALL_STATE(3612)] = 170027, + [SMALL_STATE(3613)] = 170081, + [SMALL_STATE(3614)] = 170135, + [SMALL_STATE(3615)] = 170189, + [SMALL_STATE(3616)] = 170243, + [SMALL_STATE(3617)] = 170297, + [SMALL_STATE(3618)] = 170345, + [SMALL_STATE(3619)] = 170393, + [SMALL_STATE(3620)] = 170441, + [SMALL_STATE(3621)] = 170489, + [SMALL_STATE(3622)] = 170537, + [SMALL_STATE(3623)] = 170585, + [SMALL_STATE(3624)] = 170633, + [SMALL_STATE(3625)] = 170681, + [SMALL_STATE(3626)] = 170729, + [SMALL_STATE(3627)] = 170777, + [SMALL_STATE(3628)] = 170825, + [SMALL_STATE(3629)] = 170873, + [SMALL_STATE(3630)] = 170922, + [SMALL_STATE(3631)] = 170971, + [SMALL_STATE(3632)] = 171024, + [SMALL_STATE(3633)] = 171073, + [SMALL_STATE(3634)] = 171122, + [SMALL_STATE(3635)] = 171175, + [SMALL_STATE(3636)] = 171224, + [SMALL_STATE(3637)] = 171273, + [SMALL_STATE(3638)] = 171321, + [SMALL_STATE(3639)] = 171369, + [SMALL_STATE(3640)] = 171397, + [SMALL_STATE(3641)] = 171445, + [SMALL_STATE(3642)] = 171493, + [SMALL_STATE(3643)] = 171521, + [SMALL_STATE(3644)] = 171569, + [SMALL_STATE(3645)] = 171617, + [SMALL_STATE(3646)] = 171665, + [SMALL_STATE(3647)] = 171713, + [SMALL_STATE(3648)] = 171763, + [SMALL_STATE(3649)] = 171811, + [SMALL_STATE(3650)] = 171859, + [SMALL_STATE(3651)] = 171907, + [SMALL_STATE(3652)] = 171955, + [SMALL_STATE(3653)] = 171998, + [SMALL_STATE(3654)] = 172041, + [SMALL_STATE(3655)] = 172088, + [SMALL_STATE(3656)] = 172131, + [SMALL_STATE(3657)] = 172174, + [SMALL_STATE(3658)] = 172217, + [SMALL_STATE(3659)] = 172260, + [SMALL_STATE(3660)] = 172303, + [SMALL_STATE(3661)] = 172346, + [SMALL_STATE(3662)] = 172389, + [SMALL_STATE(3663)] = 172432, + [SMALL_STATE(3664)] = 172475, + [SMALL_STATE(3665)] = 172518, + [SMALL_STATE(3666)] = 172565, + [SMALL_STATE(3667)] = 172612, + [SMALL_STATE(3668)] = 172661, + [SMALL_STATE(3669)] = 172708, + [SMALL_STATE(3670)] = 172755, + [SMALL_STATE(3671)] = 172802, + [SMALL_STATE(3672)] = 172849, + [SMALL_STATE(3673)] = 172875, + [SMALL_STATE(3674)] = 172917, + [SMALL_STATE(3675)] = 172959, + [SMALL_STATE(3676)] = 173001, + [SMALL_STATE(3677)] = 173045, + [SMALL_STATE(3678)] = 173089, + [SMALL_STATE(3679)] = 173133, + [SMALL_STATE(3680)] = 173177, + [SMALL_STATE(3681)] = 173219, + [SMALL_STATE(3682)] = 173263, + [SMALL_STATE(3683)] = 173305, + [SMALL_STATE(3684)] = 173347, + [SMALL_STATE(3685)] = 173389, + [SMALL_STATE(3686)] = 173433, + [SMALL_STATE(3687)] = 173477, + [SMALL_STATE(3688)] = 173519, + [SMALL_STATE(3689)] = 173563, + [SMALL_STATE(3690)] = 173605, + [SMALL_STATE(3691)] = 173647, + [SMALL_STATE(3692)] = 173689, + [SMALL_STATE(3693)] = 173731, + [SMALL_STATE(3694)] = 173775, + [SMALL_STATE(3695)] = 173817, + [SMALL_STATE(3696)] = 173859, + [SMALL_STATE(3697)] = 173903, + [SMALL_STATE(3698)] = 173945, + [SMALL_STATE(3699)] = 173989, + [SMALL_STATE(3700)] = 174031, + [SMALL_STATE(3701)] = 174073, + [SMALL_STATE(3702)] = 174115, + [SMALL_STATE(3703)] = 174157, + [SMALL_STATE(3704)] = 174199, + [SMALL_STATE(3705)] = 174241, + [SMALL_STATE(3706)] = 174283, + [SMALL_STATE(3707)] = 174327, + [SMALL_STATE(3708)] = 174371, + [SMALL_STATE(3709)] = 174413, + [SMALL_STATE(3710)] = 174457, + [SMALL_STATE(3711)] = 174499, + [SMALL_STATE(3712)] = 174543, + [SMALL_STATE(3713)] = 174585, + [SMALL_STATE(3714)] = 174627, + [SMALL_STATE(3715)] = 174675, + [SMALL_STATE(3716)] = 174717, + [SMALL_STATE(3717)] = 174759, + [SMALL_STATE(3718)] = 174801, + [SMALL_STATE(3719)] = 174843, + [SMALL_STATE(3720)] = 174885, + [SMALL_STATE(3721)] = 174927, + [SMALL_STATE(3722)] = 174969, + [SMALL_STATE(3723)] = 175011, + [SMALL_STATE(3724)] = 175053, + [SMALL_STATE(3725)] = 175097, + [SMALL_STATE(3726)] = 175139, + [SMALL_STATE(3727)] = 175178, + [SMALL_STATE(3728)] = 175219, + [SMALL_STATE(3729)] = 175264, + [SMALL_STATE(3730)] = 175309, + [SMALL_STATE(3731)] = 175352, + [SMALL_STATE(3732)] = 175393, + [SMALL_STATE(3733)] = 175438, + [SMALL_STATE(3734)] = 175479, + [SMALL_STATE(3735)] = 175520, + [SMALL_STATE(3736)] = 175563, + [SMALL_STATE(3737)] = 175606, + [SMALL_STATE(3738)] = 175651, + [SMALL_STATE(3739)] = 175694, + [SMALL_STATE(3740)] = 175735, + [SMALL_STATE(3741)] = 175776, + [SMALL_STATE(3742)] = 175819, + [SMALL_STATE(3743)] = 175862, + [SMALL_STATE(3744)] = 175903, + [SMALL_STATE(3745)] = 175948, + [SMALL_STATE(3746)] = 175989, + [SMALL_STATE(3747)] = 176034, + [SMALL_STATE(3748)] = 176075, + [SMALL_STATE(3749)] = 176116, + [SMALL_STATE(3750)] = 176161, + [SMALL_STATE(3751)] = 176202, + [SMALL_STATE(3752)] = 176247, + [SMALL_STATE(3753)] = 176292, + [SMALL_STATE(3754)] = 176333, + [SMALL_STATE(3755)] = 176374, + [SMALL_STATE(3756)] = 176415, + [SMALL_STATE(3757)] = 176461, + [SMALL_STATE(3758)] = 176491, + [SMALL_STATE(3759)] = 176519, + [SMALL_STATE(3760)] = 176549, + [SMALL_STATE(3761)] = 176579, + [SMALL_STATE(3762)] = 176625, + [SMALL_STATE(3763)] = 176667, + [SMALL_STATE(3764)] = 176713, + [SMALL_STATE(3765)] = 176753, + [SMALL_STATE(3766)] = 176781, + [SMALL_STATE(3767)] = 176819, + [SMALL_STATE(3768)] = 176857, + [SMALL_STATE(3769)] = 176895, + [SMALL_STATE(3770)] = 176933, + [SMALL_STATE(3771)] = 176971, + [SMALL_STATE(3772)] = 177015, + [SMALL_STATE(3773)] = 177045, + [SMALL_STATE(3774)] = 177085, + [SMALL_STATE(3775)] = 177115, + [SMALL_STATE(3776)] = 177161, + [SMALL_STATE(3777)] = 177207, + [SMALL_STATE(3778)] = 177253, + [SMALL_STATE(3779)] = 177295, + [SMALL_STATE(3780)] = 177337, + [SMALL_STATE(3781)] = 177375, + [SMALL_STATE(3782)] = 177405, + [SMALL_STATE(3783)] = 177435, + [SMALL_STATE(3784)] = 177463, + [SMALL_STATE(3785)] = 177509, + [SMALL_STATE(3786)] = 177555, + [SMALL_STATE(3787)] = 177593, + [SMALL_STATE(3788)] = 177631, + [SMALL_STATE(3789)] = 177673, + [SMALL_STATE(3790)] = 177715, + [SMALL_STATE(3791)] = 177761, + [SMALL_STATE(3792)] = 177807, + [SMALL_STATE(3793)] = 177853, + [SMALL_STATE(3794)] = 177891, + [SMALL_STATE(3795)] = 177937, + [SMALL_STATE(3796)] = 177975, + [SMALL_STATE(3797)] = 178013, + [SMALL_STATE(3798)] = 178051, + [SMALL_STATE(3799)] = 178089, + [SMALL_STATE(3800)] = 178135, + [SMALL_STATE(3801)] = 178163, + [SMALL_STATE(3802)] = 178209, + [SMALL_STATE(3803)] = 178251, + [SMALL_STATE(3804)] = 178290, + [SMALL_STATE(3805)] = 178329, + [SMALL_STATE(3806)] = 178368, + [SMALL_STATE(3807)] = 178405, + [SMALL_STATE(3808)] = 178442, + [SMALL_STATE(3809)] = 178481, + [SMALL_STATE(3810)] = 178518, + [SMALL_STATE(3811)] = 178557, + [SMALL_STATE(3812)] = 178584, + [SMALL_STATE(3813)] = 178623, + [SMALL_STATE(3814)] = 178662, + [SMALL_STATE(3815)] = 178697, + [SMALL_STATE(3816)] = 178734, + [SMALL_STATE(3817)] = 178761, + [SMALL_STATE(3818)] = 178800, + [SMALL_STATE(3819)] = 178837, + [SMALL_STATE(3820)] = 178864, + [SMALL_STATE(3821)] = 178901, + [SMALL_STATE(3822)] = 178940, + [SMALL_STATE(3823)] = 178975, + [SMALL_STATE(3824)] = 179014, + [SMALL_STATE(3825)] = 179053, + [SMALL_STATE(3826)] = 179088, + [SMALL_STATE(3827)] = 179127, + [SMALL_STATE(3828)] = 179164, + [SMALL_STATE(3829)] = 179197, + [SMALL_STATE(3830)] = 179236, + [SMALL_STATE(3831)] = 179269, + [SMALL_STATE(3832)] = 179308, + [SMALL_STATE(3833)] = 179331, + [SMALL_STATE(3834)] = 179370, + [SMALL_STATE(3835)] = 179397, + [SMALL_STATE(3836)] = 179436, + [SMALL_STATE(3837)] = 179475, + [SMALL_STATE(3838)] = 179500, + [SMALL_STATE(3839)] = 179525, + [SMALL_STATE(3840)] = 179550, + [SMALL_STATE(3841)] = 179589, + [SMALL_STATE(3842)] = 179628, + [SMALL_STATE(3843)] = 179663, + [SMALL_STATE(3844)] = 179686, + [SMALL_STATE(3845)] = 179721, + [SMALL_STATE(3846)] = 179760, + [SMALL_STATE(3847)] = 179785, + [SMALL_STATE(3848)] = 179808, + [SMALL_STATE(3849)] = 179835, + [SMALL_STATE(3850)] = 179872, + [SMALL_STATE(3851)] = 179909, + [SMALL_STATE(3852)] = 179948, + [SMALL_STATE(3853)] = 179983, + [SMALL_STATE(3854)] = 180006, + [SMALL_STATE(3855)] = 180045, + [SMALL_STATE(3856)] = 180084, + [SMALL_STATE(3857)] = 180123, + [SMALL_STATE(3858)] = 180162, + [SMALL_STATE(3859)] = 180199, + [SMALL_STATE(3860)] = 180238, + [SMALL_STATE(3861)] = 180263, + [SMALL_STATE(3862)] = 180302, + [SMALL_STATE(3863)] = 180341, + [SMALL_STATE(3864)] = 180380, + [SMALL_STATE(3865)] = 180415, + [SMALL_STATE(3866)] = 180454, + [SMALL_STATE(3867)] = 180491, + [SMALL_STATE(3868)] = 180530, + [SMALL_STATE(3869)] = 180555, + [SMALL_STATE(3870)] = 180580, + [SMALL_STATE(3871)] = 180617, + [SMALL_STATE(3872)] = 180642, + [SMALL_STATE(3873)] = 180681, + [SMALL_STATE(3874)] = 180716, + [SMALL_STATE(3875)] = 180755, + [SMALL_STATE(3876)] = 180794, + [SMALL_STATE(3877)] = 180817, + [SMALL_STATE(3878)] = 180856, + [SMALL_STATE(3879)] = 180895, + [SMALL_STATE(3880)] = 180934, + [SMALL_STATE(3881)] = 180973, + [SMALL_STATE(3882)] = 181012, + [SMALL_STATE(3883)] = 181051, + [SMALL_STATE(3884)] = 181090, + [SMALL_STATE(3885)] = 181129, + [SMALL_STATE(3886)] = 181168, + [SMALL_STATE(3887)] = 181203, + [SMALL_STATE(3888)] = 181238, + [SMALL_STATE(3889)] = 181277, + [SMALL_STATE(3890)] = 181316, + [SMALL_STATE(3891)] = 181340, + [SMALL_STATE(3892)] = 181362, + [SMALL_STATE(3893)] = 181394, + [SMALL_STATE(3894)] = 181416, + [SMALL_STATE(3895)] = 181440, + [SMALL_STATE(3896)] = 181464, + [SMALL_STATE(3897)] = 181492, + [SMALL_STATE(3898)] = 181516, + [SMALL_STATE(3899)] = 181552, + [SMALL_STATE(3900)] = 181574, + [SMALL_STATE(3901)] = 181598, + [SMALL_STATE(3902)] = 181622, + [SMALL_STATE(3903)] = 181658, + [SMALL_STATE(3904)] = 181680, + [SMALL_STATE(3905)] = 181708, + [SMALL_STATE(3906)] = 181736, + [SMALL_STATE(3907)] = 181772, + [SMALL_STATE(3908)] = 181794, + [SMALL_STATE(3909)] = 181816, + [SMALL_STATE(3910)] = 181838, + [SMALL_STATE(3911)] = 181874, + [SMALL_STATE(3912)] = 181896, + [SMALL_STATE(3913)] = 181918, + [SMALL_STATE(3914)] = 181940, + [SMALL_STATE(3915)] = 181962, + [SMALL_STATE(3916)] = 181984, + [SMALL_STATE(3917)] = 182006, + [SMALL_STATE(3918)] = 182028, + [SMALL_STATE(3919)] = 182050, + [SMALL_STATE(3920)] = 182072, + [SMALL_STATE(3921)] = 182108, + [SMALL_STATE(3922)] = 182130, + [SMALL_STATE(3923)] = 182152, + [SMALL_STATE(3924)] = 182174, + [SMALL_STATE(3925)] = 182210, + [SMALL_STATE(3926)] = 182232, + [SMALL_STATE(3927)] = 182268, + [SMALL_STATE(3928)] = 182304, + [SMALL_STATE(3929)] = 182342, + [SMALL_STATE(3930)] = 182364, + [SMALL_STATE(3931)] = 182396, + [SMALL_STATE(3932)] = 182431, + [SMALL_STATE(3933)] = 182458, + [SMALL_STATE(3934)] = 182491, + [SMALL_STATE(3935)] = 182524, + [SMALL_STATE(3936)] = 182545, + [SMALL_STATE(3937)] = 182578, + [SMALL_STATE(3938)] = 182599, + [SMALL_STATE(3939)] = 182620, + [SMALL_STATE(3940)] = 182641, + [SMALL_STATE(3941)] = 182662, + [SMALL_STATE(3942)] = 182697, + [SMALL_STATE(3943)] = 182718, + [SMALL_STATE(3944)] = 182739, + [SMALL_STATE(3945)] = 182772, + [SMALL_STATE(3946)] = 182805, + [SMALL_STATE(3947)] = 182838, + [SMALL_STATE(3948)] = 182871, + [SMALL_STATE(3949)] = 182904, + [SMALL_STATE(3950)] = 182937, + [SMALL_STATE(3951)] = 182970, + [SMALL_STATE(3952)] = 183003, + [SMALL_STATE(3953)] = 183036, + [SMALL_STATE(3954)] = 183055, + [SMALL_STATE(3955)] = 183076, + [SMALL_STATE(3956)] = 183109, + [SMALL_STATE(3957)] = 183130, + [SMALL_STATE(3958)] = 183151, + [SMALL_STATE(3959)] = 183184, + [SMALL_STATE(3960)] = 183217, + [SMALL_STATE(3961)] = 183250, + [SMALL_STATE(3962)] = 183283, + [SMALL_STATE(3963)] = 183316, + [SMALL_STATE(3964)] = 183349, + [SMALL_STATE(3965)] = 183370, + [SMALL_STATE(3966)] = 183403, + [SMALL_STATE(3967)] = 183436, + [SMALL_STATE(3968)] = 183457, + [SMALL_STATE(3969)] = 183490, + [SMALL_STATE(3970)] = 183511, + [SMALL_STATE(3971)] = 183532, + [SMALL_STATE(3972)] = 183553, + [SMALL_STATE(3973)] = 183574, + [SMALL_STATE(3974)] = 183595, + [SMALL_STATE(3975)] = 183616, + [SMALL_STATE(3976)] = 183637, + [SMALL_STATE(3977)] = 183658, + [SMALL_STATE(3978)] = 183679, + [SMALL_STATE(3979)] = 183700, + [SMALL_STATE(3980)] = 183721, + [SMALL_STATE(3981)] = 183742, + [SMALL_STATE(3982)] = 183763, + [SMALL_STATE(3983)] = 183790, + [SMALL_STATE(3984)] = 183811, + [SMALL_STATE(3985)] = 183832, + [SMALL_STATE(3986)] = 183853, + [SMALL_STATE(3987)] = 183888, + [SMALL_STATE(3988)] = 183909, + [SMALL_STATE(3989)] = 183930, + [SMALL_STATE(3990)] = 183951, + [SMALL_STATE(3991)] = 183972, + [SMALL_STATE(3992)] = 183993, + [SMALL_STATE(3993)] = 184014, + [SMALL_STATE(3994)] = 184035, + [SMALL_STATE(3995)] = 184068, + [SMALL_STATE(3996)] = 184089, + [SMALL_STATE(3997)] = 184110, + [SMALL_STATE(3998)] = 184131, + [SMALL_STATE(3999)] = 184152, + [SMALL_STATE(4000)] = 184173, + [SMALL_STATE(4001)] = 184194, + [SMALL_STATE(4002)] = 184213, + [SMALL_STATE(4003)] = 184234, + [SMALL_STATE(4004)] = 184267, + [SMALL_STATE(4005)] = 184288, + [SMALL_STATE(4006)] = 184309, + [SMALL_STATE(4007)] = 184342, + [SMALL_STATE(4008)] = 184363, + [SMALL_STATE(4009)] = 184396, + [SMALL_STATE(4010)] = 184429, + [SMALL_STATE(4011)] = 184462, + [SMALL_STATE(4012)] = 184483, + [SMALL_STATE(4013)] = 184502, + [SMALL_STATE(4014)] = 184537, + [SMALL_STATE(4015)] = 184570, + [SMALL_STATE(4016)] = 184603, + [SMALL_STATE(4017)] = 184636, + [SMALL_STATE(4018)] = 184657, + [SMALL_STATE(4019)] = 184690, + [SMALL_STATE(4020)] = 184725, + [SMALL_STATE(4021)] = 184758, + [SMALL_STATE(4022)] = 184779, + [SMALL_STATE(4023)] = 184812, + [SMALL_STATE(4024)] = 184833, + [SMALL_STATE(4025)] = 184860, + [SMALL_STATE(4026)] = 184881, + [SMALL_STATE(4027)] = 184914, + [SMALL_STATE(4028)] = 184947, + [SMALL_STATE(4029)] = 184980, + [SMALL_STATE(4030)] = 185015, + [SMALL_STATE(4031)] = 185048, + [SMALL_STATE(4032)] = 185067, + [SMALL_STATE(4033)] = 185100, + [SMALL_STATE(4034)] = 185133, + [SMALL_STATE(4035)] = 185168, + [SMALL_STATE(4036)] = 185201, + [SMALL_STATE(4037)] = 185222, + [SMALL_STATE(4038)] = 185255, + [SMALL_STATE(4039)] = 185288, + [SMALL_STATE(4040)] = 185321, + [SMALL_STATE(4041)] = 185342, + [SMALL_STATE(4042)] = 185363, + [SMALL_STATE(4043)] = 185396, + [SMALL_STATE(4044)] = 185429, + [SMALL_STATE(4045)] = 185450, + [SMALL_STATE(4046)] = 185469, + [SMALL_STATE(4047)] = 185502, + [SMALL_STATE(4048)] = 185535, + [SMALL_STATE(4049)] = 185570, + [SMALL_STATE(4050)] = 185603, + [SMALL_STATE(4051)] = 185638, + [SMALL_STATE(4052)] = 185671, + [SMALL_STATE(4053)] = 185704, + [SMALL_STATE(4054)] = 185737, + [SMALL_STATE(4055)] = 185770, + [SMALL_STATE(4056)] = 185803, + [SMALL_STATE(4057)] = 185836, + [SMALL_STATE(4058)] = 185869, + [SMALL_STATE(4059)] = 185902, + [SMALL_STATE(4060)] = 185935, + [SMALL_STATE(4061)] = 185968, + [SMALL_STATE(4062)] = 186001, + [SMALL_STATE(4063)] = 186034, + [SMALL_STATE(4064)] = 186067, + [SMALL_STATE(4065)] = 186100, + [SMALL_STATE(4066)] = 186133, + [SMALL_STATE(4067)] = 186166, + [SMALL_STATE(4068)] = 186199, + [SMALL_STATE(4069)] = 186232, + [SMALL_STATE(4070)] = 186265, + [SMALL_STATE(4071)] = 186298, + [SMALL_STATE(4072)] = 186331, + [SMALL_STATE(4073)] = 186364, + [SMALL_STATE(4074)] = 186397, + [SMALL_STATE(4075)] = 186430, + [SMALL_STATE(4076)] = 186463, + [SMALL_STATE(4077)] = 186496, + [SMALL_STATE(4078)] = 186529, + [SMALL_STATE(4079)] = 186562, + [SMALL_STATE(4080)] = 186595, + [SMALL_STATE(4081)] = 186628, + [SMALL_STATE(4082)] = 186661, + [SMALL_STATE(4083)] = 186694, + [SMALL_STATE(4084)] = 186727, + [SMALL_STATE(4085)] = 186760, + [SMALL_STATE(4086)] = 186793, + [SMALL_STATE(4087)] = 186819, + [SMALL_STATE(4088)] = 186849, + [SMALL_STATE(4089)] = 186875, + [SMALL_STATE(4090)] = 186901, + [SMALL_STATE(4091)] = 186927, + [SMALL_STATE(4092)] = 186949, + [SMALL_STATE(4093)] = 186975, + [SMALL_STATE(4094)] = 187001, + [SMALL_STATE(4095)] = 187033, + [SMALL_STATE(4096)] = 187059, + [SMALL_STATE(4097)] = 187091, + [SMALL_STATE(4098)] = 187117, + [SMALL_STATE(4099)] = 187143, + [SMALL_STATE(4100)] = 187169, + [SMALL_STATE(4101)] = 187195, + [SMALL_STATE(4102)] = 187221, + [SMALL_STATE(4103)] = 187247, + [SMALL_STATE(4104)] = 187273, + [SMALL_STATE(4105)] = 187299, + [SMALL_STATE(4106)] = 187325, + [SMALL_STATE(4107)] = 187351, + [SMALL_STATE(4108)] = 187383, + [SMALL_STATE(4109)] = 187409, + [SMALL_STATE(4110)] = 187435, + [SMALL_STATE(4111)] = 187467, + [SMALL_STATE(4112)] = 187489, + [SMALL_STATE(4113)] = 187515, + [SMALL_STATE(4114)] = 187541, + [SMALL_STATE(4115)] = 187573, + [SMALL_STATE(4116)] = 187599, + [SMALL_STATE(4117)] = 187625, + [SMALL_STATE(4118)] = 187647, + [SMALL_STATE(4119)] = 187679, + [SMALL_STATE(4120)] = 187705, + [SMALL_STATE(4121)] = 187731, + [SMALL_STATE(4122)] = 187757, + [SMALL_STATE(4123)] = 187783, + [SMALL_STATE(4124)] = 187809, + [SMALL_STATE(4125)] = 187835, + [SMALL_STATE(4126)] = 187861, + [SMALL_STATE(4127)] = 187887, + [SMALL_STATE(4128)] = 187913, + [SMALL_STATE(4129)] = 187939, + [SMALL_STATE(4130)] = 187957, + [SMALL_STATE(4131)] = 187981, + [SMALL_STATE(4132)] = 187999, + [SMALL_STATE(4133)] = 188025, + [SMALL_STATE(4134)] = 188049, + [SMALL_STATE(4135)] = 188075, + [SMALL_STATE(4136)] = 188101, + [SMALL_STATE(4137)] = 188123, + [SMALL_STATE(4138)] = 188149, + [SMALL_STATE(4139)] = 188175, + [SMALL_STATE(4140)] = 188201, + [SMALL_STATE(4141)] = 188220, + [SMALL_STATE(4142)] = 188245, + [SMALL_STATE(4143)] = 188266, + [SMALL_STATE(4144)] = 188295, + [SMALL_STATE(4145)] = 188324, + [SMALL_STATE(4146)] = 188343, + [SMALL_STATE(4147)] = 188368, + [SMALL_STATE(4148)] = 188399, + [SMALL_STATE(4149)] = 188424, + [SMALL_STATE(4150)] = 188447, + [SMALL_STATE(4151)] = 188478, + [SMALL_STATE(4152)] = 188503, + [SMALL_STATE(4153)] = 188528, + [SMALL_STATE(4154)] = 188553, + [SMALL_STATE(4155)] = 188582, + [SMALL_STATE(4156)] = 188611, + [SMALL_STATE(4157)] = 188630, + [SMALL_STATE(4158)] = 188653, + [SMALL_STATE(4159)] = 188680, + [SMALL_STATE(4160)] = 188699, + [SMALL_STATE(4161)] = 188728, + [SMALL_STATE(4162)] = 188751, + [SMALL_STATE(4163)] = 188774, + [SMALL_STATE(4164)] = 188799, + [SMALL_STATE(4165)] = 188824, + [SMALL_STATE(4166)] = 188855, + [SMALL_STATE(4167)] = 188884, + [SMALL_STATE(4168)] = 188903, + [SMALL_STATE(4169)] = 188924, + [SMALL_STATE(4170)] = 188947, + [SMALL_STATE(4171)] = 188972, + [SMALL_STATE(4172)] = 188997, + [SMALL_STATE(4173)] = 189022, + [SMALL_STATE(4174)] = 189047, + [SMALL_STATE(4175)] = 189072, + [SMALL_STATE(4176)] = 189097, + [SMALL_STATE(4177)] = 189122, + [SMALL_STATE(4178)] = 189141, + [SMALL_STATE(4179)] = 189164, + [SMALL_STATE(4180)] = 189189, + [SMALL_STATE(4181)] = 189214, + [SMALL_STATE(4182)] = 189239, + [SMALL_STATE(4183)] = 189268, + [SMALL_STATE(4184)] = 189297, + [SMALL_STATE(4185)] = 189326, + [SMALL_STATE(4186)] = 189351, + [SMALL_STATE(4187)] = 189370, + [SMALL_STATE(4188)] = 189393, + [SMALL_STATE(4189)] = 189414, + [SMALL_STATE(4190)] = 189433, + [SMALL_STATE(4191)] = 189458, + [SMALL_STATE(4192)] = 189481, + [SMALL_STATE(4193)] = 189500, + [SMALL_STATE(4194)] = 189521, + [SMALL_STATE(4195)] = 189546, + [SMALL_STATE(4196)] = 189569, + [SMALL_STATE(4197)] = 189592, + [SMALL_STATE(4198)] = 189617, + [SMALL_STATE(4199)] = 189638, + [SMALL_STATE(4200)] = 189663, + [SMALL_STATE(4201)] = 189688, + [SMALL_STATE(4202)] = 189713, + [SMALL_STATE(4203)] = 189738, + [SMALL_STATE(4204)] = 189763, + [SMALL_STATE(4205)] = 189788, + [SMALL_STATE(4206)] = 189813, + [SMALL_STATE(4207)] = 189838, + [SMALL_STATE(4208)] = 189863, + [SMALL_STATE(4209)] = 189888, + [SMALL_STATE(4210)] = 189913, + [SMALL_STATE(4211)] = 189938, + [SMALL_STATE(4212)] = 189963, + [SMALL_STATE(4213)] = 189982, + [SMALL_STATE(4214)] = 190007, + [SMALL_STATE(4215)] = 190032, + [SMALL_STATE(4216)] = 190057, + [SMALL_STATE(4217)] = 190076, + [SMALL_STATE(4218)] = 190101, + [SMALL_STATE(4219)] = 190126, + [SMALL_STATE(4220)] = 190151, + [SMALL_STATE(4221)] = 190180, + [SMALL_STATE(4222)] = 190205, + [SMALL_STATE(4223)] = 190230, + [SMALL_STATE(4224)] = 190249, + [SMALL_STATE(4225)] = 190275, + [SMALL_STATE(4226)] = 190293, + [SMALL_STATE(4227)] = 190319, + [SMALL_STATE(4228)] = 190345, + [SMALL_STATE(4229)] = 190363, + [SMALL_STATE(4230)] = 190389, + [SMALL_STATE(4231)] = 190413, + [SMALL_STATE(4232)] = 190431, + [SMALL_STATE(4233)] = 190455, + [SMALL_STATE(4234)] = 190479, + [SMALL_STATE(4235)] = 190497, + [SMALL_STATE(4236)] = 190519, + [SMALL_STATE(4237)] = 190545, + [SMALL_STATE(4238)] = 190571, + [SMALL_STATE(4239)] = 190589, + [SMALL_STATE(4240)] = 190613, + [SMALL_STATE(4241)] = 190639, + [SMALL_STATE(4242)] = 190667, + [SMALL_STATE(4243)] = 190693, + [SMALL_STATE(4244)] = 190719, + [SMALL_STATE(4245)] = 190745, + [SMALL_STATE(4246)] = 190771, + [SMALL_STATE(4247)] = 190799, + [SMALL_STATE(4248)] = 190827, + [SMALL_STATE(4249)] = 190847, + [SMALL_STATE(4250)] = 190867, + [SMALL_STATE(4251)] = 190893, + [SMALL_STATE(4252)] = 190915, + [SMALL_STATE(4253)] = 190943, + [SMALL_STATE(4254)] = 190963, + [SMALL_STATE(4255)] = 190983, + [SMALL_STATE(4256)] = 191009, + [SMALL_STATE(4257)] = 191035, + [SMALL_STATE(4258)] = 191061, + [SMALL_STATE(4259)] = 191083, + [SMALL_STATE(4260)] = 191103, + [SMALL_STATE(4261)] = 191123, + [SMALL_STATE(4262)] = 191145, + [SMALL_STATE(4263)] = 191169, + [SMALL_STATE(4264)] = 191193, + [SMALL_STATE(4265)] = 191219, + [SMALL_STATE(4266)] = 191247, + [SMALL_STATE(4267)] = 191265, + [SMALL_STATE(4268)] = 191285, + [SMALL_STATE(4269)] = 191313, + [SMALL_STATE(4270)] = 191333, + [SMALL_STATE(4271)] = 191359, + [SMALL_STATE(4272)] = 191383, + [SMALL_STATE(4273)] = 191403, + [SMALL_STATE(4274)] = 191425, + [SMALL_STATE(4275)] = 191443, + [SMALL_STATE(4276)] = 191471, + [SMALL_STATE(4277)] = 191489, + [SMALL_STATE(4278)] = 191509, + [SMALL_STATE(4279)] = 191537, + [SMALL_STATE(4280)] = 191565, + [SMALL_STATE(4281)] = 191591, + [SMALL_STATE(4282)] = 191611, + [SMALL_STATE(4283)] = 191631, + [SMALL_STATE(4284)] = 191653, + [SMALL_STATE(4285)] = 191679, + [SMALL_STATE(4286)] = 191701, + [SMALL_STATE(4287)] = 191727, + [SMALL_STATE(4288)] = 191753, + [SMALL_STATE(4289)] = 191781, + [SMALL_STATE(4290)] = 191807, + [SMALL_STATE(4291)] = 191833, + [SMALL_STATE(4292)] = 191859, + [SMALL_STATE(4293)] = 191881, + [SMALL_STATE(4294)] = 191903, + [SMALL_STATE(4295)] = 191929, + [SMALL_STATE(4296)] = 191957, + [SMALL_STATE(4297)] = 191983, + [SMALL_STATE(4298)] = 192003, + [SMALL_STATE(4299)] = 192029, + [SMALL_STATE(4300)] = 192049, + [SMALL_STATE(4301)] = 192075, + [SMALL_STATE(4302)] = 192101, + [SMALL_STATE(4303)] = 192129, + [SMALL_STATE(4304)] = 192149, + [SMALL_STATE(4305)] = 192177, + [SMALL_STATE(4306)] = 192193, + [SMALL_STATE(4307)] = 192219, + [SMALL_STATE(4308)] = 192245, + [SMALL_STATE(4309)] = 192271, + [SMALL_STATE(4310)] = 192293, + [SMALL_STATE(4311)] = 192315, + [SMALL_STATE(4312)] = 192335, + [SMALL_STATE(4313)] = 192361, + [SMALL_STATE(4314)] = 192387, + [SMALL_STATE(4315)] = 192415, + [SMALL_STATE(4316)] = 192443, + [SMALL_STATE(4317)] = 192469, + [SMALL_STATE(4318)] = 192495, + [SMALL_STATE(4319)] = 192517, + [SMALL_STATE(4320)] = 192537, + [SMALL_STATE(4321)] = 192552, + [SMALL_STATE(4322)] = 192575, + [SMALL_STATE(4323)] = 192598, + [SMALL_STATE(4324)] = 192621, + [SMALL_STATE(4325)] = 192644, + [SMALL_STATE(4326)] = 192667, + [SMALL_STATE(4327)] = 192690, + [SMALL_STATE(4328)] = 192713, + [SMALL_STATE(4329)] = 192730, + [SMALL_STATE(4330)] = 192753, + [SMALL_STATE(4331)] = 192776, + [SMALL_STATE(4332)] = 192791, + [SMALL_STATE(4333)] = 192808, + [SMALL_STATE(4334)] = 192825, + [SMALL_STATE(4335)] = 192848, + [SMALL_STATE(4336)] = 192865, + [SMALL_STATE(4337)] = 192888, + [SMALL_STATE(4338)] = 192905, + [SMALL_STATE(4339)] = 192928, + [SMALL_STATE(4340)] = 192951, + [SMALL_STATE(4341)] = 192974, + [SMALL_STATE(4342)] = 192997, + [SMALL_STATE(4343)] = 193022, + [SMALL_STATE(4344)] = 193039, + [SMALL_STATE(4345)] = 193056, + [SMALL_STATE(4346)] = 193073, + [SMALL_STATE(4347)] = 193090, + [SMALL_STATE(4348)] = 193113, + [SMALL_STATE(4349)] = 193130, + [SMALL_STATE(4350)] = 193155, + [SMALL_STATE(4351)] = 193180, + [SMALL_STATE(4352)] = 193201, + [SMALL_STATE(4353)] = 193226, + [SMALL_STATE(4354)] = 193251, + [SMALL_STATE(4355)] = 193268, + [SMALL_STATE(4356)] = 193285, + [SMALL_STATE(4357)] = 193306, + [SMALL_STATE(4358)] = 193327, + [SMALL_STATE(4359)] = 193352, + [SMALL_STATE(4360)] = 193373, + [SMALL_STATE(4361)] = 193390, + [SMALL_STATE(4362)] = 193407, + [SMALL_STATE(4363)] = 193424, + [SMALL_STATE(4364)] = 193441, + [SMALL_STATE(4365)] = 193458, + [SMALL_STATE(4366)] = 193475, + [SMALL_STATE(4367)] = 193492, + [SMALL_STATE(4368)] = 193509, + [SMALL_STATE(4369)] = 193532, + [SMALL_STATE(4370)] = 193549, + [SMALL_STATE(4371)] = 193572, + [SMALL_STATE(4372)] = 193589, + [SMALL_STATE(4373)] = 193606, + [SMALL_STATE(4374)] = 193623, + [SMALL_STATE(4375)] = 193644, + [SMALL_STATE(4376)] = 193661, + [SMALL_STATE(4377)] = 193678, + [SMALL_STATE(4378)] = 193701, + [SMALL_STATE(4379)] = 193718, + [SMALL_STATE(4380)] = 193735, + [SMALL_STATE(4381)] = 193754, + [SMALL_STATE(4382)] = 193771, + [SMALL_STATE(4383)] = 193794, + [SMALL_STATE(4384)] = 193811, + [SMALL_STATE(4385)] = 193828, + [SMALL_STATE(4386)] = 193845, + [SMALL_STATE(4387)] = 193862, + [SMALL_STATE(4388)] = 193879, + [SMALL_STATE(4389)] = 193896, + [SMALL_STATE(4390)] = 193913, + [SMALL_STATE(4391)] = 193930, + [SMALL_STATE(4392)] = 193947, + [SMALL_STATE(4393)] = 193964, + [SMALL_STATE(4394)] = 193981, + [SMALL_STATE(4395)] = 193998, + [SMALL_STATE(4396)] = 194023, + [SMALL_STATE(4397)] = 194046, + [SMALL_STATE(4398)] = 194063, + [SMALL_STATE(4399)] = 194080, + [SMALL_STATE(4400)] = 194097, + [SMALL_STATE(4401)] = 194114, + [SMALL_STATE(4402)] = 194131, + [SMALL_STATE(4403)] = 194148, + [SMALL_STATE(4404)] = 194167, + [SMALL_STATE(4405)] = 194186, + [SMALL_STATE(4406)] = 194209, + [SMALL_STATE(4407)] = 194230, + [SMALL_STATE(4408)] = 194245, + [SMALL_STATE(4409)] = 194270, + [SMALL_STATE(4410)] = 194285, + [SMALL_STATE(4411)] = 194302, + [SMALL_STATE(4412)] = 194317, + [SMALL_STATE(4413)] = 194336, + [SMALL_STATE(4414)] = 194353, + [SMALL_STATE(4415)] = 194376, + [SMALL_STATE(4416)] = 194399, + [SMALL_STATE(4417)] = 194424, + [SMALL_STATE(4418)] = 194443, + [SMALL_STATE(4419)] = 194460, + [SMALL_STATE(4420)] = 194483, + [SMALL_STATE(4421)] = 194506, + [SMALL_STATE(4422)] = 194527, + [SMALL_STATE(4423)] = 194550, + [SMALL_STATE(4424)] = 194567, + [SMALL_STATE(4425)] = 194584, + [SMALL_STATE(4426)] = 194601, + [SMALL_STATE(4427)] = 194624, + [SMALL_STATE(4428)] = 194641, + [SMALL_STATE(4429)] = 194656, + [SMALL_STATE(4430)] = 194673, + [SMALL_STATE(4431)] = 194690, + [SMALL_STATE(4432)] = 194713, + [SMALL_STATE(4433)] = 194730, + [SMALL_STATE(4434)] = 194753, + [SMALL_STATE(4435)] = 194774, + [SMALL_STATE(4436)] = 194797, + [SMALL_STATE(4437)] = 194820, + [SMALL_STATE(4438)] = 194843, + [SMALL_STATE(4439)] = 194860, + [SMALL_STATE(4440)] = 194881, + [SMALL_STATE(4441)] = 194904, + [SMALL_STATE(4442)] = 194929, + [SMALL_STATE(4443)] = 194954, + [SMALL_STATE(4444)] = 194979, + [SMALL_STATE(4445)] = 195004, + [SMALL_STATE(4446)] = 195029, + [SMALL_STATE(4447)] = 195052, + [SMALL_STATE(4448)] = 195073, + [SMALL_STATE(4449)] = 195096, + [SMALL_STATE(4450)] = 195121, + [SMALL_STATE(4451)] = 195140, + [SMALL_STATE(4452)] = 195165, + [SMALL_STATE(4453)] = 195184, + [SMALL_STATE(4454)] = 195207, + [SMALL_STATE(4455)] = 195226, + [SMALL_STATE(4456)] = 195245, + [SMALL_STATE(4457)] = 195270, + [SMALL_STATE(4458)] = 195289, + [SMALL_STATE(4459)] = 195312, + [SMALL_STATE(4460)] = 195329, + [SMALL_STATE(4461)] = 195352, + [SMALL_STATE(4462)] = 195375, + [SMALL_STATE(4463)] = 195398, + [SMALL_STATE(4464)] = 195417, + [SMALL_STATE(4465)] = 195438, + [SMALL_STATE(4466)] = 195457, + [SMALL_STATE(4467)] = 195476, + [SMALL_STATE(4468)] = 195495, + [SMALL_STATE(4469)] = 195514, + [SMALL_STATE(4470)] = 195537, + [SMALL_STATE(4471)] = 195558, + [SMALL_STATE(4472)] = 195575, + [SMALL_STATE(4473)] = 195598, + [SMALL_STATE(4474)] = 195615, + [SMALL_STATE(4475)] = 195630, + [SMALL_STATE(4476)] = 195649, + [SMALL_STATE(4477)] = 195670, + [SMALL_STATE(4478)] = 195685, + [SMALL_STATE(4479)] = 195708, + [SMALL_STATE(4480)] = 195731, + [SMALL_STATE(4481)] = 195754, + [SMALL_STATE(4482)] = 195773, + [SMALL_STATE(4483)] = 195794, + [SMALL_STATE(4484)] = 195819, + [SMALL_STATE(4485)] = 195838, + [SMALL_STATE(4486)] = 195857, + [SMALL_STATE(4487)] = 195880, + [SMALL_STATE(4488)] = 195899, + [SMALL_STATE(4489)] = 195920, + [SMALL_STATE(4490)] = 195943, + [SMALL_STATE(4491)] = 195966, + [SMALL_STATE(4492)] = 195989, + [SMALL_STATE(4493)] = 196012, + [SMALL_STATE(4494)] = 196033, + [SMALL_STATE(4495)] = 196050, + [SMALL_STATE(4496)] = 196075, + [SMALL_STATE(4497)] = 196098, + [SMALL_STATE(4498)] = 196114, + [SMALL_STATE(4499)] = 196130, + [SMALL_STATE(4500)] = 196150, + [SMALL_STATE(4501)] = 196170, + [SMALL_STATE(4502)] = 196188, + [SMALL_STATE(4503)] = 196202, + [SMALL_STATE(4504)] = 196216, + [SMALL_STATE(4505)] = 196232, + [SMALL_STATE(4506)] = 196254, + [SMALL_STATE(4507)] = 196270, + [SMALL_STATE(4508)] = 196286, + [SMALL_STATE(4509)] = 196300, + [SMALL_STATE(4510)] = 196316, + [SMALL_STATE(4511)] = 196332, + [SMALL_STATE(4512)] = 196354, + [SMALL_STATE(4513)] = 196370, + [SMALL_STATE(4514)] = 196390, + [SMALL_STATE(4515)] = 196406, + [SMALL_STATE(4516)] = 196422, + [SMALL_STATE(4517)] = 196438, + [SMALL_STATE(4518)] = 196454, + [SMALL_STATE(4519)] = 196472, + [SMALL_STATE(4520)] = 196494, + [SMALL_STATE(4521)] = 196510, + [SMALL_STATE(4522)] = 196526, + [SMALL_STATE(4523)] = 196542, + [SMALL_STATE(4524)] = 196558, + [SMALL_STATE(4525)] = 196574, + [SMALL_STATE(4526)] = 196590, + [SMALL_STATE(4527)] = 196606, + [SMALL_STATE(4528)] = 196620, + [SMALL_STATE(4529)] = 196634, + [SMALL_STATE(4530)] = 196654, + [SMALL_STATE(4531)] = 196668, + [SMALL_STATE(4532)] = 196684, + [SMALL_STATE(4533)] = 196706, + [SMALL_STATE(4534)] = 196722, + [SMALL_STATE(4535)] = 196736, + [SMALL_STATE(4536)] = 196754, + [SMALL_STATE(4537)] = 196776, + [SMALL_STATE(4538)] = 196792, + [SMALL_STATE(4539)] = 196808, + [SMALL_STATE(4540)] = 196830, + [SMALL_STATE(4541)] = 196846, + [SMALL_STATE(4542)] = 196860, + [SMALL_STATE(4543)] = 196880, + [SMALL_STATE(4544)] = 196898, + [SMALL_STATE(4545)] = 196914, + [SMALL_STATE(4546)] = 196930, + [SMALL_STATE(4547)] = 196946, + [SMALL_STATE(4548)] = 196964, + [SMALL_STATE(4549)] = 196980, + [SMALL_STATE(4550)] = 196994, + [SMALL_STATE(4551)] = 197008, + [SMALL_STATE(4552)] = 197024, + [SMALL_STATE(4553)] = 197042, + [SMALL_STATE(4554)] = 197058, + [SMALL_STATE(4555)] = 197074, + [SMALL_STATE(4556)] = 197090, + [SMALL_STATE(4557)] = 197108, + [SMALL_STATE(4558)] = 197124, + [SMALL_STATE(4559)] = 197140, + [SMALL_STATE(4560)] = 197160, + [SMALL_STATE(4561)] = 197176, + [SMALL_STATE(4562)] = 197194, + [SMALL_STATE(4563)] = 197214, + [SMALL_STATE(4564)] = 197230, + [SMALL_STATE(4565)] = 197244, + [SMALL_STATE(4566)] = 197266, + [SMALL_STATE(4567)] = 197280, + [SMALL_STATE(4568)] = 197294, + [SMALL_STATE(4569)] = 197308, + [SMALL_STATE(4570)] = 197324, + [SMALL_STATE(4571)] = 197340, + [SMALL_STATE(4572)] = 197354, + [SMALL_STATE(4573)] = 197374, + [SMALL_STATE(4574)] = 197394, + [SMALL_STATE(4575)] = 197414, + [SMALL_STATE(4576)] = 197434, + [SMALL_STATE(4577)] = 197454, + [SMALL_STATE(4578)] = 197468, + [SMALL_STATE(4579)] = 197484, + [SMALL_STATE(4580)] = 197504, + [SMALL_STATE(4581)] = 197524, + [SMALL_STATE(4582)] = 197544, + [SMALL_STATE(4583)] = 197564, + [SMALL_STATE(4584)] = 197578, + [SMALL_STATE(4585)] = 197592, + [SMALL_STATE(4586)] = 197606, + [SMALL_STATE(4587)] = 197626, + [SMALL_STATE(4588)] = 197646, + [SMALL_STATE(4589)] = 197662, + [SMALL_STATE(4590)] = 197676, + [SMALL_STATE(4591)] = 197692, + [SMALL_STATE(4592)] = 197712, + [SMALL_STATE(4593)] = 197728, + [SMALL_STATE(4594)] = 197742, + [SMALL_STATE(4595)] = 197756, + [SMALL_STATE(4596)] = 197778, + [SMALL_STATE(4597)] = 197798, + [SMALL_STATE(4598)] = 197812, + [SMALL_STATE(4599)] = 197832, + [SMALL_STATE(4600)] = 197854, + [SMALL_STATE(4601)] = 197868, + [SMALL_STATE(4602)] = 197888, + [SMALL_STATE(4603)] = 197902, + [SMALL_STATE(4604)] = 197918, + [SMALL_STATE(4605)] = 197940, + [SMALL_STATE(4606)] = 197956, + [SMALL_STATE(4607)] = 197972, + [SMALL_STATE(4608)] = 197994, + [SMALL_STATE(4609)] = 198008, + [SMALL_STATE(4610)] = 198022, + [SMALL_STATE(4611)] = 198036, + [SMALL_STATE(4612)] = 198052, + [SMALL_STATE(4613)] = 198068, + [SMALL_STATE(4614)] = 198084, + [SMALL_STATE(4615)] = 198106, + [SMALL_STATE(4616)] = 198128, + [SMALL_STATE(4617)] = 198150, + [SMALL_STATE(4618)] = 198166, + [SMALL_STATE(4619)] = 198182, + [SMALL_STATE(4620)] = 198198, + [SMALL_STATE(4621)] = 198220, + [SMALL_STATE(4622)] = 198236, + [SMALL_STATE(4623)] = 198256, + [SMALL_STATE(4624)] = 198272, + [SMALL_STATE(4625)] = 198288, + [SMALL_STATE(4626)] = 198304, + [SMALL_STATE(4627)] = 198318, + [SMALL_STATE(4628)] = 198332, + [SMALL_STATE(4629)] = 198346, + [SMALL_STATE(4630)] = 198368, + [SMALL_STATE(4631)] = 198382, + [SMALL_STATE(4632)] = 198396, + [SMALL_STATE(4633)] = 198412, + [SMALL_STATE(4634)] = 198426, + [SMALL_STATE(4635)] = 198442, + [SMALL_STATE(4636)] = 198458, + [SMALL_STATE(4637)] = 198472, + [SMALL_STATE(4638)] = 198488, + [SMALL_STATE(4639)] = 198506, + [SMALL_STATE(4640)] = 198524, + [SMALL_STATE(4641)] = 198542, + [SMALL_STATE(4642)] = 198558, + [SMALL_STATE(4643)] = 198574, + [SMALL_STATE(4644)] = 198590, + [SMALL_STATE(4645)] = 198606, + [SMALL_STATE(4646)] = 198626, + [SMALL_STATE(4647)] = 198646, + [SMALL_STATE(4648)] = 198662, + [SMALL_STATE(4649)] = 198676, + [SMALL_STATE(4650)] = 198690, + [SMALL_STATE(4651)] = 198706, + [SMALL_STATE(4652)] = 198722, + [SMALL_STATE(4653)] = 198736, + [SMALL_STATE(4654)] = 198750, + [SMALL_STATE(4655)] = 198772, + [SMALL_STATE(4656)] = 198788, + [SMALL_STATE(4657)] = 198804, + [SMALL_STATE(4658)] = 198826, + [SMALL_STATE(4659)] = 198846, + [SMALL_STATE(4660)] = 198862, + [SMALL_STATE(4661)] = 198878, + [SMALL_STATE(4662)] = 198894, + [SMALL_STATE(4663)] = 198910, + [SMALL_STATE(4664)] = 198930, + [SMALL_STATE(4665)] = 198946, + [SMALL_STATE(4666)] = 198962, + [SMALL_STATE(4667)] = 198982, + [SMALL_STATE(4668)] = 198998, + [SMALL_STATE(4669)] = 199012, + [SMALL_STATE(4670)] = 199032, + [SMALL_STATE(4671)] = 199046, + [SMALL_STATE(4672)] = 199064, + [SMALL_STATE(4673)] = 199080, + [SMALL_STATE(4674)] = 199102, + [SMALL_STATE(4675)] = 199122, + [SMALL_STATE(4676)] = 199138, + [SMALL_STATE(4677)] = 199154, + [SMALL_STATE(4678)] = 199168, + [SMALL_STATE(4679)] = 199188, + [SMALL_STATE(4680)] = 199204, + [SMALL_STATE(4681)] = 199220, + [SMALL_STATE(4682)] = 199234, + [SMALL_STATE(4683)] = 199248, + [SMALL_STATE(4684)] = 199268, + [SMALL_STATE(4685)] = 199284, + [SMALL_STATE(4686)] = 199300, + [SMALL_STATE(4687)] = 199322, + [SMALL_STATE(4688)] = 199338, + [SMALL_STATE(4689)] = 199354, + [SMALL_STATE(4690)] = 199370, + [SMALL_STATE(4691)] = 199386, + [SMALL_STATE(4692)] = 199406, + [SMALL_STATE(4693)] = 199422, + [SMALL_STATE(4694)] = 199442, + [SMALL_STATE(4695)] = 199458, + [SMALL_STATE(4696)] = 199474, + [SMALL_STATE(4697)] = 199490, + [SMALL_STATE(4698)] = 199510, + [SMALL_STATE(4699)] = 199526, + [SMALL_STATE(4700)] = 199542, + [SMALL_STATE(4701)] = 199558, + [SMALL_STATE(4702)] = 199574, + [SMALL_STATE(4703)] = 199590, + [SMALL_STATE(4704)] = 199606, + [SMALL_STATE(4705)] = 199622, + [SMALL_STATE(4706)] = 199638, + [SMALL_STATE(4707)] = 199654, + [SMALL_STATE(4708)] = 199674, + [SMALL_STATE(4709)] = 199694, + [SMALL_STATE(4710)] = 199714, + [SMALL_STATE(4711)] = 199736, + [SMALL_STATE(4712)] = 199752, + [SMALL_STATE(4713)] = 199768, + [SMALL_STATE(4714)] = 199790, + [SMALL_STATE(4715)] = 199806, + [SMALL_STATE(4716)] = 199820, + [SMALL_STATE(4717)] = 199836, + [SMALL_STATE(4718)] = 199850, + [SMALL_STATE(4719)] = 199870, + [SMALL_STATE(4720)] = 199886, + [SMALL_STATE(4721)] = 199902, + [SMALL_STATE(4722)] = 199918, + [SMALL_STATE(4723)] = 199938, + [SMALL_STATE(4724)] = 199958, + [SMALL_STATE(4725)] = 199974, + [SMALL_STATE(4726)] = 199990, + [SMALL_STATE(4727)] = 200012, + [SMALL_STATE(4728)] = 200034, + [SMALL_STATE(4729)] = 200056, + [SMALL_STATE(4730)] = 200072, + [SMALL_STATE(4731)] = 200088, + [SMALL_STATE(4732)] = 200104, + [SMALL_STATE(4733)] = 200120, + [SMALL_STATE(4734)] = 200134, + [SMALL_STATE(4735)] = 200150, + [SMALL_STATE(4736)] = 200166, + [SMALL_STATE(4737)] = 200180, + [SMALL_STATE(4738)] = 200200, + [SMALL_STATE(4739)] = 200216, + [SMALL_STATE(4740)] = 200232, + [SMALL_STATE(4741)] = 200250, + [SMALL_STATE(4742)] = 200266, + [SMALL_STATE(4743)] = 200282, + [SMALL_STATE(4744)] = 200304, + [SMALL_STATE(4745)] = 200320, + [SMALL_STATE(4746)] = 200342, + [SMALL_STATE(4747)] = 200364, + [SMALL_STATE(4748)] = 200384, + [SMALL_STATE(4749)] = 200400, + [SMALL_STATE(4750)] = 200416, + [SMALL_STATE(4751)] = 200432, + [SMALL_STATE(4752)] = 200448, + [SMALL_STATE(4753)] = 200464, + [SMALL_STATE(4754)] = 200480, + [SMALL_STATE(4755)] = 200500, + [SMALL_STATE(4756)] = 200516, + [SMALL_STATE(4757)] = 200532, + [SMALL_STATE(4758)] = 200548, + [SMALL_STATE(4759)] = 200564, + [SMALL_STATE(4760)] = 200580, + [SMALL_STATE(4761)] = 200596, + [SMALL_STATE(4762)] = 200612, + [SMALL_STATE(4763)] = 200628, + [SMALL_STATE(4764)] = 200644, + [SMALL_STATE(4765)] = 200660, + [SMALL_STATE(4766)] = 200676, + [SMALL_STATE(4767)] = 200692, + [SMALL_STATE(4768)] = 200712, + [SMALL_STATE(4769)] = 200728, + [SMALL_STATE(4770)] = 200744, + [SMALL_STATE(4771)] = 200760, + [SMALL_STATE(4772)] = 200776, + [SMALL_STATE(4773)] = 200792, + [SMALL_STATE(4774)] = 200808, + [SMALL_STATE(4775)] = 200828, + [SMALL_STATE(4776)] = 200844, + [SMALL_STATE(4777)] = 200860, + [SMALL_STATE(4778)] = 200880, + [SMALL_STATE(4779)] = 200896, + [SMALL_STATE(4780)] = 200912, + [SMALL_STATE(4781)] = 200928, + [SMALL_STATE(4782)] = 200948, + [SMALL_STATE(4783)] = 200962, + [SMALL_STATE(4784)] = 200978, + [SMALL_STATE(4785)] = 200994, + [SMALL_STATE(4786)] = 201016, + [SMALL_STATE(4787)] = 201032, + [SMALL_STATE(4788)] = 201048, + [SMALL_STATE(4789)] = 201064, + [SMALL_STATE(4790)] = 201080, + [SMALL_STATE(4791)] = 201096, + [SMALL_STATE(4792)] = 201112, + [SMALL_STATE(4793)] = 201132, + [SMALL_STATE(4794)] = 201148, + [SMALL_STATE(4795)] = 201164, + [SMALL_STATE(4796)] = 201180, + [SMALL_STATE(4797)] = 201200, + [SMALL_STATE(4798)] = 201214, + [SMALL_STATE(4799)] = 201230, + [SMALL_STATE(4800)] = 201246, + [SMALL_STATE(4801)] = 201262, + [SMALL_STATE(4802)] = 201278, + [SMALL_STATE(4803)] = 201294, + [SMALL_STATE(4804)] = 201314, + [SMALL_STATE(4805)] = 201330, + [SMALL_STATE(4806)] = 201350, + [SMALL_STATE(4807)] = 201366, + [SMALL_STATE(4808)] = 201382, + [SMALL_STATE(4809)] = 201402, + [SMALL_STATE(4810)] = 201418, + [SMALL_STATE(4811)] = 201440, + [SMALL_STATE(4812)] = 201456, + [SMALL_STATE(4813)] = 201476, + [SMALL_STATE(4814)] = 201498, + [SMALL_STATE(4815)] = 201518, + [SMALL_STATE(4816)] = 201534, + [SMALL_STATE(4817)] = 201550, + [SMALL_STATE(4818)] = 201572, + [SMALL_STATE(4819)] = 201588, + [SMALL_STATE(4820)] = 201604, + [SMALL_STATE(4821)] = 201620, + [SMALL_STATE(4822)] = 201636, + [SMALL_STATE(4823)] = 201658, + [SMALL_STATE(4824)] = 201678, + [SMALL_STATE(4825)] = 201694, + [SMALL_STATE(4826)] = 201710, + [SMALL_STATE(4827)] = 201730, + [SMALL_STATE(4828)] = 201750, + [SMALL_STATE(4829)] = 201766, + [SMALL_STATE(4830)] = 201784, + [SMALL_STATE(4831)] = 201804, + [SMALL_STATE(4832)] = 201826, + [SMALL_STATE(4833)] = 201842, + [SMALL_STATE(4834)] = 201862, + [SMALL_STATE(4835)] = 201878, + [SMALL_STATE(4836)] = 201898, + [SMALL_STATE(4837)] = 201914, + [SMALL_STATE(4838)] = 201930, + [SMALL_STATE(4839)] = 201952, + [SMALL_STATE(4840)] = 201968, + [SMALL_STATE(4841)] = 201984, + [SMALL_STATE(4842)] = 202000, + [SMALL_STATE(4843)] = 202022, + [SMALL_STATE(4844)] = 202038, + [SMALL_STATE(4845)] = 202054, + [SMALL_STATE(4846)] = 202070, + [SMALL_STATE(4847)] = 202086, + [SMALL_STATE(4848)] = 202108, + [SMALL_STATE(4849)] = 202124, + [SMALL_STATE(4850)] = 202140, + [SMALL_STATE(4851)] = 202156, + [SMALL_STATE(4852)] = 202176, + [SMALL_STATE(4853)] = 202192, + [SMALL_STATE(4854)] = 202208, + [SMALL_STATE(4855)] = 202224, + [SMALL_STATE(4856)] = 202240, + [SMALL_STATE(4857)] = 202258, + [SMALL_STATE(4858)] = 202272, + [SMALL_STATE(4859)] = 202288, + [SMALL_STATE(4860)] = 202304, + [SMALL_STATE(4861)] = 202324, + [SMALL_STATE(4862)] = 202342, + [SMALL_STATE(4863)] = 202362, + [SMALL_STATE(4864)] = 202384, + [SMALL_STATE(4865)] = 202400, + [SMALL_STATE(4866)] = 202416, + [SMALL_STATE(4867)] = 202432, + [SMALL_STATE(4868)] = 202448, + [SMALL_STATE(4869)] = 202462, + [SMALL_STATE(4870)] = 202484, + [SMALL_STATE(4871)] = 202500, + [SMALL_STATE(4872)] = 202516, + [SMALL_STATE(4873)] = 202536, + [SMALL_STATE(4874)] = 202552, + [SMALL_STATE(4875)] = 202572, + [SMALL_STATE(4876)] = 202594, + [SMALL_STATE(4877)] = 202610, + [SMALL_STATE(4878)] = 202630, + [SMALL_STATE(4879)] = 202646, + [SMALL_STATE(4880)] = 202662, + [SMALL_STATE(4881)] = 202678, + [SMALL_STATE(4882)] = 202694, + [SMALL_STATE(4883)] = 202710, + [SMALL_STATE(4884)] = 202726, + [SMALL_STATE(4885)] = 202740, + [SMALL_STATE(4886)] = 202754, + [SMALL_STATE(4887)] = 202770, + [SMALL_STATE(4888)] = 202792, + [SMALL_STATE(4889)] = 202812, + [SMALL_STATE(4890)] = 202828, + [SMALL_STATE(4891)] = 202844, + [SMALL_STATE(4892)] = 202866, + [SMALL_STATE(4893)] = 202882, + [SMALL_STATE(4894)] = 202902, + [SMALL_STATE(4895)] = 202918, + [SMALL_STATE(4896)] = 202934, + [SMALL_STATE(4897)] = 202950, + [SMALL_STATE(4898)] = 202966, + [SMALL_STATE(4899)] = 202988, + [SMALL_STATE(4900)] = 203002, + [SMALL_STATE(4901)] = 203018, + [SMALL_STATE(4902)] = 203040, + [SMALL_STATE(4903)] = 203058, + [SMALL_STATE(4904)] = 203074, + [SMALL_STATE(4905)] = 203090, + [SMALL_STATE(4906)] = 203106, + [SMALL_STATE(4907)] = 203122, + [SMALL_STATE(4908)] = 203144, + [SMALL_STATE(4909)] = 203162, + [SMALL_STATE(4910)] = 203178, + [SMALL_STATE(4911)] = 203198, + [SMALL_STATE(4912)] = 203214, + [SMALL_STATE(4913)] = 203230, + [SMALL_STATE(4914)] = 203250, + [SMALL_STATE(4915)] = 203266, + [SMALL_STATE(4916)] = 203282, + [SMALL_STATE(4917)] = 203298, + [SMALL_STATE(4918)] = 203313, + [SMALL_STATE(4919)] = 203328, + [SMALL_STATE(4920)] = 203343, + [SMALL_STATE(4921)] = 203358, + [SMALL_STATE(4922)] = 203373, + [SMALL_STATE(4923)] = 203388, + [SMALL_STATE(4924)] = 203407, + [SMALL_STATE(4925)] = 203422, + [SMALL_STATE(4926)] = 203441, + [SMALL_STATE(4927)] = 203458, + [SMALL_STATE(4928)] = 203473, + [SMALL_STATE(4929)] = 203486, + [SMALL_STATE(4930)] = 203501, + [SMALL_STATE(4931)] = 203516, + [SMALL_STATE(4932)] = 203531, + [SMALL_STATE(4933)] = 203548, + [SMALL_STATE(4934)] = 203567, + [SMALL_STATE(4935)] = 203586, + [SMALL_STATE(4936)] = 203601, + [SMALL_STATE(4937)] = 203614, + [SMALL_STATE(4938)] = 203629, + [SMALL_STATE(4939)] = 203644, + [SMALL_STATE(4940)] = 203657, + [SMALL_STATE(4941)] = 203676, + [SMALL_STATE(4942)] = 203691, + [SMALL_STATE(4943)] = 203706, + [SMALL_STATE(4944)] = 203721, + [SMALL_STATE(4945)] = 203740, + [SMALL_STATE(4946)] = 203759, + [SMALL_STATE(4947)] = 203776, + [SMALL_STATE(4948)] = 203791, + [SMALL_STATE(4949)] = 203806, + [SMALL_STATE(4950)] = 203821, + [SMALL_STATE(4951)] = 203834, + [SMALL_STATE(4952)] = 203849, + [SMALL_STATE(4953)] = 203864, + [SMALL_STATE(4954)] = 203877, + [SMALL_STATE(4955)] = 203894, + [SMALL_STATE(4956)] = 203909, + [SMALL_STATE(4957)] = 203924, + [SMALL_STATE(4958)] = 203939, + [SMALL_STATE(4959)] = 203958, + [SMALL_STATE(4960)] = 203973, + [SMALL_STATE(4961)] = 203988, + [SMALL_STATE(4962)] = 204003, + [SMALL_STATE(4963)] = 204016, + [SMALL_STATE(4964)] = 204029, + [SMALL_STATE(4965)] = 204044, + [SMALL_STATE(4966)] = 204059, + [SMALL_STATE(4967)] = 204078, + [SMALL_STATE(4968)] = 204093, + [SMALL_STATE(4969)] = 204108, + [SMALL_STATE(4970)] = 204123, + [SMALL_STATE(4971)] = 204138, + [SMALL_STATE(4972)] = 204157, + [SMALL_STATE(4973)] = 204172, + [SMALL_STATE(4974)] = 204187, + [SMALL_STATE(4975)] = 204202, + [SMALL_STATE(4976)] = 204221, + [SMALL_STATE(4977)] = 204234, + [SMALL_STATE(4978)] = 204253, + [SMALL_STATE(4979)] = 204268, + [SMALL_STATE(4980)] = 204285, + [SMALL_STATE(4981)] = 204304, + [SMALL_STATE(4982)] = 204323, + [SMALL_STATE(4983)] = 204342, + [SMALL_STATE(4984)] = 204359, + [SMALL_STATE(4985)] = 204378, + [SMALL_STATE(4986)] = 204397, + [SMALL_STATE(4987)] = 204412, + [SMALL_STATE(4988)] = 204427, + [SMALL_STATE(4989)] = 204442, + [SMALL_STATE(4990)] = 204457, + [SMALL_STATE(4991)] = 204476, + [SMALL_STATE(4992)] = 204491, + [SMALL_STATE(4993)] = 204506, + [SMALL_STATE(4994)] = 204521, + [SMALL_STATE(4995)] = 204536, + [SMALL_STATE(4996)] = 204551, + [SMALL_STATE(4997)] = 204566, + [SMALL_STATE(4998)] = 204581, + [SMALL_STATE(4999)] = 204596, + [SMALL_STATE(5000)] = 204611, + [SMALL_STATE(5001)] = 204626, + [SMALL_STATE(5002)] = 204641, + [SMALL_STATE(5003)] = 204656, + [SMALL_STATE(5004)] = 204671, + [SMALL_STATE(5005)] = 204686, + [SMALL_STATE(5006)] = 204701, + [SMALL_STATE(5007)] = 204714, + [SMALL_STATE(5008)] = 204733, + [SMALL_STATE(5009)] = 204748, + [SMALL_STATE(5010)] = 204763, + [SMALL_STATE(5011)] = 204776, + [SMALL_STATE(5012)] = 204791, + [SMALL_STATE(5013)] = 204808, + [SMALL_STATE(5014)] = 204823, + [SMALL_STATE(5015)] = 204838, + [SMALL_STATE(5016)] = 204853, + [SMALL_STATE(5017)] = 204868, + [SMALL_STATE(5018)] = 204883, + [SMALL_STATE(5019)] = 204902, + [SMALL_STATE(5020)] = 204917, + [SMALL_STATE(5021)] = 204936, + [SMALL_STATE(5022)] = 204951, + [SMALL_STATE(5023)] = 204970, + [SMALL_STATE(5024)] = 204985, + [SMALL_STATE(5025)] = 205000, + [SMALL_STATE(5026)] = 205017, + [SMALL_STATE(5027)] = 205034, + [SMALL_STATE(5028)] = 205049, + [SMALL_STATE(5029)] = 205064, + [SMALL_STATE(5030)] = 205079, + [SMALL_STATE(5031)] = 205094, + [SMALL_STATE(5032)] = 205111, + [SMALL_STATE(5033)] = 205130, + [SMALL_STATE(5034)] = 205149, + [SMALL_STATE(5035)] = 205164, + [SMALL_STATE(5036)] = 205183, + [SMALL_STATE(5037)] = 205200, + [SMALL_STATE(5038)] = 205219, + [SMALL_STATE(5039)] = 205238, + [SMALL_STATE(5040)] = 205253, + [SMALL_STATE(5041)] = 205268, + [SMALL_STATE(5042)] = 205283, + [SMALL_STATE(5043)] = 205300, + [SMALL_STATE(5044)] = 205315, + [SMALL_STATE(5045)] = 205332, + [SMALL_STATE(5046)] = 205349, + [SMALL_STATE(5047)] = 205366, + [SMALL_STATE(5048)] = 205385, + [SMALL_STATE(5049)] = 205404, + [SMALL_STATE(5050)] = 205417, + [SMALL_STATE(5051)] = 205436, + [SMALL_STATE(5052)] = 205453, + [SMALL_STATE(5053)] = 205468, + [SMALL_STATE(5054)] = 205487, + [SMALL_STATE(5055)] = 205502, + [SMALL_STATE(5056)] = 205521, + [SMALL_STATE(5057)] = 205536, + [SMALL_STATE(5058)] = 205553, + [SMALL_STATE(5059)] = 205568, + [SMALL_STATE(5060)] = 205587, + [SMALL_STATE(5061)] = 205606, + [SMALL_STATE(5062)] = 205621, + [SMALL_STATE(5063)] = 205640, + [SMALL_STATE(5064)] = 205653, + [SMALL_STATE(5065)] = 205670, + [SMALL_STATE(5066)] = 205687, + [SMALL_STATE(5067)] = 205702, + [SMALL_STATE(5068)] = 205719, + [SMALL_STATE(5069)] = 205738, + [SMALL_STATE(5070)] = 205753, + [SMALL_STATE(5071)] = 205768, + [SMALL_STATE(5072)] = 205783, + [SMALL_STATE(5073)] = 205798, + [SMALL_STATE(5074)] = 205815, + [SMALL_STATE(5075)] = 205830, + [SMALL_STATE(5076)] = 205845, + [SMALL_STATE(5077)] = 205860, + [SMALL_STATE(5078)] = 205873, + [SMALL_STATE(5079)] = 205892, + [SMALL_STATE(5080)] = 205911, + [SMALL_STATE(5081)] = 205928, + [SMALL_STATE(5082)] = 205947, + [SMALL_STATE(5083)] = 205962, + [SMALL_STATE(5084)] = 205979, + [SMALL_STATE(5085)] = 205994, + [SMALL_STATE(5086)] = 206009, + [SMALL_STATE(5087)] = 206024, + [SMALL_STATE(5088)] = 206039, + [SMALL_STATE(5089)] = 206054, + [SMALL_STATE(5090)] = 206069, + [SMALL_STATE(5091)] = 206084, + [SMALL_STATE(5092)] = 206097, + [SMALL_STATE(5093)] = 206116, + [SMALL_STATE(5094)] = 206133, + [SMALL_STATE(5095)] = 206148, + [SMALL_STATE(5096)] = 206165, + [SMALL_STATE(5097)] = 206184, + [SMALL_STATE(5098)] = 206203, + [SMALL_STATE(5099)] = 206220, + [SMALL_STATE(5100)] = 206235, + [SMALL_STATE(5101)] = 206250, + [SMALL_STATE(5102)] = 206265, + [SMALL_STATE(5103)] = 206284, + [SMALL_STATE(5104)] = 206299, + [SMALL_STATE(5105)] = 206314, + [SMALL_STATE(5106)] = 206329, + [SMALL_STATE(5107)] = 206344, + [SMALL_STATE(5108)] = 206359, + [SMALL_STATE(5109)] = 206376, + [SMALL_STATE(5110)] = 206395, + [SMALL_STATE(5111)] = 206408, + [SMALL_STATE(5112)] = 206427, + [SMALL_STATE(5113)] = 206446, + [SMALL_STATE(5114)] = 206461, + [SMALL_STATE(5115)] = 206478, + [SMALL_STATE(5116)] = 206495, + [SMALL_STATE(5117)] = 206510, + [SMALL_STATE(5118)] = 206527, + [SMALL_STATE(5119)] = 206542, + [SMALL_STATE(5120)] = 206561, + [SMALL_STATE(5121)] = 206576, + [SMALL_STATE(5122)] = 206591, + [SMALL_STATE(5123)] = 206606, + [SMALL_STATE(5124)] = 206625, + [SMALL_STATE(5125)] = 206640, + [SMALL_STATE(5126)] = 206659, + [SMALL_STATE(5127)] = 206674, + [SMALL_STATE(5128)] = 206693, + [SMALL_STATE(5129)] = 206710, + [SMALL_STATE(5130)] = 206725, + [SMALL_STATE(5131)] = 206744, + [SMALL_STATE(5132)] = 206759, + [SMALL_STATE(5133)] = 206774, + [SMALL_STATE(5134)] = 206789, + [SMALL_STATE(5135)] = 206808, + [SMALL_STATE(5136)] = 206827, + [SMALL_STATE(5137)] = 206842, + [SMALL_STATE(5138)] = 206855, + [SMALL_STATE(5139)] = 206870, + [SMALL_STATE(5140)] = 206885, + [SMALL_STATE(5141)] = 206904, + [SMALL_STATE(5142)] = 206923, + [SMALL_STATE(5143)] = 206936, + [SMALL_STATE(5144)] = 206955, + [SMALL_STATE(5145)] = 206974, + [SMALL_STATE(5146)] = 206993, + [SMALL_STATE(5147)] = 207012, + [SMALL_STATE(5148)] = 207027, + [SMALL_STATE(5149)] = 207044, + [SMALL_STATE(5150)] = 207059, + [SMALL_STATE(5151)] = 207074, + [SMALL_STATE(5152)] = 207089, + [SMALL_STATE(5153)] = 207108, + [SMALL_STATE(5154)] = 207121, + [SMALL_STATE(5155)] = 207136, + [SMALL_STATE(5156)] = 207151, + [SMALL_STATE(5157)] = 207166, + [SMALL_STATE(5158)] = 207183, + [SMALL_STATE(5159)] = 207200, + [SMALL_STATE(5160)] = 207215, + [SMALL_STATE(5161)] = 207232, + [SMALL_STATE(5162)] = 207247, + [SMALL_STATE(5163)] = 207266, + [SMALL_STATE(5164)] = 207281, + [SMALL_STATE(5165)] = 207300, + [SMALL_STATE(5166)] = 207319, + [SMALL_STATE(5167)] = 207334, + [SMALL_STATE(5168)] = 207353, + [SMALL_STATE(5169)] = 207368, + [SMALL_STATE(5170)] = 207383, + [SMALL_STATE(5171)] = 207398, + [SMALL_STATE(5172)] = 207413, + [SMALL_STATE(5173)] = 207428, + [SMALL_STATE(5174)] = 207443, + [SMALL_STATE(5175)] = 207462, + [SMALL_STATE(5176)] = 207481, + [SMALL_STATE(5177)] = 207496, + [SMALL_STATE(5178)] = 207515, + [SMALL_STATE(5179)] = 207530, + [SMALL_STATE(5180)] = 207545, + [SMALL_STATE(5181)] = 207562, + [SMALL_STATE(5182)] = 207581, + [SMALL_STATE(5183)] = 207596, + [SMALL_STATE(5184)] = 207611, + [SMALL_STATE(5185)] = 207626, + [SMALL_STATE(5186)] = 207641, + [SMALL_STATE(5187)] = 207656, + [SMALL_STATE(5188)] = 207671, + [SMALL_STATE(5189)] = 207686, + [SMALL_STATE(5190)] = 207701, + [SMALL_STATE(5191)] = 207720, + [SMALL_STATE(5192)] = 207733, + [SMALL_STATE(5193)] = 207748, + [SMALL_STATE(5194)] = 207767, + [SMALL_STATE(5195)] = 207782, + [SMALL_STATE(5196)] = 207799, + [SMALL_STATE(5197)] = 207818, + [SMALL_STATE(5198)] = 207833, + [SMALL_STATE(5199)] = 207848, + [SMALL_STATE(5200)] = 207863, + [SMALL_STATE(5201)] = 207882, + [SMALL_STATE(5202)] = 207897, + [SMALL_STATE(5203)] = 207912, + [SMALL_STATE(5204)] = 207929, + [SMALL_STATE(5205)] = 207946, + [SMALL_STATE(5206)] = 207959, + [SMALL_STATE(5207)] = 207974, + [SMALL_STATE(5208)] = 207987, + [SMALL_STATE(5209)] = 208006, + [SMALL_STATE(5210)] = 208023, + [SMALL_STATE(5211)] = 208040, + [SMALL_STATE(5212)] = 208059, + [SMALL_STATE(5213)] = 208074, + [SMALL_STATE(5214)] = 208091, + [SMALL_STATE(5215)] = 208110, + [SMALL_STATE(5216)] = 208129, + [SMALL_STATE(5217)] = 208144, + [SMALL_STATE(5218)] = 208159, + [SMALL_STATE(5219)] = 208176, + [SMALL_STATE(5220)] = 208189, + [SMALL_STATE(5221)] = 208206, + [SMALL_STATE(5222)] = 208225, + [SMALL_STATE(5223)] = 208242, + [SMALL_STATE(5224)] = 208261, + [SMALL_STATE(5225)] = 208278, + [SMALL_STATE(5226)] = 208295, + [SMALL_STATE(5227)] = 208314, + [SMALL_STATE(5228)] = 208327, + [SMALL_STATE(5229)] = 208344, + [SMALL_STATE(5230)] = 208361, + [SMALL_STATE(5231)] = 208376, + [SMALL_STATE(5232)] = 208391, + [SMALL_STATE(5233)] = 208410, + [SMALL_STATE(5234)] = 208429, + [SMALL_STATE(5235)] = 208448, + [SMALL_STATE(5236)] = 208463, + [SMALL_STATE(5237)] = 208482, + [SMALL_STATE(5238)] = 208501, + [SMALL_STATE(5239)] = 208520, + [SMALL_STATE(5240)] = 208537, + [SMALL_STATE(5241)] = 208554, + [SMALL_STATE(5242)] = 208567, + [SMALL_STATE(5243)] = 208586, + [SMALL_STATE(5244)] = 208605, + [SMALL_STATE(5245)] = 208624, + [SMALL_STATE(5246)] = 208643, + [SMALL_STATE(5247)] = 208658, + [SMALL_STATE(5248)] = 208675, + [SMALL_STATE(5249)] = 208694, + [SMALL_STATE(5250)] = 208713, + [SMALL_STATE(5251)] = 208730, + [SMALL_STATE(5252)] = 208749, + [SMALL_STATE(5253)] = 208766, + [SMALL_STATE(5254)] = 208781, + [SMALL_STATE(5255)] = 208796, + [SMALL_STATE(5256)] = 208811, + [SMALL_STATE(5257)] = 208826, + [SMALL_STATE(5258)] = 208841, + [SMALL_STATE(5259)] = 208856, + [SMALL_STATE(5260)] = 208871, + [SMALL_STATE(5261)] = 208886, + [SMALL_STATE(5262)] = 208905, + [SMALL_STATE(5263)] = 208920, + [SMALL_STATE(5264)] = 208935, + [SMALL_STATE(5265)] = 208950, + [SMALL_STATE(5266)] = 208965, + [SMALL_STATE(5267)] = 208980, + [SMALL_STATE(5268)] = 208995, + [SMALL_STATE(5269)] = 209010, + [SMALL_STATE(5270)] = 209025, + [SMALL_STATE(5271)] = 209040, + [SMALL_STATE(5272)] = 209055, + [SMALL_STATE(5273)] = 209068, + [SMALL_STATE(5274)] = 209087, + [SMALL_STATE(5275)] = 209102, + [SMALL_STATE(5276)] = 209119, + [SMALL_STATE(5277)] = 209134, + [SMALL_STATE(5278)] = 209149, + [SMALL_STATE(5279)] = 209164, + [SMALL_STATE(5280)] = 209179, + [SMALL_STATE(5281)] = 209194, + [SMALL_STATE(5282)] = 209209, + [SMALL_STATE(5283)] = 209224, + [SMALL_STATE(5284)] = 209241, + [SMALL_STATE(5285)] = 209256, + [SMALL_STATE(5286)] = 209271, + [SMALL_STATE(5287)] = 209286, + [SMALL_STATE(5288)] = 209301, + [SMALL_STATE(5289)] = 209316, + [SMALL_STATE(5290)] = 209331, + [SMALL_STATE(5291)] = 209350, + [SMALL_STATE(5292)] = 209367, + [SMALL_STATE(5293)] = 209384, + [SMALL_STATE(5294)] = 209401, + [SMALL_STATE(5295)] = 209416, + [SMALL_STATE(5296)] = 209433, + [SMALL_STATE(5297)] = 209450, + [SMALL_STATE(5298)] = 209469, + [SMALL_STATE(5299)] = 209486, + [SMALL_STATE(5300)] = 209503, + [SMALL_STATE(5301)] = 209520, + [SMALL_STATE(5302)] = 209535, + [SMALL_STATE(5303)] = 209550, + [SMALL_STATE(5304)] = 209567, + [SMALL_STATE(5305)] = 209584, + [SMALL_STATE(5306)] = 209601, + [SMALL_STATE(5307)] = 209618, + [SMALL_STATE(5308)] = 209633, + [SMALL_STATE(5309)] = 209648, + [SMALL_STATE(5310)] = 209663, + [SMALL_STATE(5311)] = 209678, + [SMALL_STATE(5312)] = 209697, + [SMALL_STATE(5313)] = 209712, + [SMALL_STATE(5314)] = 209727, + [SMALL_STATE(5315)] = 209742, + [SMALL_STATE(5316)] = 209757, + [SMALL_STATE(5317)] = 209772, + [SMALL_STATE(5318)] = 209787, + [SMALL_STATE(5319)] = 209806, + [SMALL_STATE(5320)] = 209819, + [SMALL_STATE(5321)] = 209838, + [SMALL_STATE(5322)] = 209853, + [SMALL_STATE(5323)] = 209868, + [SMALL_STATE(5324)] = 209885, + [SMALL_STATE(5325)] = 209900, + [SMALL_STATE(5326)] = 209915, + [SMALL_STATE(5327)] = 209930, + [SMALL_STATE(5328)] = 209947, + [SMALL_STATE(5329)] = 209964, + [SMALL_STATE(5330)] = 209981, + [SMALL_STATE(5331)] = 209996, + [SMALL_STATE(5332)] = 210011, + [SMALL_STATE(5333)] = 210028, + [SMALL_STATE(5334)] = 210041, + [SMALL_STATE(5335)] = 210060, + [SMALL_STATE(5336)] = 210077, + [SMALL_STATE(5337)] = 210094, + [SMALL_STATE(5338)] = 210113, + [SMALL_STATE(5339)] = 210130, + [SMALL_STATE(5340)] = 210146, + [SMALL_STATE(5341)] = 210158, + [SMALL_STATE(5342)] = 210174, + [SMALL_STATE(5343)] = 210190, + [SMALL_STATE(5344)] = 210206, + [SMALL_STATE(5345)] = 210222, + [SMALL_STATE(5346)] = 210238, + [SMALL_STATE(5347)] = 210252, + [SMALL_STATE(5348)] = 210266, + [SMALL_STATE(5349)] = 210280, + [SMALL_STATE(5350)] = 210296, + [SMALL_STATE(5351)] = 210312, + [SMALL_STATE(5352)] = 210328, + [SMALL_STATE(5353)] = 210342, + [SMALL_STATE(5354)] = 210358, + [SMALL_STATE(5355)] = 210374, + [SMALL_STATE(5356)] = 210390, + [SMALL_STATE(5357)] = 210406, + [SMALL_STATE(5358)] = 210422, + [SMALL_STATE(5359)] = 210438, + [SMALL_STATE(5360)] = 210452, + [SMALL_STATE(5361)] = 210468, + [SMALL_STATE(5362)] = 210484, + [SMALL_STATE(5363)] = 210500, + [SMALL_STATE(5364)] = 210516, + [SMALL_STATE(5365)] = 210532, + [SMALL_STATE(5366)] = 210548, + [SMALL_STATE(5367)] = 210562, + [SMALL_STATE(5368)] = 210578, + [SMALL_STATE(5369)] = 210594, + [SMALL_STATE(5370)] = 210610, + [SMALL_STATE(5371)] = 210626, + [SMALL_STATE(5372)] = 210642, + [SMALL_STATE(5373)] = 210656, + [SMALL_STATE(5374)] = 210672, + [SMALL_STATE(5375)] = 210688, + [SMALL_STATE(5376)] = 210704, + [SMALL_STATE(5377)] = 210720, + [SMALL_STATE(5378)] = 210736, + [SMALL_STATE(5379)] = 210752, + [SMALL_STATE(5380)] = 210768, + [SMALL_STATE(5381)] = 210784, + [SMALL_STATE(5382)] = 210800, + [SMALL_STATE(5383)] = 210814, + [SMALL_STATE(5384)] = 210830, + [SMALL_STATE(5385)] = 210844, + [SMALL_STATE(5386)] = 210860, + [SMALL_STATE(5387)] = 210876, + [SMALL_STATE(5388)] = 210890, + [SMALL_STATE(5389)] = 210906, + [SMALL_STATE(5390)] = 210922, + [SMALL_STATE(5391)] = 210938, + [SMALL_STATE(5392)] = 210954, + [SMALL_STATE(5393)] = 210970, + [SMALL_STATE(5394)] = 210984, + [SMALL_STATE(5395)] = 211000, + [SMALL_STATE(5396)] = 211016, + [SMALL_STATE(5397)] = 211030, + [SMALL_STATE(5398)] = 211044, + [SMALL_STATE(5399)] = 211060, + [SMALL_STATE(5400)] = 211074, + [SMALL_STATE(5401)] = 211088, + [SMALL_STATE(5402)] = 211102, + [SMALL_STATE(5403)] = 211114, + [SMALL_STATE(5404)] = 211130, + [SMALL_STATE(5405)] = 211146, + [SMALL_STATE(5406)] = 211160, + [SMALL_STATE(5407)] = 211176, + [SMALL_STATE(5408)] = 211192, + [SMALL_STATE(5409)] = 211208, + [SMALL_STATE(5410)] = 211224, + [SMALL_STATE(5411)] = 211240, + [SMALL_STATE(5412)] = 211256, + [SMALL_STATE(5413)] = 211272, + [SMALL_STATE(5414)] = 211288, + [SMALL_STATE(5415)] = 211300, + [SMALL_STATE(5416)] = 211316, + [SMALL_STATE(5417)] = 211332, + [SMALL_STATE(5418)] = 211346, + [SMALL_STATE(5419)] = 211362, + [SMALL_STATE(5420)] = 211378, + [SMALL_STATE(5421)] = 211394, + [SMALL_STATE(5422)] = 211410, + [SMALL_STATE(5423)] = 211426, + [SMALL_STATE(5424)] = 211440, + [SMALL_STATE(5425)] = 211454, + [SMALL_STATE(5426)] = 211468, + [SMALL_STATE(5427)] = 211482, + [SMALL_STATE(5428)] = 211498, + [SMALL_STATE(5429)] = 211514, + [SMALL_STATE(5430)] = 211528, + [SMALL_STATE(5431)] = 211542, + [SMALL_STATE(5432)] = 211558, + [SMALL_STATE(5433)] = 211574, + [SMALL_STATE(5434)] = 211590, + [SMALL_STATE(5435)] = 211606, + [SMALL_STATE(5436)] = 211622, + [SMALL_STATE(5437)] = 211638, + [SMALL_STATE(5438)] = 211654, + [SMALL_STATE(5439)] = 211668, + [SMALL_STATE(5440)] = 211684, + [SMALL_STATE(5441)] = 211700, + [SMALL_STATE(5442)] = 211714, + [SMALL_STATE(5443)] = 211728, + [SMALL_STATE(5444)] = 211742, + [SMALL_STATE(5445)] = 211756, + [SMALL_STATE(5446)] = 211772, + [SMALL_STATE(5447)] = 211788, + [SMALL_STATE(5448)] = 211802, + [SMALL_STATE(5449)] = 211818, + [SMALL_STATE(5450)] = 211834, + [SMALL_STATE(5451)] = 211850, + [SMALL_STATE(5452)] = 211866, + [SMALL_STATE(5453)] = 211882, + [SMALL_STATE(5454)] = 211898, + [SMALL_STATE(5455)] = 211914, + [SMALL_STATE(5456)] = 211930, + [SMALL_STATE(5457)] = 211946, + [SMALL_STATE(5458)] = 211962, + [SMALL_STATE(5459)] = 211978, + [SMALL_STATE(5460)] = 211992, + [SMALL_STATE(5461)] = 212006, + [SMALL_STATE(5462)] = 212022, + [SMALL_STATE(5463)] = 212038, + [SMALL_STATE(5464)] = 212054, + [SMALL_STATE(5465)] = 212066, + [SMALL_STATE(5466)] = 212078, + [SMALL_STATE(5467)] = 212090, + [SMALL_STATE(5468)] = 212104, + [SMALL_STATE(5469)] = 212120, + [SMALL_STATE(5470)] = 212136, + [SMALL_STATE(5471)] = 212152, + [SMALL_STATE(5472)] = 212164, + [SMALL_STATE(5473)] = 212180, + [SMALL_STATE(5474)] = 212194, + [SMALL_STATE(5475)] = 212210, + [SMALL_STATE(5476)] = 212224, + [SMALL_STATE(5477)] = 212240, + [SMALL_STATE(5478)] = 212256, + [SMALL_STATE(5479)] = 212270, + [SMALL_STATE(5480)] = 212286, + [SMALL_STATE(5481)] = 212302, + [SMALL_STATE(5482)] = 212318, + [SMALL_STATE(5483)] = 212334, + [SMALL_STATE(5484)] = 212350, + [SMALL_STATE(5485)] = 212362, + [SMALL_STATE(5486)] = 212378, + [SMALL_STATE(5487)] = 212390, + [SMALL_STATE(5488)] = 212406, + [SMALL_STATE(5489)] = 212418, + [SMALL_STATE(5490)] = 212430, + [SMALL_STATE(5491)] = 212446, + [SMALL_STATE(5492)] = 212462, + [SMALL_STATE(5493)] = 212476, + [SMALL_STATE(5494)] = 212490, + [SMALL_STATE(5495)] = 212504, + [SMALL_STATE(5496)] = 212520, + [SMALL_STATE(5497)] = 212536, + [SMALL_STATE(5498)] = 212552, + [SMALL_STATE(5499)] = 212568, + [SMALL_STATE(5500)] = 212584, + [SMALL_STATE(5501)] = 212596, + [SMALL_STATE(5502)] = 212610, + [SMALL_STATE(5503)] = 212626, + [SMALL_STATE(5504)] = 212642, + [SMALL_STATE(5505)] = 212658, + [SMALL_STATE(5506)] = 212672, + [SMALL_STATE(5507)] = 212688, + [SMALL_STATE(5508)] = 212700, + [SMALL_STATE(5509)] = 212716, + [SMALL_STATE(5510)] = 212732, + [SMALL_STATE(5511)] = 212746, + [SMALL_STATE(5512)] = 212760, + [SMALL_STATE(5513)] = 212772, + [SMALL_STATE(5514)] = 212784, + [SMALL_STATE(5515)] = 212798, + [SMALL_STATE(5516)] = 212812, + [SMALL_STATE(5517)] = 212826, + [SMALL_STATE(5518)] = 212842, + [SMALL_STATE(5519)] = 212858, + [SMALL_STATE(5520)] = 212874, + [SMALL_STATE(5521)] = 212890, + [SMALL_STATE(5522)] = 212906, + [SMALL_STATE(5523)] = 212919, + [SMALL_STATE(5524)] = 212932, + [SMALL_STATE(5525)] = 212945, + [SMALL_STATE(5526)] = 212958, + [SMALL_STATE(5527)] = 212971, + [SMALL_STATE(5528)] = 212984, + [SMALL_STATE(5529)] = 212997, + [SMALL_STATE(5530)] = 213010, + [SMALL_STATE(5531)] = 213023, + [SMALL_STATE(5532)] = 213036, + [SMALL_STATE(5533)] = 213049, + [SMALL_STATE(5534)] = 213062, + [SMALL_STATE(5535)] = 213075, + [SMALL_STATE(5536)] = 213088, + [SMALL_STATE(5537)] = 213101, + [SMALL_STATE(5538)] = 213114, + [SMALL_STATE(5539)] = 213127, + [SMALL_STATE(5540)] = 213140, + [SMALL_STATE(5541)] = 213153, + [SMALL_STATE(5542)] = 213166, + [SMALL_STATE(5543)] = 213179, + [SMALL_STATE(5544)] = 213192, + [SMALL_STATE(5545)] = 213205, + [SMALL_STATE(5546)] = 213218, + [SMALL_STATE(5547)] = 213231, + [SMALL_STATE(5548)] = 213244, + [SMALL_STATE(5549)] = 213257, + [SMALL_STATE(5550)] = 213270, + [SMALL_STATE(5551)] = 213283, + [SMALL_STATE(5552)] = 213296, + [SMALL_STATE(5553)] = 213309, + [SMALL_STATE(5554)] = 213320, + [SMALL_STATE(5555)] = 213333, + [SMALL_STATE(5556)] = 213344, + [SMALL_STATE(5557)] = 213357, + [SMALL_STATE(5558)] = 213370, + [SMALL_STATE(5559)] = 213383, + [SMALL_STATE(5560)] = 213396, + [SMALL_STATE(5561)] = 213409, + [SMALL_STATE(5562)] = 213422, + [SMALL_STATE(5563)] = 213435, + [SMALL_STATE(5564)] = 213448, + [SMALL_STATE(5565)] = 213461, + [SMALL_STATE(5566)] = 213474, + [SMALL_STATE(5567)] = 213485, + [SMALL_STATE(5568)] = 213498, + [SMALL_STATE(5569)] = 213511, + [SMALL_STATE(5570)] = 213522, + [SMALL_STATE(5571)] = 213535, + [SMALL_STATE(5572)] = 213548, + [SMALL_STATE(5573)] = 213561, + [SMALL_STATE(5574)] = 213574, + [SMALL_STATE(5575)] = 213587, + [SMALL_STATE(5576)] = 213600, + [SMALL_STATE(5577)] = 213613, + [SMALL_STATE(5578)] = 213626, + [SMALL_STATE(5579)] = 213639, + [SMALL_STATE(5580)] = 213652, + [SMALL_STATE(5581)] = 213665, + [SMALL_STATE(5582)] = 213678, + [SMALL_STATE(5583)] = 213691, + [SMALL_STATE(5584)] = 213704, + [SMALL_STATE(5585)] = 213717, + [SMALL_STATE(5586)] = 213730, + [SMALL_STATE(5587)] = 213743, + [SMALL_STATE(5588)] = 213756, + [SMALL_STATE(5589)] = 213769, + [SMALL_STATE(5590)] = 213782, + [SMALL_STATE(5591)] = 213795, + [SMALL_STATE(5592)] = 213808, + [SMALL_STATE(5593)] = 213821, + [SMALL_STATE(5594)] = 213834, + [SMALL_STATE(5595)] = 213847, + [SMALL_STATE(5596)] = 213860, + [SMALL_STATE(5597)] = 213873, + [SMALL_STATE(5598)] = 213886, + [SMALL_STATE(5599)] = 213899, + [SMALL_STATE(5600)] = 213912, + [SMALL_STATE(5601)] = 213925, + [SMALL_STATE(5602)] = 213936, + [SMALL_STATE(5603)] = 213949, + [SMALL_STATE(5604)] = 213960, + [SMALL_STATE(5605)] = 213973, + [SMALL_STATE(5606)] = 213986, + [SMALL_STATE(5607)] = 213999, + [SMALL_STATE(5608)] = 214012, + [SMALL_STATE(5609)] = 214023, + [SMALL_STATE(5610)] = 214036, + [SMALL_STATE(5611)] = 214049, + [SMALL_STATE(5612)] = 214062, + [SMALL_STATE(5613)] = 214075, + [SMALL_STATE(5614)] = 214088, + [SMALL_STATE(5615)] = 214101, + [SMALL_STATE(5616)] = 214114, + [SMALL_STATE(5617)] = 214127, + [SMALL_STATE(5618)] = 214138, + [SMALL_STATE(5619)] = 214151, + [SMALL_STATE(5620)] = 214164, + [SMALL_STATE(5621)] = 214177, + [SMALL_STATE(5622)] = 214190, + [SMALL_STATE(5623)] = 214203, + [SMALL_STATE(5624)] = 214216, + [SMALL_STATE(5625)] = 214226, + [SMALL_STATE(5626)] = 214236, + [SMALL_STATE(5627)] = 214246, + [SMALL_STATE(5628)] = 214256, + [SMALL_STATE(5629)] = 214266, + [SMALL_STATE(5630)] = 214276, + [SMALL_STATE(5631)] = 214286, + [SMALL_STATE(5632)] = 214296, + [SMALL_STATE(5633)] = 214306, + [SMALL_STATE(5634)] = 214316, + [SMALL_STATE(5635)] = 214326, + [SMALL_STATE(5636)] = 214336, + [SMALL_STATE(5637)] = 214346, + [SMALL_STATE(5638)] = 214356, + [SMALL_STATE(5639)] = 214366, + [SMALL_STATE(5640)] = 214376, + [SMALL_STATE(5641)] = 214386, + [SMALL_STATE(5642)] = 214396, + [SMALL_STATE(5643)] = 214406, + [SMALL_STATE(5644)] = 214416, + [SMALL_STATE(5645)] = 214426, + [SMALL_STATE(5646)] = 214436, + [SMALL_STATE(5647)] = 214446, + [SMALL_STATE(5648)] = 214456, + [SMALL_STATE(5649)] = 214466, + [SMALL_STATE(5650)] = 214476, + [SMALL_STATE(5651)] = 214486, + [SMALL_STATE(5652)] = 214496, + [SMALL_STATE(5653)] = 214506, + [SMALL_STATE(5654)] = 214516, + [SMALL_STATE(5655)] = 214526, + [SMALL_STATE(5656)] = 214536, + [SMALL_STATE(5657)] = 214546, + [SMALL_STATE(5658)] = 214556, + [SMALL_STATE(5659)] = 214566, + [SMALL_STATE(5660)] = 214576, + [SMALL_STATE(5661)] = 214586, + [SMALL_STATE(5662)] = 214596, + [SMALL_STATE(5663)] = 214606, + [SMALL_STATE(5664)] = 214616, + [SMALL_STATE(5665)] = 214626, + [SMALL_STATE(5666)] = 214636, + [SMALL_STATE(5667)] = 214646, + [SMALL_STATE(5668)] = 214656, + [SMALL_STATE(5669)] = 214666, + [SMALL_STATE(5670)] = 214676, + [SMALL_STATE(5671)] = 214686, + [SMALL_STATE(5672)] = 214696, + [SMALL_STATE(5673)] = 214706, + [SMALL_STATE(5674)] = 214716, + [SMALL_STATE(5675)] = 214726, + [SMALL_STATE(5676)] = 214736, + [SMALL_STATE(5677)] = 214746, + [SMALL_STATE(5678)] = 214756, + [SMALL_STATE(5679)] = 214766, + [SMALL_STATE(5680)] = 214776, + [SMALL_STATE(5681)] = 214786, + [SMALL_STATE(5682)] = 214796, + [SMALL_STATE(5683)] = 214806, + [SMALL_STATE(5684)] = 214816, + [SMALL_STATE(5685)] = 214826, + [SMALL_STATE(5686)] = 214836, + [SMALL_STATE(5687)] = 214846, + [SMALL_STATE(5688)] = 214856, + [SMALL_STATE(5689)] = 214866, + [SMALL_STATE(5690)] = 214876, + [SMALL_STATE(5691)] = 214886, + [SMALL_STATE(5692)] = 214896, + [SMALL_STATE(5693)] = 214906, + [SMALL_STATE(5694)] = 214916, + [SMALL_STATE(5695)] = 214926, + [SMALL_STATE(5696)] = 214936, + [SMALL_STATE(5697)] = 214946, + [SMALL_STATE(5698)] = 214956, + [SMALL_STATE(5699)] = 214966, + [SMALL_STATE(5700)] = 214976, + [SMALL_STATE(5701)] = 214986, + [SMALL_STATE(5702)] = 214996, + [SMALL_STATE(5703)] = 215006, + [SMALL_STATE(5704)] = 215016, + [SMALL_STATE(5705)] = 215026, + [SMALL_STATE(5706)] = 215036, + [SMALL_STATE(5707)] = 215046, + [SMALL_STATE(5708)] = 215056, + [SMALL_STATE(5709)] = 215066, + [SMALL_STATE(5710)] = 215076, + [SMALL_STATE(5711)] = 215086, + [SMALL_STATE(5712)] = 215096, + [SMALL_STATE(5713)] = 215106, + [SMALL_STATE(5714)] = 215116, + [SMALL_STATE(5715)] = 215126, + [SMALL_STATE(5716)] = 215136, + [SMALL_STATE(5717)] = 215146, + [SMALL_STATE(5718)] = 215156, + [SMALL_STATE(5719)] = 215166, + [SMALL_STATE(5720)] = 215176, + [SMALL_STATE(5721)] = 215186, + [SMALL_STATE(5722)] = 215196, + [SMALL_STATE(5723)] = 215206, + [SMALL_STATE(5724)] = 215216, + [SMALL_STATE(5725)] = 215226, + [SMALL_STATE(5726)] = 215236, + [SMALL_STATE(5727)] = 215246, + [SMALL_STATE(5728)] = 215256, + [SMALL_STATE(5729)] = 215266, + [SMALL_STATE(5730)] = 215276, + [SMALL_STATE(5731)] = 215286, + [SMALL_STATE(5732)] = 215296, + [SMALL_STATE(5733)] = 215306, + [SMALL_STATE(5734)] = 215316, + [SMALL_STATE(5735)] = 215326, + [SMALL_STATE(5736)] = 215336, + [SMALL_STATE(5737)] = 215346, + [SMALL_STATE(5738)] = 215356, + [SMALL_STATE(5739)] = 215366, + [SMALL_STATE(5740)] = 215376, + [SMALL_STATE(5741)] = 215386, + [SMALL_STATE(5742)] = 215396, + [SMALL_STATE(5743)] = 215406, + [SMALL_STATE(5744)] = 215416, + [SMALL_STATE(5745)] = 215426, + [SMALL_STATE(5746)] = 215436, + [SMALL_STATE(5747)] = 215446, + [SMALL_STATE(5748)] = 215456, + [SMALL_STATE(5749)] = 215466, + [SMALL_STATE(5750)] = 215476, + [SMALL_STATE(5751)] = 215486, + [SMALL_STATE(5752)] = 215496, + [SMALL_STATE(5753)] = 215506, + [SMALL_STATE(5754)] = 215516, + [SMALL_STATE(5755)] = 215526, + [SMALL_STATE(5756)] = 215536, + [SMALL_STATE(5757)] = 215546, + [SMALL_STATE(5758)] = 215556, + [SMALL_STATE(5759)] = 215566, + [SMALL_STATE(5760)] = 215576, + [SMALL_STATE(5761)] = 215586, + [SMALL_STATE(5762)] = 215596, + [SMALL_STATE(5763)] = 215606, + [SMALL_STATE(5764)] = 215616, + [SMALL_STATE(5765)] = 215626, + [SMALL_STATE(5766)] = 215636, + [SMALL_STATE(5767)] = 215646, + [SMALL_STATE(5768)] = 215656, + [SMALL_STATE(5769)] = 215666, + [SMALL_STATE(5770)] = 215676, + [SMALL_STATE(5771)] = 215686, + [SMALL_STATE(5772)] = 215696, + [SMALL_STATE(5773)] = 215706, + [SMALL_STATE(5774)] = 215716, + [SMALL_STATE(5775)] = 215726, + [SMALL_STATE(5776)] = 215736, + [SMALL_STATE(5777)] = 215746, + [SMALL_STATE(5778)] = 215756, + [SMALL_STATE(5779)] = 215766, + [SMALL_STATE(5780)] = 215776, + [SMALL_STATE(5781)] = 215786, + [SMALL_STATE(5782)] = 215796, + [SMALL_STATE(5783)] = 215806, + [SMALL_STATE(5784)] = 215816, + [SMALL_STATE(5785)] = 215826, + [SMALL_STATE(5786)] = 215836, + [SMALL_STATE(5787)] = 215846, + [SMALL_STATE(5788)] = 215856, + [SMALL_STATE(5789)] = 215866, + [SMALL_STATE(5790)] = 215876, + [SMALL_STATE(5791)] = 215886, + [SMALL_STATE(5792)] = 215896, + [SMALL_STATE(5793)] = 215906, + [SMALL_STATE(5794)] = 215916, + [SMALL_STATE(5795)] = 215926, + [SMALL_STATE(5796)] = 215936, + [SMALL_STATE(5797)] = 215946, + [SMALL_STATE(5798)] = 215956, + [SMALL_STATE(5799)] = 215966, + [SMALL_STATE(5800)] = 215976, + [SMALL_STATE(5801)] = 215986, + [SMALL_STATE(5802)] = 215996, + [SMALL_STATE(5803)] = 216006, + [SMALL_STATE(5804)] = 216016, + [SMALL_STATE(5805)] = 216026, + [SMALL_STATE(5806)] = 216036, + [SMALL_STATE(5807)] = 216046, + [SMALL_STATE(5808)] = 216056, + [SMALL_STATE(5809)] = 216066, + [SMALL_STATE(5810)] = 216076, + [SMALL_STATE(5811)] = 216086, + [SMALL_STATE(5812)] = 216096, + [SMALL_STATE(5813)] = 216106, + [SMALL_STATE(5814)] = 216116, + [SMALL_STATE(5815)] = 216126, + [SMALL_STATE(5816)] = 216136, + [SMALL_STATE(5817)] = 216146, + [SMALL_STATE(5818)] = 216156, + [SMALL_STATE(5819)] = 216166, + [SMALL_STATE(5820)] = 216176, + [SMALL_STATE(5821)] = 216186, + [SMALL_STATE(5822)] = 216196, + [SMALL_STATE(5823)] = 216206, + [SMALL_STATE(5824)] = 216216, + [SMALL_STATE(5825)] = 216226, + [SMALL_STATE(5826)] = 216236, + [SMALL_STATE(5827)] = 216246, + [SMALL_STATE(5828)] = 216256, + [SMALL_STATE(5829)] = 216266, + [SMALL_STATE(5830)] = 216276, + [SMALL_STATE(5831)] = 216286, + [SMALL_STATE(5832)] = 216296, + [SMALL_STATE(5833)] = 216306, + [SMALL_STATE(5834)] = 216316, + [SMALL_STATE(5835)] = 216326, + [SMALL_STATE(5836)] = 216336, + [SMALL_STATE(5837)] = 216346, + [SMALL_STATE(5838)] = 216356, + [SMALL_STATE(5839)] = 216366, + [SMALL_STATE(5840)] = 216376, + [SMALL_STATE(5841)] = 216386, + [SMALL_STATE(5842)] = 216396, + [SMALL_STATE(5843)] = 216406, + [SMALL_STATE(5844)] = 216416, + [SMALL_STATE(5845)] = 216426, + [SMALL_STATE(5846)] = 216436, + [SMALL_STATE(5847)] = 216446, + [SMALL_STATE(5848)] = 216456, + [SMALL_STATE(5849)] = 216466, + [SMALL_STATE(5850)] = 216476, + [SMALL_STATE(5851)] = 216486, + [SMALL_STATE(5852)] = 216496, + [SMALL_STATE(5853)] = 216506, + [SMALL_STATE(5854)] = 216516, + [SMALL_STATE(5855)] = 216526, + [SMALL_STATE(5856)] = 216536, + [SMALL_STATE(5857)] = 216546, + [SMALL_STATE(5858)] = 216556, + [SMALL_STATE(5859)] = 216566, + [SMALL_STATE(5860)] = 216576, + [SMALL_STATE(5861)] = 216586, + [SMALL_STATE(5862)] = 216596, + [SMALL_STATE(5863)] = 216606, + [SMALL_STATE(5864)] = 216616, + [SMALL_STATE(5865)] = 216626, + [SMALL_STATE(5866)] = 216636, + [SMALL_STATE(5867)] = 216646, + [SMALL_STATE(5868)] = 216656, + [SMALL_STATE(5869)] = 216666, + [SMALL_STATE(5870)] = 216676, + [SMALL_STATE(5871)] = 216686, + [SMALL_STATE(5872)] = 216696, + [SMALL_STATE(5873)] = 216706, + [SMALL_STATE(5874)] = 216716, + [SMALL_STATE(5875)] = 216726, + [SMALL_STATE(5876)] = 216736, + [SMALL_STATE(5877)] = 216746, + [SMALL_STATE(5878)] = 216756, + [SMALL_STATE(5879)] = 216766, + [SMALL_STATE(5880)] = 216776, + [SMALL_STATE(5881)] = 216786, + [SMALL_STATE(5882)] = 216796, + [SMALL_STATE(5883)] = 216806, + [SMALL_STATE(5884)] = 216816, + [SMALL_STATE(5885)] = 216826, + [SMALL_STATE(5886)] = 216836, + [SMALL_STATE(5887)] = 216846, + [SMALL_STATE(5888)] = 216856, + [SMALL_STATE(5889)] = 216866, + [SMALL_STATE(5890)] = 216876, + [SMALL_STATE(5891)] = 216886, + [SMALL_STATE(5892)] = 216896, + [SMALL_STATE(5893)] = 216906, + [SMALL_STATE(5894)] = 216916, + [SMALL_STATE(5895)] = 216926, + [SMALL_STATE(5896)] = 216936, + [SMALL_STATE(5897)] = 216946, + [SMALL_STATE(5898)] = 216956, + [SMALL_STATE(5899)] = 216966, + [SMALL_STATE(5900)] = 216976, + [SMALL_STATE(5901)] = 216986, + [SMALL_STATE(5902)] = 216996, + [SMALL_STATE(5903)] = 217006, + [SMALL_STATE(5904)] = 217016, + [SMALL_STATE(5905)] = 217026, + [SMALL_STATE(5906)] = 217036, + [SMALL_STATE(5907)] = 217046, + [SMALL_STATE(5908)] = 217056, + [SMALL_STATE(5909)] = 217066, + [SMALL_STATE(5910)] = 217076, + [SMALL_STATE(5911)] = 217086, + [SMALL_STATE(5912)] = 217096, + [SMALL_STATE(5913)] = 217106, + [SMALL_STATE(5914)] = 217116, + [SMALL_STATE(5915)] = 217126, + [SMALL_STATE(5916)] = 217136, + [SMALL_STATE(5917)] = 217146, + [SMALL_STATE(5918)] = 217156, + [SMALL_STATE(5919)] = 217166, + [SMALL_STATE(5920)] = 217176, + [SMALL_STATE(5921)] = 217186, + [SMALL_STATE(5922)] = 217196, + [SMALL_STATE(5923)] = 217206, + [SMALL_STATE(5924)] = 217216, + [SMALL_STATE(5925)] = 217226, + [SMALL_STATE(5926)] = 217236, + [SMALL_STATE(5927)] = 217246, + [SMALL_STATE(5928)] = 217256, + [SMALL_STATE(5929)] = 217266, + [SMALL_STATE(5930)] = 217276, + [SMALL_STATE(5931)] = 217286, + [SMALL_STATE(5932)] = 217296, + [SMALL_STATE(5933)] = 217306, + [SMALL_STATE(5934)] = 217316, + [SMALL_STATE(5935)] = 217326, + [SMALL_STATE(5936)] = 217336, + [SMALL_STATE(5937)] = 217346, + [SMALL_STATE(5938)] = 217356, + [SMALL_STATE(5939)] = 217366, + [SMALL_STATE(5940)] = 217376, + [SMALL_STATE(5941)] = 217386, + [SMALL_STATE(5942)] = 217396, + [SMALL_STATE(5943)] = 217406, + [SMALL_STATE(5944)] = 217416, + [SMALL_STATE(5945)] = 217426, + [SMALL_STATE(5946)] = 217436, + [SMALL_STATE(5947)] = 217446, + [SMALL_STATE(5948)] = 217456, + [SMALL_STATE(5949)] = 217466, + [SMALL_STATE(5950)] = 217476, + [SMALL_STATE(5951)] = 217486, + [SMALL_STATE(5952)] = 217496, + [SMALL_STATE(5953)] = 217506, + [SMALL_STATE(5954)] = 217516, + [SMALL_STATE(5955)] = 217526, + [SMALL_STATE(5956)] = 217536, + [SMALL_STATE(5957)] = 217546, + [SMALL_STATE(5958)] = 217556, + [SMALL_STATE(5959)] = 217566, + [SMALL_STATE(5960)] = 217576, + [SMALL_STATE(5961)] = 217586, + [SMALL_STATE(5962)] = 217596, + [SMALL_STATE(5963)] = 217606, + [SMALL_STATE(5964)] = 217616, + [SMALL_STATE(5965)] = 217626, + [SMALL_STATE(5966)] = 217636, + [SMALL_STATE(5967)] = 217646, + [SMALL_STATE(5968)] = 217656, + [SMALL_STATE(5969)] = 217666, + [SMALL_STATE(5970)] = 217676, + [SMALL_STATE(5971)] = 217686, + [SMALL_STATE(5972)] = 217696, + [SMALL_STATE(5973)] = 217706, + [SMALL_STATE(5974)] = 217716, + [SMALL_STATE(5975)] = 217726, + [SMALL_STATE(5976)] = 217736, + [SMALL_STATE(5977)] = 217746, + [SMALL_STATE(5978)] = 217756, + [SMALL_STATE(5979)] = 217766, + [SMALL_STATE(5980)] = 217776, + [SMALL_STATE(5981)] = 217786, + [SMALL_STATE(5982)] = 217796, + [SMALL_STATE(5983)] = 217806, + [SMALL_STATE(5984)] = 217816, + [SMALL_STATE(5985)] = 217826, + [SMALL_STATE(5986)] = 217836, + [SMALL_STATE(5987)] = 217846, + [SMALL_STATE(5988)] = 217856, + [SMALL_STATE(5989)] = 217866, + [SMALL_STATE(5990)] = 217876, + [SMALL_STATE(5991)] = 217886, + [SMALL_STATE(5992)] = 217896, + [SMALL_STATE(5993)] = 217906, + [SMALL_STATE(5994)] = 217916, + [SMALL_STATE(5995)] = 217926, + [SMALL_STATE(5996)] = 217936, + [SMALL_STATE(5997)] = 217946, + [SMALL_STATE(5998)] = 217956, + [SMALL_STATE(5999)] = 217966, + [SMALL_STATE(6000)] = 217976, + [SMALL_STATE(6001)] = 217986, + [SMALL_STATE(6002)] = 217996, + [SMALL_STATE(6003)] = 218006, + [SMALL_STATE(6004)] = 218016, + [SMALL_STATE(6005)] = 218026, + [SMALL_STATE(6006)] = 218036, + [SMALL_STATE(6007)] = 218046, + [SMALL_STATE(6008)] = 218056, + [SMALL_STATE(6009)] = 218066, + [SMALL_STATE(6010)] = 218076, + [SMALL_STATE(6011)] = 218086, + [SMALL_STATE(6012)] = 218096, + [SMALL_STATE(6013)] = 218106, + [SMALL_STATE(6014)] = 218116, + [SMALL_STATE(6015)] = 218126, + [SMALL_STATE(6016)] = 218136, + [SMALL_STATE(6017)] = 218146, + [SMALL_STATE(6018)] = 218156, + [SMALL_STATE(6019)] = 218166, + [SMALL_STATE(6020)] = 218176, + [SMALL_STATE(6021)] = 218186, + [SMALL_STATE(6022)] = 218196, + [SMALL_STATE(6023)] = 218206, + [SMALL_STATE(6024)] = 218216, + [SMALL_STATE(6025)] = 218226, + [SMALL_STATE(6026)] = 218236, + [SMALL_STATE(6027)] = 218246, + [SMALL_STATE(6028)] = 218256, + [SMALL_STATE(6029)] = 218266, + [SMALL_STATE(6030)] = 218276, + [SMALL_STATE(6031)] = 218286, + [SMALL_STATE(6032)] = 218296, + [SMALL_STATE(6033)] = 218306, + [SMALL_STATE(6034)] = 218316, + [SMALL_STATE(6035)] = 218326, + [SMALL_STATE(6036)] = 218336, + [SMALL_STATE(6037)] = 218346, + [SMALL_STATE(6038)] = 218356, + [SMALL_STATE(6039)] = 218366, + [SMALL_STATE(6040)] = 218376, + [SMALL_STATE(6041)] = 218386, + [SMALL_STATE(6042)] = 218396, + [SMALL_STATE(6043)] = 218406, + [SMALL_STATE(6044)] = 218416, + [SMALL_STATE(6045)] = 218426, + [SMALL_STATE(6046)] = 218436, + [SMALL_STATE(6047)] = 218446, + [SMALL_STATE(6048)] = 218456, + [SMALL_STATE(6049)] = 218466, + [SMALL_STATE(6050)] = 218476, + [SMALL_STATE(6051)] = 218486, + [SMALL_STATE(6052)] = 218496, + [SMALL_STATE(6053)] = 218506, + [SMALL_STATE(6054)] = 218516, + [SMALL_STATE(6055)] = 218526, + [SMALL_STATE(6056)] = 218536, + [SMALL_STATE(6057)] = 218546, + [SMALL_STATE(6058)] = 218556, + [SMALL_STATE(6059)] = 218566, + [SMALL_STATE(6060)] = 218576, + [SMALL_STATE(6061)] = 218586, + [SMALL_STATE(6062)] = 218596, + [SMALL_STATE(6063)] = 218606, + [SMALL_STATE(6064)] = 218616, + [SMALL_STATE(6065)] = 218626, + [SMALL_STATE(6066)] = 218636, + [SMALL_STATE(6067)] = 218646, + [SMALL_STATE(6068)] = 218656, + [SMALL_STATE(6069)] = 218666, + [SMALL_STATE(6070)] = 218676, + [SMALL_STATE(6071)] = 218686, + [SMALL_STATE(6072)] = 218696, + [SMALL_STATE(6073)] = 218706, + [SMALL_STATE(6074)] = 218716, + [SMALL_STATE(6075)] = 218726, + [SMALL_STATE(6076)] = 218736, + [SMALL_STATE(6077)] = 218746, + [SMALL_STATE(6078)] = 218756, + [SMALL_STATE(6079)] = 218766, + [SMALL_STATE(6080)] = 218776, + [SMALL_STATE(6081)] = 218786, + [SMALL_STATE(6082)] = 218796, + [SMALL_STATE(6083)] = 218806, + [SMALL_STATE(6084)] = 218816, + [SMALL_STATE(6085)] = 218826, + [SMALL_STATE(6086)] = 218836, + [SMALL_STATE(6087)] = 218846, + [SMALL_STATE(6088)] = 218856, + [SMALL_STATE(6089)] = 218866, + [SMALL_STATE(6090)] = 218876, + [SMALL_STATE(6091)] = 218886, + [SMALL_STATE(6092)] = 218896, + [SMALL_STATE(6093)] = 218906, + [SMALL_STATE(6094)] = 218916, + [SMALL_STATE(6095)] = 218926, + [SMALL_STATE(6096)] = 218936, + [SMALL_STATE(6097)] = 218946, + [SMALL_STATE(6098)] = 218956, + [SMALL_STATE(6099)] = 218966, + [SMALL_STATE(6100)] = 218976, + [SMALL_STATE(6101)] = 218986, + [SMALL_STATE(6102)] = 218996, + [SMALL_STATE(6103)] = 219006, + [SMALL_STATE(6104)] = 219016, + [SMALL_STATE(6105)] = 219026, + [SMALL_STATE(6106)] = 219036, + [SMALL_STATE(6107)] = 219046, + [SMALL_STATE(6108)] = 219056, + [SMALL_STATE(6109)] = 219066, + [SMALL_STATE(6110)] = 219076, + [SMALL_STATE(6111)] = 219086, + [SMALL_STATE(6112)] = 219096, + [SMALL_STATE(6113)] = 219106, + [SMALL_STATE(6114)] = 219116, + [SMALL_STATE(6115)] = 219126, + [SMALL_STATE(6116)] = 219136, + [SMALL_STATE(6117)] = 219146, + [SMALL_STATE(6118)] = 219156, + [SMALL_STATE(6119)] = 219166, + [SMALL_STATE(6120)] = 219176, + [SMALL_STATE(6121)] = 219186, + [SMALL_STATE(6122)] = 219196, + [SMALL_STATE(6123)] = 219206, + [SMALL_STATE(6124)] = 219216, + [SMALL_STATE(6125)] = 219226, + [SMALL_STATE(6126)] = 219236, + [SMALL_STATE(6127)] = 219246, + [SMALL_STATE(6128)] = 219256, + [SMALL_STATE(6129)] = 219266, + [SMALL_STATE(6130)] = 219276, + [SMALL_STATE(6131)] = 219286, + [SMALL_STATE(6132)] = 219296, + [SMALL_STATE(6133)] = 219306, + [SMALL_STATE(6134)] = 219316, + [SMALL_STATE(6135)] = 219326, + [SMALL_STATE(6136)] = 219336, + [SMALL_STATE(6137)] = 219346, + [SMALL_STATE(6138)] = 219356, + [SMALL_STATE(6139)] = 219366, + [SMALL_STATE(6140)] = 219376, + [SMALL_STATE(6141)] = 219386, + [SMALL_STATE(6142)] = 219396, + [SMALL_STATE(6143)] = 219406, + [SMALL_STATE(6144)] = 219416, + [SMALL_STATE(6145)] = 219426, + [SMALL_STATE(6146)] = 219436, + [SMALL_STATE(6147)] = 219446, + [SMALL_STATE(6148)] = 219456, + [SMALL_STATE(6149)] = 219466, + [SMALL_STATE(6150)] = 219476, + [SMALL_STATE(6151)] = 219486, + [SMALL_STATE(6152)] = 219496, + [SMALL_STATE(6153)] = 219506, + [SMALL_STATE(6154)] = 219516, + [SMALL_STATE(6155)] = 219526, + [SMALL_STATE(6156)] = 219536, + [SMALL_STATE(6157)] = 219546, + [SMALL_STATE(6158)] = 219556, + [SMALL_STATE(6159)] = 219566, + [SMALL_STATE(6160)] = 219576, + [SMALL_STATE(6161)] = 219586, + [SMALL_STATE(6162)] = 219596, + [SMALL_STATE(6163)] = 219606, + [SMALL_STATE(6164)] = 219616, + [SMALL_STATE(6165)] = 219626, + [SMALL_STATE(6166)] = 219636, + [SMALL_STATE(6167)] = 219646, + [SMALL_STATE(6168)] = 219656, + [SMALL_STATE(6169)] = 219666, + [SMALL_STATE(6170)] = 219676, + [SMALL_STATE(6171)] = 219686, + [SMALL_STATE(6172)] = 219696, + [SMALL_STATE(6173)] = 219706, + [SMALL_STATE(6174)] = 219716, + [SMALL_STATE(6175)] = 219726, + [SMALL_STATE(6176)] = 219736, + [SMALL_STATE(6177)] = 219746, + [SMALL_STATE(6178)] = 219756, + [SMALL_STATE(6179)] = 219766, + [SMALL_STATE(6180)] = 219776, + [SMALL_STATE(6181)] = 219786, + [SMALL_STATE(6182)] = 219796, + [SMALL_STATE(6183)] = 219806, + [SMALL_STATE(6184)] = 219816, + [SMALL_STATE(6185)] = 219826, + [SMALL_STATE(6186)] = 219836, + [SMALL_STATE(6187)] = 219846, + [SMALL_STATE(6188)] = 219856, + [SMALL_STATE(6189)] = 219866, + [SMALL_STATE(6190)] = 219876, + [SMALL_STATE(6191)] = 219886, + [SMALL_STATE(6192)] = 219896, + [SMALL_STATE(6193)] = 219906, + [SMALL_STATE(6194)] = 219916, + [SMALL_STATE(6195)] = 219926, + [SMALL_STATE(6196)] = 219936, + [SMALL_STATE(6197)] = 219946, + [SMALL_STATE(6198)] = 219956, + [SMALL_STATE(6199)] = 219966, + [SMALL_STATE(6200)] = 219976, + [SMALL_STATE(6201)] = 219986, + [SMALL_STATE(6202)] = 219996, + [SMALL_STATE(6203)] = 220006, + [SMALL_STATE(6204)] = 220016, + [SMALL_STATE(6205)] = 220026, + [SMALL_STATE(6206)] = 220036, + [SMALL_STATE(6207)] = 220046, + [SMALL_STATE(6208)] = 220056, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), - [107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(2), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4), - [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(3), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 5), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 5), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1), - [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(4), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(9), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(7), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(10), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(14), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(13), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3), + [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), + [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(2), + [130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), + [132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(3), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4), + [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 5), + [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 5), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(11), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(7), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(4), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(8), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(19), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(21), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1), [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1), [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(59), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(58), [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(58), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(59), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(63), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(62), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(64), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(66), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(101), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(102), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(104), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(109), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(102), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(103), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(110), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(108), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(233), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(235), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(241), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(240), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4306), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4270), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4309), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4310), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4311), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(911), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3990), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5465), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4266), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4213), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3638), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1697), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(161), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5014), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5777), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5033), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5048), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5050), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4057), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5467), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2011), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3876), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1919), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1929), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(86), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5470), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5486), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(948), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3721), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3748), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4215), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4520), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5012), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3590), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5410), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3761), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3049), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3048), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(364), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(379), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(379), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5909), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3047), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5085), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2990), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4679), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4336), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5863), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4286), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4283), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4289), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4290), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4292), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(876), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3990), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5465), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4266), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4213), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3638), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1697), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(161), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5014), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5777), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5033), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4663), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4467), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4057), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5467), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2011), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3876), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1918), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1929), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(86), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5470), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5479), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(948), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3721), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3748), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4215), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4520), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5012), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3590), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5410), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3761), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3049), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3048), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(364), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(379), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(379), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5909), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3047), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5085), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2990), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4679), - [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4336), - [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(6057), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(266), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(265), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(272), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(269), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(297), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(291), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(293), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(292), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(306), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(312), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(310), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(313), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(329), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(336), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(317), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 36), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 36), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(338), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(344), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(362), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(388), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(371), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(372), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(384), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(383), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(391), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(421), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(411), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(438), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(440), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(436), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(439), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(441), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(448), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(486), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(480), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1), REDUCE(sym__value, 1), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1), REDUCE(sym__value, 1), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, .production_id = 55), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, .production_id = 55), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, .production_id = 97), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, .production_id = 97), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), - [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4531), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, .production_id = 66), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, .production_id = 66), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 2), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 2), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4531), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 143), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 143), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4531), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4801), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4801), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, .production_id = 84), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, .production_id = 84), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4801), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, .production_id = 5), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, .production_id = 5), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 3), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 3), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, .production_id = 25), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, .production_id = 25), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, .production_id = 130), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, .production_id = 130), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__expr_binary_expression, 1), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, .production_id = 109), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, .production_id = 109), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 81), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 81), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 82), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 82), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 78), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 78), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 78), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 78), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, .production_id = 66), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, .production_id = 66), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 5), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 5), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, .production_id = 55), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, .production_id = 55), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 4), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 4), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, .production_id = 39), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, .production_id = 39), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, .production_id = 39), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, .production_id = 39), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, .production_id = 124), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, .production_id = 124), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 97), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 97), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, .production_id = 143), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, .production_id = 143), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 6), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 6), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4461), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(701), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4461), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4461), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(702), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(911), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1697), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(161), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5001), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5033), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5048), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5050), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3876), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1919), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1929), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(86), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5470), - [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5486), - [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(948), - [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3590), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5410), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3761), - [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3049), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3048), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(364), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(379), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(379), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5909), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3047), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5085), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2990), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(4679), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(4336), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5863), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(876), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1697), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(161), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5001), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5033), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4663), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4467), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3876), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1918), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1929), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(86), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5470), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5479), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(948), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3590), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5410), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3761), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3049), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3048), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(364), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(379), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(379), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5909), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3047), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5085), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2990), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4679), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4336), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(6057), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 186), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 186), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 85), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 85), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 187), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 187), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 83), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 83), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 185), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 185), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 184), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 184), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 222), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 222), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 127), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 127), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 214), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 214), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 223), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 223), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 219), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 219), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 218), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 218), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 211), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 211), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 210), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 210), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 132), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 132), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 131), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 131), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 126), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 126), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 215), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 215), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, .production_id = 20), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, .production_id = 20), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), - [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1677), - [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(153), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5190), - [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4535), - [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(99), - [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2331), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5364), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2549), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2547), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(270), - [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(294), - [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(284), - [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5953), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2535), - [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5215), - [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2453), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4509), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4423), - [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(878), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2524), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 80), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 80), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 2, .production_id = 32), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, .production_id = 32), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4651), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 42), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 42), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4651), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4651), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 38), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 38), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1671), - [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(164), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5216), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4643), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(100), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2355), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5442), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2710), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2711), - [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(282), - [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(299), - [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(296), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5781), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2712), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4892), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2684), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4526), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4411), - [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(928), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2630), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4722), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1224), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1677), - [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(153), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5190), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4535), - [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(99), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2331), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5364), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2549), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2547), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(270), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(294), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(284), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5953), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2535), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5215), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2453), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4509), - [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4423), - [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(878), - [2479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2524), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, .dynamic_precedence = 10, .production_id = 1), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 80), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 17), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 38), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4722), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4722), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 80), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 80), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 117), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 117), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 72), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 72), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), - [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(5552), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, .production_id = 72), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, .production_id = 72), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 117), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 117), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 38), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 38), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(5522), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4707), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4707), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4707), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(1055), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1396), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1396), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), - [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(1117), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4665), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, .production_id = 43), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, .production_id = 43), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4665), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5797), - [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(173), - [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5034), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(4996), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5968), - [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(4996), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5376), - [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(437), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(437), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5010), - [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(2728), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5615), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4665), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 5), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 5), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(1135), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 86), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 86), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, .production_id = 43), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, .production_id = 43), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 134), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 134), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 133), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 133), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 129), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 129), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 128), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 128), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 69), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 69), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 68), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 68), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(1163), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, .production_id = 47), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, .production_id = 47), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 41), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, .production_id = 41), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 41), SHIFT(165), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 31), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 31), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 30), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 30), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 2, .production_id = 19), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, .production_id = 19), - [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, .production_id = 19), SHIFT(165), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 8), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 8), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 7), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 7), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, .production_id = 94), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, .production_id = 94), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, .production_id = 137), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, .production_id = 137), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 70), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 70), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 136), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 136), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 140), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 140), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, .production_id = 141), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, .production_id = 141), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 11), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 11), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, .production_id = 145), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, .production_id = 145), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 149), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 149), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 9), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 9), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, .production_id = 19), SHIFT(146), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 246), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 246), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 245), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 245), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 71), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 71), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 244), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 244), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 243), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 243), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 242), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 242), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 241), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 241), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 240), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 240), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 239), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 239), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 238), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 238), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 237), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 237), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 236), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 236), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 235), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 235), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 234), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 234), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 233), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 233), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 232), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 232), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 231), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 231), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 225), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 225), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 224), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 224), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 221), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 221), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 220), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 220), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 217), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 217), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 216), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 216), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 213), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 213), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, .production_id = 247), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, .production_id = 247), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 212), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 212), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 208), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 208), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 207), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 207), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 206), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 206), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 205), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 205), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 204), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 204), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 203), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 203), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), - [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), - [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_last, 1), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), - [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 202), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 202), - [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 201), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 201), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, .production_id = 162), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, .production_id = 162), - [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, .production_id = 163), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, .production_id = 163), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(215), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(214), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(241), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(236), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4358), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4237), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4352), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4350), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4349), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(930), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3941), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5590), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4290), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4245), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3706), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1715), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(162), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5077), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5853), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5226), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5100), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5101), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4114), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5587), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2033), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3898), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1962), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1758), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(87), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5580), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5593), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(969), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3778), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3779), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4313), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4614), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5215), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3634), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5431), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3864), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3059), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3058), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(345), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(369), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(369), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5984), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3057), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5148), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3004), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4847), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(4461), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(5937), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4445), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4287), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4444), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4442), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4441), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(903), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3941), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5590), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4290), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4245), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3706), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1715), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(162), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5077), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5853), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5226), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4880), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4876), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4114), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5587), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2033), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3898), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1961), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1758), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(87), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5580), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5577), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(969), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3778), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3779), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4313), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4614), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5215), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3634), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5431), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3864), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3059), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3058), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(345), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(369), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(369), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5984), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3057), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(5148), + [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3004), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4847), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(4461), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(6170), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(267), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(266), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(270), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(271), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(297), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(292), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(294), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(291), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(300), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(312), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(299), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(305), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(329), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(327), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 36), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 36), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1), SHIFT(338), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2), SHIFT(331), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(356), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(363), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(379), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(386), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(380), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(390), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(418), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(413), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(410), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(415), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(437), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(429), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(439), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(444), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(425), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(443), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(489), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(478), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1), REDUCE(sym__value, 1), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1), REDUCE(sym__value, 1), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4826), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4826), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 2), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 2), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, .production_id = 84), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, .production_id = 84), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4781), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4781), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, .production_id = 55), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, .production_id = 55), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, .production_id = 97), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, .production_id = 97), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, .production_id = 66), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, .production_id = 66), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4781), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 146), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 146), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1), REDUCE(sym__value, 1), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4499), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4499), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, .production_id = 25), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, .production_id = 25), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, .production_id = 5), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, .production_id = 5), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4499), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, .production_id = 133), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, .production_id = 133), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__expr_binary_expression, 1), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 3), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 3), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 81), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 81), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 82), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 82), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 5), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 5), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, .production_id = 112), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, .production_id = 112), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 78), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 78), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 78), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 78), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, .production_id = 39), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, .production_id = 39), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, .production_id = 39), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, .production_id = 39), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 6), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 6), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 4), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 4), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, .production_id = 55), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, .production_id = 55), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, .production_id = 146), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, .production_id = 146), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, .production_id = 66), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, .production_id = 66), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, .production_id = 127), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, .production_id = 127), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 97), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 97), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(713), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(714), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(716), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4803), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4803), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(717), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4803), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(930), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1715), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(162), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5091), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5226), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5100), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5101), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3898), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1962), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1758), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(87), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5580), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5593), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(969), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3634), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5431), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3864), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3059), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3058), + [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(345), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(369), + [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(369), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5984), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3057), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5148), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3004), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(4847), + [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(4461), + [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(5937), + [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(903), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1715), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(162), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5091), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5226), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4880), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4876), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3898), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1961), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1758), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(87), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5580), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5577), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(969), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3634), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5431), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3864), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3059), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3058), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(345), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(369), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(369), + [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5984), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3057), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(5148), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3004), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4847), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4461), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(6170), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 187), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 187), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 188), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 188), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 85), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 85), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 189), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 189), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 190), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 190), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 83), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 83), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 134), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 134), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 226), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 226), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 221), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 221), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 135), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 135), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 222), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 222), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 218), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 218), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 217), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 217), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 214), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 214), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 129), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 129), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 130), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 130), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 213), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 213), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 225), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 225), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 42), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 42), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 38), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 38), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 2, .production_id = 32), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, .production_id = 32), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4678), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1743), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(169), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5110), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4629), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(89), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2377), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5383), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2483), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2528), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(269), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(298), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(286), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(6028), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2527), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5275), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2489), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4615), + [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4496), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(905), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2625), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4678), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 80), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 80), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, .production_id = 20), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, .production_id = 20), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4678), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4500), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, .dynamic_precedence = 10, .production_id = 1), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1694), + [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(156), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4939), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4869), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(88), + [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2411), + [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5454), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2694), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2693), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(278), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(306), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(293), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5857), + [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2692), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5128), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2698), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4620), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4414), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(949), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2639), + [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4500), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4500), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 38), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 17), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1265), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1743), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(169), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5110), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4629), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(89), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2377), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5383), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2483), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2528), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(269), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(298), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(286), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(6028), + [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2527), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(5275), + [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2489), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4615), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(4496), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(905), + [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2625), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 80), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 80), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 80), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 120), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 120), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 38), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 38), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, .production_id = 72), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, .production_id = 72), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), + [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(5615), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 120), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 120), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 72), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 72), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(5604), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4598), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5871), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(203), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(4953), + [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5190), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(6059), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5190), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5418), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(427), + [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(427), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5210), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(2777), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5693), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4598), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4598), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(1094), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4529), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(1110), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4529), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5871), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(203), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5227), + [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5190), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), + [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(6059), + [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5190), + [3100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5418), + [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(427), + [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(427), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5210), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(2777), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(5693), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), + [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1274), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1274), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4529), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, .production_id = 43), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, .production_id = 43), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 69), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 69), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 137), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 137), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 86), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 86), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(1171), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 136), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 136), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 132), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 132), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 131), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 131), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 8), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 8), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 7), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 7), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, .production_id = 43), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, .production_id = 43), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 68), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 68), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 30), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 30), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 31), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 31), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, .production_id = 47), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, .production_id = 47), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 5), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 5), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 2, .production_id = 19), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, .production_id = 19), + [3268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, .production_id = 19), SHIFT(155), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(1198), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 41), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, .production_id = 41), + [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 41), SHIFT(155), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 208), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 208), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 116), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 116), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 117), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 117), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 115), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 115), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 81), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 81), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 118), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 118), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, .production_id = 165), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, .production_id = 165), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, .production_id = 87), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, .production_id = 87), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, .production_id = 88), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, .production_id = 88), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, .production_id = 94), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, .production_id = 94), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 11), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 11), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 9), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 9), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 95), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 95), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 182), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 182), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 181), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 181), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, .production_id = 100), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, .production_id = 100), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 7, .production_id = 191), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, .production_id = 191), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 157), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 157), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 158), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 158), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 199), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 199), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 159), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 159), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 160), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 160), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 161), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 161), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 162), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 162), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 163), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 163), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 164), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 164), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 200), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 200), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 201), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 201), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 202), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 202), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 177), [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 177), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 176), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 176), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 175), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 175), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, .production_id = 100), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, .production_id = 100), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 168), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 168), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 169), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 169), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2), - [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8), - [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 95), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 95), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, .production_id = 32), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, .production_id = 32), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, .production_id = 18), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, .production_id = 18), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 170), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 170), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 174), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 174), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 230), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 230), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, .production_id = 88), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, .production_id = 88), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 229), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 229), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, .production_id = 87), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, .production_id = 87), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), - [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 28), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 28), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 29), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 29), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 161), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 161), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 160), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 160), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 81), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 81), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, .production_id = 33), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, .production_id = 33), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 228), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 228), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 159), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 159), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 158), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 158), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 157), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 157), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 156), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 156), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 155), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 155), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, .production_id = 154), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, .production_id = 154), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 178), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 178), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 179), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 179), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2), - [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, .production_id = 209), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, .production_id = 209), - [3691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 41), SHIFT(146), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 115), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 115), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 114), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 114), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 113), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 113), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, .production_id = 112), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, .production_id = 112), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, .production_id = 74), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, .production_id = 74), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, .production_id = 73), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, .production_id = 73), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 199), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 199), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 7, .production_id = 188), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, .production_id = 188), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 48), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, .production_id = 48), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 50), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 50), - [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 51), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 51), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 52), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 52), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 198), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 198), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 197), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 197), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 196), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 196), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, .production_id = 57), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, .production_id = 57), - [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, .production_id = 58), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, .production_id = 58), - [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), - [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3), - [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), - [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), - [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), - [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), - [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), - [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), - [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, .production_id = 90), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, .production_id = 90), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, .production_id = 135), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, .production_id = 135), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), - [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 135), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 135), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, .production_id = 139), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, .production_id = 139), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), - [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 40), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 40), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 89), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 89), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, .production_id = 10), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, .production_id = 10), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 90), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 90), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, .production_id = 10), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, .production_id = 10), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, .production_id = 40), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, .production_id = 40), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, .production_id = 89), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, .production_id = 89), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), - [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 139), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 139), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4639), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4639), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4639), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1687), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), - [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(166), - [4051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4932), - [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4252), - [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(90), - [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3125), - [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4967), - [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3408), - [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3412), - [4072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(467), - [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(503), - [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(501), - [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5877), - [4084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3413), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5020), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3419), - [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4808), - [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4296), - [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3374), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4548), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4548), - [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4548), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), - [4208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(1702), - [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(1674), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 111), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 111), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 110), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 110), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 104), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 104), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 103), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 103), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, .production_id = 103), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 103), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, .production_id = 110), - [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 110), - [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3), REDUCE(sym_val_closure, 3), - [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3), REDUCE(sym_val_closure, 3), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 26), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 26), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, .production_id = 111), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 111), - [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, .production_id = 104), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 104), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2082), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), - [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(166), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4932), - [4806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4225), - [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1120), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3338), - [4815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5005), - [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3408), - [4821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3412), - [4824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(499), - [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(503), - [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(512), - [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5877), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3527), - [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5020), - [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3419), - [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3374), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(1922), - [4929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(141), - [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5034), - [4935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5066), - [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(1141), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 178), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 178), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 179), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 179), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, .production_id = 180), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, .production_id = 180), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 173), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 173), + [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 172), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 172), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3), + [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), + [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_last, 1), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), + [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 171), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 171), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1), + [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, .production_id = 148), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, .production_id = 148), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 204), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 204), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, .production_id = 166), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, .production_id = 166), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 41), SHIFT(142), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 205), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 205), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 206), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 206), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 207), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 207), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 209), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 209), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 210), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 210), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, .production_id = 18), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, .production_id = 18), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 211), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 211), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 215), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 215), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 216), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 216), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, .production_id = 250), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, .production_id = 250), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 219), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 219), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 220), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 220), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 223), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 223), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 224), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 224), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 227), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 227), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, .production_id = 228), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, .production_id = 228), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 28), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 28), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 29), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 29), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, .production_id = 33), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, .production_id = 33), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2), + [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, .production_id = 19), SHIFT(142), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 234), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 234), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 235), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 235), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 236), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 236), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 237), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 237), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 238), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 238), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 239), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 239), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 240), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 240), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 241), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 241), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2), + [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), + [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 242), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 242), + [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 243), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 243), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 244), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 244), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 245), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 245), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 246), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 246), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 247), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 247), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 248), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 248), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, .production_id = 249), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, .production_id = 249), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 233), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 233), + [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 232), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 232), + [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, .production_id = 74), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, .production_id = 74), + [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, .production_id = 73), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, .production_id = 73), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 152), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 152), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1), + [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 231), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 231), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, .production_id = 32), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, .production_id = 32), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 139), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 139), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, .production_id = 140), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, .production_id = 140), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 143), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 143), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 48), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, .production_id = 48), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1), + [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 50), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 50), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 51), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 51), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 52), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 52), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, .production_id = 144), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, .production_id = 144), + [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, .production_id = 57), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, .production_id = 57), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 70), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 70), + [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, .production_id = 58), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, .production_id = 58), + [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, .production_id = 212), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, .production_id = 212), + [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 71), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 71), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3), + [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), + [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), + [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3), + [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), + [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, .production_id = 89), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, .production_id = 89), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, .production_id = 10), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, .production_id = 10), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), + [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), + [3953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 40), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 40), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, .production_id = 138), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, .production_id = 138), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 90), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 90), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 89), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 89), + [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, .production_id = 40), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, .production_id = 40), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, .production_id = 90), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, .production_id = 90), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, .production_id = 142), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, .production_id = 142), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), + [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 142), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 142), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 138), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 138), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, .production_id = 10), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, .production_id = 10), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2), + [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4823), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4851), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4823), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4823), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4851), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4851), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), + [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1709), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), + [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(160), + [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5006), + [4198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4304), + [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(99), + [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3208), + [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5032), + [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3471), + [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3472), + [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(458), + [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(508), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(493), + [4225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5954), + [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3475), + [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5083), + [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3426), + [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4898), + [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4370), + [4243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3446), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(1739), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(1697), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 114), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 114), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 113), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 113), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 107), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 107), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 106), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 106), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3), REDUCE(sym_val_closure, 3), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3), REDUCE(sym_val_closure, 3), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, .production_id = 26), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, .production_id = 26), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 26), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 26), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, .production_id = 114), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 114), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, .production_id = 106), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 106), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, .production_id = 107), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 107), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, .production_id = 26), REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 26), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, .production_id = 26), REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 26), + [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, .production_id = 113), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 113), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(1983), + [4929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(146), + [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5227), + [4935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5109), + [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(1121), [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), - [4945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5518), - [4948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5332), - [4951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2946), - [4954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2970), - [4957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(717), - [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(744), - [4963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5932), - [4966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5389), - [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5010), - [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2728), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [5005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4658), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4462), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4462), - [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4658), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4658), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4564), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(2334), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(2335), - [5063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), REDUCE(sym__immediate_decimal, 2), SHIFT(2334), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4821), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4821), - [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_ignore_rest, 2), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [5125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4821), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4827), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [5163] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), REDUCE(sym__immediate_decimal, 2), SHIFT(2377), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 192), - [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 192), SHIFT_REPEAT(3911), - [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 192), SHIFT_REPEAT(3880), - [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 192), SHIFT_REPEAT(3879), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4827), - [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), REDUCE(sym__immediate_decimal, 3), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [5214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(2366), - [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(2377), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), - [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(5715), - [5227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(2664), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [5236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4477), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), - [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 44), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 44), - [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 45), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 45), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 24), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [5281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4477), - [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 4), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, .production_id = 4), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, .production_id = 93), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [5310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4477), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 99), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 99), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [5351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1), - [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1), - [5355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), - [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [5399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, .production_id = 4), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, .production_id = 4), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), - [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 24), - [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 24), - [5413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 3), - [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 3), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [5429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [5451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 34), - [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 34), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [5485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), - [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), - [5489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4564), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4482), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, .production_id = 193), - [5525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4564), - [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4482), - [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, .production_id = 91), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4482), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, .production_id = 191), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3), - [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 75), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 75), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, .production_id = 189), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, .production_id = 166), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 76), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 76), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 166), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4629), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [5793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4549), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4629), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4629), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4474), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 120), - [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 120), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [5963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4505), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 122), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 122), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2), REDUCE(sym_val_list, 2), - [6009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2), REDUCE(sym_val_list, 2), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4505), - [6077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4505), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [6116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1), - [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, .dynamic_precedence = 10), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, .dynamic_precedence = 10), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [6160] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), REDUCE(sym__immediate_decimal, 2), SHIFT(3204), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(3204), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(3213), - [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2), - [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__expr_binary_expression, 1), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4855), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4855), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [6289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1), REDUCE(sym__list_item_expression, 1), - [6292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1), REDUCE(sym__list_item_expression, 1), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4855), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, .production_id = 21), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, .production_id = 21), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 23), REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 23), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 23), REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 23), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 23), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 4), - [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 4), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, .production_id = 21), REDUCE(sym__list_item_expression, 1, .production_id = 21), - [6377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, .production_id = 21), REDUCE(sym__list_item_expression, 1, .production_id = 21), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 5), - [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 5), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 6), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 6), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_starts_with_sign, 2), - [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_starts_with_sign, 2), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [6426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(3267), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 22), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 22), - [6437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(3322), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 23), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [6534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 54), REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), - [6537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 54), REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), - [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1), - [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 53), - [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 53), - [6658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, .production_id = 200), - [6688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, .production_id = 200), - [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, .production_id = 21), - [6692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, .production_id = 21), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 22), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 22), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 23), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 23), - [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, .production_id = 102), - [6708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, .production_id = 102), - [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1), - [6712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1), - [6714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), - [6716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), - [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, .production_id = 171), - [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, .production_id = 171), - [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, .production_id = 55), - [6724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, .production_id = 55), - [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 173), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 173), - [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), - [6734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), - [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 53), - [6738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 53), - [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 54), - [6742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 54), - [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 173), - [6746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 173), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [7054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3838), - [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), - [7059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(5829), - [7062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(5830), - [7065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(5831), - [7068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(5832), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 64), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [7095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 64), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4657), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [7186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4657), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [7191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4657), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [7230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 2), SHIFT(3701), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [7277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1), SHIFT(3719), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 61), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 61), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [7372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, .production_id = 91), - [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 108), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 108), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, .production_id = 107), - [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, .production_id = 107), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 60), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 60), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, .production_id = 92), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, .production_id = 92), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, .production_id = 189), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, .production_id = 25), - [7558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, .production_id = 25), - [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3), - [7562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, .production_id = 25), - [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, .production_id = 25), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 64), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 64), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, .production_id = 106), - [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, .production_id = 106), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, .production_id = 105), - [7586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, .production_id = 105), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 108), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [7596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 108), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3), - [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, .production_id = 191), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 61), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 61), - [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, .production_id = 93), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 65), - [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 65), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 63), - [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 63), - [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 62), - [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 62), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, .production_id = 19), - [7646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, .production_id = 19), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, .production_id = 138), - [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, .production_id = 138), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, .production_id = 148), - [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, .production_id = 148), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12), - [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12), - [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 61), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [7676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 61), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 64), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [7686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 64), - [7688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 142), SHIFT_REPEAT(4096), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 142), - [7693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 142), SHIFT_REPEAT(4945), - [7696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 142), SHIFT_REPEAT(4417), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [7707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 108), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [7727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 108), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4073), - [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 108), - [7748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, .production_id = 108), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4550), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 64), - [7785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 64), - [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 61), - [7789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 61), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [7801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 190), SHIFT_REPEAT(4221), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 190), - [7806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 190), SHIFT_REPEAT(5226), - [7809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 190), SHIFT_REPEAT(3644), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), - [7816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), - [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4085), - [7821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4550), - [7824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4550), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [7837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4131), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2), - [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2), SHIFT_REPEAT(5905), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4156), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 165), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4136), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 164), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [7879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4119), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [7900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4140), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [7907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4150), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4838), - [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4838), - [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4838), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, .production_id = 96), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 226), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 227), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [8069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [8075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, .production_id = 59), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, .production_id = 59), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, .production_id = 93), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [8091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 79), SHIFT_REPEAT(208), - [8094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 79), SHIFT_REPEAT(5089), - [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 79), - [8099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [8103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4247), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, .production_id = 27), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, .production_id = 27), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [8142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(5557), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [8147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1), - [8149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), SHIFT(5715), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [8154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), - [8156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), SHIFT(5715), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4223), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 24), - [8214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 24), SHIFT(5715), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1), - [8221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1), SHIFT(5715), - [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), - [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), - [8228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), - [8230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), SHIFT(5715), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [8251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1), - [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1), - [8255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1), - [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2), - [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2), - [8267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, .production_id = 35), - [8269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, .production_id = 35), - [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [8291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 79), SHIFT_REPEAT(197), - [8294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 79), SHIFT_REPEAT(5395), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 79), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [8301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15), - [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), - [8311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1529), - [8314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1529), - [8317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4442), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 164), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 165), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [8346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 81), - [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 81), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, .production_id = 101), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, .production_id = 101), - [8374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4452), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [8379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, .production_id = 116), - [8381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, .production_id = 116), - [8383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 118), - [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 118), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [8397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 119), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 119), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 96), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [8417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), - [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [8427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 2, .production_id = 27), - [8429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, .production_id = 27), SHIFT(5957), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [8436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 121), - [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 121), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 151), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 151), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 227), - [8514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 183), - [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 183), - [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 226), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [8534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 146), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 146), - [8538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 147), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 147), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), - [8544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, .production_id = 101), - [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, .production_id = 101), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3), - [8560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 150), - [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 150), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [8566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 3, .production_id = 59), - [8568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, .production_id = 59), SHIFT(6075), - [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [8575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 152), - [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 152), - [8579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 153), - [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 153), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [8585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 182), - [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 182), - [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, .production_id = 101), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, .production_id = 101), - [8593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 180), - [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 180), - [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), - [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 181), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 181), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3), - [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1), - [8697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 139), - [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 139), - [8701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, .production_id = 135), - [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, .production_id = 135), - [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [8709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3), - [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [8825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 90), - [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 90), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 5, .production_id = 167), - [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, .production_id = 167), - [8845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 147), - [8847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 147), - [8849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, .production_id = 89), - [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, .production_id = 89), - [8853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 146), - [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 146), - [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [8883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, .production_id = 40), - [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, .production_id = 40), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [8927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 2), - [8929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 2), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [8933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 3), - [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 3), - [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [8939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), - [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [8949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), - [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), - [8953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), - [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), - [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [8961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), - [8963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), SHIFT_REPEAT(5397), - [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [8978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 194), - [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 194), - [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [8990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 195), - [8992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 195), - [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [8998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1), - [9000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1), - [9002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), - [9004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), - [9006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1), - [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1), - [9010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 37), - [9012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 37), - [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), - [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [9108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 144), SHIFT_REPEAT(1695), - [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 144), - [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [9141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 4, .production_id = 116), - [9143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, .production_id = 116), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [9267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [9291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), - [9293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [9303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), - [9305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), - [9307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), - [9309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), - [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [9313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2), - [9315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 89), - [9317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 89), - [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [9341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 90), - [9343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 90), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 125), - [9365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 125), SHIFT_REPEAT(5404), - [9368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 40), - [9370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 40), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [9446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1), - [9448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1), - [9452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 37), - [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 37), - [9456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), - [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), - [9460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), - [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [9472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, .production_id = 77), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), - [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2), SHIFT_REPEAT(2325), - [9489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [9521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(5030), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [9526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 135), - [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 135), - [9530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 139), - [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 139), - [9534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(5025), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [9621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, .production_id = 172), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 123), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [9673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, .production_id = 98), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [9791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 1), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [9955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2), - [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [10409] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [10587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, .production_id = 92), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [10625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2), - [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [10639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, .production_id = 172), - [10641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, .production_id = 92), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [10671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 4), - [10673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [4945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(4482), + [4948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5433), + [4951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3022), + [4954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3023), + [4957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(719), + [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(769), + [4963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(758), + [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(6007), + [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5471), + [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(5210), + [4975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2777), + [4978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3003), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [4999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1985), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(160), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5006), + [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4252), + [5013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1131), + [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3410), + [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5200), + [5022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3471), + [5025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3472), + [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(497), + [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(508), + [5034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(512), + [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5954), + [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3603), + [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(5083), + [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3426), + [5049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3446), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4669), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4827), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4669), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4827), + [5172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4827), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4658), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_ignore_rest, 2), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4910), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4910), + [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4910), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5251] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), REDUCE(sym__immediate_decimal, 2), SHIFT(2379), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(2379), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(2380), + [5265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4893), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), + [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5292] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), REDUCE(sym__immediate_decimal, 2), SHIFT(2419), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), REDUCE(sym__immediate_decimal, 3), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 195), + [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 195), SHIFT_REPEAT(4031), + [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 195), SHIFT_REPEAT(3891), + [5311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 195), SHIFT_REPEAT(3893), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(2394), + [5333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4893), + [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(2419), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 45), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 45), + [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 44), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 44), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), + [5385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), + [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), + [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), + [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, .production_id = 4), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 4), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 24), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4874), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [5430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), + [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(5743), + [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(2695), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, .production_id = 93), + [5440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4874), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [5445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4874), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), + [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1), + [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 99), + [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 99), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 24), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 24), + [5580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), + [5584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, .production_id = 4), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, .production_id = 4), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 3), + [5614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 3), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [5638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4658), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, .production_id = 91), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, .production_id = 196), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4808), + [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 34), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 34), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4808), + [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), + [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), + [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4658), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, .production_id = 194), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, .production_id = 192), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), + [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, .production_id = 169), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4808), + [5789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 75), + [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 75), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 76), + [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 76), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4835), + [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 169), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4835), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4697), + [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4835), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4601), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4723), + [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2), REDUCE(sym_val_list, 2), + [6066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2), REDUCE(sym_val_list, 2), + [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 125), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 125), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 123), + [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 123), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 2), REDUCE(sym_val_record, 2), + [6216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2), REDUCE(sym_val_record, 2), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, .dynamic_precedence = 10), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, .dynamic_precedence = 10), + [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1), + [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [6267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4723), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1), + [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [6286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4723), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2), + [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6307] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), REDUCE(sym__immediate_decimal, 2), SHIFT(3165), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4596), + [6316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(3165), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(3222), + [6328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4596), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4596), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1), + [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, .production_id = 66), + [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, .production_id = 66), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [6426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__expr_binary_expression, 1), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2), + [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1), REDUCE(sym__list_item_expression, 1), + [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1), REDUCE(sym__list_item_expression, 1), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(3290), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(3263), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 23), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 23), + [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 6), + [6517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 6), + [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 22), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 22), + [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, .production_id = 21), + [6527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, .production_id = 21), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 4), + [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 4), + [6541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 23), REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 23), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 23), REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 23), + [6549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, .production_id = 21), REDUCE(sym__list_item_expression, 1, .production_id = 21), + [6552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, .production_id = 21), REDUCE(sym__list_item_expression, 1, .production_id = 21), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 5), + [6561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 5), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_starts_with_sign, 2), + [6599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_starts_with_sign, 2), + [6601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3), REDUCE(sym_val_record, 3), + [6604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3), REDUCE(sym_val_record, 3), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 53), + [6693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 53), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), + [6757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 176), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 176), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1), + [6803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1), + [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), + [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), + [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 54), REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), + [6812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 54), REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), + [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1), + [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, .production_id = 203), + [6855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, .production_id = 203), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 176), + [6859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 176), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, .production_id = 21), + [6863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, .production_id = 21), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, .production_id = 103), + [6867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, .production_id = 103), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, .production_id = 174), + [6871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, .production_id = 174), + [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, .production_id = 102), + [6875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, .production_id = 102), + [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), + [6879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), + [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 22), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 22), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 23), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, .production_id = 23), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, .production_id = 66), + [6895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, .production_id = 66), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3), + [6899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, .production_id = 55), + [6903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, .production_id = 55), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 53), + [6907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 53), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 54), + [6911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, .production_id = 54), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 64), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [7243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 64), + [7245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3860), + [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), + [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(5861), + [7253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(5862), + [7256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(5864), + [7259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(5865), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [7320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4709), + [7323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4709), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [7340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4709), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1), SHIFT(3783), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [7422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 2), SHIFT(3800), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, .production_id = 92), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, .production_id = 92), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 61), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 61), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 111), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 111), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, .production_id = 91), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, .production_id = 110), + [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, .production_id = 110), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 60), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 60), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 64), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 64), + [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [7727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, .production_id = 192), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, .production_id = 194), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 111), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 111), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 61), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 61), + [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), + [7753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3), + [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, .production_id = 25), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, .production_id = 25), + [7759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, .production_id = 93), + [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, .production_id = 25), + [7763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, .production_id = 25), + [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3), + [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3), + [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, .production_id = 109), + [7771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, .production_id = 109), + [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, .production_id = 108), + [7775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, .production_id = 108), + [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 65), + [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 65), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 63), + [7783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 63), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 62), + [7793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 62), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, .production_id = 151), + [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, .production_id = 151), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, .production_id = 19), + [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, .production_id = 19), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, .production_id = 141), + [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, .production_id = 141), + [7815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12), + [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [7821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 145), SHIFT_REPEAT(4129), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 145), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 145), SHIFT_REPEAT(5222), + [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 145), SHIFT_REPEAT(4428), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 111), + [7840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [7846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 61), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 61), + [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 64), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 64), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14), + [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 111), + [7906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, .production_id = 111), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 193), SHIFT_REPEAT(4299), + [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 193), + [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 193), SHIFT_REPEAT(4946), + [7926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 193), SHIFT_REPEAT(3672), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4130), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [7938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4718), + [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4718), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), + [7958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [7964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4133), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 61), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 61), + [7975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4718), + [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 64), + [7980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 64), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), SHIFT(4562), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [8027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), SHIFT(4562), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4157), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2), + [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2), SHIFT_REPEAT(5981), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [8044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4161), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [8051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4191), + [8054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(4562), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 168), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 167), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [8083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4142), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [8092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4195), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [8101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4198), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, .production_id = 93), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, .production_id = 96), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 229), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 230), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), + [8206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), SHIFT(5743), + [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1), + [8211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), SHIFT(5743), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [8240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, .production_id = 59), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, .production_id = 59), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [8248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, .production_id = 27), + [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, .production_id = 27), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4261), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(5614), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [8326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 79), SHIFT_REPEAT(205), + [8329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 79), SHIFT_REPEAT(4943), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 79), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [8342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4318), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 153), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 153), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [8371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 184), + [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 184), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [8381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 183), + [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 183), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [8389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 2, .production_id = 27), + [8391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, .production_id = 27), SHIFT(6030), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2), + [8398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 185), + [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 185), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [8408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, .production_id = 101), + [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, .production_id = 101), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [8414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 156), + [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 156), + [8418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), + [8420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), + [8422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 155), + [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 155), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [8432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), + [8434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [8438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, .production_id = 105), + [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, .production_id = 105), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [8446] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), REDUCE(sym__immediate_decimal, 2), SHIFT(4198), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 96), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [8508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 154), + [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 154), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 24), + [8562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 24), SHIFT(5743), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1), + [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1), SHIFT(5743), + [8572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 79), SHIFT_REPEAT(181), + [8575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 79), SHIFT_REPEAT(5514), + [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 79), + [8580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, .production_id = 105), + [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, .production_id = 105), + [8584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, .production_id = 101), + [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, .production_id = 101), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 150), + [8596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 150), + [8598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 149), + [8600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 149), + [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 121), + [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 121), + [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 81), + [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 81), + [8610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 124), + [8612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 124), + [8614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 186), + [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 186), + [8618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), + [8620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), SHIFT(5743), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [8631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [8641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [8669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 122), + [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 122), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [8697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [8717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 3, .production_id = 59), + [8719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, .production_id = 59), SHIFT(6199), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [8734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [8748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2), SHIFT(4475), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 229), + [8753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, .production_id = 105), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, .production_id = 105), + [8757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, .production_id = 101), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, .production_id = 101), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), + [8763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1506), + [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1506), + [8769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), SHIFT(4455), + [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3), + [8774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, .production_id = 35), + [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, .production_id = 35), + [8778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2), + [8780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2), + [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [8794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1), + [8796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1), + [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 167), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 168), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 230), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [8834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, .production_id = 119), + [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, .production_id = 119), + [8838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, .production_id = 138), + [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, .production_id = 138), + [8842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 37), + [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 37), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [8848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 197), + [8850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 197), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [8856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 198), + [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 198), + [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [8884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), + [8886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [8898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1), + [8900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [8914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), + [8916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [8922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), + [8924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), + [8926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), + [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [8942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, .production_id = 40), + [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, .production_id = 40), + [8946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, .production_id = 89), + [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, .production_id = 89), + [8950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 90), + [8952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 90), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [8992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [9020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 5, .production_id = 170), + [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, .production_id = 170), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [9030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 150), + [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 150), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [9040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 149), + [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 149), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [9106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [9108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 2), + [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 2), + [9112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 3), + [9114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 3), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [9118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [9140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1), + [9142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [9146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3), + [9148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [9152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 142), + [9154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 142), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [9164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), + [9166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), SHIFT_REPEAT(5516), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [9313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 147), SHIFT_REPEAT(1705), + [9316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 147), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [9350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 4, .production_id = 119), + [9352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, .production_id = 119), + [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [9438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), + [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), + [9442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), + [9444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [9460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), + [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 128), + [9492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 128), SHIFT_REPEAT(5396), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, .production_id = 77), + [9579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 89), + [9581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 89), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1), + [9587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1), + [9589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1), + [9591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1), + [9593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), + [9595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [9601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 90), + [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 90), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [9687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [9715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2), SHIFT(5223), + [9718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 40), + [9720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 40), + [9722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 37), + [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 37), + [9726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2), SHIFT_REPEAT(2358), + [9729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [9737] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1), REDUCE(sym__immediate_decimal, 2), SHIFT(4455), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [9743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, .production_id = 104), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [9757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 138), + [9759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 138), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [9767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1), SHIFT(5196), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), + [9776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), + [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), + [9780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 142), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 142), + [9784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), + [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, .production_id = 175), + [9830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, .production_id = 98), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 126), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [9940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [10040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 1), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [10380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [10556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [10572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 4), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [10580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, .production_id = 175), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [10586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, .production_id = 92), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [10646] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [10664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [10894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, .production_id = 92), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), }; #ifdef __cplusplus